diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs new file mode 100644 index 00000000..0b78b5b6 --- /dev/null +++ b/.git-blame-ignore-revs @@ -0,0 +1,8 @@ +# SPDX-FileCopyrightText: : 2022 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: CC0-1.0 + +# Exclude pre-commit applications +5d1ef8a64055a039aa4a0834d2d26fe7752fe9a0 +92080b1cd2ca5f123158571481722767b99c2b27 +13769f90af4500948b0376d57df4cceaa13e78b5 diff --git a/.gitattributes b/.gitattributes index 6d21b21b..3f5e771d 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: : 2017-2020 The PyPSA-Eur Authors +# SPDX-FileCopyrightText: : 2017-2023 The PyPSA-Eur Authors # # SPDX-License-Identifier: CC0-1.0 diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 5b64d242..03659213 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,5 +1,8 @@ blank_issues_enabled: false contact_links: - - name: PyPSA Mailing List - url: https://groups.google.com/forum/#!forum/pypsa - about: Please ask and answer general usage questions here. +- name: PyPSA Mailing List + url: https://groups.google.com/forum/#!forum/pypsa + about: Please ask and answer general usage questions here. +- name: Stackoverflow + url: https://stackoverflow.com/questions/tagged/pypsa + about: Please ask and answer code-related questions here. diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 05601c58..f70a2cde 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -7,7 +7,7 @@ Closes # (if applicable). - [ ] I tested my contribution locally and it seems to work fine. - [ ] Code and workflow changes are sufficiently documented. -- [ ] Newly introduced dependencies are added to `envs/environment.yaml` and `envs/environment.docs.yaml`. -- [ ] Changes in configuration options are added in all of `config.default.yaml`, `config.tutorial.yaml`, and `test/config.test1.yaml`. -- [ ] Changes in configuration options are also documented in `doc/configtables/*.csv` and line references are adjusted in `doc/configuration.rst` and `doc/tutorial.rst`. -- [ ] A note for the release notes `doc/release_notes.rst` is amended in the format of previous release notes. +- [ ] Changed dependencies are added to `envs/environment.yaml`. +- [ ] Changes in configuration options are added in all of `config.default.yaml`. +- [ ] Changes in configuration options are also documented in `doc/configtables/*.csv`. +- [ ] A release note `doc/release_notes.rst` is added. diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c753deab..f0cdfca1 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: : 2021 The PyPSA-Eur Authors +# SPDX-FileCopyrightText: : 2021-2023 The PyPSA-Eur Authors # # SPDX-License-Identifier: CC0-1.0 @@ -16,75 +16,103 @@ on: branches: - master schedule: - - cron: "0 5 * * TUE" + - cron: "0 5 * * TUE" env: - CACHE_NUMBER: 1 # Change this value to manually reset the environment cache + CONDA_CACHE_NUMBER: 1 # Change this value to manually reset the environment cache + DATA_CACHE_NUMBER: 2 jobs: build: strategy: + fail-fast: false matrix: include: # Matrix required to handle caching with Mambaforge - - os: ubuntu-latest - label: ubuntu-latest - prefix: /usr/share/miniconda3/envs/pypsa-eur + - os: ubuntu-latest + label: ubuntu-latest + prefix: /usr/share/miniconda3/envs/pypsa-eur - - os: macos-latest - label: macos-latest - prefix: /Users/runner/miniconda3/envs/pypsa-eur + - os: macos-latest + label: macos-latest + prefix: /Users/runner/miniconda3/envs/pypsa-eur - - os: windows-latest - label: windows-latest - prefix: C:\Miniconda3\envs\pypsa-eur + - os: windows-latest + label: windows-latest + prefix: C:\Miniconda3\envs\pypsa-eur name: ${{ matrix.label }} runs-on: ${{ matrix.os }} - + defaults: run: shell: bash -l {0} - + steps: - - uses: actions/checkout@v2 - - - name: Setup secrets - run: | - echo -ne "url: ${CDSAPI_URL}\nkey: ${CDSAPI_TOKEN}\n" > ~/.cdsapirc + - uses: actions/checkout@v3 - - name: Add solver to environment - run: | - echo -e " - glpk\n - ipopt<3.13.3" >> envs/environment.yaml + - name: Setup secrets + run: | + echo -ne "url: ${CDSAPI_URL}\nkey: ${CDSAPI_TOKEN}\n" > ~/.cdsapirc - - name: Setup Mambaforge - uses: conda-incubator/setup-miniconda@v2 - with: - miniforge-variant: Mambaforge - miniforge-version: latest - activate-environment: pypsa-eur - use-mamba: true - - - name: Set cache date - run: echo "DATE=$(date +'%Y%m%d')" >> $GITHUB_ENV + - name: Add solver to environment + run: | + echo -e "- glpk\n- ipopt<3.13.3" >> envs/environment.yaml + if: ${{ matrix.label }} == 'windows-latest' - - name: Create environment cache - uses: actions/cache@v2 - id: cache - with: - path: ${{ matrix.prefix }} - key: ${{ matrix.label }}-conda-${{ hashFiles('envs/environment.yaml') }}-${{ env.DATE }}-${{ env.CACHE_NUMBER }} + - name: Add solver to environment + run: | + echo -e "- glpk\n- ipopt" >> envs/environment.yaml + if: ${{ matrix.label }} != 'windows-latest' - - name: Update environment due to outdated or unavailable cache - run: mamba env update -n pypsa-eur -f envs/environment.yaml - if: steps.cache.outputs.cache-hit != 'true' + - name: Setup Mambaforge + uses: conda-incubator/setup-miniconda@v2 + with: + miniforge-variant: Mambaforge + miniforge-version: latest + activate-environment: pypsa-eur + use-mamba: true - - name: Test snakemake workflow - run: | - conda activate pypsa-eur - conda list - cp test/config.test1.yaml config.yaml - snakemake --cores all solve_all_networks - rm -rf resources/*.nc resources/*.geojson resources/*.h5 networks results + - name: Set cache dates + run: | + echo "DATE=$(date +'%Y%m%d')" >> $GITHUB_ENV + echo "WEEK=$(date +'%Y%U')" >> $GITHUB_ENV + + - name: Cache data and cutouts folders + uses: actions/cache@v3 + with: + path: | + data + cutouts + key: data-cutouts-${{ env.WEEK }}-${{ env.DATA_CACHE_NUMBER }} + + - name: Create environment cache + uses: actions/cache@v3 + id: cache + with: + path: ${{ matrix.prefix }} + key: ${{ matrix.label }}-conda-${{ env.DATE }}-${{ env.CONDA_CACHE_NUMBER }} + + - name: Update environment due to outdated or unavailable cache + run: mamba env update -n pypsa-eur -f envs/environment.yaml + if: steps.cache.outputs.cache-hit != 'true' + + - name: Test snakemake workflow + run: | + conda activate pypsa-eur + conda list + snakemake -call solve_elec_networks --configfile config/test/config.electricity.yaml --rerun-triggers=mtime + snakemake -call all --configfile config/test/config.overnight.yaml --rerun-triggers=mtime + snakemake -call all --configfile config/test/config.myopic.yaml --rerun-triggers=mtime + + - name: Upload artifacts + uses: actions/upload-artifact@v3 + with: + name: resources-results + path: | + resources + results + if-no-files-found: warn + retention-days: 1 diff --git a/.gitignore b/.gitignore index b4734ab2..0adf0ae6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: : 2017-2020 The PyPSA-Eur Authors +# SPDX-FileCopyrightText: : 2017-2023 The PyPSA-Eur Authors # # SPDX-License-Identifier: CC0-1.0 @@ -11,13 +11,13 @@ gurobi.log /bak /resources +/resources* /results /networks /benchmarks /logs /notebooks /data -/data/links_p_nom.csv /cutouts doc/_build @@ -25,3 +25,51 @@ doc/_build config.yaml dconf +/data/links_p_nom.csv +/data/*totals.csv +/data/biomass* +/data/emobility/ +/data/eea* +/data/jrc* +/data/heating/ +/data/eurostat* +/data/odyssee/ +/data/transport_data.csv +/data/switzerland* +/data/.nfs* +/data/Industrial_Database.csv +/data/retro/tabula-calculator-calcsetbuilding.csv +/data/nuts* +data/gas_network/scigrid-gas/ +data/costs_*.csv + +dask-worker-space/ +publications.jrc.ec.europa.eu/ + +*.org + +*.nc + +*~ +/scripts/old + +*.pyc +/cutouts +/tmp +/pypsa + +*.xlsx + +config.yaml + +doc/_build + +*.xls + +*.geojson + +*.ipynb + +data/costs_* + +merger-todos.md diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 00000000..34d13746 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,92 @@ +# SPDX-FileCopyrightText: : 2022 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: CC0-1.0 +exclude: "^LICENSES" + +repos: +- repo: https://github.com/pre-commit/pre-commit-hooks + rev: v4.4.0 + hooks: + - id: check-merge-conflict + - id: end-of-file-fixer + - id: fix-encoding-pragma + - id: mixed-line-ending + - id: trailing-whitespace + - id: check-added-large-files + args: ["--maxkb=2000"] + + # Sort package imports alphabetically +- repo: https://github.com/PyCQA/isort + rev: 5.12.0 + hooks: + - id: isort + args: ["--profile", "black", "--filter-files"] + + # Convert relative imports to absolute imports +- repo: https://github.com/MarcoGorelli/absolufy-imports + rev: v0.3.1 + hooks: + - id: absolufy-imports + + # Find common spelling mistakes in comments and docstrings +- repo: https://github.com/codespell-project/codespell + rev: v2.2.4 + hooks: + - id: codespell + args: ['--ignore-regex="(\b[A-Z]+\b)"', '--ignore-words-list=fom,appartment,bage,ore,setis,tabacco,berfore'] # Ignore capital case words, e.g. country codes + types_or: [python, rst, markdown] + files: ^(scripts|doc)/ + + # Make docstrings PEP 257 compliant +- repo: https://github.com/PyCQA/docformatter + rev: v1.7.1 + hooks: + - id: docformatter + args: ["--in-place", "--make-summary-multi-line", "--pre-summary-newline"] + +- repo: https://github.com/keewis/blackdoc + rev: v0.3.8 + hooks: + - id: blackdoc + + # Formatting with "black" coding style +- repo: https://github.com/psf/black + rev: 23.3.0 + hooks: + # Format Python files + - id: black + # Format Jupyter Python notebooks + - id: black-jupyter + + # Remove output from Jupyter notebooks +- repo: https://github.com/aflc/pre-commit-jupyter + rev: v1.2.1 + hooks: + - id: jupyter-notebook-cleanup + args: ["--remove-kernel-metadata"] + + # Do YAML formatting (before the linter checks it for misses) +- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks + rev: v2.9.0 + hooks: + - id: pretty-format-yaml + args: [--autofix, --indent, "2", --preserve-quotes] + + # Format Snakemake rule / workflow files +- repo: https://github.com/snakemake/snakefmt + rev: v0.8.4 + hooks: + - id: snakefmt + + # For cleaning jupyter notebooks +- repo: https://github.com/aflc/pre-commit-jupyter + rev: v1.2.1 + hooks: + - id: jupyter-notebook-cleanup + exclude: examples/solve-on-remote.ipynb + + # Check for FSFE REUSE compliance (licensing) +- repo: https://github.com/fsfe/reuse-tool + rev: v1.1.2 + hooks: + - id: reuse diff --git a/.readthedocs.yml b/.readthedocs.yml index d6b81a40..900dba1e 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -1,11 +1,17 @@ -# SPDX-FileCopyrightText: : 2017-2020 The PyPSA-Eur Authors +# SPDX-FileCopyrightText: : 2017-2023 The PyPSA-Eur Authors # # SPDX-License-Identifier: CC0-1.0 version: 2 +build: + os: ubuntu-22.04 + tools: + python: "3.11" + apt_packages: + - graphviz + python: - version: 3.8 install: - - requirements: doc/requirements.txt - system_packages: true + - requirements: doc/requirements.txt + system_packages: false diff --git a/.reuse/dep5 b/.reuse/dep5 index eb64a172..cd8e2660 100644 --- a/.reuse/dep5 +++ b/.reuse/dep5 @@ -1,28 +1,36 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: PyPSA-Eur -Upstream-Contact: Tom Brown +Upstream-Contact: Tom Brown Source: https://github.com/pypsa/pypsa-eur Files: doc/img/* -Copyright: 2019 Fabian Neumann (KIT) +Copyright: 2019-2023 The PyPSA-Eur Authors +License: CC-BY-4.0 + +Files: doc/data.csv +Copyright: 2019-2023 The PyPSA-Eur Authors License: CC-BY-4.0 Files: doc/configtables/* -Copyright: 2019 Fabian Neumann (KIT) +Copyright: 2019-2023 The PyPSA-Eur Authors License: CC-BY-4.0 Files: data/* -Copyright: 2017-2020 The PyPSA-Eur Authors +Copyright: 2017-2023 The PyPSA-Eur Authors License: CC-BY-4.0 Files: .github/* -Copyright: 2019 The PyPSA-Eur Authors +Copyright: 2019-2023 The PyPSA-Eur Authors License: CC0-1.0 Files: matplotlibrc -Copyright: : 2017-2020 The PyPSA-Eur Authors +Copyright: 2017-2023 The PyPSA-Eur Authors License: CC0-1.0 Files: borg-it -Copyright: : 2017-2020 The PyPSA-Eur Authors +Copyright: 2017-2023 The PyPSA-Eur Authors License: CC0-1.0 + +Files: graphics/* +Copyright: 2017-2023 The PyPSA-Eur Authors +License: CC-BY-4.0 diff --git a/.syncignore-receive b/.syncignore-receive index 717245c3..d2e9b76d 100644 --- a/.syncignore-receive +++ b/.syncignore-receive @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: : 2021 The PyPSA-Eur Authors +# SPDX-FileCopyrightText: : 2021-2023 The PyPSA-Eur Authors # # SPDX-License-Identifier: CC0-1.0 @@ -15,5 +15,7 @@ __pycache__ notebooks doc cutouts -data/bundle -*.nc \ No newline at end of file +data +benchmarks +*.nc +configs diff --git a/.syncignore-send b/.syncignore-send index 9390d0e5..4e6e9a8c 100644 --- a/.syncignore-send +++ b/.syncignore-send @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: : 2021 The PyPSA-Eur Authors +# SPDX-FileCopyrightText: : 2021-2023 The PyPSA-Eur Authors # # SPDX-License-Identifier: CC0-1.0 diff --git a/CITATION.cff b/CITATION.cff index a28562fd..712a02f3 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -3,20 +3,21 @@ # SPDX-License-Identifier: CC0-1.0 cff-version: 1.1.0 -message: "If you use this package, please cite the corresponding manuscript in Energy Strategy Reviews." -title: "PyPSA-Eur: An open optimisation model of the European transmission system" +message: "If you use this package, please cite it in the following way." +title: "PyPSA-Eur: An open sector-coupled optimisation model of the European energy system" repository: https://github.com/pypsa/pypsa-eur -version: 0.4.0 +version: 0.8.0 license: MIT -journal: Energy Strategy Reviews -doi: 10.1016/j.esr.2018.08.012 authors: - - family-names: Hörsch - given-names: Jonas - orcid: https://orcid.org/0000-0001-9438-767X - family-names: Brown given-names: Tom orcid: https://orcid.org/0000-0001-5898-1911 + - family-names: Victoria + given-names: Marta + orcid: https://orcid.org/0000-0003-1665-1281 + - family-names: Zeyen + given-names: Elisabeth + orcid: https://orcid.org/0000-0002-7262-3296 - family-names: Hofmann given-names: Fabian orcid: https://orcid.org/0000-0002-6604-5450 @@ -32,3 +33,6 @@ authors: - family-names: Schlachtberger given-names: David orcid: https://orcid.org/0000-0002-8167-8213 + - family-names: Hörsch + given-names: Jonas + orcid: https://orcid.org/0000-0001-9438-767X diff --git a/LICENSES/MIT.txt b/LICENSES/MIT.txt index dc10fd32..87f6d959 100644 --- a/LICENSES/MIT.txt +++ b/LICENSES/MIT.txt @@ -1,6 +1,6 @@ MIT License -Copyright 2017-2021 The PyPSA-Eur Authors +Copyright 2017-2023 The PyPSA-Eur Authors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/README.md b/README.md index ab4d63b3..79cdfa65 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ @@ -7,44 +7,54 @@ SPDX-License-Identifier: CC-BY-4.0 [![Build Status](https://github.com/pypsa/pypsa-eur/actions/workflows/ci.yaml/badge.svg)](https://github.com/PyPSA/pypsa-eur/actions) [![Documentation](https://readthedocs.org/projects/pypsa-eur/badge/?version=latest)](https://pypsa-eur.readthedocs.io/en/latest/?badge=latest) ![Size](https://img.shields.io/github/repo-size/pypsa/pypsa-eur) -[![Zenodo](https://zenodo.org/badge/DOI/10.5281/zenodo.3520874.svg)](https://doi.org/10.5281/zenodo.3520874) -[![Gitter](https://badges.gitter.im/PyPSA/community.svg)](https://gitter.im/PyPSA/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) +[![Zenodo PyPSA-Eur](https://zenodo.org/badge/DOI/10.5281/zenodo.3520874.svg)](https://doi.org/10.5281/zenodo.3520874) +[![Zenodo PyPSA-Eur-Sec](https://zenodo.org/badge/DOI/10.5281/zenodo.3938042.svg)](https://doi.org/10.5281/zenodo.3938042) [![Snakemake](https://img.shields.io/badge/snakemake-≥5.0.0-brightgreen.svg?style=flat)](https://snakemake.readthedocs.io) [![REUSE status](https://api.reuse.software/badge/github.com/pypsa/pypsa-eur)](https://api.reuse.software/info/github.com/pypsa/pypsa-eur) +[![Stack Exchange questions](https://img.shields.io/stackexchange/stackoverflow/t/pypsa)](https://stackoverflow.com/questions/tagged/pypsa) -# PyPSA-Eur: An Open Optimisation Model of the European Transmission System +# PyPSA-Eur: A Sector-Coupled Open Optimisation Model of the European Energy System - -PyPSA-Eur is an open model dataset of the European power system at the -transmission network level that covers the full ENTSO-E area. -The model is suitable both for operational studies and generation and transmission expansion planning studies. +PyPSA-Eur is an open model dataset of the European energy system at the +transmission network level that covers the full ENTSO-E area. The model is suitable both for operational studies and generation and transmission expansion planning studies. The continental scope and highly resolved spatial scale enables a proper description of the long-range smoothing effects for renewable power generation and their varying resource availability. + + + The model is described in the [documentation](https://pypsa-eur.readthedocs.io) and in the paper [PyPSA-Eur: An Open Optimisation Model of the European Transmission System](https://arxiv.org/abs/1806.01613), 2018, [arXiv:1806.01613](https://arxiv.org/abs/1806.01613). +The model building routines are defined through a snakemake workflow. +Please see the [documentation](https://pypsa-eur.readthedocs.io/) +for installation instructions and other useful information about the snakemake workflow. +The model is designed to be imported into the open toolbox +[PyPSA](https://github.com/PyPSA/PyPSA). -**WARNING**: Please read the [limitations](https://pypsa-eur.readthedocs.io/en/latest/limitations.html) section of the -documentation and paper carefully before using the model. We do not -recommend to use the full resolution network model for simulations. At -high granularity the assignment of loads and generators to the nearest -network node may not be a correct assumption, depending on the topology of the underlying distribution grid, -and local grid -bottlenecks may cause unrealistic load-shedding or generator -curtailment. We recommend to cluster the network to a couple of -hundred nodes to remove these local inconsistencies. See the -discussion in Section 3.4 "Model validation" of the paper. +**WARNING**: PyPSA-Eur is under active development and has several +[limitations](https://pypsa-eur.readthedocs.io/en/latest/limitations.html) +which you should understand before using the model. The github repository +[issues](https://github.com/PyPSA/pypsa-eur/issues) collect known topics we are +working on (please feel free to help or make suggestions). The +[documentation](https://pypsa-eur.readthedocs.io/) remains somewhat patchy. You +can find showcases of the model's capabilities in the preprint [Benefits of a +Hydrogen Network in Europe](https://arxiv.org/abs/2207.05816), a [paper in Joule +with a description of the industry sector](https://arxiv.org/abs/2109.09563), or +in [a 2021 presentation at EMP-E](https://nworbmot.org/energy/brown-empe.pdf). +We cannot support this model if you choose to use it. We do not recommend to use +the full resolution network model for simulations. At high granularity the +assignment of loads and generators to the nearest network node may not be a +correct assumption, depending on the topology of the underlying distribution +grid, and local grid bottlenecks may cause unrealistic load-shedding or +generator curtailment. We recommend to cluster the network to a couple of +hundred nodes to remove these local inconsistencies. See the discussion in +Section 3.4 "Model validation" of the paper. -![PyPSA-Eur Grid Model](doc/img/base.png) -![PyPSA-Eur Grid Model Simplified](doc/img/elec_s_X.png) - -The model building routines are defined through a snakemake workflow. The model is designed to be imported into the open toolbox -[PyPSA](https://github.com/PyPSA/PyPSA) for operational studies as -well as generation and transmission expansion planning studies. +![PyPSA-Eur Grid Model](doc/img/elec.png) The dataset consists of: @@ -60,9 +70,38 @@ The dataset consists of: - Renewable time series based on ERA5 and SARAH, assembled using the [atlite tool](https://github.com/FRESNA/atlite). - Geographical potentials for wind and solar generators based on land use (CORINE) and excluding nature reserves (Natura2000) are computed with the [atlite library](https://github.com/PyPSA/atlite). +A sector-coupled extension adds demand +and supply for the following sectors: transport, space and water +heating, biomass, industry and industrial feedstocks, agriculture, +forestry and fishing. This completes the energy system and includes +all greenhouse gas emitters except waste management and land use. + +This diagram gives an overview of the sectors and the links between +them: + +![sector diagram](graphics/multisector_figure.png) + +Each of these sectors is built up on the transmission network nodes +from [PyPSA-Eur](https://github.com/PyPSA/pypsa-eur): + +![network diagram](https://github.com/PyPSA/pypsa-eur/blob/master/doc/img/base.png?raw=true) + +For computational reasons the model is usually clustered down +to 50-200 nodes. + Already-built versions of the model can be found in the accompanying [Zenodo repository](https://doi.org/10.5281/zenodo.3601881). -A version of the model that adds building heating, transport and -industry sectors to the model, as well as gas networks, can be found -in the [PyPSA-Eur-Sec](https://github.com/PyPSA/pypsa-eur-sec) repository. +# Contributing and Support +We strongly welcome anyone interested in contributing to this project. If you have any ideas, suggestions or encounter problems, feel invited to file issues or make pull requests on GitHub. +- In case of code-related **questions**, please post on [stack overflow](https://stackoverflow.com/questions/tagged/pypsa). +- For non-programming related and more general questions please refer to the [mailing list](https://groups.google.com/group/pypsa). +- To **discuss** with other PyPSA users, organise projects, share news, and get in touch with the community you can use the [discord server](https://discord.com/invite/AnuJBk23FU). +- For **bugs and feature requests**, please use the [PyPSA-Eur Github Issues page](https://github.com/PyPSA/pypsa-eur/issues). + +# Licence + +The code in PyPSA-Eur is released as free software under the +[MIT License](https://opensource.org/licenses/MIT), see `LICENSE.txt`. +However, different licenses and terms of use may apply to the various +input data. diff --git a/Snakefile b/Snakefile index 43f218d7..27ed4dfb 100644 --- a/Snakefile +++ b/Snakefile @@ -1,425 +1,100 @@ -# SPDX-FileCopyrightText: : 2017-2020 The PyPSA-Eur Authors +# SPDX-FileCopyrightText: : 2017-2023 The PyPSA-Eur Authors # # SPDX-License-Identifier: MIT from os.path import normpath, exists -from shutil import copyfile, move +from shutil import copyfile, move, rmtree from snakemake.remote.HTTP import RemoteProvider as HTTPRemoteProvider + HTTP = HTTPRemoteProvider() -if not exists("config.yaml"): - copyfile("config.default.yaml", "config.yaml") +from snakemake.utils import min_version -configfile: "config.yaml" +min_version("7.7") -COSTS="data/costs.csv" -ATLITE_NPROCESSES = config['atlite'].get('nprocesses', 4) + +if not exists("config/config.yaml"): + copyfile("config/config.default.yaml", "config/config.yaml") + + +configfile: "config/config.yaml" + + +COSTS = f"data/costs_{config['costs']['year']}.csv" +ATLITE_NPROCESSES = config["atlite"].get("nprocesses", 4) + +run = config.get("run", {}) +RDIR = run["name"] + "/" if run.get("name") else "" +CDIR = RDIR if not run.get("shared_cutouts") else "" + +LOGS = "logs/" + RDIR +BENCHMARKS = "benchmarks/" + RDIR +RESOURCES = "resources/" + RDIR if not run.get("shared_resources") else "resources/" +RESULTS = "results/" + RDIR + + +localrules: + purge, wildcard_constraints: - simpl="[a-zA-Z0-9]*|all", + simpl="[a-zA-Z0-9]*", clusters="[0-9]+m?|all", - ll="(v|c)([0-9\.]+|opt|all)|all", - opts="[-+a-zA-Z0-9\.]*" + ll="(v|c)([0-9\.]+|opt)", + opts="[-+a-zA-Z0-9\.]*", + sector_opts="[-+a-zA-Z0-9\.\s]*", -rule cluster_all_networks: - input: expand("networks/elec_s{simpl}_{clusters}.nc", **config['scenario']) +include: "rules/common.smk" +include: "rules/collect.smk" +include: "rules/retrieve.smk" +include: "rules/build_electricity.smk" +include: "rules/build_sector.smk" +include: "rules/solve_electricity.smk" +include: "rules/postprocess.smk" -rule extra_components_all_networks: - input: expand("networks/elec_s{simpl}_{clusters}_ec.nc", **config['scenario']) +if config["foresight"] == "overnight": + + include: "rules/solve_overnight.smk" -rule prepare_all_networks: - input: expand("networks/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.nc", **config['scenario']) +if config["foresight"] == "myopic": + + include: "rules/solve_myopic.smk" -rule solve_all_networks: - input: expand("results/networks/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.nc", **config['scenario']) +rule purge: + message: + "Purging generated resources, results and docs. Downloads are kept." + run: + rmtree("resources/", ignore_errors=True) + rmtree("results/", ignore_errors=True) + rmtree("doc/_build", ignore_errors=True) -if config['enable'].get('prepare_links_p_nom', False): - rule prepare_links_p_nom: - output: 'data/links_p_nom.csv' - log: 'logs/prepare_links_p_nom.log' - threads: 1 - resources: mem_mb=500 - script: 'scripts/prepare_links_p_nom.py' - - -datafiles = ['ch_cantons.csv', 'je-e-21.03.02.xls', - 'eez/World_EEZ_v8_2014.shp', 'EIA_hydro_generation_2000_2014.csv', - 'hydro_capacities.csv', 'naturalearth/ne_10m_admin_0_countries.shp', - 'NUTS_2013_60M_SH/data/NUTS_RG_60M_2013.shp', 'nama_10r_3popgdp.tsv.gz', - 'nama_10r_3gdp.tsv.gz', 'corine/g250_clc06_V18_5.tif'] - - -if not config.get('tutorial', False): - datafiles.extend(["natura/Natura2000_end2015.shp", "GEBCO_2014_2D.nc"]) - - -if config['enable'].get('retrieve_databundle', True): - rule retrieve_databundle: - output: expand('data/bundle/{file}', file=datafiles) - log: "logs/retrieve_databundle.log" - script: 'scripts/retrieve_databundle.py' - -def determine_load_data(): - if int(config["snapshots"]["start"][:4]) > 2018: - return "data.open-power-system-data.org/time_series/2020-10-06/time_series_60min_singleindex.csv" - else: - return "data.open-power-system-data.org/time_series/2019-06-05/time_series_60min_singleindex.csv" - -rule retrieve_load_data: - input: HTTP.remote(determine_load_data(), keep_local=True, static=True) - output: "data/load_raw.csv" - run: move(input[0], output[0]) - - -rule build_load_data: - input: "data/load_raw.csv" - output: "resources/load.csv" - log: "logs/build_load_data.log" - script: 'scripts/build_load_data.py' - - -rule build_powerplants: - input: - base_network="networks/base.nc", - custom_powerplants="data/custom_powerplants.csv" - output: "resources/powerplants.csv" - log: "logs/build_powerplants.log" - threads: 1 - resources: mem_mb=500 - script: "scripts/build_powerplants.py" - - -rule base_network: - input: - eg_buses='data/entsoegridkit/buses.csv', - eg_lines='data/entsoegridkit/lines.csv', - eg_links='data/entsoegridkit/links.csv', - eg_converters='data/entsoegridkit/converters.csv', - eg_transformers='data/entsoegridkit/transformers.csv', - parameter_corrections='data/parameter_corrections.yaml', - links_p_nom='data/links_p_nom.csv', - links_tyndp='data/links_tyndp.csv', - country_shapes='resources/country_shapes.geojson', - offshore_shapes='resources/offshore_shapes.geojson', - europe_shape='resources/europe_shape.geojson' - output: "networks/base.nc" - log: "logs/base_network.log" - benchmark: "benchmarks/base_network" - threads: 1 - resources: mem_mb=500 - script: "scripts/base_network.py" - - -rule build_shapes: - input: - naturalearth='data/bundle/naturalearth/ne_10m_admin_0_countries.shp', - eez='data/bundle/eez/World_EEZ_v8_2014.shp', - nuts3='data/bundle/NUTS_2013_60M_SH/data/NUTS_RG_60M_2013.shp', - nuts3pop='data/bundle/nama_10r_3popgdp.tsv.gz', - nuts3gdp='data/bundle/nama_10r_3gdp.tsv.gz', - ch_cantons='data/bundle/ch_cantons.csv', - ch_popgdp='data/bundle/je-e-21.03.02.xls' +rule dag: + message: + "Creating DAG of workflow." output: - country_shapes='resources/country_shapes.geojson', - offshore_shapes='resources/offshore_shapes.geojson', - europe_shape='resources/europe_shape.geojson', - nuts3_shapes='resources/nuts3_shapes.geojson' - log: "logs/build_shapes.log" - threads: 1 - resources: mem_mb=500 - script: "scripts/build_shapes.py" + dot=RESOURCES + "dag.dot", + pdf=RESOURCES + "dag.pdf", + png=RESOURCES + "dag.png", + conda: + "envs/environment.yaml" + shell: + """ + snakemake --rulegraph all | sed -n "/digraph/,\$p" > {output.dot} + dot -Tpdf -o {output.pdf} {output.dot} + dot -Tpng -o {output.png} {output.dot} + """ -rule build_bus_regions: - input: - country_shapes='resources/country_shapes.geojson', - offshore_shapes='resources/offshore_shapes.geojson', - base_network="networks/base.nc" +rule doc: + message: + "Build documentation." output: - regions_onshore="resources/regions_onshore.geojson", - regions_offshore="resources/regions_offshore.geojson" - log: "logs/build_bus_regions.log" - threads: 1 - resources: mem_mb=1000 - script: "scripts/build_bus_regions.py" - -if config['enable'].get('build_cutout', False): - rule build_cutout: - input: - regions_onshore="resources/regions_onshore.geojson", - regions_offshore="resources/regions_offshore.geojson" - output: "cutouts/{cutout}.nc" - log: "logs/build_cutout/{cutout}.log" - benchmark: "benchmarks/build_cutout_{cutout}" - threads: ATLITE_NPROCESSES - resources: mem_mb=ATLITE_NPROCESSES * 1000 - script: "scripts/build_cutout.py" - - -if config['enable'].get('retrieve_cutout', True): - rule retrieve_cutout: - input: HTTP.remote("https://tubcloud.tu-berlin.de/s/AJ43GAzGbo8SmBn/download?path=%2F&files={cutout}.nc", keep_local=True, static=True) - output: "cutouts/{cutout}.nc" - run: move(input[0], output[0]) - - -if config['enable'].get('build_natura_raster', False): - rule build_natura_raster: - input: - natura="data/bundle/natura/Natura2000_end2015.shp", - cutouts=expand("cutouts/{cutouts}.nc", **config['atlite']) - output: "resources/natura.tiff" - log: "logs/build_natura_raster.log" - script: "scripts/build_natura_raster.py" - - -if config['enable'].get('retrieve_natura_raster', True): - rule retrieve_natura_raster: - input: HTTP.remote("zenodo.org/record/4706686/files/natura.tiff", keep_local=True, static=True) - output: "resources/natura.tiff" - run: move(input[0], output[0]) - - -rule build_renewable_profiles: - input: - base_network="networks/base.nc", - corine="data/bundle/corine/g250_clc06_V18_5.tif", - natura="resources/natura.tiff", - gebco=lambda w: ("data/bundle/GEBCO_2014_2D.nc" - if "max_depth" in config["renewable"][w.technology].keys() - else []), - country_shapes='resources/country_shapes.geojson', - offshore_shapes='resources/offshore_shapes.geojson', - regions=lambda w: ("resources/regions_onshore.geojson" - if w.technology in ('onwind', 'solar') - else "resources/regions_offshore.geojson"), - cutout=lambda w: "cutouts/" + config["renewable"][w.technology]['cutout'] + ".nc" - output: profile="resources/profile_{technology}.nc", - log: "logs/build_renewable_profile_{technology}.log" - benchmark: "benchmarks/build_renewable_profiles_{technology}" - threads: ATLITE_NPROCESSES - resources: mem_mb=ATLITE_NPROCESSES * 5000 - script: "scripts/build_renewable_profiles.py" - -def determine_hydro_input(w): - if int(config['snapshots']['end'][0:4])<2015: - return 'data/bundle/EIA_hydro_generation_2000_2014.csv' - if int(config['snapshots']['end'][0:4])>=2015: - return '../data/EIA_hydro_generation_2000_2020.csv' - -if 'hydro' in config['renewable'].keys(): - rule build_hydro_profile: - input: - country_shapes='resources/country_shapes.geojson', - eia_hydro_generation=determine_hydro_input, - cutout="cutouts/" + config["renewable"]['hydro']['cutout'] + ".nc" - output: 'resources/profile_hydro.nc' - log: "logs/build_hydro_profile.log" - resources: mem_mb=5000 - script: 'scripts/build_hydro_profile.py' - -if config['lines']['dynamic_line_rating']['activate']: - rule build_line_rating: - input: - base_network="networks/base.nc", - cutout="cutouts/" + config["lines"]['cutout'] + ".nc" - output: - output="resources/line_rating.nc" - log: "logs/build_line_rating.log" - benchmark: "benchmarks/build_line_rating" - threads: ATLITE_NPROCESSES - resources: mem_mb=ATLITE_NPROCESSES * 1000 - script: "scripts/build_line_rating.py" - -rule add_electricity: - input: - base_network = "networks/base.nc", - tech_costs=COSTS, - regions="resources/regions_onshore.geojson", - line_rating="resources/line_rating.nc" if config['lines']['dynamic_line_rating']['activate'] else "networks/base.nc", - powerplants='resources/powerplants.csv', - hydro_capacities='data/bundle/hydro_capacities.csv', - geth_hydro_capacities='data/geth2015_hydro_capacities.csv', - load='resources/load.csv', - nuts3_shapes='resources/nuts3_shapes.geojson', - **{f"profile_{tech}": f"resources/profile_{tech}.nc" - for tech in config['renewable']} - output: "networks/elec.nc" - log: "logs/add_electricity.log" - benchmark: "benchmarks/add_electricity" - threads: 1 - resources: mem_mb=5000 - script: "scripts/add_electricity.py" - - -rule simplify_network: - input: - network='networks/elec.nc', - tech_costs=COSTS, - regions_onshore="resources/regions_onshore.geojson", - regions_offshore="resources/regions_offshore.geojson" - output: - network='networks/elec_s{simpl}.nc', - regions_onshore="resources/regions_onshore_elec_s{simpl}.geojson", - regions_offshore="resources/regions_offshore_elec_s{simpl}.geojson", - busmap='resources/busmap_elec_s{simpl}.csv', - connection_costs='resources/connection_costs_s{simpl}.csv' - log: "logs/simplify_network/elec_s{simpl}.log" - benchmark: "benchmarks/simplify_network/elec_s{simpl}" - threads: 1 - resources: mem_mb=4000 - script: "scripts/simplify_network.py" - - -rule cluster_network: - input: - network='networks/elec_s{simpl}.nc', - regions_onshore="resources/regions_onshore_elec_s{simpl}.geojson", - regions_offshore="resources/regions_offshore_elec_s{simpl}.geojson", - busmap=ancient('resources/busmap_elec_s{simpl}.csv'), - custom_busmap=("data/custom_busmap_elec_s{simpl}_{clusters}.csv" - if config["enable"].get("custom_busmap", False) else []), - tech_costs=COSTS - output: - network='networks/elec_s{simpl}_{clusters}.nc', - regions_onshore="resources/regions_onshore_elec_s{simpl}_{clusters}.geojson", - regions_offshore="resources/regions_offshore_elec_s{simpl}_{clusters}.geojson", - busmap="resources/busmap_elec_s{simpl}_{clusters}.csv", - linemap="resources/linemap_elec_s{simpl}_{clusters}.csv" - log: "logs/cluster_network/elec_s{simpl}_{clusters}.log" - benchmark: "benchmarks/cluster_network/elec_s{simpl}_{clusters}" - threads: 1 - resources: mem_mb=6000 - script: "scripts/cluster_network.py" - - -rule add_extra_components: - input: - network='networks/elec_s{simpl}_{clusters}.nc', - tech_costs=COSTS, - output: 'networks/elec_s{simpl}_{clusters}_ec.nc' - log: "logs/add_extra_components/elec_s{simpl}_{clusters}.log" - benchmark: "benchmarks/add_extra_components/elec_s{simpl}_{clusters}_ec" - threads: 1 - resources: mem_mb=3000 - script: "scripts/add_extra_components.py" - - -rule prepare_network: - input: 'networks/elec_s{simpl}_{clusters}_ec.nc', tech_costs=COSTS - output: 'networks/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.nc' - log: "logs/prepare_network/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.log" - benchmark: "benchmarks/prepare_network/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}" - threads: 1 - resources: mem_mb=4000 - script: "scripts/prepare_network.py" - - -def memory(w): - factor = 3. - for o in w.opts.split('-'): - m = re.match(r'^(\d+)h$', o, re.IGNORECASE) - if m is not None: - factor /= int(m.group(1)) - break - for o in w.opts.split('-'): - m = re.match(r'^(\d+)seg$', o, re.IGNORECASE) - if m is not None: - factor *= int(m.group(1)) / 8760 - break - if w.clusters.endswith('m'): - return int(factor * (18000 + 180 * int(w.clusters[:-1]))) - elif w.clusters == "all": - return int(factor * (18000 + 180 * 4000)) - else: - return int(factor * (10000 + 195 * int(w.clusters))) - - -rule solve_network: - input: "networks/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.nc" - output: "results/networks/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.nc" - log: - solver=normpath("logs/solve_network/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}_solver.log"), - python="logs/solve_network/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}_python.log", - memory="logs/solve_network/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}_memory.log" - benchmark: "benchmarks/solve_network/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}" - threads: 4 - resources: mem_mb=memory - shadow: "minimal" - script: "scripts/solve_network.py" - - -rule solve_operations_network: - input: - unprepared="networks/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.nc", - optimized="results/networks/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.nc" - output: "results/networks/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}_op.nc" - log: - solver=normpath("logs/solve_operations_network/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}_op_solver.log"), - python="logs/solve_operations_network/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}_op_python.log", - memory="logs/solve_operations_network/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}_op_memory.log" - benchmark: "benchmarks/solve_operations_network/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}" - threads: 4 - resources: mem_mb=(lambda w: 5000 + 372 * int(w.clusters)) - shadow: "minimal" - script: "scripts/solve_operations_network.py" - - -rule plot_network: - input: - network="results/networks/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.nc", - tech_costs=COSTS - output: - only_map="results/plots/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}_{attr}.{ext}", - ext="results/plots/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}_{attr}_ext.{ext}" - log: "logs/plot_network/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}_{attr}_{ext}.log" - script: "scripts/plot_network.py" - - -def input_make_summary(w): - # It's mildly hacky to include the separate costs input as first entry - if w.ll.endswith("all"): - ll = config["scenario"]["ll"] - if len(w.ll) == 4: - ll = [l for l in ll if l[0] == w.ll[0]] - else: - ll = w.ll - return ([COSTS] + - expand("results/networks/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.nc", - ll=ll, - **{k: config["scenario"][k] if getattr(w, k) == "all" else getattr(w, k) - for k in ["simpl", "clusters", "opts"]})) - - -rule make_summary: - input: input_make_summary - output: directory("results/summaries/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}_{country}") - log: "logs/make_summary/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}_{country}.log", - script: "scripts/make_summary.py" - - -rule plot_summary: - input: "results/summaries/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}_{country}" - output: "results/plots/summary_{summary}_elec_s{simpl}_{clusters}_ec_l{ll}_{opts}_{country}.{ext}" - log: "logs/plot_summary/{summary}_elec_s{simpl}_{clusters}_ec_l{ll}_{opts}_{country}_{ext}.log" - script: "scripts/plot_summary.py" - - -def input_plot_p_nom_max(w): - return [("networks/elec_s{simpl}{maybe_cluster}.nc" - .format(maybe_cluster=('' if c == 'full' else ('_' + c)), **w)) - for c in w.clusts.split(",")] - - -rule plot_p_nom_max: - input: input_plot_p_nom_max - output: "results/plots/elec_s{simpl}_cum_p_nom_max_{clusts}_{techs}_{country}.{ext}" - log: "logs/plot_p_nom_max/elec_s{simpl}_{clusts}_{techs}_{country}_{ext}.log" - script: "scripts/plot_p_nom_max.py" + directory("doc/_build"), + shell: + "make -C doc html" diff --git a/config.default.yaml b/config.default.yaml deleted file mode 100755 index 888e054d..00000000 --- a/config.default.yaml +++ /dev/null @@ -1,348 +0,0 @@ -# SPDX-FileCopyrightText: : 2017-2020 The PyPSA-Eur Authors -# -# SPDX-License-Identifier: CC0-1.0 - -version: 0.4.0 -tutorial: false - -logging: - level: INFO - format: '%(levelname)s:%(name)s:%(message)s' - -summary_dir: results - -scenario: - simpl: [''] - ll: ['copt'] - clusters: [37, 128, 256, 512, 1024] - opts: [Co2L-3H] - -countries: ['AL', 'AT', 'BA', 'BE', 'BG', 'CH', 'CZ', 'DE', 'DK', 'EE', 'ES', 'FI', 'FR', 'GB', 'GR', 'HR', 'HU', 'IE', 'IT', 'LT', 'LU', 'LV', 'ME', 'MK', 'NL', 'NO', 'PL', 'PT', 'RO', 'RS', 'SE', 'SI', 'SK'] - -clustering: - simplify: - to_substations: false # network is simplified to nodes with positive or negative power injection (i.e. substations or offwind connections) - -snapshots: - start: "2013-01-01" - end: "2014-01-01" - closed: 'left' # end is not inclusive - -enable: - prepare_links_p_nom: false - retrieve_databundle: true - build_cutout: false - retrieve_cutout: true - build_natura_raster: false - retrieve_natura_raster: true - custom_busmap: false - -electricity: - voltages: [220., 300., 380.] - co2limit: 7.75e+7 # 0.05 * 3.1e9*0.5 - co2base: 1.487e+9 - agg_p_nom_limits: data/agg_p_nom_minmax.csv - # parameters used for the min renewable constraint, can be used with the RE wildcard in opts - renewable_aim: # installed capacity aim 2030 of BMWi for Germany https://www.bmwi.de/Redaktion/DE/Downloads/Energie/220111_eroeffnungsbilanz_klimaschutz.pdf?__blob=publicationFile&v=22 - onwind: 100 #GW - offwind: 30 #GW - solar: 200 #GW - # parameters used for the base load constraint, can be used with the BL wildcard in opts - base_load: - lignite: 0.2 #min_p_pu value for lignite - nuclear: 0.354 - - extendable_carriers: - Generator: [] - StorageUnit: [] # battery, H2 - Store: [battery, H2] - Link: [] - - max_hours: - battery: 6 - H2: 168 - - powerplants_filter: false # use pandas query strings here, e.g. Country not in ['Germany'] - custom_powerplants: false # use pandas query strings here, e.g. Country in ['Germany'] - conventional_carriers: [nuclear, oil, OCGT, CCGT, coal, lignite, geothermal, biomass] - renewable_capacities_from_OPSD: [] # onwind, offwind, solar - - estimate_renewable_capacities: - # Renewable capacities are based on existing capacities reported by IRENA - - # Reference year, any of 2000 to 2020 - year: 2020 - # Artificially limit maximum capacities to factor * (IRENA capacities), - # i.e. 110% of 's capacities => expansion_limit: 1.1 - # false: Use estimated renewable potentials determine by the workflow - expansion_limit: false - technology_mapping: - # Wind is the Fueltype in ppm.data.Capacity_stats, onwind, offwind-{ac,dc} the carrier in PyPSA-Eur - Offshore: [offwind-ac, offwind-dc] - Onshore: [onwind] - PV: [solar] - -atlite: - nprocesses: 4 - cutouts: - # use 'base' to determine geographical bounds and time span from config - # base: - # module: era5 - europe-2013-era5: - module: era5 # in priority order - x: [-12., 35.] - y: [33., 72] - dx: 0.3 - dy: 0.3 - time: ['2013', '2013'] - europe-2013-sarah: - module: [sarah, era5] # in priority order - x: [-12., 45.] - y: [33., 65] - dx: 0.2 - dy: 0.2 - time: ['2013', '2013'] - sarah_interpolate: false - sarah_dir: - features: [influx, temperature] - - -renewable: - onwind: - cutout: europe-2013-era5 - resource: - method: wind - turbine: Vestas_V112_3MW - capacity_per_sqkm: 3 # ScholzPhd Tab 4.3.1: 10MW/km^2 - # correction_factor: 0.93 - corine: - # Scholz, Y. (2012). Renewable energy based electricity supply at low costs: - # development of the REMix model and application for Europe. ( p.42 / p.28) - grid_codes: [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, - 24, 25, 26, 27, 28, 29, 31, 32] - distance: 1000 - distance_grid_codes: [1, 2, 3, 4, 5, 6] - natura: true - potential: simple # or conservative - clip_p_max_pu: 1.e-2 - offwind-ac: - cutout: europe-2013-era5 - resource: - method: wind - turbine: NREL_ReferenceTurbine_5MW_offshore - capacity_per_sqkm: 2 - correction_factor: 0.8855 - # proxy for wake losses - # from 10.1016/j.energy.2018.08.153 - # until done more rigorously in #153 - corine: [44, 255] - natura: true - max_depth: 50 - max_shore_distance: 30000 - potential: simple # or conservative - clip_p_max_pu: 1.e-2 - offwind-dc: - cutout: europe-2013-era5 - resource: - method: wind - turbine: NREL_ReferenceTurbine_5MW_offshore - # ScholzPhd Tab 4.3.1: 10MW/km^2 - capacity_per_sqkm: 2 - correction_factor: 0.8855 - # proxy for wake losses - # from 10.1016/j.energy.2018.08.153 - # until done more rigorously in #153 - corine: [44, 255] - natura: true - max_depth: 50 - min_shore_distance: 30000 - potential: simple # or conservative - clip_p_max_pu: 1.e-2 - solar: - cutout: europe-2013-sarah - resource: - method: pv - panel: CSi - orientation: - slope: 35. - azimuth: 180. - capacity_per_sqkm: 1.7 # ScholzPhd Tab 4.3.1: 170 MW/km^2 - # Correction factor determined by comparing uncorrected area-weighted full-load hours to those - # published in Supplementary Data to - # Pietzcker, Robert Carl, et al. "Using the sun to decarbonize the power - # sector: The economic potential of photovoltaics and concentrating solar - # power." Applied Energy 135 (2014): 704-720. - # This correction factor of 0.854337 may be in order if using reanalysis data. - # for discussion refer to https://github.com/PyPSA/pypsa-eur/pull/304 - # correction_factor: 0.854337 - corine: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, - 14, 15, 16, 17, 18, 19, 20, 26, 31, 32] - natura: true - potential: simple # or conservative - clip_p_max_pu: 1.e-2 - hydro: - cutout: europe-2013-era5 - carriers: [ror, PHS, hydro] - PHS_max_hours: 6 - hydro_max_hours: "energy_capacity_totals_by_country" # one of energy_capacity_totals_by_country, estimate_by_large_installations or a float - clip_min_inflow: 1.0 - -lines: - types: - 220.: "Al/St 240/40 2-bundle 220.0" - 300.: "Al/St 240/40 3-bundle 300.0" - 380.: "Al/St 240/40 4-bundle 380.0" - s_max_pu: 0.7 - s_nom_max: .inf - length_factor: 1.25 - under_construction: 'zero' # 'zero': set capacity to zero, 'remove': remove, 'keep': with full capacity - dynamic_line_rating: - activate: false - # factor compensate overestimation of the wind speed in hourly averaged wind data - correction_factor: 0.95 - max_voltage_difference: 45 # in deg or `false` to disable - max_line_rating: false # over capacity relative to nominal capacity e.g. 1.3 or `false`to disable - -links: - p_max_pu: 1.0 - p_nom_max: .inf - include_tyndp: true - under_construction: 'zero' # 'zero': set capacity to zero, 'remove': remove, 'keep': with full capacity - -transformers: - x: 0.1 - s_nom: 2000. - type: '' - -load: - power_statistics: True # only for files from <2019; set false in order to get ENTSOE transparency data - interpolate_limit: 3 # data gaps up until this size are interpolated linearly - time_shift_for_large_gaps: 1w # data gaps up until this size are copied by copying from - manual_adjustments: true # false - scaling_factor: 1.0 - -costs: - year: 2030 - discountrate: 0.07 # From a Lion Hirth paper, also reflects average of Noothout et al 2016 - USD2013_to_EUR2013: 0.7532 # [EUR/USD] ECB: https://www.ecb.europa.eu/stats/exchange/eurofxref/html/eurofxref-graph-usd.en.html - marginal_cost: # EUR/MWh - solar: 0.01 - onwind: 0.015 - offwind: 0.015 - hydro: 0. - H2: 0. - electrolysis: 0. - fuel cell: 0. - battery: 0. - battery inverter: 0. - emission_prices: # in currency per tonne emission, only used with the option Ep - co2: 0. - -solving: - options: - formulation: kirchhoff - load_shedding: false - noisy_costs: true - min_iterations: 4 - max_iterations: 6 - clip_p_max_pu: 0.01 - skip_iterations: false - track_iterations: false - #nhours: 10 - solver: - name: gurobi - threads: 4 - method: 2 # barrier - crossover: 0 - BarConvTol: 1.e-5 - FeasibilityTol: 1.e-6 - AggFill: 0 - PreDual: 0 - GURO_PAR_BARDENSETHRESH: 200 - # solver: - # 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 - -plotting: - map: - figsize: [7, 7] - boundaries: [-10.2, 29, 35, 72] - p_nom: - bus_size_factor: 5.e+4 - linewidth_factor: 3.e+3 - - costs_max: 800 - costs_threshold: 1 - - energy_max: 15000. - energy_min: -10000. - energy_threshold: 50. - - vre_techs: ["onwind", "offwind-ac", "offwind-dc", "solar", "ror"] - conv_techs: ["OCGT", "CCGT", "Nuclear", "Coal"] - storage_techs: ["hydro+PHS", "battery", "H2"] - load_carriers: ["AC load"] - AC_carriers: ["AC line", "AC transformer"] - link_carriers: ["DC line", "Converter AC-DC"] - tech_colors: - "onwind" : "#235ebc" - "onshore wind" : "#235ebc" - 'offwind' : "#6895dd" - 'offwind-ac' : "#6895dd" - 'offshore wind' : "#6895dd" - 'offshore wind ac' : "#6895dd" - 'offwind-dc' : "#74c6f2" - 'offshore wind dc' : "#74c6f2" - "hydro" : "#08ad97" - "hydro+PHS" : "#08ad97" - "PHS" : "#08ad97" - "hydro reservoir" : "#08ad97" - 'hydroelectricity' : '#08ad97' - "ror" : "#4adbc8" - "run of river" : "#4adbc8" - 'solar' : "#f9d002" - 'solar PV' : "#f9d002" - 'solar thermal' : '#ffef60' - 'biomass' : '#0c6013' - 'solid biomass' : '#06540d' - 'biogas' : '#23932d' - 'waste' : '#68896b' - 'geothermal' : '#ba91b1' - "OCGT" : "#d35050" - "gas" : "#d35050" - "natural gas" : "#d35050" - "CCGT" : "#b20101" - "nuclear" : "#ff9000" - "coal" : "#707070" - "lignite" : "#9e5a01" - "oil" : "#262626" - "H2" : "#ea048a" - "hydrogen storage" : "#ea048a" - "battery" : "#b8ea04" - "Electric load" : "#f9d002" - "electricity" : "#f9d002" - "lines" : "#70af1d" - "transmission lines" : "#70af1d" - "AC-AC" : "#70af1d" - "AC line" : "#70af1d" - "links" : "#8a1caf" - "HVDC links" : "#8a1caf" - "DC-DC" : "#8a1caf" - "DC link" : "#8a1caf" - nice_names: - OCGT: "Open-Cycle Gas" - CCGT: "Combined-Cycle Gas" - offwind-ac: "Offshore Wind (AC)" - offwind-dc: "Offshore Wind (DC)" - onwind: "Onshore Wind" - solar: "Solar" - PHS: "Pumped Hydro Storage" - hydro: "Reservoir & Dam" - battery: "Battery Storage" - H2: "Hydrogen Storage" - lines: "Transmission Lines" - ror: "Run of River" diff --git a/config.tutorial.yaml b/config.tutorial.yaml deleted file mode 100755 index ea624727..00000000 --- a/config.tutorial.yaml +++ /dev/null @@ -1,264 +0,0 @@ -# SPDX-FileCopyrightText: : 2017-2020 The PyPSA-Eur Authors -# -# SPDX-License-Identifier: CC0-1.0 - -version: 0.4.0 -tutorial: true - -logging: - level: INFO - format: '%(levelname)s:%(name)s:%(message)s' - -summary_dir: results - -scenario: - simpl: [''] - ll: ['copt'] - clusters: [5] - opts: [Co2L-24H] - -countries: ['DE'] - -clustering: - simplify: - to_substations: false # network is simplified to nodes with positive or negative power injection (i.e. substations or offwind connections) - -snapshots: - start: "2013-03-01" - end: "2013-04-01" - closed: 'left' # end is not inclusive - -enable: - prepare_links_p_nom: false - retrieve_databundle: true - build_cutout: false - retrieve_cutout: true - build_natura_raster: false - retrieve_natura_raster: true - custom_busmap: false - -electricity: - voltages: [220., 300., 380.] - co2limit: 100.e+6 - - extendable_carriers: - Generator: [OCGT] - StorageUnit: [] #battery, H2 - Store: [battery, H2] - Link: [] - - max_hours: - battery: 6 - H2: 168 - - powerplants_filter: false # use pandas query strings here, e.g. Country not in ['Germany'] - custom_powerplants: false # use pandas query strings here, e.g. Country in ['Germany'] - conventional_carriers: [coal, CCGT] # [nuclear, oil, OCGT, CCGT, coal, lignite, geothermal, biomass] - -atlite: - nprocesses: 4 - cutouts: - europe-2013-era5-tutorial: - module: era5 - x: [4., 15.] - y: [46., 56.] - time: ["2013-03", "2013-03"] - -renewable: - onwind: - cutout: europe-2013-era5-tutorial - resource: - method: wind - turbine: Vestas_V112_3MW - capacity_per_sqkm: 3 # ScholzPhd Tab 4.3.1: 10MW/km^2 - # correction_factor: 0.93 - corine: - # Scholz, Y. (2012). Renewable energy based electricity supply at low costs: - # development of the REMix model and application for Europe. ( p.42 / p.28) - grid_codes: [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, - 24, 25, 26, 27, 28, 29, 31, 32] - distance: 1000 - distance_grid_codes: [1, 2, 3, 4, 5, 6] - natura: true - potential: simple # or conservative - clip_p_max_pu: 1.e-2 - offwind-ac: - cutout: europe-2013-era5-tutorial - resource: - method: wind - turbine: NREL_ReferenceTurbine_5MW_offshore - capacity_per_sqkm: 3 - # correction_factor: 0.93 - corine: [44, 255] - natura: true - max_shore_distance: 30000 - potential: simple # or conservative - clip_p_max_pu: 1.e-2 - offwind-dc: - cutout: europe-2013-era5-tutorial - resource: - method: wind - turbine: NREL_ReferenceTurbine_5MW_offshore - # ScholzPhd Tab 4.3.1: 10MW/km^2 - capacity_per_sqkm: 3 - # correction_factor: 0.93 - corine: [44, 255] - natura: true - min_shore_distance: 30000 - potential: simple # or conservative - clip_p_max_pu: 1.e-2 - solar: - cutout: europe-2013-era5-tutorial - resource: - method: pv - panel: CSi - orientation: - slope: 35. - azimuth: 180. - capacity_per_sqkm: 1.7 # ScholzPhd Tab 4.3.1: 170 MW/km^2 - # Correction factor determined by comparing uncorrected area-weighted full-load hours to those - # published in Supplementary Data to - # Pietzcker, Robert Carl, et al. "Using the sun to decarbonize the power - # sector: The economic potential of photovoltaics and concentrating solar - # power." Applied Energy 135 (2014): 704-720. - # This correction factor of 0.854337 may be in order if using reanalysis data. - # correction_factor: 0.854337 - corine: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, - 14, 15, 16, 17, 18, 19, 20, 26, 31, 32] - natura: true - potential: simple # or conservative - clip_p_max_pu: 1.e-2 - -lines: - types: - 220.: "Al/St 240/40 2-bundle 220.0" - 300.: "Al/St 240/40 3-bundle 300.0" - 380.: "Al/St 240/40 4-bundle 380.0" - s_max_pu: 0.7 - s_nom_max: .inf - length_factor: 1.25 - under_construction: 'zero' # 'zero': set capacity to zero, 'remove': remove, 'keep': with full capacity - -links: - p_max_pu: 1.0 - p_nom_max: .inf - include_tyndp: true - under_construction: 'zero' # 'zero': set capacity to zero, 'remove': remove, 'keep': with full capacity - -transformers: - x: 0.1 - s_nom: 2000. - type: '' - -load: - power_statistics: True # only for files from <2019; set false in order to get ENTSOE transparency data - interpolate_limit: 3 # data gaps up until this size are interpolated linearly - time_shift_for_large_gaps: 1w # data gaps up until this size are copied by copying from - manual_adjustments: true # false - scaling_factor: 1.0 - -costs: - year: 2030 - discountrate: 0.07 # From a Lion Hirth paper, also reflects average of Noothout et al 2016 - USD2013_to_EUR2013: 0.7532 # [EUR/USD] ECB: https://www.ecb.europa.eu/stats/exchange/eurofxref/html/eurofxref-graph-usd.en.html - marginal_cost: - solar: 0.01 - onwind: 0.015 - offwind: 0.015 - H2: 0. - battery: 0. - emission_prices: # in currency per tonne emission, only used with the option Ep - co2: 0. - -solving: - options: - formulation: kirchhoff - load_shedding: false - noisy_costs: true - min_iterations: 1 - max_iterations: 1 - clip_p_max_pu: 0.01 - skip_iterations: false - track_iterations: false - solver: - name: cbc - -plotting: - map: - figsize: [7, 7] - boundaries: [-10.2, 29, 35, 72] - p_nom: - bus_size_factor: 5.e+4 - linewidth_factor: 3.e+3 - - costs_max: 800 - costs_threshold: 1 - - energy_max: 15000. - energy_min: -10000. - energy_threshold: 50. - - vre_techs: ["onwind", "offwind-ac", "offwind-dc", "solar", "ror"] - conv_techs: ["OCGT", "CCGT", "Nuclear", "Coal"] - storage_techs: ["hydro+PHS", "battery", "H2"] - load_carriers: ["AC load"] - AC_carriers: ["AC line", "AC transformer"] - link_carriers: ["DC line", "Converter AC-DC"] - tech_colors: - "onwind" : "#235ebc" - "onshore wind" : "#235ebc" - 'offwind' : "#6895dd" - 'offwind-ac' : "#6895dd" - 'offshore wind' : "#6895dd" - 'offshore wind ac' : "#6895dd" - 'offwind-dc' : "#74c6f2" - 'offshore wind dc' : "#74c6f2" - "hydro" : "#08ad97" - "hydro+PHS" : "#08ad97" - "PHS" : "#08ad97" - "hydro reservoir" : "#08ad97" - 'hydroelectricity' : '#08ad97' - "ror" : "#4adbc8" - "run of river" : "#4adbc8" - 'solar' : "#f9d002" - 'solar PV' : "#f9d002" - 'solar thermal' : '#ffef60' - 'biomass' : '#0c6013' - 'solid biomass' : '#06540d' - 'biogas' : '#23932d' - 'waste' : '#68896b' - 'geothermal' : '#ba91b1' - "OCGT" : "#d35050" - "gas" : "#d35050" - "natural gas" : "#d35050" - "CCGT" : "#b20101" - "nuclear" : "#ff9000" - "coal" : "#707070" - "lignite" : "#9e5a01" - "oil" : "#262626" - "H2" : "#ea048a" - "hydrogen storage" : "#ea048a" - "battery" : "#b8ea04" - "Electric load" : "#f9d002" - "electricity" : "#f9d002" - "lines" : "#70af1d" - "transmission lines" : "#70af1d" - "AC-AC" : "#70af1d" - "AC line" : "#70af1d" - "links" : "#8a1caf" - "HVDC links" : "#8a1caf" - "DC-DC" : "#8a1caf" - "DC link" : "#8a1caf" - nice_names: - OCGT: "Open-Cycle Gas" - CCGT: "Combined-Cycle Gas" - offwind-ac: "Offshore Wind (AC)" - offwind-dc: "Offshore Wind (DC)" - onwind: "Onshore Wind" - solar: "Solar" - PHS: "Pumped Hydro Storage" - hydro: "Reservoir & Dam" - battery: "Battery Storage" - H2: "Hydrogen Storage" - lines: "Transmission Lines" - ror: "Run of River" diff --git a/config/config.default.yaml b/config/config.default.yaml new file mode 100644 index 00000000..d2d548e9 --- /dev/null +++ b/config/config.default.yaml @@ -0,0 +1,968 @@ +# SPDX-FileCopyrightText: : 2017-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: CC0-1.0 + +version: 0.8.0 +tutorial: false + +logging: + level: INFO + format: '%(levelname)s:%(name)s:%(message)s' + +run: + name: "" # use this to keep track of runs with different settings + disable_progressbar: false # set to true to disable the progressbar + shared_resources: false # set to true to share the default resources across runs + shared_cutouts: true # set to true to share the default cutout(s) across runs + +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: + simpl: + - '' + ll: # allowed transmission line volume expansion, can be any float >= 1.0 with a prefix v|c (today) or "copt" + - v1.0 + - v1.5 + clusters: # number of nodes in Europe, any integer between 37 (1 node per country-zone) and several hundred + - 37 + - 128 + - 256 + - 512 + - 1024 + opts: # only relevant for PyPSA-Eur + - '' + sector_opts: # this is where the main scenario settings are + - Co2L0-3H-T-H-B-I-A-solar+p3-dist1 + # 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, + # A for agriculture, forestry and fishing + # solar+c0.5 reduces the capital cost of solar to 50\% of reference value + # solar+p3 multiplies the available installable potential by factor 3 + # seq400 sets the potential of CO2 sequestration to 400 Mt CO2 per year + # dist{n} includes distribution grids with investment cost of n times cost in data/costs.csv + # for myopic/perfect foresight cb states the carbon budget in GtCO2 (cumulative + # emissions throughout the transition path in the timeframe determined by the + # planning_horizons), be:beta decay; ex:exponential decay + # cb40ex0 distributes a carbon budget of 40 GtCO2 following an exponential + # decay with initial growth rate 0 + planning_horizons: # investment years for myopic and perfect; for overnight, year of cost assumptions can be different and is defined under 'costs' + - 2050 + # for example, set to + # - 2020 + # - 2030 + # - 2040 + # - 2050 + # for myopic foresight + +countries: ['AL', 'AT', 'BA', 'BE', 'BG', 'CH', 'CZ', 'DE', 'DK', 'EE', 'ES', 'FI', 'FR', 'GB', 'GR', 'HR', 'HU', 'IE', 'IT', 'LT', 'LU', 'LV', 'ME', 'MK', 'NL', 'NO', 'PL', 'PT', 'RO', 'RS', 'SE', 'SI', 'SK'] + +snapshots: + start: "2013-01-01" + end: "2014-01-01" + inclusive: 'left' # include start, not end + +enable: + prepare_links_p_nom: false + retrieve_databundle: true + retrieve_sector_databundle: true + retrieve_cost_data: true + build_cutout: false + retrieve_cutout: true + build_natura_raster: false + retrieve_natura_raster: true + custom_busmap: false + +# CO2 budget as a fraction of 1990 emissions +# this is over-ridden if CO2Lx is set in sector_opts +# this is also over-ridden if cb is set in sector_opts +co2_budget: + 2020: 0.701 + 2025: 0.524 + 2030: 0.297 + 2035: 0.150 + 2040: 0.071 + 2045: 0.032 + 2050: 0.000 + +electricity: + voltages: [220., 300., 380.] + gaslimit: false # global gas usage limit of X MWh_th + co2limit: 7.75e+7 # 0.05 * 3.1e9*0.5 + co2base: 1.487e+9 + agg_p_nom_limits: data/agg_p_nom_minmax.csv + + operational_reserve: # like https://genxproject.github.io/GenX/dev/core/#Reserves + activate: false + epsilon_load: 0.02 # share of total load + epsilon_vres: 0.02 # share of total renewable supply + contingency: 4000 # fixed capacity in MW + + max_hours: + battery: 6 + H2: 168 + + extendable_carriers: + Generator: [solar, onwind, offwind-ac, offwind-dc, OCGT] + StorageUnit: [] # battery, H2 + Store: [battery, H2] + Link: [] # H2 pipeline + + # use pandas query strings here, e.g. Country not in ['Germany'] + powerplants_filter: (DateOut >= 2022 or DateOut != DateOut) + # use pandas query strings here, e.g. Country in ['Germany'] + custom_powerplants: false + + conventional_carriers: [nuclear, oil, OCGT, CCGT, coal, lignite, geothermal, biomass] + renewable_carriers: [solar, onwind, offwind-ac, offwind-dc, hydro] + + estimate_renewable_capacities: + enable: true + # Add capacities from OPSD data + from_opsd: true + # Renewable capacities are based on existing capacities reported by IRENA + year: 2020 + # Artificially limit maximum capacities to factor * (IRENA capacities), + # i.e. 110% of 's capacities => expansion_limit: 1.1 + # false: Use estimated renewable potentials determine by the workflow + expansion_limit: false + technology_mapping: + # Wind is the Fueltype in powerplantmatching, onwind, offwind-{ac,dc} the carrier in PyPSA-Eur + Offshore: [offwind-ac, offwind-dc] + Onshore: [onwind] + PV: [solar] + + +atlite: + default_cutout: europe-2013-era5 + nprocesses: 4 + show_progress: false # false saves time + cutouts: + # use 'base' to determine geographical bounds and time span from config + # base: + # module: era5 + europe-2013-era5: + module: era5 # in priority order + x: [-12., 35.] + y: [33., 72] + dx: 0.3 + dy: 0.3 + time: ['2013', '2013'] + europe-2013-sarah: + module: [sarah, era5] # in priority order + x: [-12., 45.] + y: [33., 65] + dx: 0.2 + dy: 0.2 + time: ['2013', '2013'] + sarah_interpolate: false + sarah_dir: + features: [influx, temperature] + + +renewable: + onwind: + cutout: europe-2013-era5 + resource: + method: wind + turbine: Vestas_V112_3MW + capacity_per_sqkm: 3 # ScholzPhd Tab 4.3.1: 10MW/km^2 and assuming 30% fraction of the already restricted + # area is available for installation of wind generators due to competing land use and likely public + # acceptance issues. + # correction_factor: 0.93 + corine: + # Scholz, Y. (2012). Renewable energy based electricity supply at low costs + # development of the REMix model and application for Europe. ( p.42 / p.28) + grid_codes: [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32] + distance: 1000 + distance_grid_codes: [1, 2, 3, 4, 5, 6] + natura: true + excluder_resolution: 100 + potential: simple # or conservative + clip_p_max_pu: 1.e-2 + offwind-ac: + cutout: europe-2013-era5 + resource: + method: wind + turbine: NREL_ReferenceTurbine_5MW_offshore + capacity_per_sqkm: 2 # ScholzPhd Tab 4.3.1: 10MW/km^2 and assuming 20% fraction of the already restricted + # area is available for installation of wind generators due to competing land use and likely public + # acceptance issues. + correction_factor: 0.8855 + # proxy for wake losses + # from 10.1016/j.energy.2018.08.153 + # until done more rigorously in #153 + corine: [44, 255] + natura: true + ship_threshold: 400 + max_depth: 50 + max_shore_distance: 30000 + excluder_resolution: 200 + potential: simple # or conservative + clip_p_max_pu: 1.e-2 + offwind-dc: + cutout: europe-2013-era5 + resource: + method: wind + turbine: NREL_ReferenceTurbine_5MW_offshore + capacity_per_sqkm: 2 # ScholzPhd Tab 4.3.1: 10MW/km^2 and assuming 20% fraction of the already restricted + # area is available for installation of wind generators due to competing land use and likely public + # acceptance issues. + correction_factor: 0.8855 + # proxy for wake losses + # from 10.1016/j.energy.2018.08.153 + # until done more rigorously in #153 + corine: [44, 255] + natura: true + ship_threshold: 400 + max_depth: 50 + min_shore_distance: 30000 + excluder_resolution: 200 + potential: simple # or conservative + clip_p_max_pu: 1.e-2 + solar: + cutout: europe-2013-sarah + resource: + method: pv + panel: CSi + orientation: + slope: 35. + azimuth: 180. + capacity_per_sqkm: 1.7 # ScholzPhd Tab 4.3.1: 170 MW/km^2 and assuming 1% of the area can be used for solar PV panels + # Correction factor determined by comparing uncorrected area-weighted full-load hours to those + # published in Supplementary Data to + # Pietzcker, Robert Carl, et al. "Using the sun to decarbonize the power + # sector -- The economic potential of photovoltaics and concentrating solar + # power." Applied Energy 135 (2014): 704-720. + # This correction factor of 0.854337 may be in order if using reanalysis data. + # for discussion refer to https://github.com/PyPSA/pypsa-eur/pull/304 + # correction_factor: 0.854337 + corine: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 26, 31, 32] + natura: true + excluder_resolution: 100 + potential: simple # or conservative + clip_p_max_pu: 1.e-2 + hydro: + cutout: europe-2013-era5 + carriers: [ror, PHS, hydro] + PHS_max_hours: 6 + hydro_max_hours: "energy_capacity_totals_by_country" # one of energy_capacity_totals_by_country, estimate_by_large_installations or a float + clip_min_inflow: 1.0 + +conventional: + nuclear: + p_max_pu: "data/nuclear_p_max_pu.csv" # float of file name + +lines: + types: + 220.: "Al/St 240/40 2-bundle 220.0" + 300.: "Al/St 240/40 3-bundle 300.0" + 380.: "Al/St 240/40 4-bundle 380.0" + s_max_pu: 0.7 + s_nom_max: .inf + length_factor: 1.25 + under_construction: 'zero' # 'zero': set capacity to zero, 'remove': remove, 'keep': with full capacity + dynamic_line_rating: + activate: false + # factor compensate overestimation of the wind speed in hourly averaged wind data + correction_factor: 0.95 + max_voltage_difference: 45 # in deg or `false` to disable + max_line_rating: false # over capacity relative to nominal capacity e.g. 1.3 or `false`to disable + +links: + p_max_pu: 1.0 + p_nom_max: .inf + include_tyndp: true + under_construction: 'zero' # 'zero': set capacity to zero, 'remove': remove, 'keep': with full capacity + +transformers: + x: 0.1 + s_nom: 2000. + type: '' + +load: + power_statistics: true # only for files from <2019; set false in order to get ENTSOE transparency data + interpolate_limit: 3 # data gaps up until this size are interpolated linearly + time_shift_for_large_gaps: 1w # data gaps up until this size are copied by copying from + manual_adjustments: true # false + scaling_factor: 1.0 + +# regulate what components with which carriers are kept from PyPSA-Eur; +# some technologies are removed because they are implemented differently +# (e.g. battery or H2 storage) 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 + Store: [] + +energy: + energy_totals_year: 2011 + base_emissions_year: 1990 + eurostat_report_year: 2016 + emissions: CO2 # "CO2" or "All greenhouse gases - (CO2 equivalent)" + +biomass: + year: 2030 + scenario: ENS_Med + classes: + solid biomass: + - Agricultural waste + - Fuelwood residues + - Secondary Forestry residues - woodchips + - Sawdust + - Residues from landscape care + - Municipal waste + not included: + - Sugar from sugar beet + - Rape seed + - "Sunflower, soya seed " + - Bioethanol barley, wheat, grain maize, oats, other cereals and rye + - Miscanthus, switchgrass, RCG + - Willow + - Poplar + - FuelwoodRW + - C&P_RW + biogas: + - Manure solid, liquid + - Sludge + + +solar_thermal: + clearsky_model: simple # should be "simple" or "enhanced"? + orientation: + slope: 45. + azimuth: 180. + +# only relevant for foresight = myopic or perfect +existing_capacities: + grouping_years_power: [1980, 1985, 1990, 1995, 2000, 2005, 2010, 2015, 2020, 2025, 2030] + grouping_years_heat: [1980, 1985, 1990, 1995, 2000, 2005, 2010, 2015, 2019] # these should not extend 2020 + threshold_capacity: 10 + conventional_carriers: + - lignite + - coal + - oil + - uranium + + +sector: + district_heating: + potential: 0.6 # maximum fraction of urban demand which can be supplied by district heating + # increase of today's district heating demand to potential maximum district heating share + # progress = 0 means today's district heating share, progress = 1 means maximum fraction of urban demand is supplied by district heating + progress: + 2020: 0.0 + 2030: 0.3 + 2040: 0.6 + 2050: 1.0 + district_heating_loss: 0.15 + cluster_heat_buses: false # cluster residential and service heat buses to one to save memory + 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 + ICE_upper_degree_factor: 1.6 + EV_lower_degree_factor: 0.98 + EV_upper_degree_factor: 0.63 + bev_dsm: true #turns on EV battery + bev_availability: 0.5 #How many cars do smart charging + bev_energy: 0.05 #average battery size in MWh + bev_charge_efficiency: 0.9 #BEV (dis-)charging efficiency + bev_plug_to_wheel_efficiency: 0.2 #kWh/km from EPA https://www.fueleconomy.gov/feg/ for Tesla Model S + bev_charge_rate: 0.011 #3-phase charger with 11 kW + bev_avail_max: 0.95 + bev_avail_mean: 0.8 + v2g: true #allows feed-in to grid from EV battery + #what is not EV or FCEV is oil-fuelled ICE + land_transport_fuel_cell_share: + 2020: 0 + 2030: 0.05 + 2040: 0.1 + 2050: 0.15 + land_transport_electric_share: + 2020: 0 + 2030: 0.25 + 2040: 0.6 + 2050: 0.85 + land_transport_ice_share: + 2020: 1 + 2030: 0.7 + 2040: 0.3 + 2050: 0 + transport_fuel_cell_efficiency: 0.5 + transport_internal_combustion_efficiency: 0.3 + agriculture_machinery_electric_share: 0 + agriculture_machinery_oil_share: 1 + agriculture_machinery_fuel_efficiency: 0.7 # fuel oil per use + agriculture_machinery_electric_efficiency: 0.3 # electricity per use + MWh_MeOH_per_MWh_H2: 0.8787 # in LHV, source: DECHEMA (2017): Low carbon energy and feedstock for the European chemical industry , pg. 64. + MWh_MeOH_per_tCO2: 4.0321 # in LHV, source: DECHEMA (2017): Low carbon energy and feedstock for the European chemical industry , pg. 64. + MWh_MeOH_per_MWh_e: 3.6907 # in LHV, source: DECHEMA (2017): Low carbon energy and feedstock for the European chemical industry , pg. 64. + shipping_hydrogen_liquefaction: false # whether to consider liquefaction costs for shipping H2 demands + shipping_hydrogen_share: + 2020: 0 + 2030: 0 + 2040: 0 + 2050: 0 + shipping_methanol_share: + 2020: 0 + 2030: 0.3 + 2040: 0.7 + 2050: 1 + shipping_oil_share: + 2020: 1 + 2030: 0.7 + 2040: 0.3 + 2050: 0 + shipping_methanol_efficiency: 0.46 # 10-15% higher https://www.iea-amf.org/app/webroot/files/file/Annex%20Reports/AMF_Annex_56.pdf, https://users.ugent.be/~lsileghe/documents/extended_abstract.pdf + shipping_oil_efficiency: 0.40 #For conversion of fuel oil to propulsion in 2011 + aviation_demand_factor: 1. # relative aviation demand compared to today + HVC_demand_factor: 1. # relative HVC demand compared to today + 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 + reduce_space_heat_exogenously: true # reduces space heat demand by a given factor (applied before losses in DH) + # this can represent e.g. building renovation, building demolition, or if + # the factor is negative: increasing floor area, increased thermal comfort, population growth + reduce_space_heat_exogenously_factor: # per unit reduction in space heat demand + # the default factors are determined by the LTS scenario from http://tool.european-calculator.eu/app/buildings/building-types-area/?levers=1ddd4444421213bdbbbddd44444ffffff11f411111221111211l212221 + 2020: 0.10 # this results in a space heat demand reduction of 10% + 2025: 0.09 # first heat demand increases compared to 2020 because of larger floor area per capita + 2030: 0.09 + 2035: 0.11 + 2040: 0.16 + 2045: 0.21 + 2050: 0.29 + retrofitting: # co-optimises building renovation to reduce space heat demand + retro_endogen: false # co-optimise space heat savings + cost_factor: 1.0 # weight costs for building renovation + 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 country + tes: true + tes_tau: # 180 day time constant for centralised, 3 day for decentralised + decentral: 3 + central: 180 + boilers: true + oil_boilers: false + biomass_boiler: true + chp: true + micro_chp: false + solar_thermal: true + solar_cf_correction: 0.788457 # = >>> 1/1.2683 + marginal_cost_storage: 0. #1e-4 + methanation: true + helmeth: false + coal_cc: false + dac: true + co2_vent: false + allam_cycle: false + hydrogen_fuel_cell: true + hydrogen_turbine: false + SMR: true + regional_co2_sequestration_potential: + enable: false # enable regionally resolved geological co2 storage potential + attribute: 'conservative estimate Mt' + include_onshore: false # include onshore sequestration potentials + min_size: 3 # Gt, sites with lower potential will be excluded + max_size: 25 # Gt, max sequestration potential for any one site, TODO research suitable value + years_of_storage: 25 # years until potential exhausted at optimised annual rate + co2_sequestration_potential: 200 #MtCO2/a sequestration potential for Europe + co2_sequestration_cost: 10 #EUR/tCO2 for sequestration of CO2 + co2_spatial: false + co2network: false + cc_fraction: 0.9 # default fraction of CO2 captured with post-combustion capture + hydrogen_underground_storage: true + hydrogen_underground_storage_locations: + # - onshore # more than 50 km from sea + - nearshore # within 50 km of sea + # - offshore + ammonia: false # can be false (no NH3 carrier), true (copperplated NH3), "regional" (regionalised NH3 without network) + min_part_load_fischer_tropsch: 0.9 # p_min_pu + min_part_load_methanolisation: 0.5 # p_min_pu + use_fischer_tropsch_waste_heat: true + use_fuel_cell_waste_heat: true + use_electrolysis_waste_heat: false + electricity_distribution_grid: true + 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 + H2_network: true + gas_network: false + H2_retrofit: false # if set to True existing gas pipes can be retrofitted to H2 pipes + # according to hydrogen backbone strategy (April, 2020) p.15 + # https://gasforclimate2050.eu/wp-content/uploads/2020/07/2020_European-Hydrogen-Backbone_Report.pdf + # 60% of original natural gas capacity could be used in cost-optimal case as H2 capacity + H2_retrofit_capacity_per_CH4: 0.6 # ratio for H2 capacity per original CH4 capacity of retrofitted pipelines + gas_network_connectivity_upgrade: 1 # https://networkx.org/documentation/stable/reference/algorithms/generated/networkx.algorithms.connectivity.edge_augmentation.k_edge_augmentation.html#networkx.algorithms.connectivity.edge_augmentation.k_edge_augmentation + gas_distribution_grid: true + gas_distribution_grid_cost_factor: 1.0 #multiplies cost in data/costs.csv + biomass_spatial: false # regionally resolve biomass (e.g. potentials) + biomass_transport: false # allow transport of solid biomass between nodes + conventional_generation: # generator : carrier + OCGT: gas + biomass_to_liquid: false + biosng: false + +industry: + St_primary_fraction: # fraction of steel produced via primary route versus secondary route (scrap+EAF); today fraction is 0.6 + 2020: 0.6 + 2025: 0.55 + 2030: 0.5 + 2035: 0.45 + 2040: 0.4 + 2045: 0.35 + 2050: 0.3 + DRI_fraction: # fraction of the primary route converted to DRI + EAF + 2020: 0 + 2025: 0 + 2030: 0.05 + 2035: 0.2 + 2040: 0.4 + 2045: 0.7 + 2050: 1 + 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: # fraction of aluminium produced via the primary route versus scrap; today fraction is 0.4 + 2020: 0.4 + 2025: 0.375 + 2030: 0.35 + 2035: 0.325 + 2040: 0.3 + 2045: 0.25 + 2050: 0.2 + MWh_NH3_per_tNH3: 5.166 # LHV + 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) + MWh_NH3_per_MWh_H2_cracker: 1.46 # https://github.com/euronion/trace/blob/44a5ff8401762edbef80eff9cfe5a47c8d3c8be4/data/efficiencies.csv + 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. # fraction of today's HVC produced via primary route + HVC_mechanical_recycling_fraction: 0. # fraction of today's HVC produced via mechanical recycling + HVC_chemical_recycling_fraction: 0. # fraction of today's HVC produced via chemical recycling + HVC_production_today: 52. # MtHVC/a from DECHEMA (2017), Figure 16, page 107; includes ethylene, propylene and BTX + MWh_elec_per_tHVC_mechanical_recycling: 0.547 # from SI of https://doi.org/10.1016/j.resconrec.2020.105010, Table S5, for HDPE, PP, PS, PET. LDPE would be 0.756. + MWh_elec_per_tHVC_chemical_recycling: 6.9 # Material Economics (2019), page 125; based on pyrolysis and electric steam cracking + chlorine_production_today: 9.58 # MtCl/a from DECHEMA (2017), Table 7, page 43 + MWh_elec_per_tCl: 3.6 # DECHEMA (2017), Table 6, page 43 + MWh_H2_per_tCl: -0.9372 # DECHEMA (2017), page 43; negative since hydrogen produced in chloralkali process + methanol_production_today: 1.5 # MtMeOH/a from DECHEMA (2017), page 62 + MWh_elec_per_tMeOH: 0.167 # DECHEMA (2017), Table 14, page 65 + MWh_CH4_per_tMeOH: 10.25 # DECHEMA (2017), Table 14, page 65 + hotmaps_locate_missing: false + reference_year: 2015 + # references: + # DECHEMA (2017): https://dechema.de/dechema_media/Downloads/Positionspapiere/Technology_study_Low_carbon_energy_and_feedstock_for_the_European_chemical_industry-p-20002750.pdf + # Material Economics (2019): https://materialeconomics.com/latest-updates/industrial-transformation-2050 + +costs: + year: 2030 + version: v0.5.0 + rooftop_share: 0.14 # based on the potentials, assuming (0.1 kW/m2 and 10 m2/person) + fill_values: + FOM: 0 + VOM: 0 + efficiency: 1 + fuel: 0 + investment: 0 + lifetime: 25 + "CO2 intensity": 0 + "discount rate": 0.07 + # Marginal and capital costs can be overwritten + # capital_cost: + # onwind: 500 + marginal_cost: + solar: 0.01 + onwind: 0.015 + offwind: 0.015 + hydro: 0. + H2: 0. + electrolysis: 0. + fuel cell: 0. + battery: 0. + battery inverter: 0. + emission_prices: # in currency per tonne emission, only used with the option Ep + co2: 0. + +clustering: + simplify_network: + to_substations: false # network is simplified to nodes with positive or negative power injection (i.e. substations or offwind connections) + algorithm: kmeans # choose from: [hac, kmeans] + feature: solar+onwind-time # only for hac. choose from: [solar+onwind-time, solar+onwind-cap, solar-time, solar-cap, solar+offwind-cap] etc. + exclude_carriers: [] + remove_stubs: true + remove_stubs_across_borders: true + cluster_network: + algorithm: kmeans + feature: solar+onwind-time + exclude_carriers: [] + aggregation_strategies: + generators: + p_nom_max: sum # use "min" for more conservative assumptions + p_nom_min: sum + p_min_pu: mean + marginal_cost: mean + committable: any + ramp_limit_up: max + ramp_limit_down: max + efficiency: mean + +solving: + #tmpdir: "path/to/tmp" + options: + clip_p_max_pu: 1.e-2 + load_shedding: false + transmission_losses: 0 + noisy_costs: true + skip_iterations: true + track_iterations: false + min_iterations: 4 + max_iterations: 6 + seed: 123 + + solver: + name: gurobi + options: gurobi-default + + solver_options: + highs-default: + # refer to https://ergo-code.github.io/HiGHS/options/definitions.html#solver + threads: 4 + solver: "ipm" + run_crossover: "off" + small_matrix_value: 1e-6 + large_matrix_value: 1e9 + primal_feasibility_tolerance: 1e-5 + dual_feasibility_tolerance: 1e-5 + ipm_optimality_tolerance: 1e-4 + parallel: "on" + random_seed: 123 + gurobi-default: + threads: 4 + method: 2 # barrier + crossover: 0 + BarConvTol: 1.e-6 + Seed: 123 + AggFill: 0 + PreDual: 0 + GURO_PAR_BARDENSETHRESH: 200 + seed: 10 # Consistent seed for all plattforms + gurobi-numeric-focus: + name: gurobi + NumericFocus: 3 # Favour numeric stability over speed + method: 2 # barrier + crossover: 0 # do not use crossover + BarHomogeneous: 1 # Use homogeneous barrier if standard does not converge + BarConvTol: 1.e-5 + FeasibilityTol: 1.e-4 + OptimalityTol: 1.e-4 + ObjScale: -0.5 + threads: 8 + Seed: 123 + gurobi-fallback: # Use gurobi defaults + name: gurobi + crossover: 0 + method: 2 # barrier + BarHomogeneous: 1 # Use homogeneous barrier if standard does not converge + BarConvTol: 1.e-5 + FeasibilityTol: 1.e-5 + OptimalityTol: 1.e-5 + Seed: 123 + threads: 8 + cplex-default: + threads: 4 + lpmethod: 4 # barrier + solutiontype: 2 # non basic solution, ie no crossover + barrier.convergetol: 1.e-5 + feasopt.tolerance: 1.e-6 + cbc-default: {} # Used in CI + glpk-default: {} # Used in CI + + mem: 30000 #memory in MB; 20 GB enough for 50+B+I+H2; 100 GB for 181+B+I+H2 + + +plotting: + map: + boundaries: [-11, 30, 34, 71] + color_geomap: + ocean: white + land: white + eu_node_location: + x: -5.5 + y: 46. + costs_max: 1000 + costs_threshold: 1 + energy_max: 20000 + energy_min: -20000 + 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 + load_carriers: + - AC 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 + + nice_names: + OCGT: "Open-Cycle Gas" + CCGT: "Combined-Cycle Gas" + offwind-ac: "Offshore Wind (AC)" + offwind-dc: "Offshore Wind (DC)" + onwind: "Onshore Wind" + solar: "Solar" + PHS: "Pumped Hydro Storage" + hydro: "Reservoir & Dam" + battery: "Battery Storage" + H2: "Hydrogen Storage" + lines: "Transmission Lines" + ror: "Run of River" + + tech_colors: + # wind + onwind: "#235ebc" + onshore wind: "#235ebc" + offwind: "#6895dd" + offshore wind: "#6895dd" + offwind-ac: "#6895dd" + offshore wind (AC): "#6895dd" + offshore wind ac: "#6895dd" + offwind-dc: "#74c6f2" + offshore wind (DC): "#74c6f2" + offshore wind dc: "#74c6f2" + # water + hydro: '#298c81' + hydro reservoir: '#298c81' + ror: '#3dbfb0' + run of river: '#3dbfb0' + hydroelectricity: '#298c81' + PHS: '#51dbcc' + hydro+PHS: "#08ad97" + wave: '#a7d4cf' + # solar + solar: "#f9d002" + solar PV: "#f9d002" + solar thermal: '#ffbf2b' + solar rooftop: '#ffea80' + # gas + OCGT: '#e0986c' + OCGT marginal: '#e0986c' + OCGT-heat: '#e0986c' + gas boiler: '#db6a25' + gas boilers: '#db6a25' + gas boiler marginal: '#db6a25' + gas: '#e05b09' + fossil gas: '#e05b09' + natural gas: '#e05b09' + CCGT: '#a85522' + CCGT marginal: '#a85522' + allam: '#B98F76' + gas for industry co2 to atmosphere: '#692e0a' + gas for industry co2 to stored: '#8a3400' + gas for industry: '#853403' + gas for industry CC: '#692e0a' + gas pipeline: '#ebbca0' + gas pipeline new: '#a87c62' + # oil + oil: '#c9c9c9' + oil boiler: '#adadad' + agriculture machinery oil: '#949494' + shipping oil: "#808080" + land transport oil: '#afafaf' + # nuclear + Nuclear: '#ff8c00' + Nuclear marginal: '#ff8c00' + nuclear: '#ff8c00' + uranium: '#ff8c00' + # coal + Coal: '#545454' + coal: '#545454' + Coal marginal: '#545454' + solid: '#545454' + Lignite: '#826837' + lignite: '#826837' + Lignite marginal: '#826837' + # biomass + biogas: '#e3d37d' + biomass: '#baa741' + solid biomass: '#baa741' + solid biomass transport: '#baa741' + solid biomass for industry: '#7a6d26' + solid biomass for industry CC: '#47411c' + solid biomass for industry co2 from atmosphere: '#736412' + solid biomass for industry co2 to stored: '#47411c' + biomass boiler: '#8A9A5B' + biomass to liquid: '#32CD32' + BioSNG: '#123456' + # power transmission + lines: '#6c9459' + transmission lines: '#6c9459' + electricity distribution grid: '#97ad8c' + # electricity demand + Electric load: '#110d63' + electric demand: '#110d63' + electricity: '#110d63' + industry electricity: '#2d2a66' + industry new electricity: '#2d2a66' + agriculture electricity: '#494778' + # battery + EVs + battery: '#ace37f' + battery storage: '#ace37f' + home battery: '#80c944' + home battery storage: '#80c944' + BEV charger: '#baf238' + V2G: '#e5ffa8' + land transport EV: '#baf238' + Li ion: '#baf238' + # hot water storage + water tanks: '#e69487' + hot water storage: '#e69487' + hot water charging: '#e69487' + hot water discharging: '#e69487' + # heat demand + Heat load: '#cc1f1f' + heat: '#cc1f1f' + heat demand: '#cc1f1f' + rural heat: '#ff5c5c' + central heat: '#cc1f1f' + decentral heat: '#750606' + low-temperature heat for industry: '#8f2727' + process heat: '#ff0000' + agriculture heat: '#d9a5a5' + # heat supply + heat pumps: '#2fb537' + heat pump: '#2fb537' + air heat pump: '#36eb41' + ground heat pump: '#2fb537' + Ambient: '#98eb9d' + CHP: '#8a5751' + CHP CC: '#634643' + CHP heat: '#8a5751' + CHP electric: '#8a5751' + district heating: '#e8beac' + resistive heater: '#d8f9b8' + retrofitting: '#8487e8' + building retrofitting: '#8487e8' + # hydrogen + H2 for industry: "#f073da" + H2 for shipping: "#ebaee0" + H2: '#bf13a0' + hydrogen: '#bf13a0' + SMR: '#870c71' + SMR CC: '#4f1745' + H2 liquefaction: '#d647bd' + hydrogen storage: '#bf13a0' + H2 storage: '#bf13a0' + land transport fuel cell: '#6b3161' + H2 pipeline: '#f081dc' + H2 pipeline retrofitted: '#ba99b5' + H2 Fuel Cell: '#c251ae' + H2 turbine: '#991f83' + H2 Electrolysis: '#ff29d9' + # ammonia + NH3: '#46caf0' + ammonia: '#46caf0' + ammonia store: '#00ace0' + ammonia cracker: '#87d0e6' + Haber-Bosch: '#076987' + # syngas + Sabatier: '#9850ad' + methanation: '#c44ce6' + methane: '#c44ce6' + helmeth: '#e899ff' + # synfuels + Fischer-Tropsch: '#25c49a' + liquid: '#25c49a' + kerosene for aviation: '#a1ffe6' + naphtha for industry: '#57ebc4' + methanolisation: '#83d6d5' + methanol: '#468c8b' + shipping methanol: '#468c8b' + # co2 + CC: '#f29dae' + CCS: '#f29dae' + CO2 sequestration: '#f29dae' + DAC: '#ff5270' + co2 stored: '#f2385a' + co2: '#f29dae' + co2 vent: '#ffd4dc' + CO2 pipeline: '#f5627f' + # emissions + process emissions CC: '#000000' + process emissions: '#222222' + process emissions to stored: '#444444' + process emissions to atmosphere: '#888888' + oil emissions: '#aaaaaa' + shipping oil emissions: "#555555" + shipping methanol emissions: '#666666' + land transport oil emissions: '#777777' + agriculture machinery oil emissions: '#333333' + # other + shipping: '#03a2ff' + power-to-heat: '#2fb537' + power-to-gas: '#c44ce6' + power-to-H2: '#ff29d9' + power-to-liquid: '#25c49a' + gas-to-power/heat: '#ee8340' + waste: '#e3d37d' + other: '#000000' + geothermal: '#ba91b1' + AC-AC: "#70af1d" + AC line: "#70af1d" + links: "#8a1caf" + HVDC links: "#8a1caf" + DC-DC: "#8a1caf" + DC link: "#8a1caf" diff --git a/config/test/config.electricity.yaml b/config/test/config.electricity.yaml new file mode 100644 index 00000000..6798e38c --- /dev/null +++ b/config/test/config.electricity.yaml @@ -0,0 +1,80 @@ +# SPDX-FileCopyrightText: : 2017-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: CC0-1.0 + +tutorial: true + + +run: + name: "test-elec" # use this to keep track of runs with different settings + disable_progressbar: true + shared_resources: true + shared_cutouts: true + +scenario: + clusters: + - 5 + opts: + - Co2L-24H + +countries: ['BE'] + +snapshots: + start: "2013-03-01" + end: "2013-03-08" + +electricity: + co2limit: 100.e+6 + + extendable_carriers: + Generator: [OCGT] + StorageUnit: [battery] + Store: [H2] + Link: [H2 pipeline] + + renewable_carriers: [solar, onwind, offwind-ac, offwind-dc] + + +atlite: + default_cutout: be-03-2013-era5 + cutouts: + be-03-2013-era5: + module: era5 + x: [4., 15.] + y: [46., 56.] + time: ["2013-03-01", "2013-03-08"] + +renewable: + onwind: + cutout: be-03-2013-era5 + offwind-ac: + cutout: be-03-2013-era5 + max_depth: false + offwind-dc: + cutout: be-03-2013-era5 + max_depth: false + solar: + cutout: be-03-2013-era5 + + +clustering: + exclude_carriers: ["OCGT", "offwind-ac", "coal"] + + +solving: + solver: + name: glpk + options: "glpk-default" + + +plotting: + map: + boundaries: + eu_node_location: + x: -5.5 + y: 46. + costs_max: 1000 + costs_threshold: 0.0000001 + energy_max: + energy_min: + energy_threshold: 0.000001 diff --git a/config/test/config.myopic.yaml b/config/test/config.myopic.yaml new file mode 100644 index 00000000..efa03136 --- /dev/null +++ b/config/test/config.myopic.yaml @@ -0,0 +1,79 @@ +# SPDX-FileCopyrightText: : 2017-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: CC0-1.0 + +tutorial: true + +run: + name: "test-sector-myopic" + disable_progressbar: true + shared_resources: true + shared_cutouts: true + +foresight: myopic + +scenario: + ll: + - v1.5 + clusters: + - 5 + sector_opts: + - 24H-T-H-B-I-A-solar+p3-dist1 + planning_horizons: + - 2030 + - 2040 + - 2050 + +countries: ['BE'] + +snapshots: + start: "2013-03-01" + end: "2013-03-08" + +electricity: + renewable_carriers: [solar, onwind, offwind-ac, offwind-dc] + +atlite: + default_cutout: be-03-2013-era5 + cutouts: + be-03-2013-era5: + module: era5 + x: [4., 15.] + y: [46., 56.] + time: ["2013-03-01", "2013-03-08"] + +renewable: + onwind: + cutout: be-03-2013-era5 + offwind-ac: + cutout: be-03-2013-era5 + max_depth: false + offwind-dc: + cutout: be-03-2013-era5 + max_depth: false + solar: + cutout: be-03-2013-era5 + +industry: + St_primary_fraction: + 2030: 0.6 + 2040: 0.5 + 2050: 0.4 + +solving: + solver: + name: glpk + options: glpk-default + mem: 4000 + +plotting: + map: + boundaries: + eu_node_location: + x: -5.5 + y: 46. + costs_max: 1000 + costs_threshold: 0.0000001 + energy_max: + energy_min: + energy_threshold: 0.000001 diff --git a/config/test/config.overnight.yaml b/config/test/config.overnight.yaml new file mode 100644 index 00000000..fb468ded --- /dev/null +++ b/config/test/config.overnight.yaml @@ -0,0 +1,74 @@ +# SPDX-FileCopyrightText: : 2017-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: CC0-1.0 + +tutorial: true + +run: + name: "test-sector-overnight" + disable_progressbar: true + shared_resources: true + shared_cutouts: true + + +scenario: + ll: + - v1.5 + clusters: + - 5 + sector_opts: + - CO2L0-24H-T-H-B-I-A-solar+p3-dist1 + planning_horizons: + - 2030 + +countries: ['BE'] + +snapshots: + start: "2013-03-01" + end: "2013-03-08" + +electricity: + renewable_carriers: [solar, onwind, offwind-ac, offwind-dc] + +atlite: + default_cutout: be-03-2013-era5 + cutouts: + be-03-2013-era5: + module: era5 + x: [4., 15.] + y: [46., 56.] + time: ["2013-03-01", "2013-03-08"] + +renewable: + onwind: + cutout: be-03-2013-era5 + offwind-ac: + cutout: be-03-2013-era5 + max_depth: false + offwind-dc: + cutout: be-03-2013-era5 + max_depth: false + solar: + cutout: be-03-2013-era5 + +sector: + gas_network: true + H2_retrofit: true + +solving: + solver: + name: glpk + options: glpk-default + mem: 4000 + +plotting: + map: + boundaries: + eu_node_location: + x: -5.5 + y: 46. + costs_max: 1000 + costs_threshold: 0.0000001 + energy_max: + energy_min: + energy_threshold: 0.000001 diff --git a/data/attributed_ports.json b/data/attributed_ports.json new file mode 100644 index 00000000..12344811 --- /dev/null +++ b/data/attributed_ports.json @@ -0,0 +1,861 @@ +{ +"type": "FeatureCollection", +"features": [ +{ "type": "Feature", "properties": { "Country": "United Arab Emirates", "Function": "1-345---", "LOCODE": "AEAUH", "Name": "Abu Dhabi", "NameWoDiac": "Abu Dhabi", "Status": "AI", "outflows": 41597.142851999997 }, "geometry": { "type": "Point", "coordinates": [ 54.366666666666667, 24.466666666666665 ] } }, +{ "type": "Feature", "properties": { "Country": "United Arab Emirates", "Function": "1-------", "LOCODE": "AERUW", "Name": "Ar Ruways", "NameWoDiac": "Ar Ruways", "Status": "RL", "outflows": 166556.0 }, "geometry": { "type": "Point", "coordinates": [ 52.733333333333334, 24.116666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "United Arab Emirates", "Function": "1-------", "LOCODE": "AEKLF", "Name": "Khor al Fakkan", "NameWoDiac": "Khor al Fakkan", "Status": "RL", "outflows": 790406.5 }, "geometry": { "type": "Point", "coordinates": [ 56.35, 25.333333333333332 ] } }, +{ "type": "Feature", "properties": { "Country": "United Arab Emirates", "Function": "1-3-----", "LOCODE": "AEMKH", "Name": "Mina Khalid", "NameWoDiac": "Mina Khalid", "Status": "RL", "outflows": 646965.0 }, "geometry": { "type": "Point", "coordinates": [ 55.366666666666667, 25.35 ] } }, +{ "type": "Feature", "properties": { "Country": "United Arab Emirates", "Function": "1-------", "LOCODE": "AEKHL", "Name": "Mina Khalifa\/Abu Dhabi", "NameWoDiac": "Mina Khalifa\/Abu Dhabi", "Status": "RL", "outflows": 18341458.820419993 }, "geometry": { "type": "Point", "coordinates": [ 54.666666666666664, 24.833333333333332 ] } }, +{ "type": "Feature", "properties": { "Country": "United Arab Emirates", "Function": "1--4----", "LOCODE": "AEQIW", "Name": "Umm al Qaiwain", "NameWoDiac": "Umm al Qaiwain", "Status": "AI", "outflows": 14196.0 }, "geometry": { "type": "Point", "coordinates": [ 55.55, 25.566666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "Antigua and Barbuda", "Function": "1-------", "LOCODE": "AGSJO", "Name": "Saint John's", "NameWoDiac": "Saint John's", "Status": "AI", "outflows": 208663.0 }, "geometry": { "type": "Point", "coordinates": [ -61.85, 17.116666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Argentina", "Function": "1--4----", "LOCODE": "ARBHI", "Name": "Baha Blanca", "NameWoDiac": "Bahia Blanca", "Status": "AI", "outflows": 677327.625 }, "geometry": { "type": "Point", "coordinates": [ -62.283333333333331, -38.716666666666669 ] } }, +{ "type": "Feature", "properties": { "Country": "Argentina", "Function": "12345---", "LOCODE": "ARBUE", "Name": "Buenos Aires", "NameWoDiac": "Buenos Aires", "Status": "AI", "outflows": 11083411.036479998 }, "geometry": { "type": "Point", "coordinates": [ -58.666666666666664, -34.583333333333336 ] } }, +{ "type": "Feature", "properties": { "Country": "Argentina", "Function": "1-345---", "LOCODE": "ARMDQ", "Name": "Mar del Plata", "NameWoDiac": "Mar del Plata", "Status": "AI", "outflows": 24960.0 }, "geometry": { "type": "Point", "coordinates": [ -57.533333333333331, -38.05 ] } }, +{ "type": "Feature", "properties": { "Country": "Argentina", "Function": "1--4----", "LOCODE": "ARPUD", "Name": "Puerto Deseado", "NameWoDiac": "Puerto Deseado", "Status": "AI", "outflows": 24960.0 }, "geometry": { "type": "Point", "coordinates": [ -65.9, -47.75 ] } }, +{ "type": "Feature", "properties": { "Country": "Argentina", "Function": "1--4----", "LOCODE": "ARPMY", "Name": "Puerto Madryn", "NameWoDiac": "Puerto Madryn", "Status": "AI", "outflows": 671555.625 }, "geometry": { "type": "Point", "coordinates": [ -65.033333333333331, -42.75 ] } }, +{ "type": "Feature", "properties": { "Country": "Argentina", "Function": "12345---", "LOCODE": "ARROS", "Name": "Rosario", "NameWoDiac": "Rosario", "Status": "AI", "outflows": 110227.0 }, "geometry": { "type": "Point", "coordinates": [ -60.65, -32.95 ] } }, +{ "type": "Feature", "properties": { "Country": "Argentina", "Function": "1-------", "LOCODE": "ARSAE", "Name": "San Antonio Este", "NameWoDiac": "San Antonio Este", "Status": "RQ", "outflows": 23075.0 }, "geometry": { "type": "Point", "coordinates": [ -64.733333333333334, -40.8 ] } }, +{ "type": "Feature", "properties": { "Country": "Argentina", "Function": "1--4----", "LOCODE": "ARUSH", "Name": "Ushuaia", "NameWoDiac": "Ushuaia", "Status": "AI", "outflows": 30732.0 }, "geometry": { "type": "Point", "coordinates": [ -68.3, -54.8 ] } }, +{ "type": "Feature", "properties": { "Country": "Argentina", "Function": "1-------", "LOCODE": "ARZAE", "Name": "Zrate", "NameWoDiac": "Zarate", "Status": "AI", "outflows": 164645.0 }, "geometry": { "type": "Point", "coordinates": [ -59.033333333333331, -34.1 ] } }, +{ "type": "Feature", "properties": { "Country": "American Samoa", "Function": "1--45---", "LOCODE": "ASPPG", "Name": "Pago Pago", "NameWoDiac": "Pago Pago", "Status": "AI", "outflows": 338184.5 }, "geometry": { "type": "Point", "coordinates": [ -170.7, 14.266666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Australia", "Function": "12345---", "LOCODE": "AUADL", "Name": "Adelaide", "NameWoDiac": "Adelaide", "Status": "AC", "outflows": 5338947.2004299983 }, "geometry": { "type": "Point", "coordinates": [ 138.583333333333343, -34.916666666666664 ] } }, +{ "type": "Feature", "properties": { "Country": "Australia", "Function": "12345---", "LOCODE": "AUBNE", "Name": "Brisbane", "NameWoDiac": "Brisbane", "Status": "AC", "outflows": 8402703.6401499975 }, "geometry": { "type": "Point", "coordinates": [ 153.01666666666668, -27.466666666666665 ] } }, +{ "type": "Feature", "properties": { "Country": "Australia", "Function": "12345---", "LOCODE": "AUDRW", "Name": "Darwin", "NameWoDiac": "Darwin", "Status": "AC", "outflows": 88640.416664000004 }, "geometry": { "type": "Point", "coordinates": [ 130.833333333333343, -12.45 ] } }, +{ "type": "Feature", "properties": { "Country": "Australia", "Function": "12345---", "LOCODE": "AUMEL", "Name": "Melbourne", "NameWoDiac": "Melbourne", "Status": "AC", "outflows": 9957826.0957300067 }, "geometry": { "type": "Point", "coordinates": [ 144.966666666666669, -37.81666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Australia", "Function": "12345---", "LOCODE": "AUSYD", "Name": "Sydney", "NameWoDiac": "Sydney", "Status": "AC", "outflows": 10352110.143530006 }, "geometry": { "type": "Point", "coordinates": [ 151.2, -33.85 ] } }, +{ "type": "Feature", "properties": { "Country": "Aruba", "Function": "1-------", "LOCODE": "AWBAR", "Name": "Barcadera", "NameWoDiac": "Barcadera", "Status": "RL", "outflows": 65431.8 }, "geometry": { "type": "Point", "coordinates": [ -69.983333333333334, 12.483333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Bangladesh", "Function": "1--45---", "LOCODE": "BDCGP", "Name": "Chattogram", "NameWoDiac": "Chattogram", "Status": "AI", "outflows": 1379549.0523300001 }, "geometry": { "type": "Point", "coordinates": [ 91.833333333333329, 22.333333333333332 ] } }, +{ "type": "Feature", "properties": { "Country": "Belgium", "Function": "12345---", "LOCODE": "BEANR", "Name": "Antwerpen", "NameWoDiac": "Antwerpen", "Status": "AI", "outflows": 51827814.560638025 }, "geometry": { "type": "Point", "coordinates": [ 4.416666666666667, 51.216666666666669 ] } }, +{ "type": "Feature", "properties": { "Country": "Belgium", "Function": "1234----", "LOCODE": "BEGNE", "Name": "Gent (Ghent)", "NameWoDiac": "Gent (Ghent)", "Status": "AI", "outflows": 13260.0 }, "geometry": { "type": "Point", "coordinates": [ 3.716666666666667, 51.05 ] } }, +{ "type": "Feature", "properties": { "Country": "Belgium", "Function": "1-3-----", "LOCODE": "BEZEE", "Name": "Zeebrugge", "NameWoDiac": "Zeebrugge", "Status": "AI", "outflows": 5650583.2502299985 }, "geometry": { "type": "Point", "coordinates": [ 3.2, 51.333333333333336 ] } }, +{ "type": "Feature", "properties": { "Country": "Bahrain", "Function": "1-------", "LOCODE": "BHMIN", "Name": "Mina Sulman Port", "NameWoDiac": "Mina Sulman Port", "Status": "AA", "outflows": 632118.5 }, "geometry": { "type": "Point", "coordinates": [ 50.616666666666667, 26.2 ] } }, +{ "type": "Feature", "properties": { "Country": "Bonaire, Sint Eustatius and Saba", "Function": "1-------", "LOCODE": "BQKRA", "Name": "Kralendijk", "NameWoDiac": "Kralendijk", "Status": "AI", "outflows": 117162.5 }, "geometry": { "type": "Point", "coordinates": [ -68.266666666666666, 12.15 ] } }, +{ "type": "Feature", "properties": { "Country": "Brazil", "Function": "-23-----", "LOCODE": "BRIGI", "Name": "Itagua", "NameWoDiac": "Itaguai", "Status": "RL", "outflows": 2879859.0476199985 }, "geometry": { "type": "Point", "coordinates": [ -43.766666666666666, -22.866666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Brazil", "Function": "1-3-----", "LOCODE": "BRIOA", "Name": "Itapo", "NameWoDiac": "Itapoa", "Status": "RL", "outflows": 9027277.19 }, "geometry": { "type": "Point", "coordinates": [ -48.6, -26.116666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Brazil", "Function": "1-34----", "LOCODE": "BRNVT", "Name": "Navegantes", "NameWoDiac": "Navegantes", "Status": "AI", "outflows": 10279036.91334 }, "geometry": { "type": "Point", "coordinates": [ -48.65, -26.9 ] } }, +{ "type": "Feature", "properties": { "Country": "Brazil", "Function": "1--4----", "LOCODE": "BRPNG", "Name": "Paranagu", "NameWoDiac": "Paranagua", "Status": "AI", "outflows": 13802196.524050001 }, "geometry": { "type": "Point", "coordinates": [ -48.5, -25.516666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "Brazil", "Function": "12------", "LOCODE": "BRPEC", "Name": "Pecm Pt\/So Gonalo do Amarante", "NameWoDiac": "Pecem Pt\/Sao Goncalo do Amarante", "Status": "AA", "outflows": 2174063.6046599997 }, "geometry": { "type": "Point", "coordinates": [ -38.866666666666667, -3.533333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Brazil", "Function": "123-567-", "LOCODE": "BRRIO", "Name": "Rio de Janeiro", "NameWoDiac": "Rio de Janeiro", "Status": "AA", "outflows": 9600221.3041699976 }, "geometry": { "type": "Point", "coordinates": [ -43.233333333333334, -22.883333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Brazil", "Function": "1-------", "LOCODE": "BRMCP", "Name": "Santana Pt.\/Macap", "NameWoDiac": "Santana Pt.\/Macapa", "Status": "AA", "outflows": 837504.77784000011 }, "geometry": { "type": "Point", "coordinates": [ -51.166666666666664, -0.05 ] } }, +{ "type": "Feature", "properties": { "Country": "Brazil", "Function": "1234----", "LOCODE": "BRSSZ", "Name": "Santos", "NameWoDiac": "Santos", "Status": "AI", "outflows": 17682777.003890004 }, "geometry": { "type": "Point", "coordinates": [ -46.333333333333336, -23.95 ] } }, +{ "type": "Feature", "properties": { "Country": "Brazil", "Function": "1-34----", "LOCODE": "BRSLZ", "Name": "So Lus", "NameWoDiac": "Sao Luis", "Status": "AI", "outflows": 45240.0 }, "geometry": { "type": "Point", "coordinates": [ -44.3, -2.5 ] } }, +{ "type": "Feature", "properties": { "Country": "Brazil", "Function": "1-------", "LOCODE": "BRVIX", "Name": "Vitria Pt", "NameWoDiac": "Vitoria Pt", "Status": "AA", "outflows": 738129.52788000007 }, "geometry": { "type": "Point", "coordinates": [ -40.333333333333336, -20.316666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "Bahamas", "Function": "1--45---", "LOCODE": "BSNAS", "Name": "Nassau", "NameWoDiac": "Nassau", "Status": "AI", "outflows": 62842.0 }, "geometry": { "type": "Point", "coordinates": [ -77.35, 25.083333333333332 ] } }, +{ "type": "Feature", "properties": { "Country": "Belize", "Function": "1-34----", "LOCODE": "BZBGK", "Name": "Big Creek", "NameWoDiac": "Big Creek", "Status": "RL", "outflows": 199368.0 }, "geometry": { "type": "Point", "coordinates": [ -88.4, 16.516666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "Canada", "Function": "1-34----", "LOCODE": "CANWP", "Name": "Argentia", "NameWoDiac": "Argentia", "Status": "AI", "outflows": 27248.000001 }, "geometry": { "type": "Point", "coordinates": [ -54.0, 47.3 ] } }, +{ "type": "Feature", "properties": { "Country": "Canada", "Function": "1-34-6--", "LOCODE": "CASJB", "Name": "Saint-John", "NameWoDiac": "Saint-John", "Status": "AS", "outflows": 389420.2 }, "geometry": { "type": "Point", "coordinates": [ -66.066666666666663, 45.266666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "Canada", "Function": "1-3-----", "LOCODE": "CASJF", "Name": "Saint-John's", "NameWoDiac": "Saint-John's", "Status": "AS", "outflows": 26845.0 }, "geometry": { "type": "Point", "coordinates": [ -52.733333333333334, 47.56666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Congo, The Democratic Republic of the", "Function": "1-3-----", "LOCODE": "CDBNW", "Name": "Banana", "NameWoDiac": "Banana", "Status": "RL", "outflows": 48681.0 }, "geometry": { "type": "Point", "coordinates": [ 12.401211892732039, -6.003633266930797 ] } }, +{ "type": "Feature", "properties": { "Country": "Congo", "Function": "1--45---", "LOCODE": "CGPNR", "Name": "Pointe Noire", "NameWoDiac": "Pointe Noire", "Status": "AI", "outflows": 3473713.5811700015 }, "geometry": { "type": "Point", "coordinates": [ 11.85, -4.8 ] } }, +{ "type": "Feature", "properties": { "Country": "Cte d'Ivoire", "Function": "1--45---", "LOCODE": "CIABJ", "Name": "Abidjan", "NameWoDiac": "Abidjan", "Status": "AI", "outflows": 3248845.4334399998 }, "geometry": { "type": "Point", "coordinates": [ -4.016666666666667, 5.333333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Cte d'Ivoire", "Function": "1-34----", "LOCODE": "CISPY", "Name": "San-Pdro", "NameWoDiac": "San-Pedro", "Status": "AI", "outflows": 2312502.0286400001 }, "geometry": { "type": "Point", "coordinates": [ -6.616666666666667, 4.733333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Chile", "Function": "1--4----", "LOCODE": "CLANF", "Name": "Antofagasta", "NameWoDiac": "Antofagasta", "Status": "AI", "outflows": 2136460.625 }, "geometry": { "type": "Point", "coordinates": [ -70.38333333333334, -23.633333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Chile", "Function": "1-34----", "LOCODE": "CLARI", "Name": "Arica", "NameWoDiac": "Arica", "Status": "AI", "outflows": 1400600.825 }, "geometry": { "type": "Point", "coordinates": [ -70.316666666666663, -18.483333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "Chile", "Function": "123-----", "LOCODE": "CLCNL", "Name": "Coronel", "NameWoDiac": "Coronel", "Status": "AI", "outflows": 5437390.8332000002 }, "geometry": { "type": "Point", "coordinates": [ -73.15, -37.016666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "Chile", "Function": "1--4----", "LOCODE": "CLIQQ", "Name": "Iquique", "NameWoDiac": "Iquique", "Status": "AI", "outflows": 1915647.5 }, "geometry": { "type": "Point", "coordinates": [ -70.13333333333334, -20.216666666666665 ] } }, +{ "type": "Feature", "properties": { "Country": "Chile", "Function": "123-----", "LOCODE": "CLLQN", "Name": "Lirqun", "NameWoDiac": "Lirquen", "Status": "AI", "outflows": 3185838.4995000004 }, "geometry": { "type": "Point", "coordinates": [ -72.983333333333334, -36.7 ] } }, +{ "type": "Feature", "properties": { "Country": "Chile", "Function": "1-------", "LOCODE": "CLMJS", "Name": "Mejillones", "NameWoDiac": "Mejillones", "Status": "AI", "outflows": 32362.2 }, "geometry": { "type": "Point", "coordinates": [ -70.45, -23.1 ] } }, +{ "type": "Feature", "properties": { "Country": "Chile", "Function": "123-----", "LOCODE": "CLPAG", "Name": "Puerto Angamos", "NameWoDiac": "Puerto Angamos", "Status": "RL", "outflows": 5408319.3663000017 }, "geometry": { "type": "Point", "coordinates": [ -70.45, -23.083333333333332 ] } }, +{ "type": "Feature", "properties": { "Country": "Chile", "Function": "1-34----", "LOCODE": "CLPUQ", "Name": "Punta Arenas", "NameWoDiac": "Punta Arenas", "Status": "AI", "outflows": 18174.0 }, "geometry": { "type": "Point", "coordinates": [ -70.933333333333337, -53.133333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Chile", "Function": "123-----", "LOCODE": "CLSAI", "Name": "San Antonio", "NameWoDiac": "San Antonio", "Status": "AI", "outflows": 9417069.025 }, "geometry": { "type": "Point", "coordinates": [ -71.6, -33.6 ] } }, +{ "type": "Feature", "properties": { "Country": "Chile", "Function": "1-3-----", "LOCODE": "CLSVE", "Name": "San Vicente", "NameWoDiac": "San Vicente", "Status": "AI", "outflows": 945075.625 }, "geometry": { "type": "Point", "coordinates": [ -73.13333333333334, -36.7 ] } }, +{ "type": "Feature", "properties": { "Country": "Chile", "Function": "1234----", "LOCODE": "CLVAP", "Name": "Valparaiso", "NameWoDiac": "Valparaiso", "Status": "AI", "outflows": 2059925.0 }, "geometry": { "type": "Point", "coordinates": [ -71.63333333333334, -33.033333333333331 ] } }, +{ "type": "Feature", "properties": { "Country": "China", "Function": "1-------", "LOCODE": "CNCFD", "Name": "Caofeidian Pt", "NameWoDiac": "Caofeidian Pt", "Status": "AS", "outflows": 168350.0 }, "geometry": { "type": "Point", "coordinates": [ 118.533333333333331, 38.95 ] } }, +{ "type": "Feature", "properties": { "Country": "China", "Function": "1----6--", "LOCODE": "CNDCB", "Name": "DA CHAN BAY", "NameWoDiac": "DA CHAN BAY", "Status": "RL", "outflows": 4367401.0713399984 }, "geometry": { "type": "Point", "coordinates": [ 113.86666666666666, 22.533333333333335 ] } }, +{ "type": "Feature", "properties": { "Country": "China", "Function": "1-------", "LOCODE": "CNDGG", "Name": "Dongguan Pt", "NameWoDiac": "Dongguan Pt", "Status": "AS", "outflows": 94354.0 }, "geometry": { "type": "Point", "coordinates": [ 113.75, 23.033333333333335 ] } }, +{ "type": "Feature", "properties": { "Country": "China", "Function": "1-------", "LOCODE": "CNDJK", "Name": "Dongjiangkou", "NameWoDiac": "Dongjiangkou", "Status": "AS", "outflows": 386750.0 }, "geometry": { "type": "Point", "coordinates": [ 119.52253982618285, 35.308885331582253 ] } }, +{ "type": "Feature", "properties": { "Country": "China", "Function": "--3-----", "LOCODE": "CNFQG", "Name": "Fuqing", "NameWoDiac": "Fuqing", "Status": "RL", "outflows": 1164780.9333599997 }, "geometry": { "type": "Point", "coordinates": [ 119.36666666666666, 25.716666666666665 ] } }, +{ "type": "Feature", "properties": { "Country": "China", "Function": "1-------", "LOCODE": "CNHUI", "Name": "Huizhou Pt", "NameWoDiac": "Huizhou Pt", "Status": "AS", "outflows": 27300.0 }, "geometry": { "type": "Point", "coordinates": [ 114.36666666666666, 23.083333333333332 ] } }, +{ "type": "Feature", "properties": { "Country": "China", "Function": "1-------", "LOCODE": "CNHMN", "Name": "Humen Pt", "NameWoDiac": "Humen Pt", "Status": "AS", "outflows": 630027.5 }, "geometry": { "type": "Point", "coordinates": [ 113.666666666666671, 22.833333333333332 ] } }, +{ "type": "Feature", "properties": { "Country": "China", "Function": "1-3-----", "LOCODE": "CNJGY", "Name": "Jiangyin", "NameWoDiac": "Jiangyin", "Status": "RL", "outflows": 594906.0 }, "geometry": { "type": "Point", "coordinates": [ 119.3, 25.466666666666665 ] } }, +{ "type": "Feature", "properties": { "Country": "China", "Function": "1-------", "LOCODE": "CNJNZ", "Name": "Jinzhou Pt", "NameWoDiac": "Jinzhou Pt", "Status": "AS", "outflows": 684866.0 }, "geometry": { "type": "Point", "coordinates": [ 121.15, 41.116666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "China", "Function": "1-------", "LOCODE": "CNLYG", "Name": "Lianyungang", "NameWoDiac": "Lianyungang", "Status": "AS", "outflows": 9288988.8094500005 }, "geometry": { "type": "Point", "coordinates": [ 119.433333333333337, 34.716666666666669 ] } }, +{ "type": "Feature", "properties": { "Country": "China", "Function": "1-------", "LOCODE": "CNNSA", "Name": "Nansha Pt", "NameWoDiac": "Nansha Pt", "Status": "AS", "outflows": 42484636.038412996 }, "geometry": { "type": "Point", "coordinates": [ 113.583333333333329, 22.75 ] } }, +{ "type": "Feature", "properties": { "Country": "China", "Function": "1-------", "LOCODE": "CNNTG", "Name": "Nantong Pt", "NameWoDiac": "Nantong Pt", "Status": "AS", "outflows": 261618.5 }, "geometry": { "type": "Point", "coordinates": [ 120.85, 32.016666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "China", "Function": "1-------", "LOCODE": "CNSHP", "Name": "Qinhuangdao Pt", "NameWoDiac": "Qinhuangdao Pt", "Status": "AS", "outflows": 105300.0 }, "geometry": { "type": "Point", "coordinates": [ 119.583333333333329, 39.916666666666664 ] } }, +{ "type": "Feature", "properties": { "Country": "China", "Function": "1-------", "LOCODE": "CNQZJ", "Name": "Quanzhou Pt", "NameWoDiac": "Quanzhou Pt", "Status": "AS", "outflows": 512451.33335000003 }, "geometry": { "type": "Point", "coordinates": [ 118.6, 24.933333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "China", "Function": "1-------", "LOCODE": "CNRZH", "Name": "Rizhao Pt", "NameWoDiac": "Rizhao Pt", "Status": "AS", "outflows": 1075073.00003 }, "geometry": { "type": "Point", "coordinates": [ 119.533333333333331, 35.383333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "China", "Function": "1-------", "LOCODE": "CNSHK", "Name": "Shekou Pt", "NameWoDiac": "Shekou Pt", "Status": "AS", "outflows": 74635666.140550002 }, "geometry": { "type": "Point", "coordinates": [ 113.916666666666671, 22.483333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "China", "Function": "1-------", "LOCODE": "CNSHD", "Name": "Shidao Pt", "NameWoDiac": "Shidao Pt", "Status": "AS", "outflows": 54886.0 }, "geometry": { "type": "Point", "coordinates": [ 122.433333333333337, 36.866666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "China", "Function": "1-------", "LOCODE": "CNWIH", "Name": "Waihai", "NameWoDiac": "Waihai", "Status": "AS", "outflows": 50050.0 }, "geometry": { "type": "Point", "coordinates": [ 113.13333333333334, 22.583333333333332 ] } }, +{ "type": "Feature", "properties": { "Country": "China", "Function": "1--4----", "LOCODE": "CNWEF", "Name": "Weifang Pt", "NameWoDiac": "Weifang Pt", "Status": "AS", "outflows": 65923.0 }, "geometry": { "type": "Point", "coordinates": [ 119.1, 36.716666666666669 ] } }, +{ "type": "Feature", "properties": { "Country": "China", "Function": "1--45---", "LOCODE": "CNWEI", "Name": "Weihai", "NameWoDiac": "Weihai", "Status": "AS", "outflows": 238257.5 }, "geometry": { "type": "Point", "coordinates": [ 122.11666666666666, 37.516666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "China", "Function": "1-------", "LOCODE": "CNYPG", "Name": "Yangpu Pt", "NameWoDiac": "Yangpu Pt", "Status": "AS", "outflows": 872543.16658000019 }, "geometry": { "type": "Point", "coordinates": [ 109.2, 19.7 ] } }, +{ "type": "Feature", "properties": { "Country": "China", "Function": "1-------", "LOCODE": "CNYTN", "Name": "Yantian Pt", "NameWoDiac": "Yantian Pt", "Status": "AS", "outflows": 74187678.537459999 }, "geometry": { "type": "Point", "coordinates": [ 119.86666666666666, 26.85 ] } }, +{ "type": "Feature", "properties": { "Country": "China", "Function": "1-------", "LOCODE": "CNYIK", "Name": "Yingkou Pt", "NameWoDiac": "Yingkou Pt", "Status": "AS", "outflows": 1421671.0 }, "geometry": { "type": "Point", "coordinates": [ 122.216666666666669, 40.65 ] } }, +{ "type": "Feature", "properties": { "Country": "China", "Function": "1-------", "LOCODE": "CNZJG", "Name": "Zhangjiagang", "NameWoDiac": "Zhangjiagang", "Status": "AS", "outflows": 196865.5 }, "geometry": { "type": "Point", "coordinates": [ 120.533333333333331, 31.866666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "China", "Function": "1-------", "LOCODE": "CNZZU", "Name": "Zhangzhou Pt", "NameWoDiac": "Zhangzhou Pt", "Status": "AS", "outflows": 340964.0 }, "geometry": { "type": "Point", "coordinates": [ 117.65, 24.516666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "China", "Function": "1-------", "LOCODE": "CNZUH", "Name": "Zhuhai Pt", "NameWoDiac": "Zhuhai Pt", "Status": "AS", "outflows": 929467.5 }, "geometry": { "type": "Point", "coordinates": [ 113.566666666666663, 22.283333333333335 ] } }, +{ "type": "Feature", "properties": { "Country": "Colombia", "Function": "1--4----", "LOCODE": "COLET", "Name": "Leticia", "NameWoDiac": "Leticia", "Status": "AI", "outflows": 9675.0 }, "geometry": { "type": "Point", "coordinates": [ -69.933333333333337, -4.216666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Colombia", "Function": "1--4----", "LOCODE": "COTLU", "Name": "Tol", "NameWoDiac": "Tolu", "Status": "AI", "outflows": 9675.0 }, "geometry": { "type": "Point", "coordinates": [ -75.583333333333329, 9.533333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Colombia", "Function": "1--4----", "LOCODE": "COTRB", "Name": "Turbo", "NameWoDiac": "Turbo", "Status": "AI", "outflows": 799731.40001499979 }, "geometry": { "type": "Point", "coordinates": [ -76.716666666666669, 8.083333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "Costa Rica", "Function": "123-----", "LOCODE": "CRCAL", "Name": "Caldera", "NameWoDiac": "Caldera", "Status": "RL", "outflows": 704191.8 }, "geometry": { "type": "Point", "coordinates": [ -84.716666666666669, 9.95 ] } }, +{ "type": "Feature", "properties": { "Country": "Costa Rica", "Function": "1-3-----", "LOCODE": "CRMOB", "Name": "Mon", "NameWoDiac": "Moin", "Status": "RL", "outflows": 2884497.4165249998 }, "geometry": { "type": "Point", "coordinates": [ -83.083333333333329, 10.0 ] } }, +{ "type": "Feature", "properties": { "Country": "Costa Rica", "Function": "1-3-----", "LOCODE": "CRLIO", "Name": "Puerto Limn", "NameWoDiac": "Puerto Limon", "Status": "AI", "outflows": 2372283.3334299996 }, "geometry": { "type": "Point", "coordinates": [ -83.033333333333331, 10.0 ] } }, +{ "type": "Feature", "properties": { "Country": "Cuba", "Function": "1234----", "LOCODE": "CUMAR", "Name": "Mariel", "NameWoDiac": "Mariel", "Status": "RL", "outflows": 370296.8 }, "geometry": { "type": "Point", "coordinates": [ -82.75, 23.0 ] } }, +{ "type": "Feature", "properties": { "Country": "Cabo Verde", "Function": "1-3-----", "LOCODE": "CVMIN", "Name": "Mindelo", "NameWoDiac": "Mindelo", "Status": "RL", "outflows": 114309.0 }, "geometry": { "type": "Point", "coordinates": [ -25.0, 16.883333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Curaao", "Function": "1-------", "LOCODE": "CWWIL", "Name": "Willemstad", "NameWoDiac": "Willemstad", "Status": "AI", "outflows": 721990.3 }, "geometry": { "type": "Point", "coordinates": [ -68.916666666666671, 12.1 ] } }, +{ "type": "Feature", "properties": { "Country": "Christmas Island", "Function": "1-------", "LOCODE": "CXFFC", "Name": "Flying Fish Cove", "NameWoDiac": "Flying Fish Cove", "Status": "RL", "outflows": 2520.0 }, "geometry": { "type": "Point", "coordinates": [ 105.716666666666669, -10.416666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "Cyprus", "Function": "1-3-5---", "LOCODE": "CYLMS", "Name": "Limassol", "NameWoDiac": "Limassol", "Status": "AA", "outflows": 2366252.75 }, "geometry": { "type": "Point", "coordinates": [ 33.05, 34.68333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Germany", "Function": "123-----", "LOCODE": "DEBKE", "Name": "Brake", "NameWoDiac": "Brake", "Status": "AF", "outflows": 27774.0 }, "geometry": { "type": "Point", "coordinates": [ 8.483333333333333, 53.333333333333336 ] } }, +{ "type": "Feature", "properties": { "Country": "Germany", "Function": "123-----", "LOCODE": "DECUX", "Name": "Cuxhaven", "NameWoDiac": "Cuxhaven", "Status": "AF", "outflows": 128258.0 }, "geometry": { "type": "Point", "coordinates": [ 8.7, 53.883333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Germany", "Function": "1234----", "LOCODE": "DEEME", "Name": "Emden", "NameWoDiac": "Emden", "Status": "AF", "outflows": 14598.0 }, "geometry": { "type": "Point", "coordinates": [ 7.216666666666667, 53.366666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Germany", "Function": "1234----", "LOCODE": "DEKEL", "Name": "Kiel", "NameWoDiac": "Kiel", "Status": "AF", "outflows": 14040.0 }, "geometry": { "type": "Point", "coordinates": [ 10.133333333333333, 54.333333333333336 ] } }, +{ "type": "Feature", "properties": { "Country": "Germany", "Function": "12345---", "LOCODE": "DERSK", "Name": "Rostock", "NameWoDiac": "Rostock", "Status": "AF", "outflows": 7984.0 }, "geometry": { "type": "Point", "coordinates": [ 12.133333333333333, 54.083333333333336 ] } }, +{ "type": "Feature", "properties": { "Country": "Germany", "Function": "1234----", "LOCODE": "DEWVN", "Name": "Wilhelmshaven", "NameWoDiac": "Wilhelmshaven", "Status": "AF", "outflows": 7664957.3927999986 }, "geometry": { "type": "Point", "coordinates": [ 8.133333333333333, 53.516666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "Denmark", "Function": "12345---", "LOCODE": "DKAAR", "Name": "Aarhus", "NameWoDiac": "Aarhus", "Status": "AF", "outflows": 4009844.4282799996 }, "geometry": { "type": "Point", "coordinates": [ 10.216666666666667, 56.15 ] } }, +{ "type": "Feature", "properties": { "Country": "Denmark", "Function": "12345---", "LOCODE": "DKCPH", "Name": "Kbenhavn", "NameWoDiac": "Kobenhavn", "Status": "AF", "outflows": 138606.0 }, "geometry": { "type": "Point", "coordinates": [ 12.583333333333334, 55.666666666666664 ] } }, +{ "type": "Feature", "properties": { "Country": "Dominican Republic", "Function": "1-3--6--", "LOCODE": "DOCAU", "Name": "Caucedo", "NameWoDiac": "Caucedo", "Status": "RL", "outflows": 11771542.79576 }, "geometry": { "type": "Point", "coordinates": [ -69.63333333333334, 18.416666666666668 ] } }, +{ "type": "Feature", "properties": { "Country": "Dominican Republic", "Function": "123-----", "LOCODE": "DOMAN", "Name": "Manzanillo", "NameWoDiac": "Manzanillo", "Status": "RL", "outflows": 53258.4 }, "geometry": { "type": "Point", "coordinates": [ -71.75, 19.7 ] } }, +{ "type": "Feature", "properties": { "Country": "Algeria", "Function": "123456--", "LOCODE": "DZALG", "Name": "Alger (Algiers)", "NameWoDiac": "Alger (Algiers)", "Status": "AI", "outflows": 835952.4 }, "geometry": { "type": "Point", "coordinates": [ 3.05, 36.75 ] } }, +{ "type": "Feature", "properties": { "Country": "Algeria", "Function": "123-----", "LOCODE": "DZAZW", "Name": "Arzew", "NameWoDiac": "Arzew", "Status": "RL", "outflows": 24660.0 }, "geometry": { "type": "Point", "coordinates": [ -0.316666666666667, 35.866666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Algeria", "Function": "123-----", "LOCODE": "DZGHZ", "Name": "Ghazaouet", "NameWoDiac": "Ghazaouet", "Status": "RL", "outflows": 72735.0 }, "geometry": { "type": "Point", "coordinates": [ -1.85, 35.1 ] } }, +{ "type": "Feature", "properties": { "Country": "Ecuador", "Function": "1--4----", "LOCODE": "ECESM", "Name": "Esmeraldas", "NameWoDiac": "Esmeraldas", "Status": "AI", "outflows": 153990.2 }, "geometry": { "type": "Point", "coordinates": [ -79.7, 0.983333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Ecuador", "Function": "1--45---", "LOCODE": "ECGYE", "Name": "Guayaquil", "NameWoDiac": "Guayaquil", "Status": "AI", "outflows": 8368052.2252000012 }, "geometry": { "type": "Point", "coordinates": [ -79.9, -2.166666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Ecuador", "Function": "--3--6--", "LOCODE": "ECPSJ", "Name": "Posorja", "NameWoDiac": "Posorja", "Status": "RL", "outflows": 1776250.6667999995 }, "geometry": { "type": "Point", "coordinates": [ -80.25, -2.7 ] } }, +{ "type": "Feature", "properties": { "Country": "Ecuador", "Function": "1-------", "LOCODE": "ECPBO", "Name": "Puerto Bolvar", "NameWoDiac": "Puerto Bolivar", "Status": "AI", "outflows": 1601516.8 }, "geometry": { "type": "Point", "coordinates": [ -79.983333333333334, -3.266666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Estonia", "Function": "1------B", "LOCODE": "EEKND", "Name": "Kunda", "NameWoDiac": "Kunda", "Status": "AA", "outflows": 4176.0 }, "geometry": { "type": "Point", "coordinates": [ 26.533333333333335, 59.516666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "Estonia", "Function": "1------B", "LOCODE": "EEMUG", "Name": "Muuga", "NameWoDiac": "Muuga", "Status": "AA", "outflows": 74880.0 }, "geometry": { "type": "Point", "coordinates": [ 24.966666666666665, 59.5 ] } }, +{ "type": "Feature", "properties": { "Country": "Estonia", "Function": "-23----B", "LOCODE": "EEPLA", "Name": "Paldiski", "NameWoDiac": "Paldiski", "Status": "AA", "outflows": 90009.0 }, "geometry": { "type": "Point", "coordinates": [ 24.05, 59.35 ] } }, +{ "type": "Feature", "properties": { "Country": "Estonia", "Function": "1--45---", "LOCODE": "EETLL", "Name": "Tallinn", "NameWoDiac": "Tallinn", "Status": "AI", "outflows": 493596.99998000002 }, "geometry": { "type": "Point", "coordinates": [ 24.733333333333334, 59.43333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Egypt", "Function": "1234----", "LOCODE": "EGDAM", "Name": "Dumyat (Damietta)", "NameWoDiac": "Dumyat (Damietta)", "Status": "RL", "outflows": 9993066.850010002 }, "geometry": { "type": "Point", "coordinates": [ 31.816666666666666, 31.416666666666668 ] } }, +{ "type": "Feature", "properties": { "Country": "Egypt", "Function": "1--45---", "LOCODE": "EGALY", "Name": "El Iskandariya (Alexandria)", "NameWoDiac": "El Iskandariya (Alexandria)", "Status": "AI", "outflows": 6389301.2997899996 }, "geometry": { "type": "Point", "coordinates": [ 29.916666666666668, 31.183333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "Egypt", "Function": "1-------", "LOCODE": "EGSOK", "Name": "Sokhna Port", "NameWoDiac": "Sokhna Port", "Status": "RQ", "outflows": 3639356.7318400005 }, "geometry": { "type": "Point", "coordinates": [ 32.35, 29.65 ] } }, +{ "type": "Feature", "properties": { "Country": "Eritrea", "Function": "1234----", "LOCODE": "ERMSW", "Name": "Massawa (Mitsiwa)", "NameWoDiac": "Massawa (Mitsiwa)", "Status": "AI", "outflows": 44242.0 }, "geometry": { "type": "Point", "coordinates": [ 39.45, 15.6 ] } }, +{ "type": "Feature", "properties": { "Country": "Spain", "Function": "1234----", "LOCODE": "ESLEI", "Name": "Almera", "NameWoDiac": "Almeria", "Status": "AI", "outflows": 123708.0 }, "geometry": { "type": "Point", "coordinates": [ -2.45, 36.833333333333336 ] } }, +{ "type": "Feature", "properties": { "Country": "Spain", "Function": "12345---", "LOCODE": "ESBIO", "Name": "Bilbao", "NameWoDiac": "Bilbao", "Status": "AI", "outflows": 757628.79999199987 }, "geometry": { "type": "Point", "coordinates": [ -2.966666666666667, 43.25 ] } }, +{ "type": "Feature", "properties": { "Country": "Spain", "Function": "123-----", "LOCODE": "ESCAR", "Name": "Cartagena", "NameWoDiac": "Cartagena", "Status": "AA", "outflows": 161718.0 }, "geometry": { "type": "Point", "coordinates": [ -0.983333333333333, 37.6 ] } }, +{ "type": "Feature", "properties": { "Country": "Spain", "Function": "123-----", "LOCODE": "ESCAS", "Name": "Castelln de la Plana", "NameWoDiac": "Castellon de la Plana", "Status": "AI", "outflows": 2188540.79158 }, "geometry": { "type": "Point", "coordinates": [ -0.033333333333333, 39.983333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "Spain", "Function": "123-----", "LOCODE": "ESFRO", "Name": "Ferrol", "NameWoDiac": "Ferrol", "Status": "AI", "outflows": 165064.5 }, "geometry": { "type": "Point", "coordinates": [ -8.25, 43.483333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "Spain", "Function": "1234----", "LOCODE": "ESGIJ", "Name": "Gijn", "NameWoDiac": "Gijon", "Status": "AI", "outflows": 356746.0 }, "geometry": { "type": "Point", "coordinates": [ -5.666666666666667, 43.533333333333331 ] } }, +{ "type": "Feature", "properties": { "Country": "Spain", "Function": "1--4----", "LOCODE": "ESACE", "Name": "Lanzarote", "NameWoDiac": "Lanzarote", "Status": "AI", "outflows": 421980.0 }, "geometry": { "type": "Point", "coordinates": [ -13.533333333333333, 28.966666666666665 ] } }, +{ "type": "Feature", "properties": { "Country": "Spain", "Function": "1-3456--", "LOCODE": "ESLPA", "Name": "Las Palmas de Gran Canaria", "NameWoDiac": "Las Palmas de Gran Canaria", "Status": "AI", "outflows": 5009347.5287000006 }, "geometry": { "type": "Point", "coordinates": [ -15.416666666666666, 28.1 ] } }, +{ "type": "Feature", "properties": { "Country": "Spain", "Function": "1--45---", "LOCODE": "ESAGP", "Name": "Mlaga", "NameWoDiac": "Malaga", "Status": "AI", "outflows": 439868.0 }, "geometry": { "type": "Point", "coordinates": [ -4.416666666666667, 36.716666666666669 ] } }, +{ "type": "Feature", "properties": { "Country": "Spain", "Function": "1-34----", "LOCODE": "ESMLN", "Name": "Melilla", "NameWoDiac": "Melilla", "Status": "AI", "outflows": 45500.0 }, "geometry": { "type": "Point", "coordinates": [ -2.883333333333333, 35.31666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Spain", "Function": "123-----", "LOCODE": "ESSAG", "Name": "Sagunto", "NameWoDiac": "Sagunto", "Status": "AI", "outflows": 417560.0 }, "geometry": { "type": "Point", "coordinates": [ -0.266666666666667, 39.68333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Spain", "Function": "1--4----", "LOCODE": "ESSPC", "Name": "Santa Cruz de La Palma", "NameWoDiac": "Santa Cruz de La Palma", "Status": "AI", "outflows": 245440.0 }, "geometry": { "type": "Point", "coordinates": [ -17.766666666666666, 28.683333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "Spain", "Function": "1-3-----", "LOCODE": "ESVIL", "Name": "Villagarca de Arosa", "NameWoDiac": "Villagarcia de Arosa", "Status": "AI", "outflows": 130988.0 }, "geometry": { "type": "Point", "coordinates": [ -8.75, 42.6 ] } }, +{ "type": "Feature", "properties": { "Country": "Finland", "Function": "1-34----", "LOCODE": "FITKU", "Name": "bo (Turku)", "NameWoDiac": "Abo (Turku)", "Status": "AI", "outflows": 16263.0 }, "geometry": { "type": "Point", "coordinates": [ 22.283333333333335, 60.45 ] } }, +{ "type": "Feature", "properties": { "Country": "Finland", "Function": "1-34----", "LOCODE": "FITKU", "Name": "Turku (bo)", "NameWoDiac": "Turku (Abo)", "Status": "AI", "outflows": 16263.0 }, "geometry": { "type": "Point", "coordinates": [ 22.283333333333335, 60.45 ] } }, +{ "type": "Feature", "properties": { "Country": "Finland", "Function": "1-34----", "LOCODE": "FIPOR", "Name": "Bjrneborg (Pori)", "NameWoDiac": "Bjorneborg (Pori)", "Status": "AI", "outflows": 5220.0 }, "geometry": { "type": "Point", "coordinates": [ 21.8, 61.483333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "Finland", "Function": "1-34----", "LOCODE": "FIPOR", "Name": "Pori (Bjrneborg)", "NameWoDiac": "Pori (Bjorneborg)", "Status": "AI", "outflows": 5220.0 }, "geometry": { "type": "Point", "coordinates": [ 21.8, 61.483333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "Finland", "Function": "1-------", "LOCODE": "FIHMN", "Name": "Fredrikshamn (Hamina)", "NameWoDiac": "Fredrikshamn (Hamina)", "Status": "AI", "outflows": 4437.0 }, "geometry": { "type": "Point", "coordinates": [ 27.2, 60.56666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Finland", "Function": "1-------", "LOCODE": "FIHMN", "Name": "Hamina (Fredrikshamn)", "NameWoDiac": "Hamina (Fredrikshamn)", "Status": "AI", "outflows": 4437.0 }, "geometry": { "type": "Point", "coordinates": [ 27.2, 60.56666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Finland", "Function": "123-----", "LOCODE": "FIPRS", "Name": "Jakobstad (Pietarsaari)", "NameWoDiac": "Jakobstad (Pietarsaari)", "Status": "AI", "outflows": 9396.0 }, "geometry": { "type": "Point", "coordinates": [ 22.783333333333335, 63.68333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Finland", "Function": "123-----", "LOCODE": "FIPRS", "Name": "Pietarsaari (Jakobstad)", "NameWoDiac": "Pietarsaari (Jakobstad)", "Status": "AI", "outflows": 9396.0 }, "geometry": { "type": "Point", "coordinates": [ 22.783333333333335, 63.68333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Finland", "Function": "123-----", "LOCODE": "FIKOK", "Name": "Karleby (Kokkola)", "NameWoDiac": "Karleby (Kokkola)", "Status": "AI", "outflows": 39182.0 }, "geometry": { "type": "Point", "coordinates": [ 23.116666666666667, 63.833333333333336 ] } }, +{ "type": "Feature", "properties": { "Country": "Finland", "Function": "123-----", "LOCODE": "FIKOK", "Name": "Kokkola (Karleby)", "NameWoDiac": "Kokkola (Karleby)", "Status": "AI", "outflows": 39182.0 }, "geometry": { "type": "Point", "coordinates": [ 23.116666666666667, 63.833333333333336 ] } }, +{ "type": "Feature", "properties": { "Country": "Finland", "Function": "1-34----", "LOCODE": "FIKEM", "Name": "Kemi\/Torne (Kemi\/Tornio)", "NameWoDiac": "Kemi\/Tornea (Kemi\/Tornio)", "Status": "AI", "outflows": 106574.0 }, "geometry": { "type": "Point", "coordinates": [ 24.566666666666666, 65.733333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "Finland", "Function": "1-34----", "LOCODE": "FIKEM", "Name": "Kemi\/Tornio (Kemi\/Torne)", "NameWoDiac": "Kemi\/Tornio (Kemi\/Tornea)", "Status": "AI", "outflows": 106574.0 }, "geometry": { "type": "Point", "coordinates": [ 24.566666666666666, 65.733333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "Finland", "Function": "123----B", "LOCODE": "FIKTK", "Name": "Kotka", "NameWoDiac": "Kotka", "Status": "AC", "outflows": 1116795.4999200001 }, "geometry": { "type": "Point", "coordinates": [ 26.916666666666668, 60.466666666666669 ] } }, +{ "type": "Feature", "properties": { "Country": "Finland", "Function": "123----B", "LOCODE": "FIRAU", "Name": "Rauma (Raumo)", "NameWoDiac": "Rauma (Raumo)", "Status": "AC", "outflows": 705561.49998000008 }, "geometry": { "type": "Point", "coordinates": [ 21.5, 61.133333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Finland", "Function": "123----B", "LOCODE": "FIRAU", "Name": "Raumo (Rauma)", "NameWoDiac": "Raumo (Rauma)", "Status": "AC", "outflows": 705561.49998000008 }, "geometry": { "type": "Point", "coordinates": [ 21.5, 61.133333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Finland", "Function": "1-------", "LOCODE": "FITOR", "Name": "Torne (Tornio)", "NameWoDiac": "Tornea (Tornio)", "Status": "AI", "outflows": 91624.0 }, "geometry": { "type": "Point", "coordinates": [ 24.183333333333334, 65.85 ] } }, +{ "type": "Feature", "properties": { "Country": "Finland", "Function": "1-------", "LOCODE": "FITOR", "Name": "Tornio (Torne)", "NameWoDiac": "Tornio (Tornea)", "Status": "AI", "outflows": 91624.0 }, "geometry": { "type": "Point", "coordinates": [ 24.183333333333334, 65.85 ] } }, +{ "type": "Feature", "properties": { "Country": "Fiji", "Function": "123-----", "LOCODE": "FJLTK", "Name": "Lautoka", "NameWoDiac": "Lautoka", "Status": "RL", "outflows": 490393.0 }, "geometry": { "type": "Point", "coordinates": [ 177.45, -17.616666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Fiji", "Function": "1--45---", "LOCODE": "FJSUV", "Name": "Suva", "NameWoDiac": "Suva", "Status": "AI", "outflows": 535295.0 }, "geometry": { "type": "Point", "coordinates": [ 178.45, -18.133333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Faroe Islands", "Function": "1-3-----", "LOCODE": "FOKOL", "Name": "Kollafjrdur", "NameWoDiac": "Kollafjordur", "Status": "RL", "outflows": 82628.0 }, "geometry": { "type": "Point", "coordinates": [ -6.883333333333333, 62.116666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Faroe Islands", "Function": "1-------", "LOCODE": "FOTHO", "Name": "Thorshavn", "NameWoDiac": "Thorshavn", "Status": "RL", "outflows": 91104.0 }, "geometry": { "type": "Point", "coordinates": [ -6.766666666666667, 62.016666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "France", "Function": "12------", "LOCODE": "FRBAS", "Name": "Bassens", "NameWoDiac": "Bassens", "Status": "AF", "outflows": 33930.0 }, "geometry": { "type": "Point", "coordinates": [ -0.516666666666667, 44.9 ] } }, +{ "type": "Feature", "properties": { "Country": "France", "Function": "1234----", "LOCODE": "FRBES", "Name": "Brest", "NameWoDiac": "Brest", "Status": "AF", "outflows": 107185.0 }, "geometry": { "type": "Point", "coordinates": [ -4.483333333333333, 48.4 ] } }, +{ "type": "Feature", "properties": { "Country": "France", "Function": "12--5---", "LOCODE": "FRDKK", "Name": "Dunkerque", "NameWoDiac": "Dunkerque", "Status": "AF", "outflows": 4450642.0836299993 }, "geometry": { "type": "Point", "coordinates": [ 2.383333333333333, 51.033333333333331 ] } }, +{ "type": "Feature", "properties": { "Country": "France", "Function": "123---7-", "LOCODE": "FRFOS", "Name": "Fos-sur-Mer", "NameWoDiac": "Fos-sur-Mer", "Status": "AF", "outflows": 18248513.215530016 }, "geometry": { "type": "Point", "coordinates": [ 4.933333333333334, 43.43333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "France", "Function": "1-------", "LOCODE": "FRLPE", "Name": "la Pallice", "NameWoDiac": "la Pallice", "Status": "AF", "outflows": 22725.0 }, "geometry": { "type": "Point", "coordinates": [ -1.216666666666667, 46.166666666666664 ] } }, +{ "type": "Feature", "properties": { "Country": "France", "Function": "12-4----", "LOCODE": "FRLRH", "Name": "La Rochelle", "NameWoDiac": "La Rochelle", "Status": "AF", "outflows": 33930.0 }, "geometry": { "type": "Point", "coordinates": [ -1.15, 46.166666666666664 ] } }, +{ "type": "Feature", "properties": { "Country": "France", "Function": "12345---", "LOCODE": "FRLEH", "Name": "Le Havre", "NameWoDiac": "Le Havre", "Status": "AF", "outflows": 35976285.665610015 }, "geometry": { "type": "Point", "coordinates": [ 0.1, 49.5 ] } }, +{ "type": "Feature", "properties": { "Country": "France", "Function": "12-45---", "LOCODE": "FRMRS", "Name": "Marseille", "NameWoDiac": "Marseille", "Status": "AF", "outflows": 629024.0 }, "geometry": { "type": "Point", "coordinates": [ 5.4, 43.3 ] } }, +{ "type": "Feature", "properties": { "Country": "France", "Function": "123-----", "LOCODE": "FRMTX", "Name": "Montoir-de-Bretagne", "NameWoDiac": "Montoir-de-Bretagne", "Status": "AF", "outflows": 1130547.1665700004 }, "geometry": { "type": "Point", "coordinates": [ -2.15, 47.333333333333336 ] } }, +{ "type": "Feature", "properties": { "Country": "France", "Function": "12------", "LOCODE": "FRPOV", "Name": "Port-Vendres", "NameWoDiac": "Port-Vendres", "Status": "AF", "outflows": 21450.0 }, "geometry": { "type": "Point", "coordinates": [ 3.116666666666667, 42.516666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "France", "Function": "1-3-----", "LOCODE": "FRRAD", "Name": "Radicatel", "NameWoDiac": "Radicatel", "Status": "RL", "outflows": 42900.000003000001 }, "geometry": { "type": "Point", "coordinates": [ 0.5, 49.5 ] } }, +{ "type": "Feature", "properties": { "Country": "France", "Function": "1-34----", "LOCODE": "FRURO", "Name": "Rouen", "NameWoDiac": "Rouen", "Status": "AF", "outflows": 34842.0 }, "geometry": { "type": "Point", "coordinates": [ 1.1, 49.45 ] } }, +{ "type": "Feature", "properties": { "Country": "France", "Function": "123-----", "LOCODE": "FRSET", "Name": "Ste", "NameWoDiac": "Sete", "Status": "AF", "outflows": 34041.0 }, "geometry": { "type": "Point", "coordinates": [ 3.7, 43.4 ] } }, +{ "type": "Feature", "properties": { "Country": "France", "Function": "12-4----", "LOCODE": "FRTLN", "Name": "Toulon", "NameWoDiac": "Toulon", "Status": "AF", "outflows": 1080.0 }, "geometry": { "type": "Point", "coordinates": [ 5.933333333333334, 43.116666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "United Kingdom", "Function": "1--4----", "LOCODE": "GBABD", "Name": "Aberdeen", "NameWoDiac": "Aberdeen", "Status": "AF", "outflows": 48681.0 }, "geometry": { "type": "Point", "coordinates": [ -2.1, 57.133333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "United Kingdom", "Function": "1--4-6--", "LOCODE": "GBBEL", "Name": "Belfast", "NameWoDiac": "Belfast", "Status": "AF", "outflows": 137826.0 }, "geometry": { "type": "Point", "coordinates": [ -5.916666666666667, 54.983333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "United Kingdom", "Function": "1-------", "LOCODE": "GBGRG", "Name": "Grangemouth", "NameWoDiac": "Grangemouth", "Status": "AF", "outflows": 192244.0 }, "geometry": { "type": "Point", "coordinates": [ -3.716666666666667, 56.0 ] } }, +{ "type": "Feature", "properties": { "Country": "United Kingdom", "Function": "1-------", "LOCODE": "GBGRK", "Name": "Greenock", "NameWoDiac": "Greenock", "Status": "AF", "outflows": 275567.66664999997 }, "geometry": { "type": "Point", "coordinates": [ -4.75, 55.93333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "United Kingdom", "Function": "1-------", "LOCODE": "GBHUL", "Name": "Hull", "NameWoDiac": "Hull", "Status": "AF", "outflows": 219740.33333800005 }, "geometry": { "type": "Point", "coordinates": [ -0.316666666666667, 53.733333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "United Kingdom", "Function": "1-------", "LOCODE": "GBIMM", "Name": "Immingham", "NameWoDiac": "Immingham", "Status": "AF", "outflows": 329625.0 }, "geometry": { "type": "Point", "coordinates": [ -0.216666666666667, 53.6 ] } }, +{ "type": "Feature", "properties": { "Country": "United Kingdom", "Function": "1--4----", "LOCODE": "GBLIV", "Name": "Liverpool", "NameWoDiac": "Liverpool", "Status": "AF", "outflows": 1673890.2916200003 }, "geometry": { "type": "Point", "coordinates": [ -3.0, 53.416666666666664 ] } }, +{ "type": "Feature", "properties": { "Country": "United Kingdom", "Function": "123--6--", "LOCODE": "GBLGP", "Name": "London Gateway Port", "NameWoDiac": "London Gateway Port", "Status": "RL", "outflows": 21704403.092420008 }, "geometry": { "type": "Point", "coordinates": [ 0.483333333333333, 51.5 ] } }, +{ "type": "Feature", "properties": { "Country": "United Kingdom", "Function": "1-------", "LOCODE": "GBTEE", "Name": "Teesport", "NameWoDiac": "Teesport", "Status": "AF", "outflows": 556920.0 }, "geometry": { "type": "Point", "coordinates": [ -1.15, 54.583333333333336 ] } }, +{ "type": "Feature", "properties": { "Country": "United Kingdom", "Function": "1-------", "LOCODE": "GBTYN", "Name": "Tyne", "NameWoDiac": "Tyne", "Status": "RQ", "outflows": 31668.0 }, "geometry": { "type": "Point", "coordinates": [ -1.433333333333333, 55.0 ] } }, +{ "type": "Feature", "properties": { "Country": "French Guiana", "Function": "1-------", "LOCODE": "GFDDC", "Name": "Dgrad des Cannes", "NameWoDiac": "Degrad des Cannes", "Status": "RL", "outflows": 286520.0 }, "geometry": { "type": "Point", "coordinates": [ -52.266666666666666, 4.85 ] } }, +{ "type": "Feature", "properties": { "Country": "Greenland", "Function": "1-34----", "LOCODE": "GLGOH", "Name": "Nuuk (Godthaab)", "NameWoDiac": "Nuuk (Godthaab)", "Status": "AI", "outflows": 23426.0 }, "geometry": { "type": "Point", "coordinates": [ -51.75, 64.183333333333337 ] } }, +{ "type": "Feature", "properties": { "Country": "Guadeloupe", "Function": "1--45---", "LOCODE": "GPPTP", "Name": "Point--Pitre Apt", "NameWoDiac": "Point-a-Pitre Apt", "Status": "AF", "outflows": 1970512.9165490004 }, "geometry": { "type": "Point", "coordinates": [ -61.516666666666666, 16.266666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "Greece", "Function": "1--4----", "LOCODE": "GRHER", "Name": "Heraklion (Iraklion)", "NameWoDiac": "Heraklion (Iraklion)", "Status": "AI", "outflows": 23582.0 }, "geometry": { "type": "Point", "coordinates": [ 25.166666666666668, 35.333333333333336 ] } }, +{ "type": "Feature", "properties": { "Country": "Greece", "Function": "1--4----", "LOCODE": "GRHER", "Name": "Iraklion (Heraklion)", "NameWoDiac": "Iraklion (Heraklion)", "Status": "AI", "outflows": 23582.0 }, "geometry": { "type": "Point", "coordinates": [ 25.166666666666668, 35.333333333333336 ] } }, +{ "type": "Feature", "properties": { "Country": "Greece", "Function": "1-------", "LOCODE": "GRPIR", "Name": "Piraeus", "NameWoDiac": "Piraeus", "Status": "AI", "outflows": 25227137.508840002 }, "geometry": { "type": "Point", "coordinates": [ 23.616666666666667, 37.93333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Greece", "Function": "1--45---", "LOCODE": "GRSKG", "Name": "Thessalonki", "NameWoDiac": "Thessaloniki", "Status": "AI", "outflows": 790815.99999000016 }, "geometry": { "type": "Point", "coordinates": [ 22.95, 40.633333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Greece", "Function": "1--4----", "LOCODE": "GRVOL", "Name": "Vlos", "NameWoDiac": "Volos", "Status": "AI", "outflows": 23582.0 }, "geometry": { "type": "Point", "coordinates": [ 22.95, 39.366666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Guatemala", "Function": "1-------", "LOCODE": "GTSTC", "Name": "Puerto Santo Toms de Castilla", "NameWoDiac": "Puerto Santo Tomas de Castilla", "Status": "AI", "outflows": 1241734.0000599998 }, "geometry": { "type": "Point", "coordinates": [ -88.61666666666666, 15.7 ] } }, +{ "type": "Feature", "properties": { "Country": "Guam", "Function": "--3-----", "LOCODE": "GUPIT", "Name": "Piti", "NameWoDiac": "Piti", "Status": "RL", "outflows": 52903.5 }, "geometry": { "type": "Point", "coordinates": [ 144.683333333333337, 13.433333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "Guinea-Bissau", "Function": "1-345---", "LOCODE": "GWOXB", "Name": "Bissau", "NameWoDiac": "Bissau", "Status": "AI", "outflows": 114309.0 }, "geometry": { "type": "Point", "coordinates": [ -15.583333333333334, 11.85 ] } }, +{ "type": "Feature", "properties": { "Country": "Croatia", "Function": "123-----", "LOCODE": "HRPLE", "Name": "Ploce", "NameWoDiac": "Ploce", "Status": "RL", "outflows": 136773.0 }, "geometry": { "type": "Point", "coordinates": [ 17.433333333333334, 43.05 ] } }, +{ "type": "Feature", "properties": { "Country": "Croatia", "Function": "1234----", "LOCODE": "HRRJK", "Name": "Rijeka", "NameWoDiac": "Rijeka", "Status": "AI", "outflows": 3818455.3333799997 }, "geometry": { "type": "Point", "coordinates": [ 14.4, 45.333333333333336 ] } }, +{ "type": "Feature", "properties": { "Country": "Croatia", "Function": "1234----", "LOCODE": "HRSPU", "Name": "Split", "NameWoDiac": "Split", "Status": "AI", "outflows": 63609.0 }, "geometry": { "type": "Point", "coordinates": [ 16.45, 43.5 ] } }, +{ "type": "Feature", "properties": { "Country": "Haiti", "Function": "1--4----", "LOCODE": "HTCAP", "Name": "Cap-Hatien", "NameWoDiac": "Cap-Haitien", "Status": "AI", "outflows": 47268.0 }, "geometry": { "type": "Point", "coordinates": [ -72.2, 19.75 ] } }, +{ "type": "Feature", "properties": { "Country": "Haiti", "Function": "1-------", "LOCODE": "HTLFF", "Name": "Lafiteau", "NameWoDiac": "Lafiteau", "Status": "AI", "outflows": 1098127.3333000003 }, "geometry": { "type": "Point", "coordinates": [ -72.433333333333337, 18.483333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "Indonesia", "Function": "1--4----", "LOCODE": "IDBPN", "Name": "Balikpapan", "NameWoDiac": "Balikpapan", "Status": "AI", "outflows": 77320.75 }, "geometry": { "type": "Point", "coordinates": [ 116.833333333333329, -1.283333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Indonesia", "Function": "1-3-----", "LOCODE": "IDBTM", "Name": "Batam Island", "NameWoDiac": "Batam Island", "Status": "RL", "outflows": 7335.5 }, "geometry": { "type": "Point", "coordinates": [ 104.033333333333331, 1.083333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Indonesia", "Function": "1-------", "LOCODE": "IDBEN", "Name": "Benete", "NameWoDiac": "Benete", "Status": "RL", "outflows": 12681.75 }, "geometry": { "type": "Point", "coordinates": [ 116.716666666666669, -8.866666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Indonesia", "Function": "1-------", "LOCODE": "IDBOA", "Name": "Benoa", "NameWoDiac": "Benoa", "Status": "RL", "outflows": 6747.0 }, "geometry": { "type": "Point", "coordinates": [ 115.216666666666669, -8.766666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Indonesia", "Function": "12345---", "LOCODE": "IDJKT", "Name": "Jakarta, Java", "NameWoDiac": "Jakarta, Java", "Status": "AI", "outflows": 12060454.992969999 }, "geometry": { "type": "Point", "coordinates": [ 106.833333333333329, -6.133333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "Indonesia", "Function": "1-345---", "LOCODE": "IDDJJ", "Name": "Jayapura, Irian Jaya", "NameWoDiac": "Jayapura, Irian Jaya", "Status": "AI", "outflows": 136162.0 }, "geometry": { "type": "Point", "coordinates": [ 140.7, -2.533333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Indonesia", "Function": "1-3-----", "LOCODE": "IDKUM", "Name": "Kumai", "NameWoDiac": "Kumai", "Status": "RL", "outflows": 4238.0 }, "geometry": { "type": "Point", "coordinates": [ 111.716666666666669, -2.733333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Indonesia", "Function": "1-3-----", "LOCODE": "IDMAK", "Name": "Makassar", "NameWoDiac": "Makassar", "Status": "RL", "outflows": 664450.0 }, "geometry": { "type": "Point", "coordinates": [ 119.4, -5.116666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "Indonesia", "Function": "1234----", "LOCODE": "IDPDG", "Name": "Padang", "NameWoDiac": "Padang", "Status": "AI", "outflows": 74470.25 }, "geometry": { "type": "Point", "coordinates": [ 100.35, -0.95 ] } }, +{ "type": "Feature", "properties": { "Country": "Indonesia", "Function": "1-3-----", "LOCODE": "IDPER", "Name": "Perawang", "NameWoDiac": "Perawang", "Status": "RL", "outflows": 3627.0 }, "geometry": { "type": "Point", "coordinates": [ 102.86666666666666, 1.066666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Indonesia", "Function": "1-345---", "LOCODE": "IDSRG", "Name": "Semarang", "NameWoDiac": "Semarang", "Status": "AI", "outflows": 2529727.4165999996 }, "geometry": { "type": "Point", "coordinates": [ 110.483333333333334, -6.966666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Indonesia", "Function": "123456--", "LOCODE": "IDSUB", "Name": "Surabaya", "NameWoDiac": "Surabaya", "Status": "AI", "outflows": 5004081.1427500024 }, "geometry": { "type": "Point", "coordinates": [ 112.75, -7.233333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Indonesia", "Function": "1--4----", "LOCODE": "IDTNJ", "Name": "Tanjungpinang", "NameWoDiac": "Tanjungpinang", "Status": "AI", "outflows": 3068.0 }, "geometry": { "type": "Point", "coordinates": [ 104.45, 0.916666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Indonesia", "Function": "1-------", "LOCODE": "IDTMK", "Name": "Timika", "NameWoDiac": "Timika", "Status": "RQ", "outflows": 3240.0 }, "geometry": { "type": "Point", "coordinates": [ 136.55, -4.75 ] } }, +{ "type": "Feature", "properties": { "Country": "Indonesia", "Function": "1-------", "LOCODE": "IDTUA", "Name": "Tual", "NameWoDiac": "Tual", "Status": "RQ", "outflows": 12207.0 }, "geometry": { "type": "Point", "coordinates": [ 132.73333333333332, -5.633333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Ireland", "Function": "1-345---", "LOCODE": "IEWAT", "Name": "Waterford", "NameWoDiac": "Waterford", "Status": "AF", "outflows": 86515.0 }, "geometry": { "type": "Point", "coordinates": [ -7.1, 52.25 ] } }, +{ "type": "Feature", "properties": { "Country": "Israel", "Function": "1--45---", "LOCODE": "ILHFA", "Name": "Haifa", "NameWoDiac": "Haifa", "Status": "AI", "outflows": 8470527.0681299977 }, "geometry": { "type": "Point", "coordinates": [ 34.983333333333334, 32.8 ] } }, +{ "type": "Feature", "properties": { "Country": "India", "Function": "12345---", "LOCODE": "INMAA", "Name": "Chennai (ex Madras)", "NameWoDiac": "Chennai (ex Madras)", "Status": "AA", "outflows": 2818763.3167999992 }, "geometry": { "type": "Point", "coordinates": [ 80.283333333333331, 13.083333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "India", "Function": "1234-6--", "LOCODE": "INCOK", "Name": "Cochin", "NameWoDiac": "Cochin", "Status": "AA", "outflows": 2453568.0832799999 }, "geometry": { "type": "Point", "coordinates": [ 76.233333333333334, 9.966666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "India", "Function": "--3--6--", "LOCODE": "INHZR", "Name": "Hazira", "NameWoDiac": "Hazira", "Status": "RL", "outflows": 5911162.5861400003 }, "geometry": { "type": "Point", "coordinates": [ 72.62343557464672, 21.09641041428134 ] } }, +{ "type": "Feature", "properties": { "Country": "India", "Function": "1234-6--", "LOCODE": "INIXY", "Name": "Kandla", "NameWoDiac": "Kandla", "Status": "AA", "outflows": 817280.5 }, "geometry": { "type": "Point", "coordinates": [ 70.216666666666669, 23.033333333333335 ] } }, +{ "type": "Feature", "properties": { "Country": "India", "Function": "123-----", "LOCODE": "INKTP", "Name": "Kattupalli Port", "NameWoDiac": "Kattupalli Port", "Status": "RL", "outflows": 1964901.8999300003 }, "geometry": { "type": "Point", "coordinates": [ 80.38333333333334, 13.3 ] } }, +{ "type": "Feature", "properties": { "Country": "India", "Function": "1--45---", "LOCODE": "INCCU", "Name": "Kolkata (ex Calcutta)", "NameWoDiac": "Kolkata (ex Calcutta)", "Status": "AA", "outflows": 303853.53334000002 }, "geometry": { "type": "Point", "coordinates": [ 88.35, 22.566666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "India", "Function": "123-----", "LOCODE": "INMRM", "Name": "Marmagao (Marmugao)", "NameWoDiac": "Marmagao (Marmugao)", "Status": "AA", "outflows": 100178.0 }, "geometry": { "type": "Point", "coordinates": [ 73.783333333333331, 15.4 ] } }, +{ "type": "Feature", "properties": { "Country": "India", "Function": "123-----", "LOCODE": "INMRM", "Name": "Marmugao (Marmagao)", "NameWoDiac": "Marmugao (Marmagao)", "Status": "AA", "outflows": 100178.0 }, "geometry": { "type": "Point", "coordinates": [ 73.783333333333331, 15.4 ] } }, +{ "type": "Feature", "properties": { "Country": "India", "Function": "123456--", "LOCODE": "INBOM", "Name": "Mumbai (ex Bombay)", "NameWoDiac": "Mumbai (ex Bombay)", "Status": "AA", "outflows": 126915.25 }, "geometry": { "type": "Point", "coordinates": [ 72.816666666666663, 18.966666666666665 ] } }, +{ "type": "Feature", "properties": { "Country": "India", "Function": "123-----", "LOCODE": "INPRT", "Name": "Paradip Garh", "NameWoDiac": "Paradip Garh", "Status": "AA", "outflows": 28080.0 }, "geometry": { "type": "Point", "coordinates": [ 86.61666666666666, 20.316666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "India", "Function": "123-----", "LOCODE": "INPAV", "Name": "Pipavav (Victor) Port", "NameWoDiac": "Pipavav (Victor) Port", "Status": "AA", "outflows": 6333654.3638700033 }, "geometry": { "type": "Point", "coordinates": [ 71.55, 20.966666666666665 ] } }, +{ "type": "Feature", "properties": { "Country": "India", "Function": "123--6--", "LOCODE": "INTUT", "Name": "Tuticorin", "NameWoDiac": "Tuticorin", "Status": "AA", "outflows": 1224891.0 }, "geometry": { "type": "Point", "coordinates": [ 78.13333333333334, 8.783333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "India", "Function": "1234-6--", "LOCODE": "INVTZ", "Name": "Visakhapatnam", "NameWoDiac": "Visakhapatnam", "Status": "AA", "outflows": 2172514.4999899995 }, "geometry": { "type": "Point", "coordinates": [ 83.3, 17.7 ] } }, +{ "type": "Feature", "properties": { "Country": "Iraq", "Function": "123-----", "LOCODE": "IQUQR", "Name": "Umm Qasr Port", "NameWoDiac": "Umm Qasr Port", "Status": "RL", "outflows": 3640547.5715799998 }, "geometry": { "type": "Point", "coordinates": [ 47.93333333333333, 30.033333333333335 ] } }, +{ "type": "Feature", "properties": { "Country": "Iran, Islamic Republic of", "Function": "1-3-----", "LOCODE": "IRASA", "Name": "Asaluyeh", "NameWoDiac": "Asaluyeh", "Status": "RL", "outflows": 3060.0 }, "geometry": { "type": "Point", "coordinates": [ 52.6, 27.466666666666665 ] } }, +{ "type": "Feature", "properties": { "Country": "Iran, Islamic Republic of", "Function": "1--4----", "LOCODE": "IRBND", "Name": "Bandar Abbas", "NameWoDiac": "Bandar Abbas", "Status": "AI", "outflows": 1154182.75 }, "geometry": { "type": "Point", "coordinates": [ 56.266666666666666, 27.183333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "Iran, Islamic Republic of", "Function": "1-34----", "LOCODE": "IRBKM", "Name": "Bandar Khomeini", "NameWoDiac": "Bandar Khomeini", "Status": "RL", "outflows": 85644.0 }, "geometry": { "type": "Point", "coordinates": [ 49.1, 30.433333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "Iran, Islamic Republic of", "Function": "1-34----", "LOCODE": "IRBUZ", "Name": "Bushehr", "NameWoDiac": "Bushehr", "Status": "AI", "outflows": 85644.0 }, "geometry": { "type": "Point", "coordinates": [ 50.833333333333336, 28.966666666666665 ] } }, +{ "type": "Feature", "properties": { "Country": "Iceland", "Function": "1-------", "LOCODE": "ISREY", "Name": "Reykjavk", "NameWoDiac": "Reykjavik", "Status": "AC", "outflows": 327138.50000099995 }, "geometry": { "type": "Point", "coordinates": [ -21.95, 64.15 ] } }, +{ "type": "Feature", "properties": { "Country": "Italy", "Function": "1-34----", "LOCODE": "ITAOI", "Name": "Ancona", "NameWoDiac": "Ancona", "Status": "AI", "outflows": 1251219.6666600001 }, "geometry": { "type": "Point", "coordinates": [ 13.5, 43.633333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Italy", "Function": "1-34----", "LOCODE": "ITBRI", "Name": "Bari", "NameWoDiac": "Bari", "Status": "AI", "outflows": 123851.0 }, "geometry": { "type": "Point", "coordinates": [ 16.85, 41.133333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Italy", "Function": "1-34----", "LOCODE": "ITCAG", "Name": "Cagliari", "NameWoDiac": "Cagliari", "Status": "AI", "outflows": 61347.0 }, "geometry": { "type": "Point", "coordinates": [ 9.116666666666667, 39.216666666666669 ] } }, +{ "type": "Feature", "properties": { "Country": "Italy", "Function": "1-------", "LOCODE": "ITCTA", "Name": "Catania", "NameWoDiac": "Catania", "Status": "AI", "outflows": 112515.0 }, "geometry": { "type": "Point", "coordinates": [ 15.1, 37.5 ] } }, +{ "type": "Feature", "properties": { "Country": "Italy", "Function": "1-------", "LOCODE": "ITCVV", "Name": "Civitavecchia", "NameWoDiac": "Civitavecchia", "Status": "AI", "outflows": 2179445.6662 }, "geometry": { "type": "Point", "coordinates": [ 11.8, 42.1 ] } }, +{ "type": "Feature", "properties": { "Country": "Italy", "Function": "12345---", "LOCODE": "ITGOA", "Name": "Genova", "NameWoDiac": "Genova", "Status": "AI", "outflows": 23896971.132049996 }, "geometry": { "type": "Point", "coordinates": [ 8.95, 44.416666666666664 ] } }, +{ "type": "Feature", "properties": { "Country": "Italy", "Function": "1-------", "LOCODE": "ITGIT", "Name": "Gioia Tauro", "NameWoDiac": "Gioia Tauro", "Status": "AI", "outflows": 16628557.647730002 }, "geometry": { "type": "Point", "coordinates": [ 15.9, 38.416666666666664 ] } }, +{ "type": "Feature", "properties": { "Country": "Italy", "Function": "1-------", "LOCODE": "ITSPE", "Name": "La Spezia", "NameWoDiac": "La Spezia", "Status": "AI", "outflows": 12785874.433700003 }, "geometry": { "type": "Point", "coordinates": [ 9.833333333333334, 44.116666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Italy", "Function": "1-------", "LOCODE": "ITLIV", "Name": "Livorno", "NameWoDiac": "Livorno", "Status": "AI", "outflows": 8253720.2853500005 }, "geometry": { "type": "Point", "coordinates": [ 10.316666666666666, 43.55 ] } }, +{ "type": "Feature", "properties": { "Country": "Italy", "Function": "1234----", "LOCODE": "ITNAP", "Name": "Napoli", "NameWoDiac": "Napoli", "Status": "AI", "outflows": 4010591.4281000006 }, "geometry": { "type": "Point", "coordinates": [ 14.25, 40.833333333333336 ] } }, +{ "type": "Feature", "properties": { "Country": "Italy", "Function": "1234----", "LOCODE": "ITOLB", "Name": "Olbia", "NameWoDiac": "Olbia", "Status": "RL", "outflows": 11076.0 }, "geometry": { "type": "Point", "coordinates": [ 9.516666666666667, 40.916666666666664 ] } }, +{ "type": "Feature", "properties": { "Country": "Italy", "Function": "1--4----", "LOCODE": "ITPMO", "Name": "Palermo", "NameWoDiac": "Palermo", "Status": "AI", "outflows": 35997.0 }, "geometry": { "type": "Point", "coordinates": [ 13.366666666666667, 38.116666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Italy", "Function": "123-----", "LOCODE": "ITSVN", "Name": "Savona", "NameWoDiac": "Savona", "Status": "AI", "outflows": 43661.0 }, "geometry": { "type": "Point", "coordinates": [ 8.5, 44.283333333333331 ] } }, +{ "type": "Feature", "properties": { "Country": "Italy", "Function": "1--4----", "LOCODE": "ITTPS", "Name": "Trapani", "NameWoDiac": "Trapani", "Status": "AI", "outflows": 41808.0 }, "geometry": { "type": "Point", "coordinates": [ 12.483333333333333, 38.016666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "Italy", "Function": "123-----", "LOCODE": "ITVDL", "Name": "Vado Ligure", "NameWoDiac": "Vado Ligure", "Status": "RL", "outflows": 1281768.42842 }, "geometry": { "type": "Point", "coordinates": [ 8.45, 44.266666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "Italy", "Function": "12345--B", "LOCODE": "ITVCE", "Name": "Venezia", "NameWoDiac": "Venezia", "Status": "AI", "outflows": 1408195.6666600001 }, "geometry": { "type": "Point", "coordinates": [ 12.333333333333334, 45.43333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Jordan", "Function": "1--4----", "LOCODE": "JOAQJ", "Name": "Al 'Aqabah", "NameWoDiac": "Al 'Aqabah", "Status": "RL", "outflows": 5019094.2318399996 }, "geometry": { "type": "Point", "coordinates": [ 35.0, 29.533333333333335 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "--3-----", "LOCODE": "JPHTD", "Name": "Hakata", "NameWoDiac": "Hakata", "Status": "RL", "outflows": 3054288.2499700007 }, "geometry": { "type": "Point", "coordinates": [ 133.1, 34.18333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "--3-----", "LOCODE": "JPISS", "Name": "Isa", "NameWoDiac": "Isa", "Status": "AF", "outflows": 362101.99997 }, "geometry": { "type": "Point", "coordinates": [ 130.6, 32.05 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "12345---", "LOCODE": "JPKKJ", "Name": "Kitakyushu", "NameWoDiac": "Kitakyushu", "Status": "AF", "outflows": 476762.0 }, "geometry": { "type": "Point", "coordinates": [ 130.833333333333343, 33.833333333333336 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "12345---", "LOCODE": "JPUKB", "Name": "Kobe", "NameWoDiac": "Kobe", "Status": "AF", "outflows": 16494507.892490005 }, "geometry": { "type": "Point", "coordinates": [ 135.166666666666657, 34.68333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "123-----", "LOCODE": "JPMJR", "Name": "Mitajiri", "NameWoDiac": "Mitajiri", "Status": "AF", "outflows": 18720.0 }, "geometry": { "type": "Point", "coordinates": [ 131.583333333333343, 34.033333333333331 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "123-5---", "LOCODE": "JPMOJ", "Name": "Moji\/Kitakyushu", "NameWoDiac": "Moji\/Kitakyushu", "Status": "AF", "outflows": 2497337.91658 }, "geometry": { "type": "Point", "coordinates": [ 130.966666666666669, 33.9 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1--45---", "LOCODE": "JPOSA", "Name": "Osaka", "NameWoDiac": "Osaka", "Status": "AF", "outflows": 9088752.8333900012 }, "geometry": { "type": "Point", "coordinates": [ 135.5, 34.666666666666664 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1-------", "LOCODE": "JPSEN", "Name": "Satsumasendai", "NameWoDiac": "Satsumasendai", "Status": "AF", "outflows": 1041560.0000199999 }, "geometry": { "type": "Point", "coordinates": [ 130.25, 31.816666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "12345---", "LOCODE": "JPTYO", "Name": "Tokyo", "NameWoDiac": "Tokyo", "Status": "AF", "outflows": 20969567.582899991 }, "geometry": { "type": "Point", "coordinates": [ 139.75, 35.68333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "12345---", "LOCODE": "JPYOK", "Name": "Yokohama", "NameWoDiac": "Yokohama", "Status": "AF", "outflows": 26921996.624540005 }, "geometry": { "type": "Point", "coordinates": [ 139.65, 35.45 ] } }, +{ "type": "Feature", "properties": { "Country": "Cambodia", "Function": "1-34--7-", "LOCODE": "KHKOS", "Name": "Kmpng Sam", "NameWoDiac": "Kampong Saom", "Status": "AI", "outflows": 1342444.99985 }, "geometry": { "type": "Point", "coordinates": [ 103.516666666666666, 10.6 ] } }, +{ "type": "Feature", "properties": { "Country": "Comoros", "Function": "1-3-----", "LOCODE": "KMMUT", "Name": "Mutsamudu, Anjouan", "NameWoDiac": "Mutsamudu, Anjouan", "Status": "RL", "outflows": 143131.33335 }, "geometry": { "type": "Point", "coordinates": [ 44.383333333333333, -12.15 ] } }, +{ "type": "Feature", "properties": { "Country": "Saint Kitts and Nevis", "Function": "1--4----", "LOCODE": "KNCHA", "Name": "Charlestown", "NameWoDiac": "Charlestown", "Status": "RL", "outflows": 230958.0 }, "geometry": { "type": "Point", "coordinates": [ -62.616666666666667, 17.133333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Korea, Republic of", "Function": "1234567-", "LOCODE": "KRPUS", "Name": "Busan", "NameWoDiac": "Busan", "Status": "AF", "outflows": 97226625.829958007 }, "geometry": { "type": "Point", "coordinates": [ 129.05, 35.133333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Korea, Republic of", "Function": "1-------", "LOCODE": "KRTSN", "Name": "Daesan\/Seosan", "NameWoDiac": "Daesan\/Seosan", "Status": "AF", "outflows": 391261.0 }, "geometry": { "type": "Point", "coordinates": [ 126.36666666666666, 37.0 ] } }, +{ "type": "Feature", "properties": { "Country": "Korea, Republic of", "Function": "1-3-----", "LOCODE": "KRTJI", "Name": "Dangjin", "NameWoDiac": "Dangjin", "Status": "AF", "outflows": 80514.0 }, "geometry": { "type": "Point", "coordinates": [ 126.783333333333331, 36.966666666666669 ] } }, +{ "type": "Feature", "properties": { "Country": "Korea, Republic of", "Function": "1234----", "LOCODE": "KRKUV", "Name": "Gunsan", "NameWoDiac": "Gunsan", "Status": "AF", "outflows": 367380.0 }, "geometry": { "type": "Point", "coordinates": [ 126.716666666666669, 35.983333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "Korea, Republic of", "Function": "123-----", "LOCODE": "KRKAN", "Name": "Gwangyang", "NameWoDiac": "Gwangyang", "Status": "AF", "outflows": 16515872.093510004 }, "geometry": { "type": "Point", "coordinates": [ 127.7, 34.93333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Korea, Republic of", "Function": "123-----", "LOCODE": "KRINC", "Name": "Incheon", "NameWoDiac": "Incheon", "Status": "AF", "outflows": 7323842.7736799996 }, "geometry": { "type": "Point", "coordinates": [ 126.61666666666666, 37.45 ] } }, +{ "type": "Feature", "properties": { "Country": "Korea, Republic of", "Function": "123-----", "LOCODE": "KRMAS", "Name": "Masan", "NameWoDiac": "Masan", "Status": "AF", "outflows": 292464.0 }, "geometry": { "type": "Point", "coordinates": [ 128.566666666666663, 35.2 ] } }, +{ "type": "Feature", "properties": { "Country": "Korea, Republic of", "Function": "123-----", "LOCODE": "KRMOK", "Name": "Mokpo", "NameWoDiac": "Mokpo", "Status": "AF", "outflows": 64792.0 }, "geometry": { "type": "Point", "coordinates": [ 126.38333333333334, 34.8 ] } }, +{ "type": "Feature", "properties": { "Country": "Korea, Republic of", "Function": "1234----", "LOCODE": "KRKPO", "Name": "Pohang", "NameWoDiac": "Pohang", "Status": "AF", "outflows": 704296.66661000007 }, "geometry": { "type": "Point", "coordinates": [ 129.366666666666674, 36.033333333333331 ] } }, +{ "type": "Feature", "properties": { "Country": "Korea, Republic of", "Function": "123--6--", "LOCODE": "KRPTK", "Name": "Pyeongtaek", "NameWoDiac": "Pyeongtaek", "Status": "AF", "outflows": 201565.00002000004 }, "geometry": { "type": "Point", "coordinates": [ 127.1, 36.966666666666669 ] } }, +{ "type": "Feature", "properties": { "Country": "Korea, Republic of", "Function": "1234----", "LOCODE": "KRUSN", "Name": "Ulsan", "NameWoDiac": "Ulsan", "Status": "AF", "outflows": 4923083.7499700002 }, "geometry": { "type": "Point", "coordinates": [ 129.316666666666663, 35.533333333333331 ] } }, +{ "type": "Feature", "properties": { "Country": "Kuwait", "Function": "1-3--6--", "LOCODE": "KWSAA", "Name": "Shuaiba", "NameWoDiac": "Shuaiba", "Status": "RL", "outflows": 770515.0 }, "geometry": { "type": "Point", "coordinates": [ 48.133333333333333, 29.033333333333335 ] } }, +{ "type": "Feature", "properties": { "Country": "Kuwait", "Function": "1-------", "LOCODE": "KWSWK", "Name": "Shuwaikh", "NameWoDiac": "Shuwaikh", "Status": "RL", "outflows": 272129.0 }, "geometry": { "type": "Point", "coordinates": [ 47.93333333333333, 29.35 ] } }, +{ "type": "Feature", "properties": { "Country": "Cayman Islands", "Function": "1-34----", "LOCODE": "KYGEC", "Name": "Georgetown, Grand Cayman", "NameWoDiac": "Georgetown, Grand Cayman", "Status": "AI", "outflows": 20059.0 }, "geometry": { "type": "Point", "coordinates": [ -81.38333333333334, 19.3 ] } }, +{ "type": "Feature", "properties": { "Country": "Lebanon", "Function": "1--45---", "LOCODE": "LBBEY", "Name": "Beirut", "NameWoDiac": "Beirut", "Status": "AI", "outflows": 8332419.5043999981 }, "geometry": { "type": "Point", "coordinates": [ 35.483333333333334, 33.833333333333336 ] } }, +{ "type": "Feature", "properties": { "Country": "Saint Lucia", "Function": "1-3-----", "LOCODE": "LCCAS", "Name": "Castries", "NameWoDiac": "Castries", "Status": "RL", "outflows": 395089.06669000001 }, "geometry": { "type": "Point", "coordinates": [ -60.966666666666669, 14.016666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Sri Lanka", "Function": "12345---", "LOCODE": "LKCMB", "Name": "Colombo", "NameWoDiac": "Colombo", "Status": "AI", "outflows": 40970827.24107001 }, "geometry": { "type": "Point", "coordinates": [ 79.85, 6.916666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Liberia", "Function": "1-345---", "LOCODE": "LRMLW", "Name": "Monrovia", "NameWoDiac": "Monrovia", "Status": "AI", "outflows": 467272.00002000009 }, "geometry": { "type": "Point", "coordinates": [ -10.8, 6.3 ] } }, +{ "type": "Feature", "properties": { "Country": "Libya", "Function": "1-3-----", "LOCODE": "LYKHO", "Name": "Al Khums", "NameWoDiac": "Al Khums", "Status": "RL", "outflows": 230254.00001 }, "geometry": { "type": "Point", "coordinates": [ 14.266666666666667, 32.65 ] } }, +{ "type": "Feature", "properties": { "Country": "Morocco", "Function": "1--45---", "LOCODE": "MACAS", "Name": "Casablanca", "NameWoDiac": "Casablanca", "Status": "AI", "outflows": 2434027.9715000005 }, "geometry": { "type": "Point", "coordinates": [ -7.6, 33.583333333333336 ] } }, +{ "type": "Feature", "properties": { "Country": "Moldova, Republic of", "Function": "1-3-----", "LOCODE": "MDGIU", "Name": "Giurgiulesti", "NameWoDiac": "Giurgiulesti", "Status": "RL", "outflows": 1560.0 }, "geometry": { "type": "Point", "coordinates": [ 28.183333333333334, 45.466666666666669 ] } }, +{ "type": "Feature", "properties": { "Country": "Montenegro", "Function": "123-----", "LOCODE": "MEBAR", "Name": "Bar", "NameWoDiac": "Bar", "Status": "RL", "outflows": 257803.0 }, "geometry": { "type": "Point", "coordinates": [ 19.083333333333332, 42.083333333333336 ] } }, +{ "type": "Feature", "properties": { "Country": "Madagascar", "Function": "1-------", "LOCODE": "MGEHL", "Name": "Ehoala", "NameWoDiac": "Ehoala", "Status": "RL", "outflows": 19864.0 }, "geometry": { "type": "Point", "coordinates": [ 46.95, -25.066666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "Madagascar", "Function": "1-34----", "LOCODE": "MGNOS", "Name": "Nosy-Be", "NameWoDiac": "Nosy-Be", "Status": "AI", "outflows": 60888.0 }, "geometry": { "type": "Point", "coordinates": [ 48.25, -13.333333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "Marshall Islands", "Function": "1--4----", "LOCODE": "MHMAJ", "Name": "Majuro", "NameWoDiac": "Majuro", "Status": "AI", "outflows": 238090.66668200004 }, "geometry": { "type": "Point", "coordinates": [ 171.383333333333326, 7.1 ] } }, +{ "type": "Feature", "properties": { "Country": "Myanmar", "Function": "123-----", "LOCODE": "MMTLA", "Name": "Thilawa", "NameWoDiac": "Thilawa", "Status": "RL", "outflows": 629785.00001999992 }, "geometry": { "type": "Point", "coordinates": [ 96.25, 16.65 ] } }, +{ "type": "Feature", "properties": { "Country": "Myanmar", "Function": "123-----", "LOCODE": "MMTLA", "Name": "Thilawa", "NameWoDiac": "Thilawa", "Status": "RL", "outflows": 629785.00001999992 }, "geometry": { "type": "Point", "coordinates": [ 96.25, 16.65 ] } }, +{ "type": "Feature", "properties": { "Country": "Malta", "Function": "1-------", "LOCODE": "MTMAR", "Name": "Marsaxlokk", "NameWoDiac": "Marsaxlokk", "Status": "AA", "outflows": 12264680.76361 }, "geometry": { "type": "Point", "coordinates": [ 14.533333333333333, 35.833333333333336 ] } }, +{ "type": "Feature", "properties": { "Country": "Mauritius", "Function": "1-3-----", "LOCODE": "MUPMA", "Name": "Port Mathurin", "NameWoDiac": "Port Mathurin", "Status": "RL", "outflows": 3451.5 }, "geometry": { "type": "Point", "coordinates": [ 63.416666666666664, -19.683333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "Maldives", "Function": "1--45---", "LOCODE": "MVMLE", "Name": "Male", "NameWoDiac": "Male", "Status": "AI", "outflows": 224938.42858000004 }, "geometry": { "type": "Point", "coordinates": [ 73.5, 4.166666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Mexico", "Function": "1-3-----", "LOCODE": "MXATM", "Name": "Altamira", "NameWoDiac": "Altamira", "Status": "RL", "outflows": 6907067.8431760017 }, "geometry": { "type": "Point", "coordinates": [ -97.916666666666671, 22.4 ] } }, +{ "type": "Feature", "properties": { "Country": "Mexico", "Function": "1--4----", "LOCODE": "MXCOA", "Name": "Coatzacoalcos", "NameWoDiac": "Coatzacoalcos", "Status": "AI", "outflows": 9100.0 }, "geometry": { "type": "Point", "coordinates": [ -94.4, 18.133333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Mexico", "Function": "1--4----", "LOCODE": "MXESE", "Name": "Ensenada", "NameWoDiac": "Ensenada", "Status": "AI", "outflows": 3482019.6660800003 }, "geometry": { "type": "Point", "coordinates": [ -116.6, 31.85 ] } }, +{ "type": "Feature", "properties": { "Country": "Mexico", "Function": "1--4----", "LOCODE": "MXGYM", "Name": "Guaymas", "NameWoDiac": "Guaymas", "Status": "AI", "outflows": 15320.0 }, "geometry": { "type": "Point", "coordinates": [ -110.88333333333334, 27.916666666666668 ] } }, +{ "type": "Feature", "properties": { "Country": "Mexico", "Function": "1-------", "LOCODE": "MXLZC", "Name": "Lzaro Crdenas", "NameWoDiac": "Lazaro Cardenas", "Status": "AI", "outflows": 9280527.0998299997 }, "geometry": { "type": "Point", "coordinates": [ -102.183333333333337, 17.95 ] } }, +{ "type": "Feature", "properties": { "Country": "Mexico", "Function": "1-34----", "LOCODE": "MXZLO", "Name": "Manzanillo", "NameWoDiac": "Manzanillo", "Status": "AI", "outflows": 14861828.233399997 }, "geometry": { "type": "Point", "coordinates": [ -104.3, 19.05 ] } }, +{ "type": "Feature", "properties": { "Country": "Mexico", "Function": "1--4----", "LOCODE": "MXMZT", "Name": "Mazatlan", "NameWoDiac": "Mazatlan", "Status": "AI", "outflows": 258563.0 }, "geometry": { "type": "Point", "coordinates": [ -106.4, 23.4 ] } }, +{ "type": "Feature", "properties": { "Country": "Mexico", "Function": "--3-----", "LOCODE": "MXPRO", "Name": "Paraiso", "NameWoDiac": "Paraiso", "Status": "RL", "outflows": 771394.2 }, "geometry": { "type": "Point", "coordinates": [ -92.2, 18.183333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "Mexico", "Function": "1-3-----", "LOCODE": "MXPMD", "Name": "Puerto Madero", "NameWoDiac": "Puerto Madero", "Status": "AI", "outflows": 82680.0 }, "geometry": { "type": "Point", "coordinates": [ -92.416666666666671, 14.716666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Mexico", "Function": "1-3-----", "LOCODE": "MXPMS", "Name": "Puerto Morelos", "NameWoDiac": "Puerto Morelos", "Status": "RL", "outflows": 13533.0 }, "geometry": { "type": "Point", "coordinates": [ -86.86666666666666, 20.833333333333332 ] } }, +{ "type": "Feature", "properties": { "Country": "Mexico", "Function": "1--4----", "LOCODE": "MXTAM", "Name": "Tampico", "NameWoDiac": "Tampico", "Status": "AI", "outflows": 33951.0 }, "geometry": { "type": "Point", "coordinates": [ -97.86666666666666, 22.25 ] } }, +{ "type": "Feature", "properties": { "Country": "Mexico", "Function": "1-------", "LOCODE": "MXTUX", "Name": "Tuxpan", "NameWoDiac": "Tuxpan", "Status": "AI", "outflows": 21541.0 }, "geometry": { "type": "Point", "coordinates": [ -97.4, 20.95 ] } }, +{ "type": "Feature", "properties": { "Country": "Mexico", "Function": "1-345---", "LOCODE": "MXVER", "Name": "Veracruz", "NameWoDiac": "Veracruz", "Status": "AI", "outflows": 8795504.2708560005 }, "geometry": { "type": "Point", "coordinates": [ -96.083333333333329, 19.2 ] } }, +{ "type": "Feature", "properties": { "Country": "Malaysia", "Function": "1--4----", "LOCODE": "MYPEN", "Name": "Penang (Georgetown)", "NameWoDiac": "Penang (Georgetown)", "Status": "AI", "outflows": 3938506.0 }, "geometry": { "type": "Point", "coordinates": [ 100.316666666666663, 5.416666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Malaysia", "Function": "123-5---", "LOCODE": "MYPKG", "Name": "Port Klang (Pelabuhan Klang)", "NameWoDiac": "Port Klang (Pelabuhan Klang)", "Status": "RL", "outflows": 58866748.817210026 }, "geometry": { "type": "Point", "coordinates": [ 101.4, 3.0 ] } }, +{ "type": "Feature", "properties": { "Country": "Malaysia", "Function": "123-----", "LOCODE": "MYTPP", "Name": "Tanjung Pelepas", "NameWoDiac": "Tanjung Pelepas", "Status": "RL", "outflows": 36861511.888539977 }, "geometry": { "type": "Point", "coordinates": [ 103.55, 1.366666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Namibia", "Function": "1--4----", "LOCODE": "NALUD", "Name": "Lderitz", "NameWoDiac": "Luderitz", "Status": "AI", "outflows": 43992.0 }, "geometry": { "type": "Point", "coordinates": [ 15.166666666666666, -26.65 ] } }, +{ "type": "Feature", "properties": { "Country": "New Caledonia", "Function": "1--45---", "LOCODE": "NCNOU", "Name": "Nouma", "NameWoDiac": "Noumea", "Status": "AI", "outflows": 1152154.3332800004 }, "geometry": { "type": "Point", "coordinates": [ 166.45, -22.266666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "New Caledonia", "Function": "1--45---", "LOCODE": "NCNOU", "Name": "Nouma", "NameWoDiac": "Noumea", "Status": "AI", "outflows": 1152154.3332800004 }, "geometry": { "type": "Point", "coordinates": [ 166.45, -22.266666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "Nigeria", "Function": "--3-----", "LOCODE": "NGLKK", "Name": "Lekki", "NameWoDiac": "Lekki", "Status": "RL", "outflows": 23036.0 }, "geometry": { "type": "Point", "coordinates": [ 3.1, 6.45 ] } }, +{ "type": "Feature", "properties": { "Country": "Nigeria", "Function": "1-3-----", "LOCODE": "NGONN", "Name": "Onne", "NameWoDiac": "Onne", "Status": "RL", "outflows": 1341939.73318 }, "geometry": { "type": "Point", "coordinates": [ 7.15, 4.716666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Nicaragua", "Function": "1-3--6--", "LOCODE": "NIRAM", "Name": "Rama", "NameWoDiac": "Rama", "Status": "RL", "outflows": 9106.5 }, "geometry": { "type": "Point", "coordinates": [ -84.216666666666669, 12.15 ] } }, +{ "type": "Feature", "properties": { "Country": "Netherlands", "Function": "12345---", "LOCODE": "NLAMS", "Name": "Amsterdam", "NameWoDiac": "Amsterdam", "Status": "AF", "outflows": 87949.333334999988 }, "geometry": { "type": "Point", "coordinates": [ 4.816666666666666, 52.4 ] } }, +{ "type": "Feature", "properties": { "Country": "Netherlands", "Function": "1-3-----", "LOCODE": "NLBOT", "Name": "Botlek", "NameWoDiac": "Botlek", "Status": "AF", "outflows": 33735.0 }, "geometry": { "type": "Point", "coordinates": [ 4.283333333333333, 51.883333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Netherlands", "Function": "123-----", "LOCODE": "NLIJM", "Name": "IJmuiden\/Velsen", "NameWoDiac": "IJmuiden\/Velsen", "Status": "AF", "outflows": 9516.0 }, "geometry": { "type": "Point", "coordinates": [ 4.6, 52.466666666666669 ] } }, +{ "type": "Feature", "properties": { "Country": "Netherlands", "Function": "123-----", "LOCODE": "NLMOE", "Name": "Moerdijk", "NameWoDiac": "Moerdijk", "Status": "AF", "outflows": 172497.0 }, "geometry": { "type": "Point", "coordinates": [ 4.566666666666666, 51.68333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Netherlands", "Function": "12345---", "LOCODE": "NLRTM", "Name": "Rotterdam", "NameWoDiac": "Rotterdam", "Status": "AF", "outflows": 60986246.198820002 }, "geometry": { "type": "Point", "coordinates": [ 4.5, 51.916666666666664 ] } }, +{ "type": "Feature", "properties": { "Country": "Netherlands", "Function": "1-3-----", "LOCODE": "NLTNZ", "Name": "Terneuzen", "NameWoDiac": "Terneuzen", "Status": "AF", "outflows": 24232.0 }, "geometry": { "type": "Point", "coordinates": [ 3.816666666666666, 51.466666666666669 ] } }, +{ "type": "Feature", "properties": { "Country": "Netherlands", "Function": "123-----", "LOCODE": "NLVLI", "Name": "Vlissingen", "NameWoDiac": "Vlissingen", "Status": "AF", "outflows": 935022.40001200011 }, "geometry": { "type": "Point", "coordinates": [ 3.7, 51.45 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1-34----", "LOCODE": "NOAES", "Name": "lesund", "NameWoDiac": "Alesund", "Status": "AF", "outflows": 450729.5 }, "geometry": { "type": "Point", "coordinates": [ 6.15, 62.466666666666669 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1-3-----", "LOCODE": "NOARD", "Name": "rdalstangen", "NameWoDiac": "Ardalstangen", "Status": "AA", "outflows": 23400.0 }, "geometry": { "type": "Point", "coordinates": [ 7.7, 61.233333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1-------", "LOCODE": "NOAVE", "Name": "Avery", "NameWoDiac": "Averoy", "Status": "AA", "outflows": 34164.0 }, "geometry": { "type": "Point", "coordinates": [ 7.666666666666667, 63.05 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1234----", "LOCODE": "NOBGO", "Name": "Bergen", "NameWoDiac": "Bergen", "Status": "AA", "outflows": 330739.5 }, "geometry": { "type": "Point", "coordinates": [ 5.316666666666666, 60.383333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1234----", "LOCODE": "NOBOO", "Name": "Bod", "NameWoDiac": "Bodo", "Status": "AA", "outflows": 9516.0 }, "geometry": { "type": "Point", "coordinates": [ 14.366666666666667, 67.283333333333331 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1-3-----", "LOCODE": "NOBVK", "Name": "Brevik", "NameWoDiac": "Brevik", "Status": "AA", "outflows": 50128.0 }, "geometry": { "type": "Point", "coordinates": [ 9.7, 59.05 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "123-----", "LOCODE": "NODRM", "Name": "Drammen", "NameWoDiac": "Drammen", "Status": "AA", "outflows": 145713.0 }, "geometry": { "type": "Point", "coordinates": [ 10.233333333333333, 59.733333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1-3-----", "LOCODE": "NOEGE", "Name": "Egersund", "NameWoDiac": "Egersund", "Status": "AA", "outflows": 142428.0 }, "geometry": { "type": "Point", "coordinates": [ 6.0, 58.45 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1-34----", "LOCODE": "NOFRO", "Name": "Flor", "NameWoDiac": "Floro", "Status": "AA", "outflows": 203580.0 }, "geometry": { "type": "Point", "coordinates": [ 5.016666666666667, 61.6 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "123-----", "LOCODE": "NOFRK", "Name": "Fredrikstad", "NameWoDiac": "Fredrikstad", "Status": "AA", "outflows": 111033.0 }, "geometry": { "type": "Point", "coordinates": [ 10.916666666666666, 59.2 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1-------", "LOCODE": "NOFUS", "Name": "Fusa", "NameWoDiac": "Fusa", "Status": "AA", "outflows": 99528.0 }, "geometry": { "type": "Point", "coordinates": [ 5.616666666666667, 60.2 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1-3-----", "LOCODE": "NOGLO", "Name": "Glomfjord", "NameWoDiac": "Glomfjord", "Status": "AA", "outflows": 34164.0 }, "geometry": { "type": "Point", "coordinates": [ 13.933333333333334, 66.8 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1-34----", "LOCODE": "NOHFT", "Name": "Hammerfest", "NameWoDiac": "Hammerfest", "Status": "AA", "outflows": 9516.0 }, "geometry": { "type": "Point", "coordinates": [ 23.666666666666668, 70.65 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1-3-----", "LOCODE": "NOHRD", "Name": "Harstad", "NameWoDiac": "Harstad", "Status": "AA", "outflows": 9516.0 }, "geometry": { "type": "Point", "coordinates": [ 16.533333333333335, 68.783333333333331 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1-34----", "LOCODE": "NOHAU", "Name": "Haugesund", "NameWoDiac": "Haugesund", "Status": "AA", "outflows": 337486.5 }, "geometry": { "type": "Point", "coordinates": [ 5.25, 59.4 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1-3-----", "LOCODE": "NOHVI", "Name": "Hvik", "NameWoDiac": "Havik", "Status": "AA", "outflows": 116610.0 }, "geometry": { "type": "Point", "coordinates": [ 5.316666666666666, 59.3 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "--3-----", "LOCODE": "NOHLA", "Name": "Holla", "NameWoDiac": "Holla", "Status": "RL", "outflows": 45630.0 }, "geometry": { "type": "Point", "coordinates": [ 9.183333333333334, 59.6 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1-3-----", "LOCODE": "NOHYR", "Name": "Hyanger", "NameWoDiac": "Hoyanger", "Status": "AA", "outflows": 39357.5 }, "geometry": { "type": "Point", "coordinates": [ 6.05, 61.216666666666669 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1-3-----", "LOCODE": "NOHOY", "Name": "Husy - Tnsberg", "NameWoDiac": "Husoy - Tonsberg", "Status": "AA", "outflows": 17160.0 }, "geometry": { "type": "Point", "coordinates": [ 10.45, 59.233333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1-3-----", "LOCODE": "NOIKR", "Name": "Ikornnes", "NameWoDiac": "Ikornnes", "Status": "AA", "outflows": 69888.0 }, "geometry": { "type": "Point", "coordinates": [ 6.55, 62.383333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "123-----", "LOCODE": "NOKRS", "Name": "Kristiansand", "NameWoDiac": "Kristiansand", "Status": "AA", "outflows": 86460.0 }, "geometry": { "type": "Point", "coordinates": [ 7.983333333333333, 58.133333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "123-----", "LOCODE": "NOLAR", "Name": "Larvik", "NameWoDiac": "Larvik", "Status": "AA", "outflows": 123903.0 }, "geometry": { "type": "Point", "coordinates": [ 10.016666666666667, 59.033333333333331 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1-3-----", "LOCODE": "NOMAY", "Name": "Mly", "NameWoDiac": "Maloy", "Status": "AF", "outflows": 347613.5 }, "geometry": { "type": "Point", "coordinates": [ 5.1, 61.93333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1-34----", "LOCODE": "NOMOL", "Name": "Molde", "NameWoDiac": "Molde", "Status": "AA", "outflows": 9516.0 }, "geometry": { "type": "Point", "coordinates": [ 7.15, 62.733333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1234----", "LOCODE": "NOMJF", "Name": "Mosjen", "NameWoDiac": "Mosjoen", "Status": "AF", "outflows": 42276.0 }, "geometry": { "type": "Point", "coordinates": [ 13.2, 65.833333333333329 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "123-----", "LOCODE": "NOMSS", "Name": "Moss", "NameWoDiac": "Moss", "Status": "AA", "outflows": 51012.0 }, "geometry": { "type": "Point", "coordinates": [ 10.65, 59.416666666666664 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1-3-----", "LOCODE": "NOODD", "Name": "Odda", "NameWoDiac": "Odda", "Status": "AA", "outflows": 19240.0 }, "geometry": { "type": "Point", "coordinates": [ 6.533333333333333, 60.06666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1-3-----", "LOCODE": "NOORK", "Name": "Orkanger", "NameWoDiac": "Orkanger", "Status": "AA", "outflows": 132567.5 }, "geometry": { "type": "Point", "coordinates": [ 9.833333333333334, 63.31666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "12345---", "LOCODE": "NOOSL", "Name": "Oslo", "NameWoDiac": "Oslo", "Status": "AA", "outflows": 370877.0 }, "geometry": { "type": "Point", "coordinates": [ 10.733333333333333, 59.9 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1-3-----", "LOCODE": "NOSAT", "Name": "Salten", "NameWoDiac": "Salten", "Status": "AA", "outflows": 34164.0 }, "geometry": { "type": "Point", "coordinates": [ 15.583333333333334, 67.36666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1234----", "LOCODE": "NOSVG", "Name": "Stavanger", "NameWoDiac": "Stavanger", "Status": "AI", "outflows": 99528.0 }, "geometry": { "type": "Point", "coordinates": [ 5.75, 58.966666666666669 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1-34----", "LOCODE": "NOSKN", "Name": "Stokmarknes", "NameWoDiac": "Stokmarknes", "Status": "AA", "outflows": 34164.0 }, "geometry": { "type": "Point", "coordinates": [ 14.9, 68.566666666666663 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1-3-----", "LOCODE": "NOSUN", "Name": "Sunndalsra", "NameWoDiac": "Sunndalsora", "Status": "AF", "outflows": 107250.0 }, "geometry": { "type": "Point", "coordinates": [ 8.55, 62.666666666666664 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1-3-----", "LOCODE": "NOSVE", "Name": "Svelgen", "NameWoDiac": "Svelgen", "Status": "AA", "outflows": 34164.0 }, "geometry": { "type": "Point", "coordinates": [ 5.283333333333333, 61.766666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1-34----", "LOCODE": "NOSVJ", "Name": "Svolvr", "NameWoDiac": "Svolvar", "Status": "AA", "outflows": 9516.0 }, "geometry": { "type": "Point", "coordinates": [ 14.55, 68.216666666666669 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1-3-----", "LOCODE": "NOTAE", "Name": "Tananger", "NameWoDiac": "Tananger", "Status": "AA", "outflows": 348445.5 }, "geometry": { "type": "Point", "coordinates": [ 5.583333333333333, 58.916666666666664 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1-34----", "LOCODE": "NOTOS", "Name": "Troms", "NameWoDiac": "Tromso", "Status": "AI", "outflows": 9516.0 }, "geometry": { "type": "Point", "coordinates": [ 18.966666666666665, 69.666666666666671 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1234----", "LOCODE": "NOTRD", "Name": "Trondheim", "NameWoDiac": "Trondheim", "Status": "AA", "outflows": 9516.0 }, "geometry": { "type": "Point", "coordinates": [ 10.4, 63.43333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Nauru", "Function": "1--45---", "LOCODE": "NRINU", "Name": "Nauru Island", "NameWoDiac": "Nauru Island", "Status": "AI", "outflows": 3756.0 }, "geometry": { "type": "Point", "coordinates": [ 166.916666666666657, -0.55 ] } }, +{ "type": "Feature", "properties": { "Country": "New Zealand", "Function": "12345---", "LOCODE": "NZAKL", "Name": "Auckland", "NameWoDiac": "Auckland", "Status": "AC", "outflows": 3839723.3548399992 }, "geometry": { "type": "Point", "coordinates": [ 174.8, -36.833333333333336 ] } }, +{ "type": "Feature", "properties": { "Country": "New Zealand", "Function": "123-----", "LOCODE": "NZBLU", "Name": "Bluff", "NameWoDiac": "Bluff", "Status": "AC", "outflows": 537012.66663 }, "geometry": { "type": "Point", "coordinates": [ 168.316666666666663, -46.6 ] } }, +{ "type": "Feature", "properties": { "Country": "New Zealand", "Function": "1-3-----", "LOCODE": "NZLYT", "Name": "Lyttelton", "NameWoDiac": "Lyttelton", "Status": "AC", "outflows": 2992885.6903999997 }, "geometry": { "type": "Point", "coordinates": [ 172.716666666666669, -43.6 ] } }, +{ "type": "Feature", "properties": { "Country": "New Zealand", "Function": "1-3-----", "LOCODE": "NZMAP", "Name": "Marsden Point", "NameWoDiac": "Marsden Point", "Status": "AC", "outflows": 722904.00003 }, "geometry": { "type": "Point", "coordinates": [ 174.5, -35.833333333333336 ] } }, +{ "type": "Feature", "properties": { "Country": "New Zealand", "Function": "1--4----", "LOCODE": "NZNPE", "Name": "Napier", "NameWoDiac": "Napier", "Status": "AC", "outflows": 3423163.5692899991 }, "geometry": { "type": "Point", "coordinates": [ 176.9, -39.466666666666669 ] } }, +{ "type": "Feature", "properties": { "Country": "New Zealand", "Function": "1-34----", "LOCODE": "NZNSN", "Name": "Nelson", "NameWoDiac": "Nelson", "Status": "AC", "outflows": 1229461.9998700004 }, "geometry": { "type": "Point", "coordinates": [ 173.26666666666668, -41.25 ] } }, +{ "type": "Feature", "properties": { "Country": "New Zealand", "Function": "1-------", "LOCODE": "NZPOE", "Name": "Port Chalmers", "NameWoDiac": "Port Chalmers", "Status": "AC", "outflows": 1736542.9262700006 }, "geometry": { "type": "Point", "coordinates": [ 170.6, -45.81666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "New Zealand", "Function": "1234----", "LOCODE": "NZTRG", "Name": "Tauranga", "NameWoDiac": "Tauranga", "Status": "AI", "outflows": 6568750.5691900002 }, "geometry": { "type": "Point", "coordinates": [ 176.166666666666657, -37.68333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "New Zealand", "Function": "1234----", "LOCODE": "NZTIU", "Name": "Timaru", "NameWoDiac": "Timaru", "Status": "AC", "outflows": 1399570.2597300003 }, "geometry": { "type": "Point", "coordinates": [ 171.25, -44.383333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "New Zealand", "Function": "1234----", "LOCODE": "NZWLG", "Name": "Wellington", "NameWoDiac": "Wellington", "Status": "AC", "outflows": 1605903.3093099999 }, "geometry": { "type": "Point", "coordinates": [ 174.783333333333331, -41.266666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "Panama", "Function": "1-345---", "LOCODE": "PAONX", "Name": "Coln", "NameWoDiac": "Colon", "Status": "AI", "outflows": 5425996.6880400013 }, "geometry": { "type": "Point", "coordinates": [ -79.86666666666666, 9.35 ] } }, +{ "type": "Feature", "properties": { "Country": "Panama", "Function": "1-------", "LOCODE": "PACTB", "Name": "Cristbal", "NameWoDiac": "Cristobal", "Status": "AI", "outflows": 7696418.2510899995 }, "geometry": { "type": "Point", "coordinates": [ -79.9, 9.35 ] } }, +{ "type": "Feature", "properties": { "Country": "Panama", "Function": "1-345---", "LOCODE": "PAPTY", "Name": "Panam, Ciudad de", "NameWoDiac": "Panama, Ciudad de", "Status": "AI", "outflows": 13494.0 }, "geometry": { "type": "Point", "coordinates": [ -79.533333333333331, 8.966666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Panama", "Function": "1-------", "LOCODE": "PAROD", "Name": "Rodman", "NameWoDiac": "Rodman", "Status": "RL", "outflows": 4784764.0453200005 }, "geometry": { "type": "Point", "coordinates": [ -79.566666666666663, 8.95 ] } }, +{ "type": "Feature", "properties": { "Country": "French Polynesia", "Function": "1--4----", "LOCODE": "PFBOB", "Name": "Bora Bora", "NameWoDiac": "Bora Bora", "Status": "AI", "outflows": 726.75 }, "geometry": { "type": "Point", "coordinates": [ -151.75, -16.45 ] } }, +{ "type": "Feature", "properties": { "Country": "French Polynesia", "Function": "1--45---", "LOCODE": "PFPPT", "Name": "Papeete", "NameWoDiac": "Papeete", "Status": "AI", "outflows": 1092395.0833000003 }, "geometry": { "type": "Point", "coordinates": [ -149.616666666666674, -17.55 ] } }, +{ "type": "Feature", "properties": { "Country": "Papua New Guinea", "Function": "1--4----", "LOCODE": "PGMAG", "Name": "Madang", "NameWoDiac": "Madang", "Status": "AI", "outflows": 168130.0 }, "geometry": { "type": "Point", "coordinates": [ 145.783333333333331, -5.216666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Papua New Guinea", "Function": "1-------", "LOCODE": "PGMTK", "Name": "Motukea Island", "NameWoDiac": "Motukea Island", "Status": "RL", "outflows": 301007.5 }, "geometry": { "type": "Point", "coordinates": [ 147.1, -9.433333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "Philippines", "Function": "1-3--6--", "LOCODE": "PHBTG", "Name": "Batangas\/Luzon", "NameWoDiac": "Batangas\/Luzon", "Status": "AI", "outflows": 1811559.5 }, "geometry": { "type": "Point", "coordinates": [ 121.05, 13.75 ] } }, +{ "type": "Feature", "properties": { "Country": "Philippines", "Function": "1-34----", "LOCODE": "PHGES", "Name": "General Santos", "NameWoDiac": "General Santos", "Status": "AI", "outflows": 925870.83340999996 }, "geometry": { "type": "Point", "coordinates": [ 125.15, 6.116666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "Philippines", "Function": "1-3-----", "LOCODE": "PHTGO", "Name": "Tagoloan", "NameWoDiac": "Tagoloan", "Status": "RL", "outflows": 12150.0 }, "geometry": { "type": "Point", "coordinates": [ 124.75, 8.533333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Poland", "Function": "123-----", "LOCODE": "PLGDY", "Name": "Gdynia", "NameWoDiac": "Gdynia", "Status": "RL", "outflows": 1377819.1666200003 }, "geometry": { "type": "Point", "coordinates": [ 18.55, 54.5 ] } }, +{ "type": "Feature", "properties": { "Country": "Poland", "Function": "123-----", "LOCODE": "PLSWI", "Name": "Swinoujscie", "NameWoDiac": "Swinoujscie", "Status": "RL", "outflows": 16263.0 }, "geometry": { "type": "Point", "coordinates": [ 14.25, 53.9 ] } }, +{ "type": "Feature", "properties": { "Country": "Puerto Rico", "Function": "1--45---", "LOCODE": "PRSJU", "Name": "San Juan", "NameWoDiac": "San Juan", "Status": "AI", "outflows": 914875.50003 }, "geometry": { "type": "Point", "coordinates": [ -66.083333333333329, 18.45 ] } }, +{ "type": "Feature", "properties": { "Country": "Portugal", "Function": "1-3-----", "LOCODE": "PTCNL", "Name": "Canial", "NameWoDiac": "Canical", "Status": "RL", "outflows": 70018.0 }, "geometry": { "type": "Point", "coordinates": [ -16.733333333333334, 32.733333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "Portugal", "Function": "123-----", "LOCODE": "PTFDF", "Name": "Figueira da Foz", "NameWoDiac": "Figueira da Foz", "Status": "AI", "outflows": 26754.0 }, "geometry": { "type": "Point", "coordinates": [ -8.866666666666667, 40.15 ] } }, +{ "type": "Feature", "properties": { "Country": "Portugal", "Function": "1-34----", "LOCODE": "PTHOR", "Name": "Horta", "NameWoDiac": "Horta", "Status": "AI", "outflows": 32292.0 }, "geometry": { "type": "Point", "coordinates": [ -28.633333333333333, 38.533333333333331 ] } }, +{ "type": "Feature", "properties": { "Country": "Portugal", "Function": "123-----", "LOCODE": "PTLEI", "Name": "Leixes", "NameWoDiac": "Leixoes", "Status": "AI", "outflows": 1619530.783304 }, "geometry": { "type": "Point", "coordinates": [ -8.683333333333334, 41.18333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Portugal", "Function": "12345---", "LOCODE": "PTLIS", "Name": "Lisboa", "NameWoDiac": "Lisboa", "Status": "AI", "outflows": 1373631.1667299997 }, "geometry": { "type": "Point", "coordinates": [ -9.133333333333333, 38.716666666666669 ] } }, +{ "type": "Feature", "properties": { "Country": "Portugal", "Function": "--3-----", "LOCODE": "PTPIC", "Name": "Pico", "NameWoDiac": "Pico", "Status": "RL", "outflows": 23192.0 }, "geometry": { "type": "Point", "coordinates": [ -8.416666666666666, 41.68333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Portugal", "Function": "1-345---", "LOCODE": "PTPDL", "Name": "Ponta Delgada", "NameWoDiac": "Ponta Delgada", "Status": "AI", "outflows": 109096.0 }, "geometry": { "type": "Point", "coordinates": [ -25.666666666666668, 37.733333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "Portugal", "Function": "1--4---B", "LOCODE": "PTPXO", "Name": "Porto Santo Island", "NameWoDiac": "Porto Santo Island", "Status": "AI", "outflows": 28236.0 }, "geometry": { "type": "Point", "coordinates": [ -16.333333333333332, 33.06666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Portugal", "Function": "1-3-----", "LOCODE": "PTPRG", "Name": "Praia da Graciosa", "NameWoDiac": "Praia da Graciosa", "Status": "AI", "outflows": 19500.0 }, "geometry": { "type": "Point", "coordinates": [ -27.966666666666665, 39.05 ] } }, +{ "type": "Feature", "properties": { "Country": "Portugal", "Function": "1-3-----", "LOCODE": "PTPRV", "Name": "Praia da Vitria", "NameWoDiac": "Praia da Vitoria", "Status": "AI", "outflows": 109096.0 }, "geometry": { "type": "Point", "coordinates": [ -27.066666666666666, 38.733333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "Portugal", "Function": "1-3-----", "LOCODE": "PTSCF", "Name": "Santa Cruz das Flores", "NameWoDiac": "Santa Cruz das Flores", "Status": "RL", "outflows": 16146.0 }, "geometry": { "type": "Point", "coordinates": [ -31.116666666666667, 39.45 ] } }, +{ "type": "Feature", "properties": { "Country": "Portugal", "Function": "123-----", "LOCODE": "PTSET", "Name": "Setbal", "NameWoDiac": "Setubal", "Status": "AI", "outflows": 443319.5 }, "geometry": { "type": "Point", "coordinates": [ -8.9, 38.533333333333331 ] } }, +{ "type": "Feature", "properties": { "Country": "Portugal", "Function": "1234----", "LOCODE": "PTSIE", "Name": "Sines", "NameWoDiac": "Sines", "Status": "AI", "outflows": 11424189.365200002 }, "geometry": { "type": "Point", "coordinates": [ -8.866666666666667, 37.95 ] } }, +{ "type": "Feature", "properties": { "Country": "Portugal", "Function": "1-3-----", "LOCODE": "PTVEL", "Name": "Velas", "NameWoDiac": "Velas", "Status": "AI", "outflows": 47190.0 }, "geometry": { "type": "Point", "coordinates": [ -28.216666666666665, 38.68333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Portugal", "Function": "1-3-----", "LOCODE": "PTVDP", "Name": "Vila do Porto", "NameWoDiac": "Vila do Porto", "Status": "RL", "outflows": 13468.0 }, "geometry": { "type": "Point", "coordinates": [ -25.15, 36.93333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Paraguay", "Function": "1--45---", "LOCODE": "PYASU", "Name": "Asuncin", "NameWoDiac": "Asuncion", "Status": "AI", "outflows": 13793.0 }, "geometry": { "type": "Point", "coordinates": [ -57.666666666666664, -25.266666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "Qatar", "Function": "1-------", "LOCODE": "QAHMD", "Name": "BGN\/PCGN1956 - HAMAD", "NameWoDiac": "BGN\/PCGN1956 - HAMAD", "Status": "RL", "outflows": 11570563.360890001 }, "geometry": { "type": "Point", "coordinates": [ 51.616666666666667, 25.0 ] } }, +{ "type": "Feature", "properties": { "Country": "Qatar", "Function": "1----6--", "LOCODE": "QAMES", "Name": "Mesaieed", "NameWoDiac": "Mesaieed", "Status": "RQ", "outflows": 87230.0 }, "geometry": { "type": "Point", "coordinates": [ 51.916666666666664, 25.633333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Romania", "Function": "1234-6--", "LOCODE": "ROCND", "Name": "Constanta", "NameWoDiac": "Constanta", "Status": "AI", "outflows": 4202750.0668100007 }, "geometry": { "type": "Point", "coordinates": [ 28.65, 44.18333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Russian Federation", "Function": "123-----", "LOCODE": "RUBRK", "Name": "Lomonosov", "NameWoDiac": "Lomonosov", "Status": "RL", "outflows": 172926.0 }, "geometry": { "type": "Point", "coordinates": [ 29.733333333333334, 59.9 ] } }, +{ "type": "Feature", "properties": { "Country": "Russian Federation", "Function": "123--6--", "LOCODE": "RUNVS", "Name": "Novorossiysk", "NameWoDiac": "Novorossiysk", "Status": "RL", "outflows": 2856095.6668099994 }, "geometry": { "type": "Point", "coordinates": [ 37.766666666666666, 44.716666666666669 ] } }, +{ "type": "Feature", "properties": { "Country": "Russian Federation", "Function": "12345---", "LOCODE": "RULED", "Name": "Saint Petersburg (ex Leningrad)", "NameWoDiac": "Saint Petersburg (ex Leningrad)", "Status": "AI", "outflows": 2197863.9046789999 }, "geometry": { "type": "Point", "coordinates": [ 30.25, 59.883333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Russian Federation", "Function": "123-----", "LOCODE": "RUULU", "Name": "Ust'-Luga", "NameWoDiac": "Ust'-Luga", "Status": "RL", "outflows": 217892.99998 }, "geometry": { "type": "Point", "coordinates": [ 28.316666666666666, 59.666666666666664 ] } }, +{ "type": "Feature", "properties": { "Country": "Russian Federation", "Function": "1-------", "LOCODE": "RUVYP", "Name": "Vostochnyy Port", "NameWoDiac": "Vostochnyy Port", "Status": "RL", "outflows": 694044.00000000012 }, "geometry": { "type": "Point", "coordinates": [ 133.05, 42.766666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "Russian Federation", "Function": "1-------", "LOCODE": "RUZAR", "Name": "Zarubino", "NameWoDiac": "Zarubino", "Status": "RL", "outflows": 8476.0 }, "geometry": { "type": "Point", "coordinates": [ 131.083333333333343, 42.616666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Saudi Arabia", "Function": "12345---", "LOCODE": "SADMM", "Name": "Ad Dammam", "NameWoDiac": "Ad Dammam", "Status": "RL", "outflows": 11255729.646892 }, "geometry": { "type": "Point", "coordinates": [ 50.1, 26.416666666666668 ] } }, +{ "type": "Feature", "properties": { "Country": "Saudi Arabia", "Function": "1--45---", "LOCODE": "SAJED", "Name": "Jeddah", "NameWoDiac": "Jeddah", "Status": "AI", "outflows": 28479677.911780011 }, "geometry": { "type": "Point", "coordinates": [ 39.166666666666664, 21.533333333333335 ] } }, +{ "type": "Feature", "properties": { "Country": "Saudi Arabia", "Function": "1-3-----", "LOCODE": "SAKAC", "Name": "King Abdullah City", "NameWoDiac": "King Abdullah City", "Status": "RQ", "outflows": 13582128.147299998 }, "geometry": { "type": "Point", "coordinates": [ 39.083333333333336, 22.4 ] } }, +{ "type": "Feature", "properties": { "Country": "Saudi Arabia", "Function": "1-34----", "LOCODE": "SAYNB", "Name": "Yanbu al-Bahr", "NameWoDiac": "Yanbu al-Bahr", "Status": "AI", "outflows": 49257.0 }, "geometry": { "type": "Point", "coordinates": [ 38.033333333333331, 24.083333333333332 ] } }, +{ "type": "Feature", "properties": { "Country": "Sweden", "Function": "123-----", "LOCODE": "SEAHU", "Name": "hus", "NameWoDiac": "Ahus", "Status": "AA", "outflows": 33696.0 }, "geometry": { "type": "Point", "coordinates": [ 14.283333333333333, 55.916666666666664 ] } }, +{ "type": "Feature", "properties": { "Country": "Sweden", "Function": "1--4----", "LOCODE": "SEGVX", "Name": "Gvle", "NameWoDiac": "Gavle", "Status": "AA", "outflows": 278876.0 }, "geometry": { "type": "Point", "coordinates": [ 17.166666666666668, 60.666666666666664 ] } }, +{ "type": "Feature", "properties": { "Country": "Sweden", "Function": "12345---", "LOCODE": "SEGOT", "Name": "Gteborg", "NameWoDiac": "Goteborg", "Status": "AA", "outflows": 3614371.4282800001 }, "geometry": { "type": "Point", "coordinates": [ 11.966666666666667, 57.716666666666669 ] } }, +{ "type": "Feature", "properties": { "Country": "Sweden", "Function": "1234----", "LOCODE": "SEHAD", "Name": "Halmstad", "NameWoDiac": "Halmstad", "Status": "AA", "outflows": 48750.0 }, "geometry": { "type": "Point", "coordinates": [ 12.85, 56.666666666666664 ] } }, +{ "type": "Feature", "properties": { "Country": "Sweden", "Function": "1--4----", "LOCODE": "SEKSD", "Name": "Karlstad", "NameWoDiac": "Karlstad", "Status": "AA", "outflows": 3312.0 }, "geometry": { "type": "Point", "coordinates": [ 13.5, 59.366666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Sweden", "Function": "1234----", "LOCODE": "SENRK", "Name": "Norrkping", "NameWoDiac": "Norrkoping", "Status": "AA", "outflows": 296309.0 }, "geometry": { "type": "Point", "coordinates": [ 16.183333333333334, 58.6 ] } }, +{ "type": "Feature", "properties": { "Country": "Sweden", "Function": "123-----", "LOCODE": "SEOSK", "Name": "Oskarshamn", "NameWoDiac": "Oskarshamn", "Status": "AA", "outflows": 84688.5 }, "geometry": { "type": "Point", "coordinates": [ 16.433333333333334, 57.266666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "Sweden", "Function": "123-----", "LOCODE": "SEOXE", "Name": "Oxelsund", "NameWoDiac": "Oxelosund", "Status": "AA", "outflows": 73031.833334999988 }, "geometry": { "type": "Point", "coordinates": [ 17.1, 58.666666666666664 ] } }, +{ "type": "Feature", "properties": { "Country": "Sweden", "Function": "123-----", "LOCODE": "SEPIT", "Name": "Pite", "NameWoDiac": "Pitea", "Status": "AA", "outflows": 67392.0 }, "geometry": { "type": "Point", "coordinates": [ 21.5, 65.333333333333329 ] } }, +{ "type": "Feature", "properties": { "Country": "Sweden", "Function": "123--6--", "LOCODE": "SESOE", "Name": "Sdertlje", "NameWoDiac": "Sodertalje", "Status": "AA", "outflows": 54799.333335000003 }, "geometry": { "type": "Point", "coordinates": [ 17.616666666666667, 59.2 ] } }, +{ "type": "Feature", "properties": { "Country": "Sweden", "Function": "12345---", "LOCODE": "SESTO", "Name": "Stockholm", "NameWoDiac": "Stockholm", "Status": "AA", "outflows": 227955.0 }, "geometry": { "type": "Point", "coordinates": [ 18.05, 59.333333333333336 ] } }, +{ "type": "Feature", "properties": { "Country": "Sweden", "Function": "1-34----", "LOCODE": "SESDL", "Name": "Sundsvall", "NameWoDiac": "Sundsvall", "Status": "AA", "outflows": 51928.5 }, "geometry": { "type": "Point", "coordinates": [ 17.3, 62.383333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Sweden", "Function": "1234----", "LOCODE": "SEUME", "Name": "Ume", "NameWoDiac": "Umea", "Status": "AI", "outflows": 51928.5 }, "geometry": { "type": "Point", "coordinates": [ 20.25, 63.833333333333336 ] } }, +{ "type": "Feature", "properties": { "Country": "Sweden", "Function": "1234----", "LOCODE": "SEVST", "Name": "Vsters", "NameWoDiac": "Vasteras", "Status": "AA", "outflows": 21103.333335000003 }, "geometry": { "type": "Point", "coordinates": [ 16.55, 59.616666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Syrian Arab Republic", "Function": "1--4----", "LOCODE": "SYLTK", "Name": "Latakia", "NameWoDiac": "Latakia", "Status": "AI", "outflows": 719300.0 }, "geometry": { "type": "Point", "coordinates": [ 35.783333333333331, 35.516666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "Syrian Arab Republic", "Function": "1-3-----", "LOCODE": "SYTTS", "Name": "Tartus", "NameWoDiac": "Tartus", "Status": "RL", "outflows": 103493.0 }, "geometry": { "type": "Point", "coordinates": [ 35.9, 34.9 ] } }, +{ "type": "Feature", "properties": { "Country": "Thailand", "Function": "12345---", "LOCODE": "THBKK", "Name": "Bangkok", "NameWoDiac": "Bangkok", "Status": "AI", "outflows": 4526246.8335100003 }, "geometry": { "type": "Point", "coordinates": [ 100.516666666666666, 13.75 ] } }, +{ "type": "Feature", "properties": { "Country": "Thailand", "Function": "1-3-----", "LOCODE": "THLCH", "Name": "Laem Chabang", "NameWoDiac": "Laem Chabang", "Status": "RL", "outflows": 21757591.196550008 }, "geometry": { "type": "Point", "coordinates": [ 100.88333333333334, 13.083333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "Thailand", "Function": "---4----", "LOCODE": "THHKT", "Name": "Phuket International Apt", "NameWoDiac": "Phuket International Apt", "Status": "AA", "outflows": 44898.75 }, "geometry": { "type": "Point", "coordinates": [ 98.316666666666663, 8.116666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Thailand", "Function": "1-3-----", "LOCODE": "THSCS", "Name": "Sahathai Coastal Seaport", "NameWoDiac": "Sahathai Coastal Seaport", "Status": "RQ", "outflows": 91563.33335 }, "geometry": { "type": "Point", "coordinates": [ 100.533333333333331, 13.65 ] } }, +{ "type": "Feature", "properties": { "Country": "Timor-Leste", "Function": "1-34----", "LOCODE": "TLDIL", "Name": "Dili", "NameWoDiac": "Dili", "Status": "RL", "outflows": 34187.75 }, "geometry": { "type": "Point", "coordinates": [ 125.566666666666663, -8.55 ] } }, +{ "type": "Feature", "properties": { "Country": "Tonga", "Function": "1--45---", "LOCODE": "TOTBU", "Name": "Nuku'alofa", "NameWoDiac": "Nuku'alofa", "Status": "AI", "outflows": 178599.5 }, "geometry": { "type": "Point", "coordinates": [ -175.2, -21.133333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Turkey", "Function": "--3-----", "LOCODE": "TRPAM", "Name": "Ambarli", "NameWoDiac": "Ambarli", "Status": "RL", "outflows": 14411413.266529994 }, "geometry": { "type": "Point", "coordinates": [ 39.166666666666664, 41.033333333333331 ] } }, +{ "type": "Feature", "properties": { "Country": "Turkey", "Function": "1234----", "LOCODE": "TRAYT", "Name": "Antalya", "NameWoDiac": "Antalya", "Status": "AI", "outflows": 111670.0 }, "geometry": { "type": "Point", "coordinates": [ 30.6, 36.833333333333336 ] } }, +{ "type": "Feature", "properties": { "Country": "Turkey", "Function": "1234----", "LOCODE": "TRBDM", "Name": "Bandirma", "NameWoDiac": "Bandirma", "Status": "AI", "outflows": 19968.0 }, "geometry": { "type": "Point", "coordinates": [ 27.966666666666665, 40.35 ] } }, +{ "type": "Feature", "properties": { "Country": "Turkey", "Function": "--3-----", "LOCODE": "TRELI", "Name": "Eregli", "NameWoDiac": "Eregli", "Status": "RL", "outflows": 46215.0 }, "geometry": { "type": "Point", "coordinates": [ 34.05, 37.5 ] } }, +{ "type": "Feature", "properties": { "Country": "Turkey", "Function": "123-----", "LOCODE": "TREYP", "Name": "Evyap Port \/Kocaeli", "NameWoDiac": "Evyap Port \/Kocaeli", "Status": "RL", "outflows": 2234864.6663000002 }, "geometry": { "type": "Point", "coordinates": [ 29.7, 40.766666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "Turkey", "Function": "123-----", "LOCODE": "TRGEB", "Name": "Gebze", "NameWoDiac": "Gebze", "Status": "RL", "outflows": 3850254.1414999994 }, "geometry": { "type": "Point", "coordinates": [ 29.416666666666668, 40.783333333333331 ] } }, +{ "type": "Feature", "properties": { "Country": "Turkey", "Function": "1-------", "LOCODE": "TRGEM", "Name": "Gemlik", "NameWoDiac": "Gemlik", "Status": "RL", "outflows": 5852461.2414100012 }, "geometry": { "type": "Point", "coordinates": [ 29.15, 40.416666666666664 ] } }, +{ "type": "Feature", "properties": { "Country": "Turkey", "Function": "123-----", "LOCODE": "TRISK", "Name": "Iskenderun", "NameWoDiac": "Iskenderun", "Status": "RL", "outflows": 5577045.5832400005 }, "geometry": { "type": "Point", "coordinates": [ 36.166666666666664, 36.583333333333336 ] } }, +{ "type": "Feature", "properties": { "Country": "Turkey", "Function": "12345---", "LOCODE": "TRIZM", "Name": "Izmir", "NameWoDiac": "Izmir", "Status": "AI", "outflows": 3559402.8750300007 }, "geometry": { "type": "Point", "coordinates": [ 27.15, 38.416666666666664 ] } }, +{ "type": "Feature", "properties": { "Country": "Turkey", "Function": "123-----", "LOCODE": "TRIZT", "Name": "Izmit", "NameWoDiac": "Izmit", "Status": "RL", "outflows": 8619638.1665099971 }, "geometry": { "type": "Point", "coordinates": [ 29.95, 40.783333333333331 ] } }, +{ "type": "Feature", "properties": { "Country": "Turkey", "Function": "123-----", "LOCODE": "TRKMX", "Name": "Kumport", "NameWoDiac": "Kumport", "Status": "RQ", "outflows": 829400.0 }, "geometry": { "type": "Point", "coordinates": [ 28.816666666666666, 40.95 ] } }, +{ "type": "Feature", "properties": { "Country": "Turkey", "Function": "1-------", "LOCODE": "TRLMA", "Name": "Limas", "NameWoDiac": "Limas", "Status": "RQ", "outflows": 31720.0 }, "geometry": { "type": "Point", "coordinates": [ 26.916666666666668, 38.75 ] } }, +{ "type": "Feature", "properties": { "Country": "Turkey", "Function": "123-----", "LOCODE": "TRMAD", "Name": "Mardas", "NameWoDiac": "Mardas", "Status": "RQ", "outflows": 103532.0 }, "geometry": { "type": "Point", "coordinates": [ 28.95, 41.016666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "Turkey", "Function": "123-----", "LOCODE": "TRMER", "Name": "Mersin", "NameWoDiac": "Mersin", "Status": "RL", "outflows": 9929684.1327900011 }, "geometry": { "type": "Point", "coordinates": [ 34.633333333333333, 36.716666666666669 ] } }, +{ "type": "Feature", "properties": { "Country": "Turkey", "Function": "1--4----", "LOCODE": "TRSSX", "Name": "Samsun", "NameWoDiac": "Samsun", "Status": "AI", "outflows": 105306.5 }, "geometry": { "type": "Point", "coordinates": [ 36.333333333333336, 41.283333333333331 ] } }, +{ "type": "Feature", "properties": { "Country": "Turkey", "Function": "1234----", "LOCODE": "TRTEK", "Name": "Tekirdag", "NameWoDiac": "Tekirdag", "Status": "AI", "outflows": 4941615.3749799989 }, "geometry": { "type": "Point", "coordinates": [ 27.516666666666666, 40.966666666666669 ] } }, +{ "type": "Feature", "properties": { "Country": "Turkey", "Function": "1-34----", "LOCODE": "TRTZX", "Name": "Trabzon", "NameWoDiac": "Trabzon", "Status": "AI", "outflows": 14760.0 }, "geometry": { "type": "Point", "coordinates": [ 39.733333333333334, 41.0 ] } }, +{ "type": "Feature", "properties": { "Country": "Turkey", "Function": "1-3-----", "LOCODE": "TRYPO", "Name": "Yilport", "NameWoDiac": "Yilport", "Status": "RL", "outflows": 253751.33331 }, "geometry": { "type": "Point", "coordinates": [ 29.533333333333335, 40.766666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "Trinidad and Tobago", "Function": "1--45---", "LOCODE": "TTPOS", "Name": "Port-of-Spain", "NameWoDiac": "Port-of-Spain", "Status": "AI", "outflows": 1136813.0 }, "geometry": { "type": "Point", "coordinates": [ -61.516666666666666, 10.65 ] } }, +{ "type": "Feature", "properties": { "Country": "Trinidad and Tobago", "Function": "1--45---", "LOCODE": "TTPOS", "Name": "Port-of-Spain", "NameWoDiac": "Port-of-Spain", "Status": "AI", "outflows": 1136813.0 }, "geometry": { "type": "Point", "coordinates": [ -61.516666666666666, 10.65 ] } }, +{ "type": "Feature", "properties": { "Country": "Taiwan, Province of China", "Function": "1--45---", "LOCODE": "TWTPE", "Name": "Taipei", "NameWoDiac": "Taipei", "Status": "AI", "outflows": 10793107.077210007 }, "geometry": { "type": "Point", "coordinates": [ 121.516666666666666, 25.033333333333335 ] } }, +{ "type": "Feature", "properties": { "Country": "Tanzania, United Republic of", "Function": "12345---", "LOCODE": "TZDAR", "Name": "Dar es Salaam", "NameWoDiac": "Dar es Salaam", "Status": "AI", "outflows": 1404403.5674399997 }, "geometry": { "type": "Point", "coordinates": [ 39.283333333333331, -6.8 ] } }, +{ "type": "Feature", "properties": { "Country": "Ukraine", "Function": "123-----", "LOCODE": "UAILK", "Name": "Chornomorsk", "NameWoDiac": "Chornomorsk", "Status": "AA", "outflows": 1398819.4999800001 }, "geometry": { "type": "Point", "coordinates": [ 30.666666666666668, 46.31666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Ukraine", "Function": "1234-6--", "LOCODE": "UAODS", "Name": "Odesa", "NameWoDiac": "Odesa", "Status": "AA", "outflows": 2843490.8999800007 }, "geometry": { "type": "Point", "coordinates": [ 30.75, 46.5 ] } }, +{ "type": "Feature", "properties": { "Country": "Ukraine", "Function": "1-------", "LOCODE": "UAYUZ", "Name": "Yuzhnyi", "NameWoDiac": "Yuzhnyi", "Status": "AA", "outflows": 1861645.5 }, "geometry": { "type": "Point", "coordinates": [ 31.016666666666666, 46.6 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "123-----", "LOCODE": "USBAL", "Name": "Baltimore", "NameWoDiac": "Baltimore", "Status": "RL", "outflows": 6053080.2448899997 }, "geometry": { "type": "Point", "coordinates": [ -76.61666666666666, 39.283333333333331 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "-23-----", "LOCODE": "USACL", "Name": "Chester", "NameWoDiac": "Chester", "Status": "RL", "outflows": 109902.0 }, "geometry": { "type": "Point", "coordinates": [ -72.583333333333329, 43.266666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "--3----B", "LOCODE": "USEPI", "Name": "Eastport", "NameWoDiac": "Eastport", "Status": "RN", "outflows": 28364.0 }, "geometry": { "type": "Point", "coordinates": [ -67.000460366215606, 44.918963897792032 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1-3-----", "LOCODE": "USFEB", "Name": "Fernandina Beach", "NameWoDiac": "Fernandina Beach", "Status": "RL", "outflows": 2700.0 }, "geometry": { "type": "Point", "coordinates": [ -81.45, 30.666666666666668 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "--3--6--", "LOCODE": "USGFP", "Name": "Gulfport", "NameWoDiac": "Gulfport", "Status": "RQ", "outflows": 179625.33335 }, "geometry": { "type": "Point", "coordinates": [ -89.084906220322893, 30.378156457739781 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1-345---", "LOCODE": "USHNL", "Name": "Honolulu", "NameWoDiac": "Honolulu", "Status": "AI", "outflows": 808514.83334000001 }, "geometry": { "type": "Point", "coordinates": [ -157.85, 21.3 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "-23--6--", "LOCODE": "USHKA", "Name": "Houston", "NameWoDiac": "Houston", "Status": "RL", "outflows": 14456458.251239998 }, "geometry": { "type": "Point", "coordinates": [ -149.816666666666663, 61.633333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1234----", "LOCODE": "USLGB", "Name": "Long Beach", "NameWoDiac": "Long Beach", "Status": "AI", "outflows": 12114713.79308 }, "geometry": { "type": "Point", "coordinates": [ -118.183333333333337, 33.766666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "12345---", "LOCODE": "USNYC", "Name": "New York", "NameWoDiac": "New York", "Status": "AI", "outflows": 27396473.865290001 }, "geometry": { "type": "Point", "coordinates": [ -74.0, 40.7 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "--3--6--", "LOCODE": "USNFF", "Name": "Norfolk", "NameWoDiac": "Norfolk", "Status": "RL", "outflows": 20779844.877009999 }, "geometry": { "type": "Point", "coordinates": [ -73.2, 42.0 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "-23-----", "LOCODE": "USKND", "Name": "Oakland", "NameWoDiac": "Oakland", "Status": "RL", "outflows": 17163885.235119998 }, "geometry": { "type": "Point", "coordinates": [ -122.220254629629636, 37.932904795821436 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "-23--6--", "LOCODE": "USPDP", "Name": "Philadelphia", "NameWoDiac": "Philadelphia", "Status": "RL", "outflows": 5743740.1835829979 }, "geometry": { "type": "Point", "coordinates": [ -75.716666666666669, 44.15 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1-34----", "LOCODE": "USPEF", "Name": "Port Everglades", "NameWoDiac": "Port Everglades", "Status": "RN", "outflows": 3155879.7381200008 }, "geometry": { "type": "Point", "coordinates": [ -80.13333333333334, 26.1 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1234-6--", "LOCODE": "USNTD", "Name": "Port Hueneme", "NameWoDiac": "Port Hueneme", "Status": "AI", "outflows": 585733.2 }, "geometry": { "type": "Point", "coordinates": [ -119.183333333333337, 34.133333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1-3-----", "LOCODE": "USPME", "Name": "Port Manatee", "NameWoDiac": "Port Manatee", "Status": "RL", "outflows": 88523.5 }, "geometry": { "type": "Point", "coordinates": [ -82.55, 27.633333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1-34----", "LOCODE": "USSAN", "Name": "San Diego", "NameWoDiac": "San Diego", "Status": "AI", "outflows": 60060.0 }, "geometry": { "type": "Point", "coordinates": [ -117.15, 32.7 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1-34----", "LOCODE": "USSCK", "Name": "Stockton", "NameWoDiac": "Stockton", "Status": "AI", "outflows": 27774.0 }, "geometry": { "type": "Point", "coordinates": [ -121.283333333333331, 37.95 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1--4----", "LOCODE": "USILM", "Name": "Wilmington", "NameWoDiac": "Wilmington", "Status": "AI", "outflows": 2749421.5816000002 }, "geometry": { "type": "Point", "coordinates": [ -77.933333333333337, 34.216666666666669 ] } }, +{ "type": "Feature", "properties": { "Country": "Uruguay", "Function": "--3-----", "LOCODE": "UYPTP", "Name": "Punta Pereyra", "NameWoDiac": "Punta Pereyra", "Status": "RQ", "outflows": 7800.0 }, "geometry": { "type": "Point", "coordinates": [ -58.06666666666667, -34.233333333333334 ] } }, +{ "type": "Feature", "properties": { "Country": "Saint Vincent and the Grenadines", "Function": "1--45---", "LOCODE": "VCKTN", "Name": "Kingstown", "NameWoDiac": "Kingstown", "Status": "RL", "outflows": 225040.4 }, "geometry": { "type": "Point", "coordinates": [ -61.216666666666669, 13.133333333333333 ] } }, +{ "type": "Feature", "properties": { "Country": "Venezuela, Bolivarian Republic of", "Function": "1--4----", "LOCODE": "VEPLA", "Name": "Pala", "NameWoDiac": "Palua", "Status": "AI", "outflows": 15540.0 }, "geometry": { "type": "Point", "coordinates": [ -62.666666666666664, 8.35 ] } }, +{ "type": "Feature", "properties": { "Country": "Virgin Islands, U.S.", "Function": "1-------", "LOCODE": "VICTD", "Name": "Christiansted, Saint Croix", "NameWoDiac": "Christiansted, Saint Croix", "Status": "AI", "outflows": 11076.0 }, "geometry": { "type": "Point", "coordinates": [ -64.75, 17.75 ] } }, +{ "type": "Feature", "properties": { "Country": "Viet Nam", "Function": "--3-----", "LOCODE": "VNC8Q", "Name": "Chu Lai", "NameWoDiac": "Chu Lai", "Status": "RL", "outflows": 233142.0 }, "geometry": { "type": "Point", "coordinates": [ 108.7, 15.4 ] } }, +{ "type": "Feature", "properties": { "Country": "Viet Nam", "Function": "1--4----", "LOCODE": "VNDAD", "Name": "Da Nang", "NameWoDiac": "Da Nang", "Status": "AI", "outflows": 3019963.9167599995 }, "geometry": { "type": "Point", "coordinates": [ 108.216666666666669, 16.066666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "Viet Nam", "Function": "1-3456--", "LOCODE": "VNSGN", "Name": "Ho Chi Minh City", "NameWoDiac": "Ho Chi Minh City", "Status": "AI", "outflows": 12782452.750279998 }, "geometry": { "type": "Point", "coordinates": [ 106.666666666666671, 10.766666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Viet Nam", "Function": "1-3-----", "LOCODE": "VNNGH", "Name": "Nghi Son", "NameWoDiac": "Nghi Son", "Status": "RL", "outflows": 43602.0 }, "geometry": { "type": "Point", "coordinates": [ 105.833333333333329, 19.333333333333332 ] } }, +{ "type": "Feature", "properties": { "Country": "Viet Nam", "Function": "1-34----", "LOCODE": "VNUIH", "Name": "Qui Nhon", "NameWoDiac": "Qui Nhon", "Status": "AI", "outflows": 418626.0 }, "geometry": { "type": "Point", "coordinates": [ 109.216666666666669, 13.766666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "Viet Nam", "Function": "1-34----", "LOCODE": "VNVUT", "Name": "Vung Tau", "NameWoDiac": "Vung Tau", "Status": "RL", "outflows": 21025136.034170005 }, "geometry": { "type": "Point", "coordinates": [ 107.066666666666663, 10.35 ] } }, +{ "type": "Feature", "properties": { "Country": "Wallis and Futuna", "Function": "---4----", "LOCODE": "WFFUT", "Name": "Vele Futuna I. Apt", "NameWoDiac": "Vele Futuna I. Apt", "Status": "AI", "outflows": 10200.0 }, "geometry": { "type": "Point", "coordinates": [ -178.083333333333343, -14.316666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "Mayotte", "Function": "1-3-----", "LOCODE": "YTLON", "Name": "Longoni", "NameWoDiac": "Longoni", "Status": "AA", "outflows": 298158.99997999996 }, "geometry": { "type": "Point", "coordinates": [ 45.166666666666664, -12.716666666666667 ] } }, +{ "type": "Feature", "properties": { "Country": "South Africa", "Function": "12345---", "LOCODE": "ZACPT", "Name": "Cape Town", "NameWoDiac": "Cape Town", "Status": "AF", "outflows": 4902763.6243000003 }, "geometry": { "type": "Point", "coordinates": [ 18.416666666666668, -33.916666666666664 ] } }, +{ "type": "Feature", "properties": { "Country": "South Africa", "Function": "-----6--", "LOCODE": "ZAZBA", "Name": "Coega", "NameWoDiac": "Coega", "Status": "RL", "outflows": 3467734.6668099998 }, "geometry": { "type": "Point", "coordinates": [ 25.666666666666668, -33.766666666666666 ] } }, +{ "type": "Feature", "properties": { "Country": "South Africa", "Function": "12345---", "LOCODE": "ZADUR", "Name": "Durban", "NameWoDiac": "Durban", "Status": "AI", "outflows": 8754191.1218599975 }, "geometry": { "type": "Point", "coordinates": [ 31.016666666666666, -29.85 ] } }, +{ "type": "Feature", "properties": { "Country": "United Arab Emirates", "Function": "1-3-----", "LOCODE": "AEAJM", "Name": "Ajman", "NameWoDiac": "Ajman", "Status": "RL", "outflows": 73567.0 }, "geometry": { "type": "Point", "coordinates": [ 55.47878, 25.40177 ] } }, +{ "type": "Feature", "properties": { "Country": "United Arab Emirates", "Function": "1-------", "LOCODE": "AEJEA", "Name": "Jebel Ali", "NameWoDiac": "Jebel Ali", "Status": "QQ", "outflows": 44524119.850148 }, "geometry": { "type": "Point", "coordinates": [ 55.10811, 25.00255 ] } }, +{ "type": "Feature", "properties": { "Country": "Anguilla", "Function": "---45---", "LOCODE": "AIAXA", "Name": "Anguilla", "NameWoDiac": "Anguilla", "Status": "AI", "outflows": 230958.0 }, "geometry": { "type": "Point", "coordinates": [ -63.09375, 18.17648 ] } }, +{ "type": "Feature", "properties": { "Country": "Albania", "Function": "1-------", "LOCODE": "ALDRZ", "Name": "Durrs", "NameWoDiac": "Durres", "Status": "RL", "outflows": 134307.0 }, "geometry": { "type": "Point", "coordinates": [ 19.45469, 41.32355 ] } }, +{ "type": "Feature", "properties": { "Country": "Albania", "Function": "1-------", "LOCODE": "ALDRZ", "Name": "Durrs", "NameWoDiac": "Durres", "Status": "RL", "outflows": 134307.0 }, "geometry": { "type": "Point", "coordinates": [ 19.45469, 41.32355 ] } }, +{ "type": "Feature", "properties": { "Country": "Angola", "Function": "1--4----", "LOCODE": "AOCAB", "Name": "Cabinda", "NameWoDiac": "Cabinda", "Status": "AI", "outflows": 2673.25 }, "geometry": { "type": "Point", "coordinates": [ 12.2, -5.55 ] } }, +{ "type": "Feature", "properties": { "Country": "Angola", "Function": "1---5---", "LOCODE": "AOLOB", "Name": "Lobito", "NameWoDiac": "Lobito", "Status": "RL", "outflows": 210369.4 }, "geometry": { "type": "Point", "coordinates": [ 13.53601, -12.3644 ] } }, +{ "type": "Feature", "properties": { "Country": "Angola", "Function": "1--45---", "LOCODE": "AOLAD", "Name": "Luanda", "NameWoDiac": "Luanda", "Status": "AI", "outflows": 2439604.518850001 }, "geometry": { "type": "Point", "coordinates": [ 13.23432, -8.83682 ] } }, +{ "type": "Feature", "properties": { "Country": "Angola", "Function": "0-------", "LOCODE": "AOMAL", "Name": "Malongo", "NameWoDiac": "Malongo", "Status": "RQ", "outflows": 8707.5 }, "geometry": { "type": "Point", "coordinates": [ 12.19802179783948, -5.396406481852449 ] } }, +{ "type": "Feature", "properties": { "Country": "Angola", "Function": "1--4----", "LOCODE": "AOMSZ", "Name": "Namibe", "NameWoDiac": "Namibe", "Status": "AI", "outflows": 61242.5 }, "geometry": { "type": "Point", "coordinates": [ 12.15222, -15.19611 ] } }, +{ "type": "Feature", "properties": { "Country": "Angola", "Function": "1--4----", "LOCODE": "AOSZA", "Name": "Soyo", "NameWoDiac": "Soyo", "Status": "AI", "outflows": 79583.4 }, "geometry": { "type": "Point", "coordinates": [ 12.36894, -6.1349 ] } }, +{ "type": "Feature", "properties": { "Country": "Australia", "Function": "123-----", "LOCODE": "AUBEL", "Name": "Bell Bay", "NameWoDiac": "Bell Bay", "Status": "AC", "outflows": 537012.66663 }, "geometry": { "type": "Point", "coordinates": [ 146.87, -41.13 ] } }, +{ "type": "Feature", "properties": { "Country": "Australia", "Function": "1--4----", "LOCODE": "AUBWT", "Name": "Burnie", "NameWoDiac": "Burnie", "Status": "AC", "outflows": 54600.0 }, "geometry": { "type": "Point", "coordinates": [ 145.90375, -41.05584 ] } }, +{ "type": "Feature", "properties": { "Country": "Australia", "Function": "1--4----", "LOCODE": "AUCNS", "Name": "Cairns", "NameWoDiac": "Cairns", "Status": "AC", "outflows": 806.0 }, "geometry": { "type": "Point", "coordinates": [ 145.76613, -16.92366 ] } }, +{ "type": "Feature", "properties": { "Country": "Australia", "Function": "1-------", "LOCODE": "AUDAM", "Name": "Dampier", "NameWoDiac": "Dampier", "Status": "AC", "outflows": 2273.75 }, "geometry": { "type": "Point", "coordinates": [ 116.71256, -20.66275 ] } }, +{ "type": "Feature", "properties": { "Country": "Australia", "Function": "1--4----", "LOCODE": "AUDPO", "Name": "Devonport", "NameWoDiac": "Devonport", "Status": "AC", "outflows": 11960.0 }, "geometry": { "type": "Point", "coordinates": [ 146.35152, -41.17695 ] } }, +{ "type": "Feature", "properties": { "Country": "Australia", "Function": "1--4----", "LOCODE": "AUFRE", "Name": "Fremantle", "NameWoDiac": "Fremantle", "Status": "AC", "outflows": 4485214.6003799979 }, "geometry": { "type": "Point", "coordinates": [ 115.74557, -32.05632 ] } }, +{ "type": "Feature", "properties": { "Country": "Australia", "Function": "1--4----", "LOCODE": "AUGEX", "Name": "Geelong", "NameWoDiac": "Geelong", "Status": "AC", "outflows": 3084.0 }, "geometry": { "type": "Point", "coordinates": [ 144.36069, -38.14711 ] } }, +{ "type": "Feature", "properties": { "Country": "Australia", "Function": "1--4----", "LOCODE": "AUNTL", "Name": "Newcastle", "NameWoDiac": "Newcastle", "Status": "AI", "outflows": 69717.0 }, "geometry": { "type": "Point", "coordinates": [ 151.7801, -32.92953 ] } }, +{ "type": "Feature", "properties": { "Country": "Australia", "Function": "123-----", "LOCODE": "AUPBT", "Name": "Port Botany", "NameWoDiac": "Port Botany", "Status": "AC", "outflows": 47151.0 }, "geometry": { "type": "Point", "coordinates": [ 151.22277, -33.97447 ] } }, +{ "type": "Feature", "properties": { "Country": "Australia", "Function": "1--4----", "LOCODE": "AUPKL", "Name": "Port Kembla", "NameWoDiac": "Port Kembla", "Status": "AC", "outflows": 33267.0 }, "geometry": { "type": "Point", "coordinates": [ 150.9012, -34.4818 ] } }, +{ "type": "Feature", "properties": { "Country": "Australia", "Function": "1--4----", "LOCODE": "AUTSV", "Name": "Townsville", "NameWoDiac": "Townsville", "Status": "AI", "outflows": 227206.58331800002 }, "geometry": { "type": "Point", "coordinates": [ 146.80569, -19.26639 ] } }, +{ "type": "Feature", "properties": { "Country": "Australia", "Function": "1--4----", "LOCODE": "AUWEI", "Name": "Weipa", "NameWoDiac": "Weipa", "Status": "AC", "outflows": 806.0 }, "geometry": { "type": "Point", "coordinates": [ 141.87883, -12.62346 ] } }, +{ "type": "Feature", "properties": { "Country": "Aruba", "Function": "1---5---", "LOCODE": "AWORJ", "Name": "Oranjestad", "NameWoDiac": "Oranjestad", "Status": "AI", "outflows": 721990.3 }, "geometry": { "type": "Point", "coordinates": [ -70.02703, 12.52398 ] } }, +{ "type": "Feature", "properties": { "Country": "Barbados", "Function": "1--45---", "LOCODE": "BBBGI", "Name": "Bridgetown", "NameWoDiac": "Bridgetown", "Status": "AI", "outflows": 687251.06668999989 }, "geometry": { "type": "Point", "coordinates": [ -59.62021, 13.10732 ] } }, +{ "type": "Feature", "properties": { "Country": "Bangladesh", "Function": "1-------", "LOCODE": "BDMGL", "Name": "Mongla", "NameWoDiac": "Mongla", "Status": "RQ", "outflows": 65143.0 }, "geometry": { "type": "Point", "coordinates": [ 89.61095, 22.47223 ] } }, +{ "type": "Feature", "properties": { "Country": "Bulgaria", "Function": "1-------", "LOCODE": "BGBOJ", "Name": "Burgas", "NameWoDiac": "Burgas", "Status": "AC", "outflows": 535001.99997999996 }, "geometry": { "type": "Point", "coordinates": [ 27.46781, 42.50606 ] } }, +{ "type": "Feature", "properties": { "Country": "Bulgaria", "Function": "1--4----", "LOCODE": "BGVAR", "Name": "Varna", "NameWoDiac": "Varna", "Status": "AI", "outflows": 147810.0 }, "geometry": { "type": "Point", "coordinates": [ 27.91667, 43.21667 ] } }, +{ "type": "Feature", "properties": { "Country": "Benin", "Function": "1--45---", "LOCODE": "BJCOO", "Name": "Cotonou", "NameWoDiac": "Cotonou", "Status": "AI", "outflows": 4812454.6643299991 }, "geometry": { "type": "Point", "coordinates": [ 2.41833, 6.36536 ] } }, +{ "type": "Feature", "properties": { "Country": "Bermuda", "Function": "1--45---", "LOCODE": "BMBDA", "Name": "Hamilton", "NameWoDiac": "Hamilton", "Status": "AI", "outflows": 13100.0 }, "geometry": { "type": "Point", "coordinates": [ -64.78303, 32.2949 ] } }, +{ "type": "Feature", "properties": { "Country": "Brazil", "Function": "1--4----", "LOCODE": "BRFOR", "Name": "Fortaleza", "NameWoDiac": "Fortaleza", "Status": "AI", "outflows": 278482.75 }, "geometry": { "type": "Point", "coordinates": [ -38.54306, -3.71722 ] } }, +{ "type": "Feature", "properties": { "Country": "Brazil", "Function": "1--4----", "LOCODE": "BRIOS", "Name": "Ilheus", "NameWoDiac": "Ilheus", "Status": "AI", "outflows": 36877.75 }, "geometry": { "type": "Point", "coordinates": [ -39.03949, -14.79364 ] } }, +{ "type": "Feature", "properties": { "Country": "Brazil", "Function": "1-------", "LOCODE": "BRIBB", "Name": "Imbituba", "NameWoDiac": "Imbituba", "Status": "AI", "outflows": 378681.33330999996 }, "geometry": { "type": "Point", "coordinates": [ -48.67028, -28.24 ] } }, +{ "type": "Feature", "properties": { "Country": "Brazil", "Function": "1--4----", "LOCODE": "BRITJ", "Name": "Itajai", "NameWoDiac": "Itajai", "Status": "AI", "outflows": 4871215.6998899989 }, "geometry": { "type": "Point", "coordinates": [ -48.66194, -26.90778 ] } }, +{ "type": "Feature", "properties": { "Country": "Brazil", "Function": "1--4----", "LOCODE": "BRMAO", "Name": "Manaus", "NameWoDiac": "Manaus", "Status": "AI", "outflows": 1385527.97796 }, "geometry": { "type": "Point", "coordinates": [ -60.025, -3.10194 ] } }, +{ "type": "Feature", "properties": { "Country": "Brazil", "Function": "1--4----", "LOCODE": "BRNAT", "Name": "Natal", "NameWoDiac": "Natal", "Status": "AI", "outflows": 241605.0 }, "geometry": { "type": "Point", "coordinates": [ -35.20944, -5.795 ] } }, +{ "type": "Feature", "properties": { "Country": "Brazil", "Function": "1--4----", "LOCODE": "BRRIG", "Name": "Rio Grande", "NameWoDiac": "Rio Grande", "Status": "AI", "outflows": 10184119.863509998 }, "geometry": { "type": "Point", "coordinates": [ -43.18223, -22.90642 ] } }, +{ "type": "Feature", "properties": { "Country": "Brazil", "Function": "1--4----", "LOCODE": "BRSSA", "Name": "Salvador", "NameWoDiac": "Salvador", "Status": "AI", "outflows": 8800539.5732199997 }, "geometry": { "type": "Point", "coordinates": [ -38.51083, -12.97111 ] } }, +{ "type": "Feature", "properties": { "Country": "Brazil", "Function": "1-------", "LOCODE": "BRSUA", "Name": "Suape", "NameWoDiac": "Suape", "Status": "RQ", "outflows": 5878585.3904299997 }, "geometry": { "type": "Point", "coordinates": [ -38.62083, -12.74083 ] } }, +{ "type": "Feature", "properties": { "Country": "Belize", "Function": "1--45---", "LOCODE": "BZBZE", "Name": "Belize City", "NameWoDiac": "Belize City", "Status": "AI", "outflows": 469495.0 }, "geometry": { "type": "Point", "coordinates": [ -88.19756, 17.49952 ] } }, +{ "type": "Feature", "properties": { "Country": "Canada", "Function": "1--4----", "LOCODE": "CAHAL", "Name": "Halifax", "NameWoDiac": "Halifax", "Status": "AS", "outflows": 4454972.4670409998 }, "geometry": { "type": "Point", "coordinates": [ -63.57291, 44.6464 ] } }, +{ "type": "Feature", "properties": { "Country": "Canada", "Function": "1--45---", "LOCODE": "CAMTR", "Name": "Montreal", "NameWoDiac": "Montreal", "Status": "AS", "outflows": 2304234.075 }, "geometry": { "type": "Point", "coordinates": [ -73.58781, 45.50884 ] } }, +{ "type": "Feature", "properties": { "Country": "Canada", "Function": "1-------", "LOCODE": "CANWE", "Name": "New Westminster", "NameWoDiac": "New Westminster", "Status": "AS", "outflows": 27774.0 }, "geometry": { "type": "Point", "coordinates": [ -122.91092, 49.20678 ] } }, +{ "type": "Feature", "properties": { "Country": "Canada", "Function": "1--4----", "LOCODE": "CAPRR", "Name": "Prince Rupert", "NameWoDiac": "Prince Rupert", "Status": "AS", "outflows": 2510218.7498600003 }, "geometry": { "type": "Point", "coordinates": [ -130.32098, 54.31507 ] } }, +{ "type": "Feature", "properties": { "Country": "Canada", "Function": "1--4----", "LOCODE": "CASQA", "Name": "Squamish", "NameWoDiac": "Squamish", "Status": "AS", "outflows": 9606.0 }, "geometry": { "type": "Point", "coordinates": [ -122.95396, 50.11817 ] } }, +{ "type": "Feature", "properties": { "Country": "Canada", "Function": "1--45---", "LOCODE": "CATOR", "Name": "Toronto", "NameWoDiac": "Toronto", "Status": "AS", "outflows": 5720.0 }, "geometry": { "type": "Point", "coordinates": [ -79.4163, 43.70011 ] } }, +{ "type": "Feature", "properties": { "Country": "Canada", "Function": "1--45---", "LOCODE": "CAVAN", "Name": "Vancouver", "NameWoDiac": "Vancouver", "Status": "AS", "outflows": 11959843.503790002 }, "geometry": { "type": "Point", "coordinates": [ -123.11934, 49.24966 ] } }, +{ "type": "Feature", "properties": { "Country": "Cook Islands", "Function": "1--45---", "LOCODE": "CKAIT", "Name": "Aitutaki", "NameWoDiac": "Aitutaki", "Status": "AI", "outflows": 40320.0 }, "geometry": { "type": "Point", "coordinates": [ -159.79293, -18.85195 ] } }, +{ "type": "Feature", "properties": { "Country": "Cook Islands", "Function": "1--45---", "LOCODE": "CKRAR", "Name": "Rarotonga", "NameWoDiac": "Rarotonga", "Status": "AI", "outflows": 41157.0 }, "geometry": { "type": "Point", "coordinates": [ -159.77545, -21.2075 ] } }, +{ "type": "Feature", "properties": { "Country": "Cameroon", "Function": "1--45---", "LOCODE": "CMDLA", "Name": "Douala", "NameWoDiac": "Douala", "Status": "AI", "outflows": 1089387.80006 }, "geometry": { "type": "Point", "coordinates": [ 9.70428, 4.04827 ] } }, +{ "type": "Feature", "properties": { "Country": "Cameroon", "Function": "1--4----", "LOCODE": "CMKBI", "Name": "Kribi", "NameWoDiac": "Kribi", "Status": "AI", "outflows": 1338743.54556 }, "geometry": { "type": "Point", "coordinates": [ 9.90765, 2.93725 ] } }, +{ "type": "Feature", "properties": { "Country": "Colombia", "Function": "1--45---", "LOCODE": "COBAQ", "Name": "Barranquilla", "NameWoDiac": "Barranquilla", "Status": "AI", "outflows": 1238849.9999530001 }, "geometry": { "type": "Point", "coordinates": [ -74.78132, 10.96854 ] } }, +{ "type": "Feature", "properties": { "Country": "Colombia", "Function": "1--4----", "LOCODE": "COBUN", "Name": "Buenaventura", "NameWoDiac": "Buenaventura", "Status": "AI", "outflows": 12125518.600159997 }, "geometry": { "type": "Point", "coordinates": [ -77.03116, 3.8801 ] } }, +{ "type": "Feature", "properties": { "Country": "Colombia", "Function": "1--4----", "LOCODE": "COCTG", "Name": "Cartagena", "NameWoDiac": "Cartagena", "Status": "AI", "outflows": 16624367.157963 }, "geometry": { "type": "Point", "coordinates": [ -75.51444, 10.39972 ] } }, +{ "type": "Feature", "properties": { "Country": "Colombia", "Function": "1--4----", "LOCODE": "COSMR", "Name": "Santa Marta", "NameWoDiac": "Santa Marta", "Status": "AI", "outflows": 1906046.5665720007 }, "geometry": { "type": "Point", "coordinates": [ -74.19904, 11.24079 ] } }, +{ "type": "Feature", "properties": { "Country": "Cuba", "Function": "---4----", "LOCODE": "CUMOA", "Name": "Moa", "NameWoDiac": "Moa", "Status": "AI", "outflows": 65431.8 }, "geometry": { "type": "Point", "coordinates": [ -74.95075, 20.65776 ] } }, +{ "type": "Feature", "properties": { "Country": "Cuba", "Function": "1--4----", "LOCODE": "CUSCU", "Name": "Santiago de Cuba", "NameWoDiac": "Santiago de Cuba", "Status": "AI", "outflows": 63230.0 }, "geometry": { "type": "Point", "coordinates": [ -75.82667, 20.02083 ] } }, +{ "type": "Feature", "properties": { "Country": "Cabo Verde", "Function": "0-------", "LOCODE": "CVPAL", "Name": "Palmeira", "NameWoDiac": "Palmeira", "Status": "RQ", "outflows": 13234.0 }, "geometry": { "type": "Point", "coordinates": [ -22.98348, 16.75754 ] } }, +{ "type": "Feature", "properties": { "Country": "Cabo Verde", "Function": "1--4----", "LOCODE": "CVRAI", "Name": "Praia", "NameWoDiac": "Praia", "Status": "AI", "outflows": 114309.0 }, "geometry": { "type": "Point", "coordinates": [ -23.51254, 14.93152 ] } }, +{ "type": "Feature", "properties": { "Country": "Cabo Verde", "Function": "0-------", "LOCODE": "CVSAR", "Name": "Sal Rei", "NameWoDiac": "Sal Rei", "Status": "RQ", "outflows": 25421.5 }, "geometry": { "type": "Point", "coordinates": [ -22.91722, 16.17611 ] } }, +{ "type": "Feature", "properties": { "Country": "Germany", "Function": "12345---", "LOCODE": "DEBRE", "Name": "Bremen", "NameWoDiac": "Bremen", "Status": "AF", "outflows": 197153.69999199998 }, "geometry": { "type": "Point", "coordinates": [ 8.80717, 53.07582 ] } }, +{ "type": "Feature", "properties": { "Country": "Germany", "Function": "1234----", "LOCODE": "DEBRV", "Name": "Bremerhaven", "NameWoDiac": "Bremerhaven", "Status": "AF", "outflows": 21710907.495360006 }, "geometry": { "type": "Point", "coordinates": [ 8.59298, 53.53615 ] } }, +{ "type": "Feature", "properties": { "Country": "Germany", "Function": "12345---", "LOCODE": "DEHAM", "Name": "Hamburg", "NameWoDiac": "Hamburg", "Status": "AF", "outflows": 42669313.486039981 }, "geometry": { "type": "Point", "coordinates": [ 9.99302, 53.55073 ] } }, +{ "type": "Feature", "properties": { "Country": "Germany", "Function": "12345---", "LOCODE": "DELBC", "Name": "Lbeck", "NameWoDiac": "Lubeck", "Status": "AF", "outflows": 295233.5 }, "geometry": { "type": "Point", "coordinates": [ 10.68729, 53.86893 ] } }, +{ "type": "Feature", "properties": { "Country": "Germany", "Function": "123-----", "LOCODE": "DETRV", "Name": "Travemnde", "NameWoDiac": "Travemunde", "Status": "AF", "outflows": 73746.0 }, "geometry": { "type": "Point", "coordinates": [ 10.8709, 53.96304 ] } }, +{ "type": "Feature", "properties": { "Country": "Djibouti", "Function": "1--45---", "LOCODE": "DJJIB", "Name": "Djibouti", "NameWoDiac": "Djibouti", "Status": "AI", "outflows": 4852561.0352500007 }, "geometry": { "type": "Point", "coordinates": [ 43.14503, 11.58901 ] } }, +{ "type": "Feature", "properties": { "Country": "Denmark", "Function": "12345---", "LOCODE": "DKAAL", "Name": "Aalborg", "NameWoDiac": "Aalborg", "Status": "AF", "outflows": 74932.0 }, "geometry": { "type": "Point", "coordinates": [ 9.9187, 57.048 ] } }, +{ "type": "Feature", "properties": { "Country": "Denmark", "Function": "1234----", "LOCODE": "DKEBJ", "Name": "Esbjerg", "NameWoDiac": "Esbjerg", "Status": "AF", "outflows": 28620.0 }, "geometry": { "type": "Point", "coordinates": [ 8.45187, 55.47028 ] } }, +{ "type": "Feature", "properties": { "Country": "Denmark", "Function": "12--5---", "LOCODE": "DKFRC", "Name": "Fredericia", "NameWoDiac": "Fredericia", "Status": "AF", "outflows": 245869.0 }, "geometry": { "type": "Point", "coordinates": [ 9.75257, 55.56568 ] } }, +{ "type": "Feature", "properties": { "Country": "Denmark", "Function": "123-----", "LOCODE": "DKGRE", "Name": "Grenaa", "NameWoDiac": "Grenaa", "Status": "AF", "outflows": 16263.0 }, "geometry": { "type": "Point", "coordinates": [ 10.87825, 56.41578 ] } }, +{ "type": "Feature", "properties": { "Country": "Denmark", "Function": "123-----", "LOCODE": "DKHUN", "Name": "Hundested", "NameWoDiac": "Hundested", "Status": "AF", "outflows": 16263.0 }, "geometry": { "type": "Point", "coordinates": [ 11.85044, 55.96397 ] } }, +{ "type": "Feature", "properties": { "Country": "Denmark", "Function": "12------", "LOCODE": "DKSKA", "Name": "Skagen", "NameWoDiac": "Skagen", "Status": "AF", "outflows": 56420.0 }, "geometry": { "type": "Point", "coordinates": [ 10.58394, 57.72093 ] } }, +{ "type": "Feature", "properties": { "Country": "Dominica", "Function": "1-------", "LOCODE": "DMRSU", "Name": "Roseau", "NameWoDiac": "Roseau", "Status": "AI", "outflows": 370965.4 }, "geometry": { "type": "Point", "coordinates": [ -61.38808, 15.30174 ] } }, +{ "type": "Feature", "properties": { "Country": "Dominican Republic", "Function": "1-------", "LOCODE": "DOBCC", "Name": "Boca Chica", "NameWoDiac": "Boca Chica", "Status": "AI", "outflows": 333493.3333 }, "geometry": { "type": "Point", "coordinates": [ -69.6, 18.45 ] } }, +{ "type": "Feature", "properties": { "Country": "Dominican Republic", "Function": "1-------", "LOCODE": "DOPOP", "Name": "Puerto Plata", "NameWoDiac": "Puerto Plata", "Status": "AI", "outflows": 712651.3333000001 }, "geometry": { "type": "Point", "coordinates": [ -70.6884, 19.79344 ] } }, +{ "type": "Feature", "properties": { "Country": "Algeria", "Function": "1-------", "LOCODE": "DZMOS", "Name": "Mostaganem", "NameWoDiac": "Mostaganem", "Status": "QQ", "outflows": 20553.75 }, "geometry": { "type": "Point", "coordinates": [ 0.08918, 35.93115 ] } }, +{ "type": "Feature", "properties": { "Country": "Algeria", "Function": "1--4----", "LOCODE": "DZORN", "Name": "Oran", "NameWoDiac": "Oran", "Status": "AI", "outflows": 210402.15 }, "geometry": { "type": "Point", "coordinates": [ -0.63588, 35.69906 ] } }, +{ "type": "Feature", "properties": { "Country": "Egypt", "Function": "1-------", "LOCODE": "EGEDK", "Name": "El Dekheila", "NameWoDiac": "El Dekheila", "Status": "RQ", "outflows": 265833.75 }, "geometry": { "type": "Point", "coordinates": [ 29.82126, 31.13133 ] } }, +{ "type": "Feature", "properties": { "Country": "Egypt", "Function": "1--4----", "LOCODE": "EGPSD", "Name": "Port Said", "NameWoDiac": "Port Said", "Status": "AI", "outflows": 20587604.955879994 }, "geometry": { "type": "Point", "coordinates": [ 32.3019, 31.26531 ] } }, +{ "type": "Feature", "properties": { "Country": "Spain", "Function": "1-------", "LOCODE": "ESALG", "Name": "Algeciras", "NameWoDiac": "Algeciras", "Status": "AI", "outflows": 27490011.70193002 }, "geometry": { "type": "Point", "coordinates": [ -5.45051, 36.13326 ] } }, +{ "type": "Feature", "properties": { "Country": "Spain", "Function": "12345---", "LOCODE": "ESALC", "Name": "Alicante", "NameWoDiac": "Alicante", "Status": "AI", "outflows": 317642.0 }, "geometry": { "type": "Point", "coordinates": [ -0.48149, 38.34517 ] } }, +{ "type": "Feature", "properties": { "Country": "Spain", "Function": "12345---", "LOCODE": "ESBCN", "Name": "Barcelona", "NameWoDiac": "Barcelona", "Status": "AI", "outflows": 22873062.028563999 }, "geometry": { "type": "Point", "coordinates": [ 2.15899, 41.38879 ] } }, +{ "type": "Feature", "properties": { "Country": "Spain", "Function": "1-------", "LOCODE": "ESCAD", "Name": "Cadiz", "NameWoDiac": "Cadiz", "Status": "AI", "outflows": 248618.5 }, "geometry": { "type": "Point", "coordinates": [ -6.2891, 36.52672 ] } }, +{ "type": "Feature", "properties": { "Country": "Spain", "Function": "1-------", "LOCODE": "ESCEU", "Name": "Ceuta", "NameWoDiac": "Ceuta", "Status": "AI", "outflows": 45500.0 }, "geometry": { "type": "Point", "coordinates": [ -5.32042, 35.88919 ] } }, +{ "type": "Feature", "properties": { "Country": "Spain", "Function": "123-----", "LOCODE": "ESHUV", "Name": "Huelva", "NameWoDiac": "Huelva", "Status": "AI", "outflows": 191763.0 }, "geometry": { "type": "Point", "coordinates": [ -6.94004, 37.26638 ] } }, +{ "type": "Feature", "properties": { "Country": "Spain", "Function": "1--4----", "LOCODE": "ESFUE", "Name": "Puerto del Rosario-Fuerteventura", "NameWoDiac": "Puerto del Rosario-Fuerteventura", "Status": "AI", "outflows": 219128.0 }, "geometry": { "type": "Point", "coordinates": [ -13.86272, 28.50038 ] } }, +{ "type": "Feature", "properties": { "Country": "Spain", "Function": "1---5---", "LOCODE": "ESSCT", "Name": "Santa Cruz de Tenerife", "NameWoDiac": "Santa Cruz de Tenerife", "Status": "AI", "outflows": 640000.0 }, "geometry": { "type": "Point", "coordinates": [ -16.25462, 28.46824 ] } }, +{ "type": "Feature", "properties": { "Country": "Spain", "Function": "1234----", "LOCODE": "ESSDR", "Name": "Santander", "NameWoDiac": "Santander", "Status": "AI", "outflows": 23634.0 }, "geometry": { "type": "Point", "coordinates": [ -3.80444, 43.46472 ] } }, +{ "type": "Feature", "properties": { "Country": "Spain", "Function": "12345---", "LOCODE": "ESSVQ", "Name": "Sevilla", "NameWoDiac": "Sevilla", "Status": "AI", "outflows": 49842.0 }, "geometry": { "type": "Point", "coordinates": [ -5.97317, 37.38283 ] } }, +{ "type": "Feature", "properties": { "Country": "Spain", "Function": "1234----", "LOCODE": "ESTAR", "Name": "Tarragona", "NameWoDiac": "Tarragona", "Status": "AI", "outflows": 977262.0 }, "geometry": { "type": "Point", "coordinates": [ 1.25, 41.11667 ] } }, +{ "type": "Feature", "properties": { "Country": "Spain", "Function": "12345---", "LOCODE": "ESVLC", "Name": "Valencia", "NameWoDiac": "Valencia", "Status": "AI", "outflows": 32174699.419024002 }, "geometry": { "type": "Point", "coordinates": [ -0.37739, 39.46975 ] } }, +{ "type": "Feature", "properties": { "Country": "Spain", "Function": "1--4----", "LOCODE": "ESVGO", "Name": "Vigo", "NameWoDiac": "Vigo", "Status": "AI", "outflows": 929140.33332400001 }, "geometry": { "type": "Point", "coordinates": [ -8.72264, 42.23282 ] } }, +{ "type": "Feature", "properties": { "Country": "Finland", "Function": "1-------", "LOCODE": "FIHKO", "Name": "Hang (Hanko)", "NameWoDiac": "Hango (Hanko)", "Status": "AI", "outflows": 134144.0 }, "geometry": { "type": "Point", "coordinates": [ 22.95, 59.83333 ] } }, +{ "type": "Feature", "properties": { "Country": "Finland", "Function": "1-------", "LOCODE": "FIHKO", "Name": "Hanko (Hang)", "NameWoDiac": "Hanko (Hango)", "Status": "AI", "outflows": 134144.0 }, "geometry": { "type": "Point", "coordinates": [ 22.95, 59.83333 ] } }, +{ "type": "Feature", "properties": { "Country": "Finland", "Function": "1-------", "LOCODE": "FIHEL", "Name": "Helsingfors (Helsinki)", "NameWoDiac": "Helsingfors (Helsinki)", "Status": "AI", "outflows": 745328.99995000008 }, "geometry": { "type": "Point", "coordinates": [ 24.93545, 60.16952 ] } }, +{ "type": "Feature", "properties": { "Country": "Finland", "Function": "1-------", "LOCODE": "FIHEL", "Name": "Helsinki (Helsingfors)", "NameWoDiac": "Helsinki (Helsingfors)", "Status": "AI", "outflows": 745328.99995000008 }, "geometry": { "type": "Point", "coordinates": [ 24.93545, 60.16952 ] } }, +{ "type": "Feature", "properties": { "Country": "Finland", "Function": "1-3-----", "LOCODE": "FIVKO", "Name": "Valko (Valkom)", "NameWoDiac": "Valko (Valkom)", "Status": "AC", "outflows": 84688.5 }, "geometry": { "type": "Point", "coordinates": [ 26.24664, 60.41392 ] } }, +{ "type": "Feature", "properties": { "Country": "Finland", "Function": "1-3-----", "LOCODE": "FIVKO", "Name": "Valkom (Valko)", "NameWoDiac": "Valkom (Valko)", "Status": "AC", "outflows": 84688.5 }, "geometry": { "type": "Point", "coordinates": [ 26.24664, 60.41392 ] } }, +{ "type": "Feature", "properties": { "Country": "Gabon", "Function": "1--45---", "LOCODE": "GALBV", "Name": "Libreville", "NameWoDiac": "Libreville", "Status": "AI", "outflows": 414222.00002999994 }, "geometry": { "type": "Point", "coordinates": [ 9.45356, 0.39241 ] } }, +{ "type": "Feature", "properties": { "Country": "Gabon", "Function": "1--45---", "LOCODE": "GAPOG", "Name": "Port Gentil", "NameWoDiac": "Port Gentil", "Status": "AI", "outflows": 148566.9 }, "geometry": { "type": "Point", "coordinates": [ 8.78151, -0.71933 ] } }, +{ "type": "Feature", "properties": { "Country": "United Kingdom", "Function": "1-------", "LOCODE": "GBBLY", "Name": "Blyth", "NameWoDiac": "Blyth", "Status": "AF", "outflows": 13208.0 }, "geometry": { "type": "Point", "coordinates": [ -1.50856, 55.12708 ] } }, +{ "type": "Feature", "properties": { "Country": "United Kingdom", "Function": "1234----", "LOCODE": "GBBRS", "Name": "Bristol", "NameWoDiac": "Bristol", "Status": "AF", "outflows": 213286.66665 }, "geometry": { "type": "Point", "coordinates": [ -2.59665, 51.45523 ] } }, +{ "type": "Feature", "properties": { "Country": "United Kingdom", "Function": "1---5---", "LOCODE": "GBDVR", "Name": "Dover", "NameWoDiac": "Dover", "Status": "AF", "outflows": 17290.0 }, "geometry": { "type": "Point", "coordinates": [ 1.31257, 51.12598 ] } }, +{ "type": "Feature", "properties": { "Country": "United Kingdom", "Function": "1-------", "LOCODE": "GBFXT", "Name": "Felixstowe", "NameWoDiac": "Felixstowe", "Status": "AF", "outflows": 23949484.180700015 }, "geometry": { "type": "Point", "coordinates": [ 1.3511, 51.96375 ] } }, +{ "type": "Feature", "properties": { "Country": "United Kingdom", "Function": "1-------", "LOCODE": "GBFOY", "Name": "Fowey", "NameWoDiac": "Fowey", "Status": "AF", "outflows": 4941.0 }, "geometry": { "type": "Point", "coordinates": [ -4.6386, 50.33634 ] } }, +{ "type": "Feature", "properties": { "Country": "United Kingdom", "Function": "1-------", "LOCODE": "GBHRW", "Name": "Harwich", "NameWoDiac": "Harwich", "Status": "AF", "outflows": 61540.0 }, "geometry": { "type": "Point", "coordinates": [ 1.28437, 51.94194 ] } }, +{ "type": "Feature", "properties": { "Country": "United Kingdom", "Function": "1-------", "LOCODE": "GBPOO", "Name": "Poole", "NameWoDiac": "Poole", "Status": "AF", "outflows": 8502.0 }, "geometry": { "type": "Point", "coordinates": [ -1.98458, 50.71429 ] } }, +{ "type": "Feature", "properties": { "Country": "United Kingdom", "Function": "1--4----", "LOCODE": "GBPME", "Name": "Portsmouth", "NameWoDiac": "Portsmouth", "Status": "AF", "outflows": 142997.400009 }, "geometry": { "type": "Point", "coordinates": [ -1.09125, 50.79899 ] } }, +{ "type": "Feature", "properties": { "Country": "United Kingdom", "Function": "1-------", "LOCODE": "GBSCR", "Name": "Scrabster", "NameWoDiac": "Scrabster", "Status": "AF", "outflows": 9204.0 }, "geometry": { "type": "Point", "coordinates": [ -3.54627, 58.61277 ] } }, +{ "type": "Feature", "properties": { "Country": "United Kingdom", "Function": "1-------", "LOCODE": "GBSHS", "Name": "Sheerness", "NameWoDiac": "Sheerness", "Status": "AF", "outflows": 21112.0 }, "geometry": { "type": "Point", "coordinates": [ 0.76252, 51.44042 ] } }, +{ "type": "Feature", "properties": { "Country": "United Kingdom", "Function": "1--4----", "LOCODE": "GBSOU", "Name": "Southampton", "NameWoDiac": "Southampton", "Status": "AF", "outflows": 12580879.097799998 }, "geometry": { "type": "Point", "coordinates": [ -1.40428, 50.90395 ] } }, +{ "type": "Feature", "properties": { "Country": "United Kingdom", "Function": "1-------", "LOCODE": "GBTIL", "Name": "Tilbury", "NameWoDiac": "Tilbury", "Status": "AF", "outflows": 1408139.0 }, "geometry": { "type": "Point", "coordinates": [ 0.35856, 51.46248 ] } }, +{ "type": "Feature", "properties": { "Country": "Grenada", "Function": "1-------", "LOCODE": "GDSTG", "Name": "Saint George's", "NameWoDiac": "Saint George's", "Status": "AI", "outflows": 454265.06669000001 }, "geometry": { "type": "Point", "coordinates": [ -61.75226, 12.05288 ] } }, +{ "type": "Feature", "properties": { "Country": "Georgia", "Function": "1--4----", "LOCODE": "GEBUS", "Name": "Batumi", "NameWoDiac": "Batumi", "Status": "AI", "outflows": 176479.99998 }, "geometry": { "type": "Point", "coordinates": [ 41.63392, 41.64228 ] } }, +{ "type": "Feature", "properties": { "Country": "Georgia", "Function": "1-------", "LOCODE": "GEPTI", "Name": "Poti", "NameWoDiac": "Poti", "Status": "QQ", "outflows": 241566.0 }, "geometry": { "type": "Point", "coordinates": [ 41.67384, 42.14272 ] } }, +{ "type": "Feature", "properties": { "Country": "Ghana", "Function": "1--45---", "LOCODE": "GHTKD", "Name": "Takoradi", "NameWoDiac": "Takoradi", "Status": "AI", "outflows": 343811.4 }, "geometry": { "type": "Point", "coordinates": [ -1.76029, 4.89816 ] } }, +{ "type": "Feature", "properties": { "Country": "Ghana", "Function": "1-------", "LOCODE": "GHTEM", "Name": "Tema", "NameWoDiac": "Tema", "Status": "QQ", "outflows": 7407893.3644899996 }, "geometry": { "type": "Point", "coordinates": [ -0.01657, 5.6698 ] } }, +{ "type": "Feature", "properties": { "Country": "Gibraltar", "Function": "1--45---", "LOCODE": "GIGIB", "Name": "Gibraltar", "NameWoDiac": "Gibraltar", "Status": "AI", "outflows": 67977.0 }, "geometry": { "type": "Point", "coordinates": [ -5.35257, 36.14474 ] } }, +{ "type": "Feature", "properties": { "Country": "Greenland", "Function": "1--4----", "LOCODE": "GLJHS", "Name": "Sisimiut (Holsteinsborg)", "NameWoDiac": "Sisimiut (Holsteinsborg)", "Status": "AI", "outflows": 23426.0 }, "geometry": { "type": "Point", "coordinates": [ -53.6735, 66.93946 ] } }, +{ "type": "Feature", "properties": { "Country": "Gambia", "Function": "1--45---", "LOCODE": "GMBJL", "Name": "Banjul", "NameWoDiac": "Banjul", "Status": "AI", "outflows": 184275.0 }, "geometry": { "type": "Point", "coordinates": [ -16.57803, 13.45274 ] } }, +{ "type": "Feature", "properties": { "Country": "Guinea", "Function": "1--45---", "LOCODE": "GNCKY", "Name": "Conakry", "NameWoDiac": "Conakry", "Status": "AI", "outflows": 676607.90476000018 }, "geometry": { "type": "Point", "coordinates": [ -13.67729, 9.53795 ] } }, +{ "type": "Feature", "properties": { "Country": "Equatorial Guinea", "Function": "1--45---", "LOCODE": "GQBSG", "Name": "Bata", "NameWoDiac": "Bata", "Status": "RQ", "outflows": 454067.0 }, "geometry": { "type": "Point", "coordinates": [ 9.76582, 1.86391 ] } }, +{ "type": "Feature", "properties": { "Country": "Equatorial Guinea", "Function": "1--4----", "LOCODE": "GQSSG", "Name": "Malabo", "NameWoDiac": "Malabo", "Status": "AI", "outflows": 133795.9 }, "geometry": { "type": "Point", "coordinates": [ 8.78166, 3.75578 ] } }, +{ "type": "Feature", "properties": { "Country": "Guatemala", "Function": "1--4----", "LOCODE": "GTPBR", "Name": "Puerto Barrios", "NameWoDiac": "Puerto Barrios", "Status": "AI", "outflows": 547993.33336599998 }, "geometry": { "type": "Point", "coordinates": [ -88.59444, 15.72778 ] } }, +{ "type": "Feature", "properties": { "Country": "Guyana", "Function": "1--45---", "LOCODE": "GYGEO", "Name": "Georgetown", "NameWoDiac": "Georgetown", "Status": "AI", "outflows": 428041.33332200005 }, "geometry": { "type": "Point", "coordinates": [ -58.15527, 6.80448 ] } }, +{ "type": "Feature", "properties": { "Country": "Hong Kong", "Function": "1--45---", "LOCODE": "HKHKG", "Name": "Hong Kong", "NameWoDiac": "Hong Kong", "Status": "AI", "outflows": 80530648.252739042 }, "geometry": { "type": "Point", "coordinates": [ 114.17469, 22.27832 ] } }, +{ "type": "Feature", "properties": { "Country": "Honduras", "Function": "1-------", "LOCODE": "HNPCA", "Name": "Puerto Castilla", "NameWoDiac": "Puerto Castilla", "Status": "RQ", "outflows": 75387.0 }, "geometry": { "type": "Point", "coordinates": [ -85.96667, 16.01667 ] } }, +{ "type": "Feature", "properties": { "Country": "Honduras", "Function": "1---5---", "LOCODE": "HNPCR", "Name": "Puerto Corts", "NameWoDiac": "Puerto Cortes", "Status": "AI", "outflows": 1674222.3333919998 }, "geometry": { "type": "Point", "coordinates": [ -87.92968, 15.82562 ] } }, +{ "type": "Feature", "properties": { "Country": "Honduras", "Function": "1-------", "LOCODE": "HNSLO", "Name": "San Lorenzo", "NameWoDiac": "San Lorenzo", "Status": "RQ", "outflows": 67860.0 }, "geometry": { "type": "Point", "coordinates": [ -87.44722, 13.42417 ] } }, +{ "type": "Feature", "properties": { "Country": "Haiti", "Function": "1--45---", "LOCODE": "HTPAP", "Name": "Port-au-Prince", "NameWoDiac": "Port-au-Prince", "Status": "AI", "outflows": 783664.91664000018 }, "geometry": { "type": "Point", "coordinates": [ -72.33881, 18.54349 ] } }, +{ "type": "Feature", "properties": { "Country": "Indonesia", "Function": "1--4----", "LOCODE": "IDBDJ", "Name": "Banjarmasin", "NameWoDiac": "Banjarmasin", "Status": "AI", "outflows": 17848.0 }, "geometry": { "type": "Point", "coordinates": [ 114.59075, -3.31987 ] } }, +{ "type": "Feature", "properties": { "Country": "Indonesia", "Function": "1-------", "LOCODE": "IDBLW", "Name": "Belawan, Sumatra", "NameWoDiac": "Belawan, Sumatra", "Status": "QQ", "outflows": 494328.25003 }, "geometry": { "type": "Point", "coordinates": [ 98.6832, 3.7755 ] } }, +{ "type": "Feature", "properties": { "Country": "Indonesia", "Function": "1-------", "LOCODE": "IDBIT", "Name": "Bitung, Sulawesi", "NameWoDiac": "Bitung, Sulawesi", "Status": "QQ", "outflows": 215154.58334000001 }, "geometry": { "type": "Point", "coordinates": [ 125.12824, 1.44059 ] } }, +{ "type": "Feature", "properties": { "Country": "Indonesia", "Function": "1--4----", "LOCODE": "IDGTO", "Name": "Gorontalo, Sulawesi", "NameWoDiac": "Gorontalo, Sulawesi", "Status": "AI", "outflows": 42718.00001 }, "geometry": { "type": "Point", "coordinates": [ 123.3908, -0.8985 ] } }, +{ "type": "Feature", "properties": { "Country": "Indonesia", "Function": "1--4----", "LOCODE": "IDKDI", "Name": "Kendari, Sulawesi", "NameWoDiac": "Kendari, Sulawesi", "Status": "AI", "outflows": 7988.5 }, "geometry": { "type": "Point", "coordinates": [ 122.51507, -3.9778 ] } }, +{ "type": "Feature", "properties": { "Country": "Indonesia", "Function": "1--4----", "LOCODE": "IDLUW", "Name": "Luwuk", "NameWoDiac": "Luwuk", "Status": "AI", "outflows": 720.0 }, "geometry": { "type": "Point", "coordinates": [ 122.7875, -0.9516 ] } }, +{ "type": "Feature", "properties": { "Country": "Indonesia", "Function": "1--45---", "LOCODE": "IDMES", "Name": "Medan, Sumatra", "NameWoDiac": "Medan, Sumatra", "Status": "AI", "outflows": 45136.0 }, "geometry": { "type": "Point", "coordinates": [ 98.66667, 3.58333 ] } }, +{ "type": "Feature", "properties": { "Country": "Indonesia", "Function": "1--4----", "LOCODE": "IDPLM", "Name": "Palembang, Sumatra", "NameWoDiac": "Palembang, Sumatra", "Status": "AI", "outflows": 106646.75 }, "geometry": { "type": "Point", "coordinates": [ 104.7458, -2.91673 ] } }, +{ "type": "Feature", "properties": { "Country": "Indonesia", "Function": "1-------", "LOCODE": "IDPNJ", "Name": "Panjang", "NameWoDiac": "Panjang", "Status": "RQ", "outflows": 1532041.4998899996 }, "geometry": { "type": "Point", "coordinates": [ 100.6199, 0.3087 ] } }, +{ "type": "Feature", "properties": { "Country": "Indonesia", "Function": "1--45---", "LOCODE": "IDPNK", "Name": "Pontianak, Kalimantan", "NameWoDiac": "Pontianak, Kalimantan", "Status": "AI", "outflows": 35776.0 }, "geometry": { "type": "Point", "coordinates": [ 109.325, -0.03194 ] } }, +{ "type": "Feature", "properties": { "Country": "Indonesia", "Function": "1--4----", "LOCODE": "IDSRI", "Name": "Samarinda, Kalimantan", "NameWoDiac": "Samarinda, Kalimantan", "Status": "AI", "outflows": 34320.0 }, "geometry": { "type": "Point", "coordinates": [ 117.14583, -0.49167 ] } }, +{ "type": "Feature", "properties": { "Country": "Indonesia", "Function": "1--4----", "LOCODE": "IDSOQ", "Name": "Sorong", "NameWoDiac": "Sorong", "Status": "AI", "outflows": 125268.0 }, "geometry": { "type": "Point", "coordinates": [ 131.26104, -0.87956 ] } }, +{ "type": "Feature", "properties": { "Country": "Indonesia", "Function": "1-------", "LOCODE": "IDTRK", "Name": "Tarakan, Kalimantan", "NameWoDiac": "Tarakan, Kalimantan", "Status": "QQ", "outflows": 5213.0 }, "geometry": { "type": "Point", "coordinates": [ 117.59152, 3.31332 ] } }, +{ "type": "Feature", "properties": { "Country": "Indonesia", "Function": "1--4----", "LOCODE": "IDTLI", "Name": "Tolitoli", "NameWoDiac": "Tolitoli", "Status": "AI", "outflows": 3328.0 }, "geometry": { "type": "Point", "coordinates": [ 121.1679, 1.2718 ] } }, +{ "type": "Feature", "properties": { "Country": "Ireland", "Function": "1--45---", "LOCODE": "IEORK", "Name": "Cork", "NameWoDiac": "Cork", "Status": "AF", "outflows": 316459.0 }, "geometry": { "type": "Point", "coordinates": [ -8.47061, 51.89797 ] } }, +{ "type": "Feature", "properties": { "Country": "Ireland", "Function": "12-45---", "LOCODE": "IEDUB", "Name": "Dublin", "NameWoDiac": "Dublin", "Status": "AF", "outflows": 453417.25 }, "geometry": { "type": "Point", "coordinates": [ -6.24889, 53.33306 ] } }, +{ "type": "Feature", "properties": { "Country": "Israel", "Function": "1-------", "LOCODE": "ILASH", "Name": "Ashdod", "NameWoDiac": "Ashdod", "Status": "QQ", "outflows": 5463055.0830800012 }, "geometry": { "type": "Point", "coordinates": [ 34.64966, 31.79213 ] } }, +{ "type": "Feature", "properties": { "Country": "India", "Function": "1-------", "LOCODE": "INENR", "Name": "Ennore", "NameWoDiac": "Ennore", "Status": "AA", "outflows": 263657.33331999998 }, "geometry": { "type": "Point", "coordinates": [ 80.32835, 13.24751 ] } }, +{ "type": "Feature", "properties": { "Country": "India", "Function": "1-------", "LOCODE": "INHAL", "Name": "Haldia", "NameWoDiac": "Haldia", "Status": "AA", "outflows": 182909.25 }, "geometry": { "type": "Point", "coordinates": [ 88.10975, 22.06046 ] } }, +{ "type": "Feature", "properties": { "Country": "India", "Function": "1-------", "LOCODE": "INKRI", "Name": "Krishnapatnam", "NameWoDiac": "Krishnapatnam", "Status": "AA", "outflows": 2290663.6664799997 }, "geometry": { "type": "Point", "coordinates": [ 80.12388, 14.28874 ] } }, +{ "type": "Feature", "properties": { "Country": "India", "Function": "1--4----", "LOCODE": "INIXE", "Name": "Mangalore", "NameWoDiac": "Mangalore", "Status": "AA", "outflows": 139500.0 }, "geometry": { "type": "Point", "coordinates": [ 74.85603, 12.91723 ] } }, +{ "type": "Feature", "properties": { "Country": "India", "Function": "1-------", "LOCODE": "INMUN", "Name": "Mundra", "NameWoDiac": "Mundra", "Status": "AA", "outflows": 19811914.337299995 }, "geometry": { "type": "Point", "coordinates": [ 69.7219, 22.83918 ] } }, +{ "type": "Feature", "properties": { "Country": "India", "Function": "1--4----", "LOCODE": "INIXZ", "Name": "Port Blair", "NameWoDiac": "Port Blair", "Status": "AA", "outflows": 14150.5 }, "geometry": { "type": "Point", "coordinates": [ 92.74635, 11.66613 ] } }, +{ "type": "Feature", "properties": { "Country": "Iraq", "Function": "1-------", "LOCODE": "IQALF", "Name": "Abu Al Fulus", "NameWoDiac": "Abu Al Fulus", "Status": "RQ", "outflows": 14131.0 }, "geometry": { "type": "Point", "coordinates": [ 48.04246, 30.44783 ] } }, +{ "type": "Feature", "properties": { "Country": "Iraq", "Function": "1-------", "LOCODE": "IQBSR", "Name": "Basra", "NameWoDiac": "Basra", "Status": "AI", "outflows": 7524.0 }, "geometry": { "type": "Point", "coordinates": [ 47.7804, 30.50852 ] } }, +{ "type": "Feature", "properties": { "Country": "Iceland", "Function": "1-------", "LOCODE": "ISGRF", "Name": "Grundarfjrdur", "NameWoDiac": "Grundarfjordur", "Status": "AC", "outflows": 280000.5 }, "geometry": { "type": "Point", "coordinates": [ -23.26313, 64.92427 ] } }, +{ "type": "Feature", "properties": { "Country": "Iceland", "Function": "1-------", "LOCODE": "ISRFJ", "Name": "Reydarfjrdur", "NameWoDiac": "Reydarfjordur", "Status": "AC", "outflows": 157748.5 }, "geometry": { "type": "Point", "coordinates": [ -14.21832, 65.03164 ] } }, +{ "type": "Feature", "properties": { "Country": "Italy", "Function": "1-------", "LOCODE": "ITMDC", "Name": "Marina di Carrara", "NameWoDiac": "Marina di Carrara", "Status": "AI", "outflows": 164793.0 }, "geometry": { "type": "Point", "coordinates": [ 10.04142, 44.03837 ] } }, +{ "type": "Feature", "properties": { "Country": "Italy", "Function": "1-------", "LOCODE": "ITMNF", "Name": "Monfalcone", "NameWoDiac": "Monfalcone", "Status": "AI", "outflows": 23587.5 }, "geometry": { "type": "Point", "coordinates": [ 13.53292, 45.80463 ] } }, +{ "type": "Feature", "properties": { "Country": "Italy", "Function": "1-------", "LOCODE": "ITPOZ", "Name": "Pozzuoli", "NameWoDiac": "Pozzuoli", "Status": "AI", "outflows": 42042.0 }, "geometry": { "type": "Point", "coordinates": [ 14.0952, 40.84394 ] } }, +{ "type": "Feature", "properties": { "Country": "Italy", "Function": "1-------", "LOCODE": "ITRAN", "Name": "Ravenna", "NameWoDiac": "Ravenna", "Status": "AI", "outflows": 1216610.5 }, "geometry": { "type": "Point", "coordinates": [ 12.20121, 44.41344 ] } }, +{ "type": "Feature", "properties": { "Country": "Italy", "Function": "1-3-----", "LOCODE": "ITSAL", "Name": "Salerno", "NameWoDiac": "Salerno", "Status": "AI", "outflows": 2238415.25 }, "geometry": { "type": "Point", "coordinates": [ 14.79328, 40.67545 ] } }, +{ "type": "Feature", "properties": { "Country": "Italy", "Function": "1--4----", "LOCODE": "ITTRS", "Name": "Trieste", "NameWoDiac": "Trieste", "Status": "AI", "outflows": 4531748.0 }, "geometry": { "type": "Point", "coordinates": [ 13.77678, 45.64953 ] } }, +{ "type": "Feature", "properties": { "Country": "Jamaica", "Function": "1--45---", "LOCODE": "JMKIN", "Name": "Kingston", "NameWoDiac": "Kingston", "Status": "AI", "outflows": 8626072.544909995 }, "geometry": { "type": "Point", "coordinates": [ -76.79358, 17.99702 ] } }, +{ "type": "Feature", "properties": { "Country": "Jamaica", "Function": "1--4----", "LOCODE": "JMMBJ", "Name": "Montego Bay", "NameWoDiac": "Montego Bay", "Status": "AI", "outflows": 628021.3333000001 }, "geometry": { "type": "Point", "coordinates": [ -77.91883, 18.47116 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1-------", "LOCODE": "JPABU", "Name": "Aburatsu", "NameWoDiac": "Aburatsu", "Status": "AF", "outflows": 53352.0 }, "geometry": { "type": "Point", "coordinates": [ 144.26971, 44.02127 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1--4----", "LOCODE": "JPAXT", "Name": "Akita", "NameWoDiac": "Akita", "Status": "AF", "outflows": 278377.66667000001 }, "geometry": { "type": "Point", "coordinates": [ 140.11667, 39.71667 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1-------", "LOCODE": "JPCHB", "Name": "Chiba", "NameWoDiac": "Chiba", "Status": "AF", "outflows": 607568.0 }, "geometry": { "type": "Point", "coordinates": [ 140.11667, 35.6 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1-------", "LOCODE": "JPFKY", "Name": "Fukuyama, Hiroshima", "NameWoDiac": "Fukuyama, Hiroshima", "Status": "AF", "outflows": 508612.0 }, "geometry": { "type": "Point", "coordinates": [ 133.36667, 34.48333 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1--4----", "LOCODE": "JPHHE", "Name": "Hachinohe", "NameWoDiac": "Hachinohe", "Status": "AF", "outflows": 291243.33335000003 }, "geometry": { "type": "Point", "coordinates": [ 141.5, 40.5 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1--4----", "LOCODE": "JPHIJ", "Name": "Hiroshima", "NameWoDiac": "Hiroshima", "Status": "AF", "outflows": 658970.0 }, "geometry": { "type": "Point", "coordinates": [ 132.45, 34.4 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1-------", "LOCODE": "JPHTC", "Name": "Hitachi", "NameWoDiac": "Hitachi", "Status": "AF", "outflows": 110110.0 }, "geometry": { "type": "Point", "coordinates": [ 140.65, 36.6 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1-------", "LOCODE": "JPHSM", "Name": "Hososhima", "NameWoDiac": "Hososhima", "Status": "AF", "outflows": 354289.0 }, "geometry": { "type": "Point", "coordinates": [ 131.66667, 32.43333 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1-------", "LOCODE": "JPIMB", "Name": "Imabari", "NameWoDiac": "Imabari", "Status": "AF", "outflows": 83772.0 }, "geometry": { "type": "Point", "coordinates": [ 133.00023, 34.07001 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1-------", "LOCODE": "JPIMI", "Name": "Imari", "NameWoDiac": "Imari", "Status": "AF", "outflows": 232752.0 }, "geometry": { "type": "Point", "coordinates": [ 129.87877, 33.27362 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1-------", "LOCODE": "JPIWK", "Name": "Iwakuni", "NameWoDiac": "Iwakuni", "Status": "AF", "outflows": 248404.0 }, "geometry": { "type": "Point", "coordinates": [ 132.22, 34.16297 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1-------", "LOCODE": "JPKNZ", "Name": "Kanazawa", "NameWoDiac": "Kanazawa", "Status": "AF", "outflows": 500785.99996999995 }, "geometry": { "type": "Point", "coordinates": [ 136.61667, 36.6 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1-------", "LOCODE": "JPKSM", "Name": "Kashima, Ibaraki", "NameWoDiac": "Kashima, Ibaraki", "Status": "AF", "outflows": 103584.0 }, "geometry": { "type": "Point", "coordinates": [ 140.64474, 35.96536 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1-------", "LOCODE": "JPKWS", "Name": "Kawasaki", "NameWoDiac": "Kawasaki", "Status": "AF", "outflows": 1377583.9999500001 }, "geometry": { "type": "Point", "coordinates": [ 139.71722, 35.52056 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1--4----", "LOCODE": "JPKCZ", "Name": "Kochi", "NameWoDiac": "Kochi", "Status": "AF", "outflows": 97578.0 }, "geometry": { "type": "Point", "coordinates": [ 133.53333, 33.55 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1--4----", "LOCODE": "JPKMJ", "Name": "Kumamoto", "NameWoDiac": "Kumamoto", "Status": "AF", "outflows": 44460.0 }, "geometry": { "type": "Point", "coordinates": [ 130.69181, 32.80589 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1-------", "LOCODE": "JPMAI", "Name": "Maizuru", "NameWoDiac": "Maizuru", "Status": "AF", "outflows": 113464.0 }, "geometry": { "type": "Point", "coordinates": [ 135.33333, 35.45 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1--4----", "LOCODE": "JPMYJ", "Name": "Matsuyama", "NameWoDiac": "Matsuyama", "Status": "AF", "outflows": 213629.0 }, "geometry": { "type": "Point", "coordinates": [ 132.76574, 33.83916 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1-------", "LOCODE": "JPMII", "Name": "Miike, Fukuoka", "NameWoDiac": "Miike, Fukuoka", "Status": "AF", "outflows": 16640.0 }, "geometry": { "type": "Point", "coordinates": [ 130.47791, 33.05207 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1-------", "LOCODE": "JPMIZ", "Name": "Mizushima", "NameWoDiac": "Mizushima", "Status": "AF", "outflows": 727415.0 }, "geometry": { "type": "Point", "coordinates": [ 133.73896, 34.5298 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1-------", "LOCODE": "JPMUR", "Name": "Muroran", "NameWoDiac": "Muroran", "Status": "AF", "outflows": 115517.99996999998 }, "geometry": { "type": "Point", "coordinates": [ 140.98806, 42.31722 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1--4----", "LOCODE": "JPNGS", "Name": "Nagasaki", "NameWoDiac": "Nagasaki", "Status": "AF", "outflows": 44460.0 }, "geometry": { "type": "Point", "coordinates": [ 129.88333, 32.75 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1--45---", "LOCODE": "JPNGO", "Name": "Nagoya, Aichi", "NameWoDiac": "Nagoya, Aichi", "Status": "AF", "outflows": 14485316.083789002 }, "geometry": { "type": "Point", "coordinates": [ 136.90641, 35.18147 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1--45---", "LOCODE": "JPNAH", "Name": "Naha, Okinawa", "NameWoDiac": "Naha, Okinawa", "Status": "AF", "outflows": 770354.0 }, "geometry": { "type": "Point", "coordinates": [ 127.68333, 26.21667 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1-------", "LOCODE": "JPNAO", "Name": "Naoetsu", "NameWoDiac": "Naoetsu", "Status": "AF", "outflows": 166443.33335 }, "geometry": { "type": "Point", "coordinates": [ 138.25, 37.18333 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1-------", "LOCODE": "JPKIJ", "Name": "Niigata", "NameWoDiac": "Niigata", "Status": "AF", "outflows": 632488.99997 }, "geometry": { "type": "Point", "coordinates": [ 139.00589, 37.88637 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1--4----", "LOCODE": "JPOIT", "Name": "Oita", "NameWoDiac": "Oita", "Status": "AF", "outflows": 336869.0 }, "geometry": { "type": "Point", "coordinates": [ 131.6, 33.23333 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1-------", "LOCODE": "JPOMZ", "Name": "Omaezaki", "NameWoDiac": "Omaezaki", "Status": "AF", "outflows": 642421.0 }, "geometry": { "type": "Point", "coordinates": [ 138.21934, 34.59882 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1-------", "LOCODE": "JPONA", "Name": "Onahama", "NameWoDiac": "Onahama", "Status": "AF", "outflows": 204940.6667 }, "geometry": { "type": "Point", "coordinates": [ 140.9, 36.95 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1-------", "LOCODE": "JPOTK", "Name": "Otake", "NameWoDiac": "Otake", "Status": "AF", "outflows": 36348.0 }, "geometry": { "type": "Point", "coordinates": [ 132.22063, 34.20754 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1--4----", "LOCODE": "JPOTR", "Name": "Otaru", "NameWoDiac": "Otaru", "Status": "AF", "outflows": 78000.0 }, "geometry": { "type": "Point", "coordinates": [ 141.00222, 43.18944 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1-------", "LOCODE": "JPSMN", "Name": "Sakaiminato", "NameWoDiac": "Sakaiminato", "Status": "AF", "outflows": 329679.99997 }, "geometry": { "type": "Point", "coordinates": [ 133.23094, 35.53774 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1-------", "LOCODE": "JPSKT", "Name": "Sakata", "NameWoDiac": "Sakata", "Status": "AF", "outflows": 421338.66667000001 }, "geometry": { "type": "Point", "coordinates": [ 139.855, 38.91667 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1-------", "LOCODE": "JPSBS", "Name": "Shibushi", "NameWoDiac": "Shibushi", "Status": "AF", "outflows": 490971.0 }, "geometry": { "type": "Point", "coordinates": [ 131.10114, 31.476 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1-------", "LOCODE": "JPSMZ", "Name": "Shimizu", "NameWoDiac": "Shimizu", "Status": "AF", "outflows": 5351577.999760001 }, "geometry": { "type": "Point", "coordinates": [ 142.88472, 43.00611 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1--4----", "LOCODE": "JPTAK", "Name": "Takamatsu", "NameWoDiac": "Takamatsu", "Status": "AF", "outflows": 188292.0 }, "geometry": { "type": "Point", "coordinates": [ 134.05, 34.33333 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1--4----", "LOCODE": "JPTKS", "Name": "Tokushima", "NameWoDiac": "Tokushima", "Status": "AF", "outflows": 148044.0 }, "geometry": { "type": "Point", "coordinates": [ 134.56667, 34.06667 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1-------", "LOCODE": "JPTKY", "Name": "Tokuyama", "NameWoDiac": "Tokuyama", "Status": "AF", "outflows": 456888.25 }, "geometry": { "type": "Point", "coordinates": [ 131.81667, 34.05 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1--4----", "LOCODE": "JPTMK", "Name": "Tomakomai", "NameWoDiac": "Tomakomai", "Status": "AF", "outflows": 929244.33331999998 }, "geometry": { "type": "Point", "coordinates": [ 141.60333, 42.63694 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1-------", "LOCODE": "JPTHS", "Name": "Toyohashi", "NameWoDiac": "Toyohashi", "Status": "AF", "outflows": 181584.0 }, "geometry": { "type": "Point", "coordinates": [ 137.38333, 34.76667 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1-------", "LOCODE": "JPTRG", "Name": "Tsuruga", "NameWoDiac": "Tsuruga", "Status": "AF", "outflows": 121550.0 }, "geometry": { "type": "Point", "coordinates": [ 136.0558, 35.64547 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1--4----", "LOCODE": "JPUBJ", "Name": "Ube", "NameWoDiac": "Ube", "Status": "AF", "outflows": 22490.0 }, "geometry": { "type": "Point", "coordinates": [ 131.25111, 33.94306 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1-------", "LOCODE": "JPWAK", "Name": "Wakayama", "NameWoDiac": "Wakayama", "Status": "AF", "outflows": 63765.0 }, "geometry": { "type": "Point", "coordinates": [ 135.16667, 34.23333 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1-------", "LOCODE": "JPYAT", "Name": "Yatsushiro", "NameWoDiac": "Yatsushiro", "Status": "AF", "outflows": 61100.0 }, "geometry": { "type": "Point", "coordinates": [ 130.59952, 32.50439 ] } }, +{ "type": "Feature", "properties": { "Country": "Japan", "Function": "1-------", "LOCODE": "JPYKK", "Name": "Yokkaichi", "NameWoDiac": "Yokkaichi", "Status": "AF", "outflows": 3523652.1667400002 }, "geometry": { "type": "Point", "coordinates": [ 136.61667, 34.96667 ] } }, +{ "type": "Feature", "properties": { "Country": "Kenya", "Function": "1--45---", "LOCODE": "KEMBA", "Name": "Mombasa", "NameWoDiac": "Mombasa", "Status": "AI", "outflows": 2290456.6388300001 }, "geometry": { "type": "Point", "coordinates": [ 39.66359, -4.05466 ] } }, +{ "type": "Feature", "properties": { "Country": "Kiribati", "Function": "1--4----", "LOCODE": "KITRW", "Name": "Tarawa", "NameWoDiac": "Tarawa", "Status": "AI", "outflows": 136326.0 }, "geometry": { "type": "Point", "coordinates": [ 172.97696, 1.3278 ] } }, +{ "type": "Feature", "properties": { "Country": "Comoros", "Function": "1--45---", "LOCODE": "KMYVA", "Name": "Moroni", "NameWoDiac": "Moroni", "Status": "AI", "outflows": 131275.33335 }, "geometry": { "type": "Point", "coordinates": [ 43.25506, -11.70216 ] } }, +{ "type": "Feature", "properties": { "Country": "Lebanon", "Function": "1--4----", "LOCODE": "LBKYE", "Name": "Tripoli", "NameWoDiac": "Tripoli", "Status": "AI", "outflows": 2038156.25 }, "geometry": { "type": "Point", "coordinates": [ 35.84415, 34.43352 ] } }, +{ "type": "Feature", "properties": { "Country": "Lithuania", "Function": "1--4----", "LOCODE": "LTKLJ", "Name": "Klaipeda", "NameWoDiac": "Klaipeda", "Status": "AI", "outflows": 1242325.5 }, "geometry": { "type": "Point", "coordinates": [ 21.13912, 55.7068 ] } }, +{ "type": "Feature", "properties": { "Country": "Latvia", "Function": "1--45---", "LOCODE": "LVRIX", "Name": "Riga", "NameWoDiac": "Riga", "Status": "AI", "outflows": 944970.0 }, "geometry": { "type": "Point", "coordinates": [ 24.10589, 56.946 ] } }, +{ "type": "Feature", "properties": { "Country": "Libya", "Function": "1--45---", "LOCODE": "LYBEN", "Name": "Bingazi (Benghazi)", "NameWoDiac": "Bingazi (Benghazi)", "Status": "AI", "outflows": 296981.0 }, "geometry": { "type": "Point", "coordinates": [ 20.06859, 32.11486 ] } }, +{ "type": "Feature", "properties": { "Country": "Libya", "Function": "1--4----", "LOCODE": "LYMRA", "Name": "Misurata", "NameWoDiac": "Misurata", "Status": "AI", "outflows": 757750.00001000008 }, "geometry": { "type": "Point", "coordinates": [ 15.09254, 32.37535 ] } }, +{ "type": "Feature", "properties": { "Country": "Libya", "Function": "1--4----", "LOCODE": "LYTIP", "Name": "Tripoli", "NameWoDiac": "Tripoli", "Status": "AI", "outflows": 281045.0 }, "geometry": { "type": "Point", "coordinates": [ 13.18733, 32.88743 ] } }, +{ "type": "Feature", "properties": { "Country": "Morocco", "Function": "1--4----", "LOCODE": "MAAGA", "Name": "Agadir", "NameWoDiac": "Agadir", "Status": "AI", "outflows": 593660.57139000006 }, "geometry": { "type": "Point", "coordinates": [ -9.59815, 30.42018 ] } }, +{ "type": "Feature", "properties": { "Country": "Morocco", "Function": "1-------", "LOCODE": "MANDR", "Name": "Nador", "NameWoDiac": "Nador", "Status": "AI", "outflows": 45500.0 }, "geometry": { "type": "Point", "coordinates": [ -2.93352, 35.16813 ] } }, +{ "type": "Feature", "properties": { "Country": "Morocco", "Function": "123-----", "LOCODE": "MAPTM", "Name": "Tanger Med", "NameWoDiac": "Tanger Med", "Status": "AI", "outflows": 29213268.307420008 }, "geometry": { "type": "Point", "coordinates": [ -5.56323, 35.82674 ] } }, +{ "type": "Feature", "properties": { "Country": "Madagascar", "Function": "1--4----", "LOCODE": "MGDIE", "Name": "Antsiranana", "NameWoDiac": "Antsiranana", "Status": "AI", "outflows": 113468.0 }, "geometry": { "type": "Point", "coordinates": [ 49.29188, -12.31732 ] } }, +{ "type": "Feature", "properties": { "Country": "Madagascar", "Function": "1--4----", "LOCODE": "MGMJN", "Name": "Majunga (Mahajanga)", "NameWoDiac": "Majunga (Mahajanga)", "Status": "AI", "outflows": 125324.0 }, "geometry": { "type": "Point", "coordinates": [ 46.31667, -15.71667 ] } }, +{ "type": "Feature", "properties": { "Country": "Madagascar", "Function": "1--45---", "LOCODE": "MGTMM", "Name": "Tamatave (Toamasina)", "NameWoDiac": "Tamatave (Toamasina)", "Status": "AI", "outflows": 396084.0 }, "geometry": { "type": "Point", "coordinates": [ 49.40234, -18.1492 ] } }, +{ "type": "Feature", "properties": { "Country": "Madagascar", "Function": "1--4----", "LOCODE": "MGTLE", "Name": "Tulear (Toliara)", "NameWoDiac": "Tulear (Toliara)", "Status": "AI", "outflows": 19864.0 }, "geometry": { "type": "Point", "coordinates": [ 43.66667, -23.35 ] } }, +{ "type": "Feature", "properties": { "Country": "Marshall Islands", "Function": "---4----", "LOCODE": "MHKWA", "Name": "Kwajalein", "NameWoDiac": "Kwajalein", "Status": "AI", "outflows": 48316.66667 }, "geometry": { "type": "Point", "coordinates": [ 167.73919, 8.77479 ] } }, +{ "type": "Feature", "properties": { "Country": "Myanmar", "Function": "1--45---", "LOCODE": "MMRGN", "Name": "Yangon", "NameWoDiac": "Yangon", "Status": "AI", "outflows": 937558.00004999992 }, "geometry": { "type": "Point", "coordinates": [ 96.15611, 16.80528 ] } }, +{ "type": "Feature", "properties": { "Country": "Myanmar", "Function": "1--45---", "LOCODE": "MMRGN", "Name": "Yangon", "NameWoDiac": "Yangon", "Status": "AI", "outflows": 937558.00004999992 }, "geometry": { "type": "Point", "coordinates": [ 96.15611, 16.80528 ] } }, +{ "type": "Feature", "properties": { "Country": "Martinique", "Function": "1-345---", "LOCODE": "MQFDF", "Name": "Fort-de-France", "NameWoDiac": "Fort-de-France", "Status": "AI", "outflows": 1924423.5832689998 }, "geometry": { "type": "Point", "coordinates": [ -61.07418, 14.60365 ] } }, +{ "type": "Feature", "properties": { "Country": "Mauritania", "Function": "1--4----", "LOCODE": "MRNDB", "Name": "Nouadhibou", "NameWoDiac": "Nouadhibou", "Status": "AI", "outflows": 197029.5 }, "geometry": { "type": "Point", "coordinates": [ -17.03842, 20.94188 ] } }, +{ "type": "Feature", "properties": { "Country": "Mauritania", "Function": "1--45---", "LOCODE": "MRNKC", "Name": "Nouakchott", "NameWoDiac": "Nouakchott", "Status": "AI", "outflows": 334524.0 }, "geometry": { "type": "Point", "coordinates": [ -15.9785, 18.08581 ] } }, +{ "type": "Feature", "properties": { "Country": "Montserrat", "Function": "1---5---", "LOCODE": "MSPLY", "Name": "Plymouth", "NameWoDiac": "Plymouth", "Status": "RQ", "outflows": 230958.0 }, "geometry": { "type": "Point", "coordinates": [ -62.21292, 16.70555 ] } }, +{ "type": "Feature", "properties": { "Country": "Mauritius", "Function": "1--4----", "LOCODE": "MUPLU", "Name": "Port Louis", "NameWoDiac": "Port Louis", "Status": "QQ", "outflows": 7415942.3854999971 }, "geometry": { "type": "Point", "coordinates": [ 57.49889, -20.16194 ] } }, +{ "type": "Feature", "properties": { "Country": "Malaysia", "Function": "1-------", "LOCODE": "MYBTU", "Name": "Bintulu, Sarawak", "NameWoDiac": "Bintulu, Sarawak", "Status": "AI", "outflows": 670234.5 }, "geometry": { "type": "Point", "coordinates": [ 113.03333, 3.16667 ] } }, +{ "type": "Feature", "properties": { "Country": "Malaysia", "Function": "1-345---", "LOCODE": "MYBKI", "Name": "Kota Kinabalu, Sabah", "NameWoDiac": "Kota Kinabalu, Sabah", "Status": "AI", "outflows": 710049.1667 }, "geometry": { "type": "Point", "coordinates": [ 116.0724, 5.9749 ] } }, +{ "type": "Feature", "properties": { "Country": "Malaysia", "Function": "1--45---", "LOCODE": "MYKCH", "Name": "Kuching, Sarawak", "NameWoDiac": "Kuching, Sarawak", "Status": "AI", "outflows": 276603.6 }, "geometry": { "type": "Point", "coordinates": [ 110.33333, 1.55 ] } }, +{ "type": "Feature", "properties": { "Country": "Malaysia", "Function": "1--4----", "LOCODE": "MYLBU", "Name": "Labuan, Sabah", "NameWoDiac": "Labuan, Sabah", "Status": "AI", "outflows": 68835.0 }, "geometry": { "type": "Point", "coordinates": [ 115.26924, 5.28883 ] } }, +{ "type": "Feature", "properties": { "Country": "Malaysia", "Function": "1--4----", "LOCODE": "MYMKZ", "Name": "Malacca", "NameWoDiac": "Malacca", "Status": "AI", "outflows": 2862.0 }, "geometry": { "type": "Point", "coordinates": [ 102.2405, 2.196 ] } }, +{ "type": "Feature", "properties": { "Country": "Malaysia", "Function": "1-------", "LOCODE": "MYPGU", "Name": "Pasir Gudang, Johor", "NameWoDiac": "Pasir Gudang, Johor", "Status": "QQ", "outflows": 3893274.6667500003 }, "geometry": { "type": "Point", "coordinates": [ 103.878, 1.4726 ] } }, +{ "type": "Feature", "properties": { "Country": "Malaysia", "Function": "1--4----", "LOCODE": "MYSDK", "Name": "Sandakan, Sabah", "NameWoDiac": "Sandakan, Sabah", "Status": "AI", "outflows": 18720.0 }, "geometry": { "type": "Point", "coordinates": [ 118.1179, 5.8402 ] } }, +{ "type": "Feature", "properties": { "Country": "Malaysia", "Function": "1--4----", "LOCODE": "MYSBW", "Name": "Sibu, Sarawak", "NameWoDiac": "Sibu, Sarawak", "Status": "AI", "outflows": 2250.0 }, "geometry": { "type": "Point", "coordinates": [ 111.81667, 2.3 ] } }, +{ "type": "Feature", "properties": { "Country": "Malaysia", "Function": "1--4----", "LOCODE": "MYTWU", "Name": "Tawau, Sabah", "NameWoDiac": "Tawau, Sabah", "Status": "AI", "outflows": 241236.6667 }, "geometry": { "type": "Point", "coordinates": [ 117.89115, 4.24482 ] } }, +{ "type": "Feature", "properties": { "Country": "Mozambique", "Function": "1--45---", "LOCODE": "MZBEW", "Name": "Beira", "NameWoDiac": "Beira", "Status": "AI", "outflows": 862537.00003 }, "geometry": { "type": "Point", "coordinates": [ 34.83889, -19.84361 ] } }, +{ "type": "Feature", "properties": { "Country": "Mozambique", "Function": "1--45---", "LOCODE": "MZMPM", "Name": "Maputo", "NameWoDiac": "Maputo", "Status": "AI", "outflows": 871116.20004999987 }, "geometry": { "type": "Point", "coordinates": [ 32.58322, -25.96553 ] } }, +{ "type": "Feature", "properties": { "Country": "Mozambique", "Function": "1--4----", "LOCODE": "MZMNC", "Name": "Nacala", "NameWoDiac": "Nacala", "Status": "AI", "outflows": 668056.99998000008 }, "geometry": { "type": "Point", "coordinates": [ 40.68538, -14.56257 ] } }, +{ "type": "Feature", "properties": { "Country": "Mozambique", "Function": "1--4----", "LOCODE": "MZUEL", "Name": "Quelimane", "NameWoDiac": "Quelimane", "Status": "AI", "outflows": 8034.0 }, "geometry": { "type": "Point", "coordinates": [ 36.88833, -17.87861 ] } }, +{ "type": "Feature", "properties": { "Country": "Namibia", "Function": "1-------", "LOCODE": "NAWVB", "Name": "Walvis Bay", "NameWoDiac": "Walvis Bay", "Status": "QQ", "outflows": 2144542.8666100004 }, "geometry": { "type": "Point", "coordinates": [ 14.50528, -22.9575 ] } }, +{ "type": "Feature", "properties": { "Country": "Nigeria", "Function": "1-------", "LOCODE": "NGAPP", "Name": "Apapa", "NameWoDiac": "Apapa", "Status": "QQ", "outflows": 1959193.7340199992 }, "geometry": { "type": "Point", "coordinates": [ 3.35901, 6.4488 ] } }, +{ "type": "Feature", "properties": { "Country": "Nigeria", "Function": "1--4----", "LOCODE": "NGCBQ", "Name": "Calabar", "NameWoDiac": "Calabar", "Status": "AI", "outflows": 7150.0 }, "geometry": { "type": "Point", "coordinates": [ 8.32695, 4.95893 ] } }, +{ "type": "Feature", "properties": { "Country": "Nigeria", "Function": "1--45---", "LOCODE": "NGLOS", "Name": "Lagos", "NameWoDiac": "Lagos", "Status": "AI", "outflows": 1767326.6668199997 }, "geometry": { "type": "Point", "coordinates": [ 3.39467, 6.45407 ] } }, +{ "type": "Feature", "properties": { "Country": "Nigeria", "Function": "1--4----", "LOCODE": "NGPHC", "Name": "Port Harcourt", "NameWoDiac": "Port Harcourt", "Status": "AI", "outflows": 46634.9 }, "geometry": { "type": "Point", "coordinates": [ 7.0134, 4.77742 ] } }, +{ "type": "Feature", "properties": { "Country": "Nicaragua", "Function": "1---5---", "LOCODE": "NICIO", "Name": "Corinto", "NameWoDiac": "Corinto", "Status": "AI", "outflows": 510767.4 }, "geometry": { "type": "Point", "coordinates": [ -87.17304, 12.4825 ] } }, +{ "type": "Feature", "properties": { "Country": "Norway", "Function": "1-------", "LOCODE": "NOGJM", "Name": "Gjemnes", "NameWoDiac": "Gjemnes", "Status": "AI", "outflows": 135486.0 }, "geometry": { "type": "Point", "coordinates": [ 8.08604, 62.89225 ] } }, +{ "type": "Feature", "properties": { "Country": "Oman", "Function": "1--4----", "LOCODE": "OMSLL", "Name": "Salalah", "NameWoDiac": "Salalah", "Status": "AI", "outflows": 20488113.65606999 }, "geometry": { "type": "Point", "coordinates": [ 54.09237, 17.01505 ] } }, +{ "type": "Feature", "properties": { "Country": "Oman", "Function": "1-------", "LOCODE": "OMSOH", "Name": "Sohar", "NameWoDiac": "Sohar", "Status": "QQ", "outflows": 5253518.9085 }, "geometry": { "type": "Point", "coordinates": [ 56.70937, 24.34745 ] } }, +{ "type": "Feature", "properties": { "Country": "Panama", "Function": "1-------", "LOCODE": "PAPAM", "Name": "Almirante", "NameWoDiac": "Almirante", "Status": "AI", "outflows": 265850.0 }, "geometry": { "type": "Point", "coordinates": [ -82.4018, 9.30091 ] } }, +{ "type": "Feature", "properties": { "Country": "Panama", "Function": "1-------", "LOCODE": "PABLB", "Name": "Balboa", "NameWoDiac": "Balboa", "Status": "AI", "outflows": 13017890.895410001 }, "geometry": { "type": "Point", "coordinates": [ -79.56672, 8.94814 ] } }, +{ "type": "Feature", "properties": { "Country": "Panama", "Function": "--3-----", "LOCODE": "PACSO", "Name": "Coco Solo", "NameWoDiac": "Coco Solo", "Status": "RQ", "outflows": 340795.0 }, "geometry": { "type": "Point", "coordinates": [ -79.88168, 9.37091 ] } }, +{ "type": "Feature", "properties": { "Country": "Panama", "Function": "123-----", "LOCODE": "PAMIT", "Name": "Manzanillo", "NameWoDiac": "Manzanillo", "Status": "AI", "outflows": 13509667.606659999 }, "geometry": { "type": "Point", "coordinates": [ -81.16667, 7.53667 ] } }, +{ "type": "Feature", "properties": { "Country": "Peru", "Function": "1-------", "LOCODE": "PECLL", "Name": "Callao", "NameWoDiac": "Callao", "Status": "AI", "outflows": 15247664.791890001 }, "geometry": { "type": "Point", "coordinates": [ -77.11814, -12.05659 ] } }, +{ "type": "Feature", "properties": { "Country": "Peru", "Function": "1--4----", "LOCODE": "PEILQ", "Name": "Ilo", "NameWoDiac": "Ilo", "Status": "AI", "outflows": 83616.0 }, "geometry": { "type": "Point", "coordinates": [ -71.34108, -17.63185 ] } }, +{ "type": "Feature", "properties": { "Country": "Peru", "Function": "1--4----", "LOCODE": "PEIQT", "Name": "Iquitos", "NameWoDiac": "Iquitos", "Status": "AI", "outflows": 9675.0 }, "geometry": { "type": "Point", "coordinates": [ -73.25383, -3.74912 ] } }, +{ "type": "Feature", "properties": { "Country": "Peru", "Function": "1-------", "LOCODE": "PEMRI", "Name": "Matarani", "NameWoDiac": "Matarani", "Status": "AI", "outflows": 98962.5 }, "geometry": { "type": "Point", "coordinates": [ -72.10563, -16.99639 ] } }, +{ "type": "Feature", "properties": { "Country": "Peru", "Function": "1-------", "LOCODE": "PEPAI", "Name": "Paita", "NameWoDiac": "Paita", "Status": "AI", "outflows": 1763103.4120800004 }, "geometry": { "type": "Point", "coordinates": [ -81.11444, -5.08917 ] } }, +{ "type": "Feature", "properties": { "Country": "Peru", "Function": "1--4----", "LOCODE": "PEPIO", "Name": "Pisco", "NameWoDiac": "Pisco", "Status": "AI", "outflows": 121628.0 }, "geometry": { "type": "Point", "coordinates": [ -76.20538, -13.71029 ] } }, +{ "type": "Feature", "properties": { "Country": "Papua New Guinea", "Function": "1--4----", "LOCODE": "PGGUR", "Name": "Alotau", "NameWoDiac": "Alotau", "Status": "AI", "outflows": 15808.0 }, "geometry": { "type": "Point", "coordinates": [ 150.45742, -10.31509 ] } }, +{ "type": "Feature", "properties": { "Country": "Papua New Guinea", "Function": "1--4----", "LOCODE": "PGBUA", "Name": "Buka", "NameWoDiac": "Buka", "Status": "AI", "outflows": 15808.0 }, "geometry": { "type": "Point", "coordinates": [ 154.67098, -5.43261 ] } }, +{ "type": "Feature", "properties": { "Country": "Papua New Guinea", "Function": "1-------", "LOCODE": "PGKIM", "Name": "Kimbe", "NameWoDiac": "Kimbe", "Status": "QQ", "outflows": 99364.0 }, "geometry": { "type": "Point", "coordinates": [ 150.13766, -5.55085 ] } }, +{ "type": "Feature", "properties": { "Country": "Papua New Guinea", "Function": "1--4----", "LOCODE": "PGLAE", "Name": "Lae", "NameWoDiac": "Lae", "Status": "AI", "outflows": 836183.91665300005 }, "geometry": { "type": "Point", "coordinates": [ 146.99611, -6.72333 ] } }, +{ "type": "Feature", "properties": { "Country": "Papua New Guinea", "Function": "1--4----", "LOCODE": "PGPOM", "Name": "Port Moresby", "NameWoDiac": "Port Moresby", "Status": "AI", "outflows": 402247.08331199997 }, "geometry": { "type": "Point", "coordinates": [ 147.15089, -9.47723 ] } }, +{ "type": "Feature", "properties": { "Country": "Papua New Guinea", "Function": "1--4----", "LOCODE": "PGRAB", "Name": "Rabaul", "NameWoDiac": "Rabaul", "Status": "AI", "outflows": 115172.0 }, "geometry": { "type": "Point", "coordinates": [ 152.16297, -4.20037 ] } }, +{ "type": "Feature", "properties": { "Country": "Papua New Guinea", "Function": "1--4----", "LOCODE": "PGWWK", "Name": "Wewak", "NameWoDiac": "Wewak", "Status": "AI", "outflows": 43795.0 }, "geometry": { "type": "Point", "coordinates": [ 143.63229, -3.54964 ] } }, +{ "type": "Feature", "properties": { "Country": "Philippines", "Function": "1--4----", "LOCODE": "PHBCD", "Name": "Bacolod, Negros", "NameWoDiac": "Bacolod, Negros", "Status": "AI", "outflows": 18806.0 }, "geometry": { "type": "Point", "coordinates": [ 122.95, 10.66667 ] } }, +{ "type": "Feature", "properties": { "Country": "Philippines", "Function": "1--4----", "LOCODE": "PHCGY", "Name": "Cagayan de Oro, Mindanao", "NameWoDiac": "Cagayan de Oro, Mindanao", "Status": "AI", "outflows": 1437089.1667599997 }, "geometry": { "type": "Point", "coordinates": [ 124.64722, 8.48222 ] } }, +{ "type": "Feature", "properties": { "Country": "Philippines", "Function": "1--4----", "LOCODE": "PHCEB", "Name": "Cebu", "NameWoDiac": "Cebu", "Status": "AI", "outflows": 1378464.0 }, "geometry": { "type": "Point", "coordinates": [ 123.89071, 10.31672 ] } }, +{ "type": "Feature", "properties": { "Country": "Philippines", "Function": "1--4----", "LOCODE": "PHCBO", "Name": "Cotabato, Mindanao", "NameWoDiac": "Cotabato, Mindanao", "Status": "AI", "outflows": 29328.0 }, "geometry": { "type": "Point", "coordinates": [ 124.24639, 7.22361 ] } }, +{ "type": "Feature", "properties": { "Country": "Philippines", "Function": "1--4----", "LOCODE": "PHDGT", "Name": "Dumaguete", "NameWoDiac": "Dumaguete", "Status": "AI", "outflows": 27546.0 }, "geometry": { "type": "Point", "coordinates": [ 123.30261, 9.30722 ] } }, +{ "type": "Feature", "properties": { "Country": "Philippines", "Function": "1--45---", "LOCODE": "PHMNL", "Name": "Manila", "NameWoDiac": "Manila", "Status": "AI", "outflows": 7135131.1431800006 }, "geometry": { "type": "Point", "coordinates": [ 120.9822, 14.6042 ] } }, +{ "type": "Feature", "properties": { "Country": "Philippines", "Function": "1--4----", "LOCODE": "PHOZC", "Name": "Ozamis, Mindanao", "NameWoDiac": "Ozamis, Mindanao", "Status": "AI", "outflows": 10976.0 }, "geometry": { "type": "Point", "coordinates": [ 123.8405, 8.1481 ] } }, +{ "type": "Feature", "properties": { "Country": "Philippines", "Function": "1-3-----", "LOCODE": "PHPLC", "Name": "Polloc", "NameWoDiac": "Polloc", "Status": "RQ", "outflows": 11193.0 }, "geometry": { "type": "Point", "coordinates": [ 124.22088, 7.3534 ] } }, +{ "type": "Feature", "properties": { "Country": "Philippines", "Function": "1--4----", "LOCODE": "PHPPS", "Name": "Puerto Princesa, Palawan", "NameWoDiac": "Puerto Princesa, Palawan", "Status": "AI", "outflows": 9100.0 }, "geometry": { "type": "Point", "coordinates": [ 118.73528, 9.73917 ] } }, +{ "type": "Feature", "properties": { "Country": "Philippines", "Function": "1--4----", "LOCODE": "PHSFS", "Name": "Subic Bay", "NameWoDiac": "Subic Bay", "Status": "AI", "outflows": 1621178.0 }, "geometry": { "type": "Point", "coordinates": [ 120.27987, 14.78899 ] } }, +{ "type": "Feature", "properties": { "Country": "Philippines", "Function": "1--4----", "LOCODE": "PHTAG", "Name": "Tagbilaran, Bohol", "NameWoDiac": "Tagbilaran, Bohol", "Status": "AI", "outflows": 4320.0 }, "geometry": { "type": "Point", "coordinates": [ 123.85219, 9.65556 ] } }, +{ "type": "Feature", "properties": { "Country": "Philippines", "Function": "1--4----", "LOCODE": "PHZAM", "Name": "Zamboanga", "NameWoDiac": "Zamboanga", "Status": "AI", "outflows": 67509.0 }, "geometry": { "type": "Point", "coordinates": [ 122.07389, 6.91028 ] } }, +{ "type": "Feature", "properties": { "Country": "Pakistan", "Function": "1-34----", "LOCODE": "PKGWD", "Name": "Gwadar", "NameWoDiac": "Gwadar", "Status": "AI", "outflows": 145535.0 }, "geometry": { "type": "Point", "coordinates": [ 62.32541, 25.12163 ] } }, +{ "type": "Feature", "properties": { "Country": "Pakistan", "Function": "12345---", "LOCODE": "PKKHI", "Name": "Karachi", "NameWoDiac": "Karachi", "Status": "AI", "outflows": 11738106.441340001 }, "geometry": { "type": "Point", "coordinates": [ 67.0104, 24.8608 ] } }, +{ "type": "Feature", "properties": { "Country": "Poland", "Function": "1--4----", "LOCODE": "PLGDN", "Name": "Gdansk", "NameWoDiac": "Gdansk", "Status": "AI", "outflows": 6373121.0499060033 }, "geometry": { "type": "Point", "coordinates": [ 18.64912, 54.35227 ] } }, +{ "type": "Feature", "properties": { "Country": "Poland", "Function": "1--45---", "LOCODE": "PLSZZ", "Name": "Szczecin", "NameWoDiac": "Szczecin", "Status": "AI", "outflows": 101530.0 }, "geometry": { "type": "Point", "coordinates": [ 14.55302, 53.42894 ] } }, +{ "type": "Feature", "properties": { "Country": "Palau", "Function": "1--4----", "LOCODE": "PWROR", "Name": "Koror", "NameWoDiac": "Koror", "Status": "AI", "outflows": 30420.0 }, "geometry": { "type": "Point", "coordinates": [ 134.47326, 7.33978 ] } }, +{ "type": "Feature", "properties": { "Country": "Russian Federation", "Function": "1--4----", "LOCODE": "RUARH", "Name": "Arkhangelsk", "NameWoDiac": "Arkhangelsk", "Status": "AI", "outflows": 390.0 }, "geometry": { "type": "Point", "coordinates": [ 40.5433, 64.5401 ] } }, +{ "type": "Feature", "properties": { "Country": "Russian Federation", "Function": "1-------", "LOCODE": "RUDUD", "Name": "Dudinka", "NameWoDiac": "Dudinka", "Status": "QQ", "outflows": 16796.0 }, "geometry": { "type": "Point", "coordinates": [ 86.17778, 69.40583 ] } }, +{ "type": "Feature", "properties": { "Country": "Russian Federation", "Function": "1--4----", "LOCODE": "RUKGD", "Name": "Kaliningrad", "NameWoDiac": "Kaliningrad", "Status": "AI", "outflows": 133061.5 }, "geometry": { "type": "Point", "coordinates": [ 20.51095, 54.70649 ] } }, +{ "type": "Feature", "properties": { "Country": "Russian Federation", "Function": "1-------", "LOCODE": "RUKOR", "Name": "Korsakov", "NameWoDiac": "Korsakov", "Status": "QQ", "outflows": 19067.0 }, "geometry": { "type": "Point", "coordinates": [ 142.77722, 46.6342 ] } }, +{ "type": "Feature", "properties": { "Country": "Russian Federation", "Function": "---4----", "LOCODE": "RUGDX", "Name": "Magadan", "NameWoDiac": "Magadan", "Status": "AI", "outflows": 27664.0 }, "geometry": { "type": "Point", "coordinates": [ 150.80347, 59.5638 ] } }, +{ "type": "Feature", "properties": { "Country": "Russian Federation", "Function": "1--4----", "LOCODE": "RUPKC", "Name": "Petropavlovsk-Kamchatskiy", "NameWoDiac": "Petropavlovsk-Kamchatskiy", "Status": "AI", "outflows": 10478.0 }, "geometry": { "type": "Point", "coordinates": [ 158.65076, 53.04444 ] } }, +{ "type": "Feature", "properties": { "Country": "Russian Federation", "Function": "1--4----", "LOCODE": "RUVVO", "Name": "Vladivostok", "NameWoDiac": "Vladivostok", "Status": "AI", "outflows": 1273681.4999099998 }, "geometry": { "type": "Point", "coordinates": [ 131.87353, 43.10562 ] } }, +{ "type": "Feature", "properties": { "Country": "Saudi Arabia", "Function": "1-------", "LOCODE": "SAJUB", "Name": "Jubail", "NameWoDiac": "Jubail", "Status": "QQ", "outflows": 6234394.5950499978 }, "geometry": { "type": "Point", "coordinates": [ 49.62251, 27.0174 ] } }, +{ "type": "Feature", "properties": { "Country": "Seychelles", "Function": "1-------", "LOCODE": "SCPOV", "Name": "Port Victoria", "NameWoDiac": "Port Victoria", "Status": "QQ", "outflows": 611771.76191000012 }, "geometry": { "type": "Point", "coordinates": [ 55.45501, -4.62001 ] } }, +{ "type": "Feature", "properties": { "Country": "Sudan", "Function": "1--45---", "LOCODE": "SDPZU", "Name": "Port Sudan", "NameWoDiac": "Port Sudan", "Status": "AI", "outflows": 308535.0 }, "geometry": { "type": "Point", "coordinates": [ 37.21644, 19.61745 ] } }, +{ "type": "Feature", "properties": { "Country": "Sweden", "Function": "12-4----", "LOCODE": "SEHEL", "Name": "Helsingborg", "NameWoDiac": "Helsingborg", "Status": "AI", "outflows": 634088.0 }, "geometry": { "type": "Point", "coordinates": [ 12.69437, 56.04673 ] } }, +{ "type": "Feature", "properties": { "Country": "Sweden", "Function": "123-----", "LOCODE": "SEVAG", "Name": "Varberg", "NameWoDiac": "Varberg", "Status": "AA", "outflows": 82628.0 }, "geometry": { "type": "Point", "coordinates": [ 12.25078, 57.10557 ] } }, +{ "type": "Feature", "properties": { "Country": "Singapore", "Function": "1--45---", "LOCODE": "SGSIN", "Name": "Singapore", "NameWoDiac": "Singapore", "Status": "AI", "outflows": 126673817.40886995 }, "geometry": { "type": "Point", "coordinates": [ 103.85007, 1.28967 ] } }, +{ "type": "Feature", "properties": { "Country": "Slovenia", "Function": "1-------", "LOCODE": "SIKOP", "Name": "Koper", "NameWoDiac": "Koper", "Status": "RL", "outflows": 4814941.1666899994 }, "geometry": { "type": "Point", "coordinates": [ 13.72944, 45.54694 ] } }, +{ "type": "Feature", "properties": { "Country": "Sierra Leone", "Function": "1--45---", "LOCODE": "SLFNA", "Name": "Freetown", "NameWoDiac": "Freetown", "Status": "AI", "outflows": 292305.0 }, "geometry": { "type": "Point", "coordinates": [ -13.2356, 8.48714 ] } }, +{ "type": "Feature", "properties": { "Country": "Senegal", "Function": "1--45---", "LOCODE": "SNDKR", "Name": "Dakar", "NameWoDiac": "Dakar", "Status": "AI", "outflows": 2417263.262 }, "geometry": { "type": "Point", "coordinates": [ -17.44406, 14.6937 ] } }, +{ "type": "Feature", "properties": { "Country": "Somalia", "Function": "1--4----", "LOCODE": "SOBBO", "Name": "Berbera", "NameWoDiac": "Berbera", "Status": "AI", "outflows": 215094.5 }, "geometry": { "type": "Point", "coordinates": [ 45.01432, 10.43959 ] } }, +{ "type": "Feature", "properties": { "Country": "Somalia", "Function": "1--4----", "LOCODE": "SOKMU", "Name": "Kismayu", "NameWoDiac": "Kismayu", "Status": "AI", "outflows": 188773.0 }, "geometry": { "type": "Point", "coordinates": [ 42.54536, -0.35817 ] } }, +{ "type": "Feature", "properties": { "Country": "Somalia", "Function": "1--45---", "LOCODE": "SOMGQ", "Name": "Mogadishu", "NameWoDiac": "Mogadishu", "Status": "AI", "outflows": 437501.99997999996 }, "geometry": { "type": "Point", "coordinates": [ 45.34375, 2.03711 ] } }, +{ "type": "Feature", "properties": { "Country": "Suriname", "Function": "1--45---", "LOCODE": "SRPBM", "Name": "Paramaribo", "NameWoDiac": "Paramaribo", "Status": "AI", "outflows": 538931.33332199999 }, "geometry": { "type": "Point", "coordinates": [ -55.16682, 5.86638 ] } }, +{ "type": "Feature", "properties": { "Country": "Suriname", "Function": "1--45---", "LOCODE": "SRPBM", "Name": "Paramaribo", "NameWoDiac": "Paramaribo", "Status": "AI", "outflows": 538931.33332199999 }, "geometry": { "type": "Point", "coordinates": [ -55.16682, 5.86638 ] } }, +{ "type": "Feature", "properties": { "Country": "El Salvador", "Function": "1-3-----", "LOCODE": "SVAQJ", "Name": "Acajutla", "NameWoDiac": "Acajutla", "Status": "AI", "outflows": 495947.4 }, "geometry": { "type": "Point", "coordinates": [ -89.8275, 13.59278 ] } }, +{ "type": "Feature", "properties": { "Country": "El Salvador", "Function": "1--45---", "LOCODE": "SVSAL", "Name": "San Salvador", "NameWoDiac": "San Salvador", "Status": "AI", "outflows": 388752.0 }, "geometry": { "type": "Point", "coordinates": [ -89.18718, 13.68935 ] } }, +{ "type": "Feature", "properties": { "Country": "Togo", "Function": "1--45---", "LOCODE": "TGLFW", "Name": "Lome", "NameWoDiac": "Lome", "Status": "AI", "outflows": 6445382.4134400021 }, "geometry": { "type": "Point", "coordinates": [ 1.22154, 6.12874 ] } }, +{ "type": "Feature", "properties": { "Country": "Thailand", "Function": "1-------", "LOCODE": "THSRI", "Name": "Sriracha", "NameWoDiac": "Sriracha", "Status": "QQ", "outflows": 58522.5 }, "geometry": { "type": "Point", "coordinates": [ 100.93111, 13.17372 ] } }, +{ "type": "Feature", "properties": { "Country": "Tunisia", "Function": "1234----", "LOCODE": "TNBIZ", "Name": "Bizerte", "NameWoDiac": "Bizerte", "Status": "QQ", "outflows": 106117.5 }, "geometry": { "type": "Point", "coordinates": [ 9.87391, 37.27442 ] } }, +{ "type": "Feature", "properties": { "Country": "Tunisia", "Function": "1234----", "LOCODE": "TNSFA", "Name": "Sfax", "NameWoDiac": "Sfax", "Status": "AI", "outflows": 72212.33334 }, "geometry": { "type": "Point", "coordinates": [ 10.76028, 34.74056 ] } }, +{ "type": "Feature", "properties": { "Country": "Tunisia", "Function": "1234----", "LOCODE": "TNSUS", "Name": "Sousse", "NameWoDiac": "Sousse", "Status": "QQ", "outflows": 43545.0 }, "geometry": { "type": "Point", "coordinates": [ 10.63699, 35.82539 ] } }, +{ "type": "Feature", "properties": { "Country": "Tunisia", "Function": "12345---", "LOCODE": "TNTUN", "Name": "Tunis", "NameWoDiac": "Tunis", "Status": "AI", "outflows": 59748.0 }, "geometry": { "type": "Point", "coordinates": [ 10.16579, 36.81897 ] } }, +{ "type": "Feature", "properties": { "Country": "Turkey", "Function": "1-------", "LOCODE": "TRALI", "Name": "Aliaga", "NameWoDiac": "Aliaga", "Status": "RL", "outflows": 8740753.932889998 }, "geometry": { "type": "Point", "coordinates": [ 26.97203, 38.79975 ] } }, +{ "type": "Feature", "properties": { "Country": "Turkey", "Function": "1-3-----", "LOCODE": "TRDRC", "Name": "Derince", "NameWoDiac": "Derince", "Status": "QQ", "outflows": 303927.0 }, "geometry": { "type": "Point", "coordinates": [ 29.81472, 40.75694 ] } }, +{ "type": "Feature", "properties": { "Country": "Turkey", "Function": "1-3-----", "LOCODE": "TRHAY", "Name": "Haydarpasa", "NameWoDiac": "Haydarpasa", "Status": "QQ", "outflows": 220592.66669000004 }, "geometry": { "type": "Point", "coordinates": [ 29.02459, 40.99596 ] } }, +{ "type": "Feature", "properties": { "Country": "Turkey", "Function": "1-------", "LOCODE": "TRYAR", "Name": "Yarimca", "NameWoDiac": "Yarimca", "Status": "QQ", "outflows": 895813.99998000008 }, "geometry": { "type": "Point", "coordinates": [ 31.14194, 39.08361 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1--45---", "LOCODE": "USANC", "Name": "Anchorage", "NameWoDiac": "Anchorage", "Status": "AI", "outflows": 61671.99999 }, "geometry": { "type": "Point", "coordinates": [ -149.90028, 61.21806 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1--4----", "LOCODE": "USBPT", "Name": "Beaumont", "NameWoDiac": "Beaumont", "Status": "AI", "outflows": 34041.0 }, "geometry": { "type": "Point", "coordinates": [ -94.10185, 30.08605 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1--45---", "LOCODE": "USBOS", "Name": "Boston", "NameWoDiac": "Boston", "Status": "AI", "outflows": 1565893.3335999998 }, "geometry": { "type": "Point", "coordinates": [ -71.05977, 42.35843 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "--3-----", "LOCODE": "USBCK", "Name": "Brunswick", "NameWoDiac": "Brunswick", "Status": "RL", "outflows": 48681.0 }, "geometry": { "type": "Point", "coordinates": [ -74.45182, 40.48622 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "--3-----", "LOCODE": "USCAT", "Name": "Camden", "NameWoDiac": "Camden", "Status": "RQ", "outflows": 176498.0 }, "geometry": { "type": "Point", "coordinates": [ -75.11962, 39.92595 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1--4----", "LOCODE": "USCHS", "Name": "Charleston", "NameWoDiac": "Charleston", "Status": "AI", "outflows": 23192728.69687001 }, "geometry": { "type": "Point", "coordinates": [ -79.924426675273111, 32.785017342562952 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "--3-----", "LOCODE": "USCAV", "Name": "Cleveland", "NameWoDiac": "Cleveland", "Status": "RQ", "outflows": 1974.0 }, "geometry": { "type": "Point", "coordinates": [ -81.69541, 41.4995 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1--4----", "LOCODE": "USCRP", "Name": "Corpus Christi", "NameWoDiac": "Corpus Christi", "Status": "AI", "outflows": 53712.0 }, "geometry": { "type": "Point", "coordinates": [ -97.39638, 27.80058 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1--4----", "LOCODE": "USDUT", "Name": "Dutch Harbor", "NameWoDiac": "Dutch Harbor", "Status": "AI", "outflows": 378795.99998999998 }, "geometry": { "type": "Point", "coordinates": [ -166.5422, 53.8898 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1-34----", "LOCODE": "USPAE", "Name": "Everett", "NameWoDiac": "Everett", "Status": "AI", "outflows": 152295.00003000002 }, "geometry": { "type": "Point", "coordinates": [ -122.20208, 47.97898 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "---4----", "LOCODE": "USFEP", "Name": "Freeport", "NameWoDiac": "Freeport", "Status": "AI", "outflows": 751787.11118999997 }, "geometry": { "type": "Point", "coordinates": [ -70.10311, 43.85702 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1--4----", "LOCODE": "USGLS", "Name": "Galveston", "NameWoDiac": "Galveston", "Status": "AI", "outflows": 47326.5 }, "geometry": { "type": "Point", "coordinates": [ -94.7977, 29.30135 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1-3-----", "LOCODE": "USGLC", "Name": "Gloucester City", "NameWoDiac": "Gloucester City", "Status": "RN", "outflows": 59686.5 }, "geometry": { "type": "Point", "coordinates": [ -70.66313, 42.61405 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "---4----", "LOCODE": "USIJX", "Name": "Jacksonville", "NameWoDiac": "Jacksonville", "Status": "AI", "outflows": 5087986.3044199999 }, "geometry": { "type": "Point", "coordinates": [ -81.65565, 30.33218 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "---4----", "LOCODE": "USADQ", "Name": "Kodiak", "NameWoDiac": "Kodiak", "Status": "AI", "outflows": 61671.99999 }, "geometry": { "type": "Point", "coordinates": [ -152.40533, 57.78852 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1--45---", "LOCODE": "USLAX", "Name": "Los Angeles", "NameWoDiac": "Los Angeles", "Status": "AI", "outflows": 12755714.048839999 }, "geometry": { "type": "Point", "coordinates": [ -118.24368, 34.05223 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1--45---", "LOCODE": "USMIA", "Name": "Miami", "NameWoDiac": "Miami", "Status": "AI", "outflows": 6651073.40288 }, "geometry": { "type": "Point", "coordinates": [ -80.19366, 25.77427 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1--4----", "LOCODE": "USMOB", "Name": "Mobile", "NameWoDiac": "Mobile", "Status": "AI", "outflows": 3378854.4003 }, "geometry": { "type": "Point", "coordinates": [ -88.04305, 30.69436 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1-3-----", "LOCODE": "USMRH", "Name": "Morehead City", "NameWoDiac": "Morehead City", "Status": "RN", "outflows": 44898.75 }, "geometry": { "type": "Point", "coordinates": [ -76.72604, 34.72294 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "12345---", "LOCODE": "USMSY", "Name": "New Orleans", "NameWoDiac": "New Orleans", "Status": "AI", "outflows": 8818359.6138159968 }, "geometry": { "type": "Point", "coordinates": [ -90.07507, 29.95465 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1--4----", "LOCODE": "USPFN", "Name": "Panama City", "NameWoDiac": "Panama City", "Status": "AI", "outflows": 82722.0 }, "geometry": { "type": "Point", "coordinates": [ -85.65983, 30.15946 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1--4----", "LOCODE": "USPWM", "Name": "Portland", "NameWoDiac": "Portland", "Status": "AI", "outflows": 27248.000001 }, "geometry": { "type": "Point", "coordinates": [ -122.67621, 45.52345 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1--4----", "LOCODE": "USPDX", "Name": "Portland", "NameWoDiac": "Portland", "Status": "AI", "outflows": 336570.0 }, "geometry": { "type": "Point", "coordinates": [ -122.67621, 45.52345 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1--4----", "LOCODE": "USSAV", "Name": "Savannah", "NameWoDiac": "Savannah", "Status": "AI", "outflows": 26558703.755599998 }, "geometry": { "type": "Point", "coordinates": [ -81.09983, 32.08354 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1--45---", "LOCODE": "USSEA", "Name": "Seattle", "NameWoDiac": "Seattle", "Status": "AI", "outflows": 10283805.920580002 }, "geometry": { "type": "Point", "coordinates": [ -122.33207, 47.60621 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1--4----", "LOCODE": "USTIW", "Name": "Tacoma", "NameWoDiac": "Tacoma", "Status": "AI", "outflows": 4139226.6189899999 }, "geometry": { "type": "Point", "coordinates": [ -122.44429, 47.25288 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1--45---", "LOCODE": "USTPA", "Name": "Tampa", "NameWoDiac": "Tampa", "Status": "AI", "outflows": 1911998.4003 }, "geometry": { "type": "Point", "coordinates": [ -82.45843, 27.94752 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1-3-----", "LOCODE": "USVAN", "Name": "Vancouver", "NameWoDiac": "Vancouver", "Status": "RN", "outflows": 65700.0 }, "geometry": { "type": "Point", "coordinates": [ -122.66149, 45.63873 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1--4----", "LOCODE": "USPBI", "Name": "West Palm Beach", "NameWoDiac": "West Palm Beach", "Status": "AI", "outflows": 222144.0 }, "geometry": { "type": "Point", "coordinates": [ -80.05337, 26.71534 ] } }, +{ "type": "Feature", "properties": { "Country": "United States", "Function": "1--4----", "LOCODE": "USILG", "Name": "Wilmington", "NameWoDiac": "Wilmington", "Status": "AI", "outflows": 290589.0 }, "geometry": { "type": "Point", "coordinates": [ -75.54659, 39.74595 ] } }, +{ "type": "Feature", "properties": { "Country": "Uruguay", "Function": "1--45---", "LOCODE": "UYMVD", "Name": "Montevideo", "NameWoDiac": "Montevideo", "Status": "AF", "outflows": 11543641.215 }, "geometry": { "type": "Point", "coordinates": [ -56.18816, -34.90328 ] } }, +{ "type": "Feature", "properties": { "Country": "Virgin Islands, U.S.", "Function": "1-------", "LOCODE": "VICHA", "Name": "Charlotte Amalie, Saint Thomas", "NameWoDiac": "Charlotte Amalie, Saint Thomas", "Status": "AI", "outflows": 307918.0 }, "geometry": { "type": "Point", "coordinates": [ -64.9307, 18.3419 ] } }, +{ "type": "Feature", "properties": { "Country": "Viet Nam", "Function": "1-------", "LOCODE": "VNHPH", "Name": "Haiphong", "NameWoDiac": "Haiphong", "Status": "AI", "outflows": 10072807.932540001 }, "geometry": { "type": "Point", "coordinates": [ 106.68345, 20.86481 ] } }, +{ "type": "Feature", "properties": { "Country": "Vanuatu", "Function": "1--45---", "LOCODE": "VUVLI", "Name": "Port Vila", "NameWoDiac": "Port Vila", "Status": "AI", "outflows": 453739.0 }, "geometry": { "type": "Point", "coordinates": [ 168.31366, -17.73648 ] } }, +{ "type": "Feature", "properties": { "Country": "Vanuatu", "Function": "1-------", "LOCODE": "VUSAN", "Name": "Santo", "NameWoDiac": "Santo", "Status": "RQ", "outflows": 206498.5 }, "geometry": { "type": "Point", "coordinates": [ 167.16235, -15.51989 ] } }, +{ "type": "Feature", "properties": { "Country": "Samoa", "Function": "1--45---", "LOCODE": "WSAPW", "Name": "Apia", "NameWoDiac": "Apia", "Status": "AI", "outflows": 339021.5 }, "geometry": { "type": "Point", "coordinates": [ -171.76666, -13.83333 ] } }, +{ "type": "Feature", "properties": { "Country": "Yemen", "Function": "1--45---", "LOCODE": "YEADE", "Name": "Aden", "NameWoDiac": "Aden", "Status": "AI", "outflows": 126082.5 }, "geometry": { "type": "Point", "coordinates": [ 45.03667, 12.77944 ] } }, +{ "type": "Feature", "properties": { "Country": "Yemen", "Function": "1--4----", "LOCODE": "YEMKX", "Name": "Mukalla", "NameWoDiac": "Mukalla", "Status": "AI", "outflows": 30745.0 }, "geometry": { "type": "Point", "coordinates": [ 49.12424, 14.54248 ] } }, +{ "type": "Feature", "properties": { "Country": "South Africa", "Function": "1234----", "LOCODE": "ZAELS", "Name": "East London", "NameWoDiac": "East London", "Status": "AF", "outflows": 15600.0 }, "geometry": { "type": "Point", "coordinates": [ 27.91162, -33.01529 ] } }, +{ "type": "Feature", "properties": { "Country": "South Africa", "Function": "1--45---", "LOCODE": "ZAPLZ", "Name": "Port Elizabeth", "NameWoDiac": "Port Elizabeth", "Status": "AF", "outflows": 2557154.4621100002 }, "geometry": { "type": "Point", "coordinates": [ 25.61494, -33.96109 ] } }, +{ "type": "Feature", "properties": { "Country": "South Africa", "Function": "1--4----", "LOCODE": "ZARCB", "Name": "Richards Bay", "NameWoDiac": "Richards Bay", "Status": "AF", "outflows": 164538.86664000002 }, "geometry": { "type": "Point", "coordinates": [ 32.03768, -28.78301 ] } } +] +} diff --git a/data/district_heat_share.csv b/data/district_heat_share.csv new file mode 100644 index 00000000..5afd65c8 --- /dev/null +++ b/data/district_heat_share.csv @@ -0,0 +1,34 @@ +country,share to satisfy heat demand (residential) in percent,capacity[MWth] +AT,14,11200 +BG,16,6162 +BA,8, +HR,6.3,2221 +CZ,40, +DK,65, +FI,38,23390 +FR,5, +DE,13.8, +HU,7.92875588637399,8549 +IS,90,8079000 +IE,0.8, +IT,3,8727 +LV,73,2254 +LT,56, +MK,23.7745607009008,636 +NO,4,3400 +PL,42,54912 +PT,0.070754716981132,34 +RS,25,5821 +SI,8.86,1739 +ES,0.251589260787732,1273 +SE,50.4, +UK,2, +BY,70, +EE,52,5406 +KO,3,207 +RO,23,9962 +SK,54,15000 +NL,4,9800 +CH,4,2792 +AL,0, +ME,0, diff --git a/data/eia_hydro_annual_generation.csv b/data/eia_hydro_annual_generation.csv new file mode 100644 index 00000000..9b781ee3 --- /dev/null +++ b/data/eia_hydro_annual_generation.csv @@ -0,0 +1,50 @@ +https://www.eia.gov/international/data/world/electricity/electricity-generation?pd=2&p=000000000000000000000000000000g&u=1&f=A&v=mapbubble&a=-&i=none&vo=value&t=R&g=000000000000002&l=73-1028i008017kg6368g80a4k000e0ag00gg0004g8g0ho00g000400008&s=315532800000&e=1577836800000&ev=false& +Report generated on: 03-28-2022 11:20:48 +"API","","1980","1981","1982","1983","1984","1985","1986","1987","1988","1989","1990","1991","1992","1993","1994","1995","1996","1997","1998","1999","2000","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020" +"","hydroelectricity net generation (billion kWh)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" +"INTL.33-12-EURO-BKWH.A"," Europe","458.018","464.155","459.881","473.685","481.241","476.739","459.535","491.085","534.517","465.365","474.466","475.47","509.041","526.448","531.815","543.743","529.114164","543.845616","562.441501","569.308453","591.206662","587.371195","541.542535","506.19703","544.536443","545.176179","537.335934","540.934407","567.557921","564.244482","619.96477","543.05273","600.46622","631.86431","619.59229","615.53013","629.98906","562.59258","619.31106","610.62616","670.925" +"INTL.33-12-ALB-BKWH.A"," Albania","2.919","3.018","3.093","3.167","3.241","3.315","3.365","3.979","3.713","3.846","2.82","3.483","3.187","3.281","3.733","4.162","5.669","4.978","4.872","5.231","4.548","3.519","3.477","5.117","5.411","5.319","4.951","2.76","3.759","5.201","7.49133","4.09068","4.67775","6.88941","4.67676","5.83605","7.70418","4.47975","8.46648","5.15394","5.281" +"INTL.33-12-AUT-BKWH.A"," Austria","28.501","30.008","29.893","29.577","28.384","30.288","30.496","25.401","35.151","34.641","31.179","31.112","34.483","36.336","35.349","36.696","33.874","35.744","36.792","40.292","41.418","40.05","39.825","32.883","36.394","36.31","35.48","36.732","37.969","40.487","36.466","32.511","41.862","40.138","39.001","35.255","37.954","36.462","35.73","40.43655","45.344" +"INTL.33-12-BEL-BKWH.A"," Belgium","0.274","0.377","0.325","0.331","0.348","0.282","0.339","0.425","0.354","0.3","0.263","0.226","0.338","0.252","0.342","0.335","0.237","0.30195","0.38511","0.338","0.455","0.437","0.356","0.245","0.314","0.285","0.355","0.385","0.406","0.325","0.298","0.193","0.353","0.376","0.289","0.314","0.367","0.268","0.311","0.108","1.29" +"INTL.33-12-BIH-BKWH.A"," Bosnia and Herzegovina","--","--","--","--","--","--","--","--","--","--","--","--","3.374","2.343","3.424","3.607","5.104","4.608","4.511","5.477","5.043","5.129","5.215","4.456","5.919","5.938","5.798","3.961","4.818","6.177","7.946","4.343","4.173","7.164","5.876","5.495","5.585","3.7521","6.35382","6.02019","6.1" +"INTL.33-12-BGR-BKWH.A"," Bulgaria","3.674","3.58","3.018","3.318","3.226","2.214","2.302","2.512","2.569","2.662","1.859","2.417","2.042","1.923","1.453","2.291","2.89","2.726","3.066","2.725","2.646","1.72","2.172","2.999","3.136","4.294","4.196","2.845","2.796","3.435","4.98168","2.84328","3.14622","3.99564","4.55598","5.59845","3.8412","2.79972","5.09553","3.34917","3.37" +"INTL.33-12-HRV-BKWH.A"," Croatia","--","--","--","--","--","--","--","--","--","--","--","--","4.298","4.302","4.881","5.212","7.156","5.234","5.403","6.524","5.794","6.482","5.311","4.827","6.888","6.27","5.94","4.194","5.164","6.663","9.035","4.983","4.789","8.536","8.917","6.327","6.784","5.255","7.62399","5.87268","3.4" +"INTL.33-12-CYP-BKWH.A"," Cyprus","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"INTL.33-12-CZE-BKWH.A"," Czech Republic","--","--","--","--","--","--","--","--","--","--","--","--","--","1.355","1.445","1.982","1.949","1.68201","1.382","1.664","1.7404","2.033","2.467","1.369","1.999","2.356","2.525","2.068","2.004","2.405","2.775","1.95","2.107","2.704","1.909","1.779","1.983","1.852","1.615","1.98792","3.4" +"INTL.33-12-DNK-BKWH.A"," Denmark","0.03","0.031","0.028","0.036","0.028","0.027","0.029","0.029","0.032","0.027","0.027","0.026","0.028","0.027","0.033","0.03","0.019","0.019","0.02673","0.031","0.03","0.028","0.032","0.021","0.027","0.023","0.023","0.028","0.026","0.019","0.021","0.017","0.017","0.013","0.015","0.018","0.019","0.018","0.015","0.01584","0.02" +"INTL.33-12-EST-BKWH.A"," Estonia","--","--","--","--","--","--","--","--","--","--","--","--","0.001","0.001","0.003","0.002","0.002","0.003","0.004","0.004","0.005","0.007","0.006","0.013","0.022","0.022","0.014","0.021","0.028","0.032","0.027","0.03","0.042","0.026","0.027","0.027","0.035","0.026","0.015","0.01881","0.04" +"INTL.33-12-FRO-BKWH.A"," Faroe Islands","0.049","0.049","0.049","0.049","0.049","0.049","0.049","0.049","0.062","0.071","0.074","0.074","0.083","0.073","0.075","0.075","0.069564","0.075066","0.076501","0.069453","0.075262","0.075195","0.095535","0.08483","0.093443","0.097986","0.099934","0.103407","0.094921","0.091482","0.06676","0.092","0.099","0.091","0.121","0.132","0.105","0.11","0.107","0.102","0.11" +"INTL.33-12-FIN-BKWH.A"," Finland","10.115","13.518","12.958","13.445","13.115","12.211","12.266","13.658","13.229","12.9","10.75","13.065","14.956","13.341","11.669","12.796","11.742","12.11958","14.9","12.652","14.513","13.073","10.668","9.495","14.919","13.646","11.379","14.035","16.941","12.559","12.743","12.278","16.667","12.672","13.24","16.584","15.634","14.61","13.137","12.31461","15.56" +"INTL.33-12-CSK-BKWH.A"," Former Czechoslovakia","4.8","4.2","3.7","3.9","3.2","4.3","4","4.853","4.355","4.229","3.919","3.119","3.602","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--" +"INTL.33-12-SCG-BKWH.A"," Former Serbia and Montenegro","--","--","--","--","--","--","--","--","--","--","--","--","11.23","10.395","11.016","12.071","14.266","12.636","12.763","13.243","11.88","12.326","11.633","9.752","11.01","11.912","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--" +"INTL.33-12-YUG-BKWH.A"," Former Yugoslavia","27.868","25.044","23.295","21.623","25.645","24.363","27.474","25.98","25.612","23.256","19.601","18.929","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--" +"INTL.33-12-FRA-BKWH.A"," France","68.253","70.358","68.6","67.515","64.01","60.248","60.953","68.623","73.952","45.744","52.796","56.277","68.313","64.3","78.057","72.196","64.43","63.151","61.479","71.832","66.466","73.888","59.992","58.567","59.276","50.965","55.741","57.029","63.017","56.428","61.945","45.184","59.099","71.042","62.993","54.876","60.094","49.389","64.485","56.98242","64.84" +"INTL.33-12-DEU-BKWH.A"," Germany","--","--","--","--","--","--","--","--","--","--","--","14.742","17.223","17.699","19.731","21.562","21.737","17.18343","17.044","19.451","21.515","22.506","22.893","19.071","20.866","19.442","19.808","20.957","20.239","18.841","20.678","17.323","21.331","22.66","19.31","18.664","20.214","19.985","17.815","19.86039","24.75" +"INTL.33-12-DDR-BKWH.A"," Germany, East","1.658","1.718","1.748","1.683","1.748","1.758","1.767","1.726","1.719","1.551","1.389","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--" +"INTL.33-12-DEUW-BKWH.A"," Germany, West","17.125","17.889","17.694","16.713","16.434","15.354","16.526","18.36","18.128","16.482","15.769","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--" +"INTL.33-12-GIB-BKWH.A"," Gibraltar","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"INTL.33-12-GRC-BKWH.A"," Greece","3.396","3.398","3.551","2.331","2.852","2.792","3.222","2.768","2.354","1.888","1.751","3.068","2.181","2.26","2.573","3.494","4.305","3.84318","3.68","4.546","3.656","2.076","2.772","4.718","4.625","4.967","5.806","2.565","3.279","5.32","7.431","3.998","4.387","6.337","4.464","5.782","5.543","3.962","5.035","3.9798","3.43" +"INTL.33-12-HUN-BKWH.A"," Hungary","0.111","0.166","0.158","0.153","0.179","0.153","0.152","0.167","0.167","0.156","0.176","0.192","0.156","0.164","0.159","0.161","0.205","0.21384","0.15345","0.179","0.176","0.184","0.192","0.169","0.203","0.2","0.184","0.208","0.211","0.226","0.184","0.216","0.206","0.208","0.294","0.227","0.253","0.214","0.216","0.21681","0.24" +"INTL.33-12-ISL-BKWH.A"," Iceland","3.053","3.085","3.407","3.588","3.738","3.667","3.846","3.918","4.169","4.217","4.162","4.162","4.267","4.421","4.47","4.635","4.724","5.15493","5.565","5.987","6.292","6.512","6.907","7.017","7.063","6.949","7.22","8.31","12.303","12.156","12.51","12.382","12.214","12.747","12.554","13.541","13.092","13.892","13.679","13.32441","12.46" +"INTL.33-12-IRL-BKWH.A"," Ireland","0.833","0.855","0.792","0.776","0.68","0.824","0.91","0.673","0.862","0.684","0.69","0.738","0.809","0.757","0.911","0.706","0.715","0.67122","0.907","0.838","0.838","0.59","0.903","0.592","0.624","0.625","0.717","0.66","0.959","0.893","0.593","0.699","0.795","0.593","0.701","0.798","0.674","0.685","0.687","0.87813","1.21" +"INTL.33-12-ITA-BKWH.A"," Italy","44.997","42.782","41.216","40.96","41.923","40.616","40.626","39.05","40.205","33.647","31.31","41.817","41.778","41.011","44.212","37.404","41.617","41.18697","40.808","44.911","43.763","46.343","39.125","33.303","41.915","35.706","36.624","32.488","41.207","48.647","50.506","45.36477","41.45625","52.24626","57.95955","45.08163","42.00768","35.83701","48.29913","45.31824","47.72" +"INTL.33-12-XKS-BKWH.A"," Kosovo","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","0.075","0.119","0.154","0.104","0.095","0.142","0.149","0.139","0.243","0.177","0.27027","0.2079","0.26" +"INTL.33-12-LVA-BKWH.A"," Latvia","--","--","--","--","--","--","--","--","--","--","--","--","2.498","2.846","3.272","2.908","1.841","2.922","2.99","2.729","2.791","2.805","2.438","2.243","3.078","3.293","2.671","2.706","3.078","3.422","3.488","2.857","3.677","2.838","1.953","1.841","2.523","4.356","2.417","2.08692","2.59" +"INTL.33-12-LTU-BKWH.A"," Lithuania","--","--","--","--","--","--","--","--","--","--","--","--","0.308","0.389","0.447","0.369","0.323","0.291","0.413","0.409","0.336","0.322","0.35","0.323","0.417","0.446193","0.393","0.417","0.398","0.42","0.535","0.475","0.419","0.516","0.395","0.346","0.45","0.597","0.427","0.34254","1.06" +"INTL.33-12-LUX-BKWH.A"," Luxembourg","0.086","0.095","0.084","0.083","0.088","0.071","0.084","0.101","0.097","0.072","0.07","0.083","0.069","0.066","0.117","0.087","0.059","0.082","0.114","0.084","0.119","0.117","0.098","0.078","0.103","0.093","0.11","0.116","0.131","0.105","0.104","0.061","0.095","0.114","0.104","0.095","0.111","0.082","0.089","0.10593","1.09" +"INTL.33-12-MLT-BKWH.A"," Malta","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0" +"INTL.33-12-MNE-BKWH.A"," Montenegro","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","1.733","1.271","1.524","2.05","2.723","1.192","1.462","2.479","1.734","1.476","1.825","1.014","2.09187","1.78","1.8" +"INTL.33-12-NLD-BKWH.A"," Netherlands","0","0","0","0","0","0.003","0.003","0.001","0.002","0.037","0.119","0.079","0.119","0.091","0.1","0.087","0.079","0.09108","0.111","0.089","0.141","0.116","0.109","0.071","0.094","0.087","0.105","0.106","0.101","0.097","0.105","0.057","0.104","0.114","0.112","0.093","0.1","0.061","0.072","0.07326","0.05" +"INTL.33-12-MKD-BKWH.A"," North Macedonia","--","--","--","--","--","--","--","--","--","--","--","--","0.817","0.517","0.696","0.793","0.842","0.891","1.072","1.375","1.158","0.62","0.749","1.36","1.467","1.477","1.634","1","0.832","1.257","2.407","1.419","1.031","1.568","1.195","1.846","1.878","1.099","1.773","1.15236","1.24" +"INTL.33-12-NOR-BKWH.A"," Norway","82.717","91.876","91.507","104.704","104.895","101.464","95.321","102.341","107.919","117.369","119.933","109.032","115.505","118.024","110.398","120.315","102.823","108.677","114.546","120.237","140.4","119.258","128.078","104.425","107.693","134.331","118.175","132.319","137.654","124.03","116.257","119.78","141.189","127.551","134.844","136.662","142.244","141.651","138.202","123.66288","141.69" +"INTL.33-12-POL-BKWH.A"," Poland","2.326","2.116","1.528","1.658","1.394","1.833","1.534","1.644","1.775","1.593","1.403","1.411","1.492","1.473","1.716","1.868","1.912","1.941","2.286","2.133","2.085","2.302","2.256","1.654","2.06","2.179","2.022","2.328","2.13","2.351","2.9","2.313","2.02","2.421","2.165","1.814","2.117","2.552","1.949","1.93842","2.93" +"INTL.33-12-PRT-BKWH.A"," Portugal","7.873","4.934","6.82","7.897","9.609","10.512","8.364","9.005","12.037","5.72","9.065","8.952","4.599","8.453","10.551","8.26","14.613","12.97395","12.853","7.213","11.21","13.894","7.722","15.566","9.77","4.684","10.892","9.991","6.73","8.201","15.954","11.423","5.589","13.652","15.471","8.615","15.608","5.79","12.316","8.6526","13.96" +"INTL.33-12-ROU-BKWH.A"," Romania","12.506","12.605","11.731","9.934","11.208","11.772","10.688","11.084","13.479","12.497","10.87","14.107","11.583","12.64","12.916","16.526","15.597","17.334","18.69","18.107","14.63","14.774","15.886","13.126","16.348","20.005","18.172","15.806","17.023","15.379","19.684","14.581","11.945","14.807","18.618","16.467","17.848","14.349","17.48736","15.65289","15.53" +"INTL.33-12-SRB-BKWH.A"," Serbia","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","10.855","9.937","9.468","10.436","11.772","8.58","9.193","10.101","10.893","9.979","10.684","9.061","10.53261","10.07028","9.66" +"INTL.33-12-SVK-BKWH.A"," Slovakia","--","--","--","--","--","--","--","--","--","--","--","--","--","3.432","4.311","4.831","4.185","4.023","4.224","4.429","4.569","4.878","5.215","3.4452","4.059","4.592","4.355","4.406","4","4.324","5.184","3.211","3.687","4.329","3.762","3.701","4.302","4.321","3.506","4.27383","4.67" +"INTL.33-12-SVN-BKWH.A"," Slovenia","--","--","--","--","--","--","--","--","--","--","--","--","3.379","2.974","3.348","3.187","3.616","3.046","3.4","3.684","3.771","3.741","3.265","2.916","4.033","3.426","3.555","3.233","3.978","4.666","4.452","3.506","3.841","4.562","6.011","3.75","4.443","3.814","4.643","4.43421","5.24" +"INTL.33-12-ESP-BKWH.A"," Spain","29.16","21.64","25.99","26.696","31.088","30.895","26.105","27.016","34.76","19.046","25.16","27.01","18.731","24.133","27.898","22.881","39.404","34.43","33.665","22.634","29.274","40.617","22.691","40.643","31.359","18.209","25.699","27.036","23.13","26.147","41.576","30.07","20.192","36.45","38.815","27.656","35.77","18.007","33.743","24.23025","33.34" +"INTL.33-12-SWE-BKWH.A"," Sweden","58.133","59.006","54.369","62.801","67.106","70.095","60.134","70.95","69.016","70.911","71.778","62.603","73.588","73.905","58.508","67.421","51.2226","68.365","74.25","70.974","77.798","78.269","65.696","53.005","59.522","72.075","61.106","65.497","68.378","65.193","66.279","66.047","78.333","60.81","63.227","74.734","61.645","64.651","61.79","64.46583","71.6" +"INTL.33-12-CHE-BKWH.A"," Switzerland","32.481","35.13","35.974","35.069","29.871","31.731","32.576","34.328","35.437","29.477","29.497","31.756","32.373","35.416","38.678","34.817","28.458","33.70257","33.136","39.604","36.466","40.895","34.862","34.471","33.411","30.914","30.649","34.898","35.676","35.366","35.704","32.069","38.218","38.08","37.659","37.879","34.281","33.754","34.637","37.6596","40.62" +"INTL.33-12-TUR-BKWH.A"," Turkey","11.159","12.308","13.81","11.13","13.19","11.822","11.637","18.314","28.447","17.61","22.917","22.456","26.302","33.611","30.28","35.186","40.07","39.41784","41.80671","34.33","30.57","23.77","33.346","34.977","45.623","39.165","43.802","35.492","32.937","35.598","51.423","51.155","56.669","58.225","39.75","65.856","66.686","57.824","59.49","87.99714","77.39" +"INTL.33-12-GBR-BKWH.A"," United Kingdom","3.921","4.369","4.543","4.548","3.992","4.08","4.767","4.13","4.915","4.732","5.119","4.534","5.329","4.237","5.043","4.79","3.359","4.127","5.067","5.283","5.035","4.015","4.74","3.195","4.795","4.873","4.547","5.026","5.094","5.178","3.566","5.655","5.286","4.667","5.832","6.246","5.342","5.836","5.189","5.89941","7.64" diff --git a/data/existing_infrastructure/existing_heating_raw.csv b/data/existing_infrastructure/existing_heating_raw.csv new file mode 100644 index 00000000..18774460 --- /dev/null +++ b/data/existing_infrastructure/existing_heating_raw.csv @@ -0,0 +1,31 @@ +,gas boiler,coal boiler,oil boiler,resistive heater,air heat pump,ground heat pump +Austria,9.32,0.4,15.42,0,0.72,1.077 +Belgium,28.39,1.19,19.53,3.14,0.17,0.061 +Bulgaria,0.16,3.68,0.04,3.46,1.01,0.045 +Croatia,8.39,0.03,2.88,1.53,0,0 +Czech Republic,9.26,1.02,0.1,2.73,0.35,0.263 +Denmark,4.82,0,3.67,2.19,1.9,0.381 +Estonia,0.22,0.02,0.12,0.27,0.33,0.1 +Finland,0,0.04,3.79,10.3,1.98,0.58 +France,76.85,1.03,46.03,87.24,26.14,1.97 +Germany,131.09,0.44,132.04,0,2.38,3.29 +Greece,2.17,0.03,18.13,5.91,0,0 +Hungary,21.21,1.3,0.04,0.06,0.03,0.035 +Ireland,4.32,0.8,4.85,1.03,0.03,0.03 +Italy,112.68,1.89,3.33,6.61,54.98,0.6 +Latvia,1.53,0.4,0,0.03,0,0 +Lithuania,0,0,0,0,0.01,0.02 +Luxembourg,0.79,0,0.77,0.09,0.01,0.001 +Netherlands,81.41,0,0.1,0.1,1.82,0.849 +Poland,8.25,24.75,9.04,5.96,0.01,0.04 +Portugal,4.79,0,0.2,21.26,1.58,0.064 +Romania,16.56,0.32,0.03,0.72,0,0 +Slovakia,8.05,0.19,0.01,0.55,0.06,0.015 +Slovenia,0.4,0,1.08,0.4,0.03,0.056 +Spain,48.99,0.51,17.95,56.58,1.15,0.016 +Sweden,1.01,0,0.77,3.76,3.42,4.813 +United Kingdom,160.49,1.26,7.39,13.81,0.81,0.21 +Norway,,,,,2.91,0.334 +Switzerland,,,,,1,0.849 +Serbia,,,,,, +Bosnia Herzegovina,,,,,, diff --git a/data/existing_infrastructure/offwind_capacity_IRENA.csv b/data/existing_infrastructure/offwind_capacity_IRENA.csv new file mode 100644 index 00000000..5400e4fb --- /dev/null +++ b/data/existing_infrastructure/offwind_capacity_IRENA.csv @@ -0,0 +1,34 @@ +Country/area,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018 +Albania,,,,,,,,,,,,,,,,,,, +Austria,,,,,,,,,,,,,,,,,,, +Belgium,,,,,,,,,,31.5,196.5,196.5,381,707.7,707.7,712,712.2,877.2,1185.9 +Bosnia Herzg,,,,,,,,,,,,,,,,,,, +Bulgaria,,,,,,,,,,,,,,,,,,, +Croatia,,,,,,,,,,,,,,,,,,, +Czechia,,,,,,,,,,,,,,,,,,, +Denmark,50,50,214,423.4,423.4,423.4,423.4,423.4,423.4,660.9,867.9,871.5,921.9,1271.1,1271.1,1271.1,1271.1,1263.8,1700.8 +Estonia,,,,,,,,,,,,,,,,,,, +Finland,,,,,,,,,24,24,26.3,26.3,26.3,26.3,26.3,32,32,72.7,72.7 +France,,,,,,,,,,,,,,,,,,2,2 +Germany,,,,,,,,,,35,80,188,268,508,994,3283,4132,5406,6396 +Greece,,,,,,,,,,,,,,,,,,, +Hungary,,,,,,,,,,,,,,,,,,, +Ireland,,,,,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.2 +Italy,,,,,,,,,,,,,,,,,,, +Latvia,,,,,,,,,,,,,,,,,,, +Lithuania,,,,,,,,,,,,,,,,,,, +Luxembourg,,,,,,,,,,,,,,,,,,, +Montenegro,,,,,,,,,,,,,,,,,,, +Netherlands,,,,,,,108,108,228,228,228,228,228,228,228,357,957,957,957 +North Macedonia,,,,,,,,,,,,,,,,,,, +Norway,,,,,,,,,,2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.3 +Poland,,,,,,,,,,,,,,,,,,, +Portugal,,,,,,,,,,,,1.9,2,2,2,2,,, +Romania,,,,,,,,,,,,,,,,,,, +Serbia,,,,,,,,,,,,,,,,,,, +Slovakia,,,,,,,,,,,,,,,,,,, +Slovenia,,,,,,,,,,,,,,,,,,, +Spain,,,,,,,,,,,,,,5,5,5,5,5,5 +Sweden,13,22,22,22,22,22,22,131,133,163,163,163,163,212,213,213,203,203,203 +Switzerland,,,,,,,,,,,,,,,,,,, +UK,3.8,3.8,3.8,63.8,123.8,213.8,303.8,393.8,596.2,951.2,1341.5,1838.3,2995.5,3696,4501.3,5093.4,5293.4,6987.9,8216.5 diff --git a/data/existing_infrastructure/onwind_capacity_IRENA.csv b/data/existing_infrastructure/onwind_capacity_IRENA.csv new file mode 100644 index 00000000..ca7bb5ec --- /dev/null +++ b/data/existing_infrastructure/onwind_capacity_IRENA.csv @@ -0,0 +1,34 @@ +Country/area,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018 +Albania,,,,,,,,,,,,,,,,,,, +Austria,50,67,109,322,581,825.2,968.3,991.2,992,1001,1015.8,1106,1337.2,1674.5,2110.3,2488.7,2730,2886.7,3132.7 +Belgium,14,26,31,67,96,167,212,276,324,576.5,715.5,872.5,989,1072.3,1236.3,1464,1657.8,1919.3,2074.8 +Bosnia Herzg,,,,,,,,,,,,0.3,0.3,0.3,0.3,0.3,0.3,0.3,50.9 +Bulgaria,,,,,1,8,27,30,114,333,488,541,677,683,699,699,699,698.4,698.9 +Croatia,,,,,6,6,17,17,17,70,79,130,180,254,339,418,483,576.1,586.3 +Czechia,2,,6.4,10.6,16.5,22,43.5,113.8,150,193,213,213,258,262,278,281,282,308.2,316.2 +Denmark,2340.1,2447.2,2680.6,2696.6,2700.4,2704.5,2712.3,2700.9,2739.5,2821.2,2934,3080.5,3240.1,3547.9,3615.4,3805.9,3974.5,4225.8,4419.8 +Estonia,,,1,3,7,31,31,50,77,104,108,180,266,248,275,300,310,311.8,310 +Finland,38,39,43,52,82,82,86,110,119,123,170.7,172.7,230.7,420.7,600.7,973,1533,1971.3,1968.3 +France,38,66,138,218,358,690,1412,2223,3403,4582,5912,6758,7607.5,8156,9201.4,10298.2,11566.6,13497.4,14898.1 +Germany,6095,8754,12001,14381,16419,18248,20474,22116,22794,25697,26823,28524,30711,32969,37620,41297,45303,50174,52447 +Greece,226,270,287,371,470,491,749,846,1022,1171,1298,1640,1753,1809,1978,2091,2370,2624,2877.5 +Hungary,,1,1,3,3,17,33,61,134,203,293,331,325,329,329,329,329,329,329 +Ireland,116.5,122.9,134.8,210.3,311.2,468.1,651.3,715.3,917.1,1226.1,1365.2,1559.4,1679.2,1983,2258.1,2426,2760.8,3292.8,3650.9 +Italy,363,664,780,874,1127,1635,1902,2702,3525,4879,5794,6918,8102,8542,8683,9137,9384,9736.6,10230.2 +Latvia,2,2,22,26,26,26,26,26,28,29,30,36,59,65.9,68.9,68.2,69.9,77.1,78.2 +Lithuania,,,,,1,1,31,47,54,98,133,202,275,279,288,436,509,518,533 +Luxembourg,14,13.9,13.9,20.5,34.9,34.9,34.9,34.9,42.9,42.9,43.7,44.5,58.3,58.3,58.3,63.8,119.7,119.7,122.9 +Montenegro,,,,,,,,,,,,,,,,,,72,118 +Netherlands,447,486,672,905,1075,1224,1453,1641,1921,1994,2009,2088,2205,2485,2637,3034,3300,3245,3436 +North Macedonia,,,,,,,,,,,,,,,37,37,37,37,37 +Norway,13,13,97,97,152,265,284,348,395,420.7,422.7,509.7,702.7,815.7,856.7,864.7,880.7,1204.7,1708 +Poland,4,19,32,35,40,121,172,306,526,709,1108,1800,2564,3429,3836,4886,5747,5759.4,5766.1 +Portugal,83,125,190,268,553,1064,1681,2201,2857,3326,3796,4254.4,4409.6,4607.9,4854.6,4934.8,5124.1,5124.1,5172.4 +Romania,,,,,,1,1,3,5,15,389,988,1822,2773,3244,3130,3025,3029.8,3032.3 +Serbia,,,,,,,,,,,,,0.5,0.5,0.5,10.4,17,25,25 +Slovakia,,,,3,3,5,5,5,5,3,3,3,3,5,3,3,3,4,3 +Slovenia,,,,,,,,,,,,,,4,4,5,5,5,5.2 +Spain,2206,3397,4891,5945,8317,9918,11722,14820,16555,19176,20693,21529,22789,22953,22920,22938,22985,23119.5,23400.1 +Sweden,196,273,335,395,453,500,563,692,956,1312,1854,2601,3443,3982,4875,5606,6232,6408,7097 +Switzerland,3,5,5,5,9,12,12,12,14,18,42,46,49,60,60,60,75,75,75 +UK,408.2,489.2,530.2,678.2,809.2,1351.2,1651.2,2083.2,2849.8,3470.8,4079.8,4758,6035,7586.3,8572.7,9212.2,10832.3,12596.9,13553.9 diff --git a/data/existing_infrastructure/solar_capacity_IRENA.csv b/data/existing_infrastructure/solar_capacity_IRENA.csv new file mode 100644 index 00000000..ac84c2d1 --- /dev/null +++ b/data/existing_infrastructure/solar_capacity_IRENA.csv @@ -0,0 +1,34 @@ +Country/area,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018 +Albania,,0.1,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.3,0.4,0.6,0.7,0.8,0.9,1.1,1,1,1 +Austria,5,7,9,23,27,21,22.4,24.2,30.1,48.9,88.8,174.1,337.5,626,785.2,937.1,1096,1269,1437.6 +Belgium,,,1,1,1,2,2,20,62,386,1007,1979,2647,2902,3015.2,3131.7,3327,3616.2,3986.5 +Bosnia Herzg,,,,0.1,0.2,0.3,0.3,0.3,0.3,0.3,0.3,0.3,0.3,1.3,7.2,8.2,14.1,16,18.2 +Bulgaria,,,,,,,,0,0.1,2,25,154,1013,1020,1026,1029,1028,1035.6,1032.7 +Croatia,,,,,,,,,,0.3,0.3,0.3,4,19,33,47.8,55.8,60,67.7 +Czechia,0.1,0.1,0.2,0.3,0.4,0.6,0.8,4,39.5,464.6,1727,1913,2022,2063.5,2067.4,2074.9,2067.9,2069.5,2075.1 +Denmark,1,1,2,2,2,3,3,3,3,5,7,17,402,571,607,782.1,851,906.4,998 +Estonia,,,,,,,,,,0.1,0.1,0.2,0.4,1.5,3.3,6.5,10,15,31.9 +Finland,2,3,3,3,4,4,5,5,6,6,7,7,8,9,11,17,39,82,140 +France,7,7,8,9,11,13,15,26,80,277,1044,3003.6,4358.8,5277.3,6034.4,7137.5,7702.1,8610.4,9617 +Germany,114,195,260,435,1105,2056,2899,4170,6120,10564,18004,25914,34075,36708,37898,39222,40677,42291,45179 +Greece,,1,1,1,1,1,5,9,12,46,202,612,1536,2579,2596,2604,2604,2605.5,2651.6 +Hungary,,,,,,,,0.4,1,1,2,4,12,35,89,172,235,344,726 +Ireland,,,,,,,,,,0.6,0.7,0.8,0.9,1,1.6,2.4,5.9,15.7,24.2 +Italy,19,20,22,26,31,34,45,110,483,1264,3592,13131,16785,18185,18594,18901,19283,19682.3,20107.6 +Latvia,,,,,,,,,,,,,0.2,0.2,0.2,0.2,0.7,0.7,2 +Lithuania,,,,,,,,,0.1,0.1,0.1,0.3,7,68,69,69,70,73.8,82 +Luxembourg,,0.2,1.6,14.2,23.6,23.6,23.7,23.9,24.6,26.4,29.5,40.7,74.7,95,109.9,116.3,121.9,128.1,130.6 +Montenegro,,,,,,,0,0.2,0.4,0.4,0.6,0.8,0.9,1.1,2.1,2.7,3.1,3.4,3.4 +Netherlands,13,21,26,46,50,51,53,54,59,69,90,149,369,746,1048,1515,2049,2903,4522 +North Macedonia,,,,,,,,,,,0,2,4,7,15,17,16.7,16.7,20.6 +Norway,6,6,6,7,7,7,8,8,8.3,8.7,9.1,9.5,10,11,13,15,26.7,44.9,68.4 +Poland,,,,,,,,,,,,1.1,1.3,2.4,27.2,107.8,187.2,287.1,562 +Portugal,1,1,1,2,2,2,3,24,59,115,134,172,238,296,415,447,512.8,579.2,667.4 +Romania,,,,,,,,,0.1,0.1,0.1,1,41,761,1293,1326,1372,1374.1,1385.8 +Serbia,,,,,,0.1,0.2,0.4,0.9,1.2,1.3,1.5,3.1,4.7,6,9,11,10,10 +Slovakia,,,,,,,,,,,19,496,513,533,533,533,533,528,472 +Slovenia,,,0,0,0,0,0.2,0.6,1,4,12,57,142,187,223,238,233,246.8,221.3 +Spain,10,13,17,22,33,52,130,494,3384,3423,3873,4283,4569,4690,4697,4704,4713,4723,4763.5 +Sweden,3,3,3,4,4,4,5,6,8,9,11,12,24,43,60,104,153,402,492 +Switzerland,16,18,20,22,24,28,30,37,49,79,125,223,437,756,1061,1394,1664,1906,2171 +UK,2,3,4,6,8,11,14,18,23,27,95,1000,1753,2937,5528,9601.2,11930.5,12781.8,13118.3 diff --git a/data/heat_load_profile.csv b/data/heat_load_profile.csv new file mode 100644 index 00000000..f1e13ea4 --- /dev/null +++ b/data/heat_load_profile.csv @@ -0,0 +1,25 @@ +hour,residential space weekday,residential space weekend,residential water weekday,residential water weekend,services space weekday,services space weekend,services water weekday,services water weekend +0,0.9181438689,0.9421512708,1,1,0.9181438689,0.9421512708,1,1 +1,0.9172359071,0.9400891069,1,1,0.9172359071,0.9400891069,1,1 +2,0.9269464481,0.9461062015,1,1,0.9269464481,0.9461062015,1,1 +3,0.9415047932,0.9535084941,1,1,0.9415047932,0.9535084941,1,1 +4,0.9656299507,0.9651094993,1,1,0.9656299507,0.9651094993,1,1 +5,1.0221166443,0.9834676747,1,1,1.0221166443,0.9834676747,1,1 +6,1.1553090493,1.0124171051,1,1,1.1553090493,1.0124171051,1,1 +7,1.2093411031,1.0446615927,1,1,1.2093411031,1.0446615927,1,1 +8,1.1470295942,1.088203419,1,1,1.1470295942,1.088203419,1,1 +9,1.0877191341,1.1110334576,1,1,1.0877191341,1.1110334576,1,1 +10,1.0418327372,1.0926752822,1,1,1.0418327372,1.0926752822,1,1 +11,1.0062977133,1.055488209,1,1,1.0062977133,1.055488209,1,1 +12,0.9837030359,1.0251266112,1,1,0.9837030359,1.0251266112,1,1 +13,0.9667570278,0.9990015154,1,1,0.9667570278,0.9990015154,1,1 +14,0.9548320932,0.9782897278,1,1,0.9548320932,0.9782897278,1,1 +15,0.9509232061,0.9698167237,1,1,0.9509232061,0.9698167237,1,1 +16,0.9636973319,0.974288587,1,1,0.9636973319,0.974288587,1,1 +17,0.9799372563,0.9886456216,1,1,0.9799372563,0.9886456216,1,1 +18,1.0046501848,1.0084159643,1,1,1.0046501848,1.0084159643,1,1 +19,1.0079452419,1.0171243296,1,1,1.0079452419,1.0171243296,1,1 +20,0.9860566481,0.9994722379,1,1,0.9860566481,0.9994722379,1,1 +21,0.9705228074,0.982761591,1,1,0.9705228074,0.982761591,1,1 +22,0.9586485819,0.9698167237,1,1,0.9586485819,0.9698167237,1,1 +23,0.9335023778,0.9515079292,1,1,0.9335023778,0.9515079292,1,1 diff --git a/data/heat_load_profile_BDEW.csv b/data/heat_load_profile_BDEW.csv new file mode 100644 index 00000000..d57ee76f --- /dev/null +++ b/data/heat_load_profile_BDEW.csv @@ -0,0 +1,25 @@ +,residential space weekday,residential space weekend,services space weekday,services space weekend,residential water weekday,residential water weekend,services water weekday,services water weekend +0,0.5437843306385036,0.5391846410003029,0.740230434593118,0.7918173557545402,1.0,1.0,1.0,1.0 +1,0.5690496225400243,0.5641534370440313,0.7642025524842398,0.7929627291950984,1.0,1.0,1.0,1.0 +2,0.5624023211873742,0.5575494117194042,0.8264420882344785,0.8961602364492307,1.0,1.0,1.0,1.0 +3,0.6120351867307156,0.6074588966300298,0.9338477492552973,1.066547622880321,1.0,1.0,1.0,1.0 +4,0.8210089232467712,0.8188451841881503,1.1288089786462463,1.2779268432155158,1.0,1.0,1.0,1.0 +5,1.2287073985428116,1.2315677844536332,1.3311522394966053,1.2808129834243316,1.0,1.0,1.0,1.0 +6,1.327953505819319,1.3349874311629708,1.3976491755316236,1.3076676145167292,1.0,1.0,1.0,1.0 +7,1.2533048874868005,1.2584095945395426,1.3529869654334066,1.239881414312941,1.0,1.0,1.0,1.0 +8,1.204661538907097,1.206562127967529,1.2631870820835946,1.157513929299677,1.0,1.0,1.0,1.0 +9,1.1511425365003825,1.152931252109671,1.183486516733693,1.1001631309844286,1.0,1.0,1.0,1.0 +10,1.0982914366923946,1.0987739728887453,1.1056637898031139,1.0553379006911972,1.0,1.0,1.0,1.0 +11,1.0602079991199889,1.0598534287519163,1.0536117591812475,0.9953570175561463,1.0,1.0,1.0,1.0 +12,1.0430483470403709,1.042552786631541,1.0075511014823457,0.9238971341830102,1.0,1.0,1.0,1.0 +13,1.023765876994618,1.0234573235486537,0.983633820661761,0.928978159404834,1.0,1.0,1.0,1.0 +14,1.0250355817085612,1.0241187665206792,0.973887563496691,0.9277637088455348,1.0,1.0,1.0,1.0 +15,1.0419068035344277,1.0407369052119213,0.968639109712126,0.940383626933661,1.0,1.0,1.0,1.0 +16,1.0886607269753739,1.0871365340901091,0.9776106671510321,0.9762628252848075,1.0,1.0,1.0,1.0 +17,1.1391891744979068,1.1377875788466947,0.9713068946564802,0.9923707220696051,1.0,1.0,1.0,1.0 +18,1.1813708458227477,1.1815796155786216,0.97710710371407,0.9822063279944322,1.0,1.0,1.0,1.0 +19,1.2048721952031847,1.2066686818939167,0.9620977486617706,0.9872726025741575,1.0,1.0,1.0,1.0 +20,1.1883594612741015,1.1911629803333679,0.9096499832485738,0.9736368622053816,1.0,1.0,1.0,1.0 +21,1.0841006081889941,1.0875548281900813,0.7954827338259405,0.8733383541170725,1.0,1.0,1.0,1.0 +22,0.8887378869444746,0.8893062174837649,0.7007233800713178,0.7753100551108082,1.0,1.0,1.0,1.0 +23,0.6584028044030574,0.6576606192147261,0.6910405618412271,0.756430842996538,1.0,1.0,1.0,1.0 diff --git a/data/heat_load_profile_DK_AdamJensen.csv b/data/heat_load_profile_DK_AdamJensen.csv new file mode 100644 index 00000000..cb417bde --- /dev/null +++ b/data/heat_load_profile_DK_AdamJensen.csv @@ -0,0 +1,25 @@ +hour,weekday,weekend +0,0.9181438689,0.9421512708 +1,0.9172359071,0.9400891069 +2,0.9269464481,0.9461062015 +3,0.9415047932,0.9535084941 +4,0.9656299507,0.9651094993 +5,1.0221166443,0.9834676747 +6,1.1553090493,1.0124171051 +7,1.2093411031,1.0446615927 +8,1.1470295942,1.088203419 +9,1.0877191341,1.1110334576 +10,1.0418327372,1.0926752822 +11,1.0062977133,1.055488209 +12,0.9837030359,1.0251266112 +13,0.9667570278,0.9990015154 +14,0.9548320932,0.9782897278 +15,0.9509232061,0.9698167237 +16,0.9636973319,0.974288587 +17,0.9799372563,0.9886456216 +18,1.0046501848,1.0084159643 +19,1.0079452419,1.0171243296 +20,0.9860566481,0.9994722379 +21,0.9705228074,0.982761591 +22,0.9586485819,0.9698167237 +23,0.9335023778,0.9515079292 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/links_tyndp.csv b/data/links_tyndp.csv index 8079be72..a0603120 100644 --- a/data/links_tyndp.csv +++ b/data/links_tyndp.csv @@ -24,3 +24,5 @@ Gridlink,Kingsnorth (UK),Warande (FR),160,,1400,in permitting,,https://tyndp.ent NeuConnect,Grain (UK),Fedderwarden (DE),680,,1400,in permitting,,https://tyndp.entsoe.eu/tyndp2018/projects/projects/309,0.716666666666667,51.44,8.046524,53.562763 NordBalt,Klaipeda (LT),Nybro (SE),450,,700,built,,https://en.wikipedia.org/wiki/NordBalt,21.256667,55.681667,15.854167,56.767778 Estlink 1,Harku (EE),Espoo (FI),105,,350,built,,https://en.wikipedia.org/wiki/Estlink,24.560278,59.384722,24.551667,60.203889 +Greenlink,Waterford (IE),Pembroke (UK),,180,500,under construction,,https://tyndp2022-project-platform.azurewebsites.net/projectsheets/transmission/286,-6.987,52.260,-4.986,51.686 +Celtic Interconnector,Aghada (IE),La Martyre (FR),,572,700,under consideration,,https://tyndp2022-project-platform.azurewebsites.net/projectsheets/transmission/107,-8.16642,51.91413,-4.184,48.459 diff --git a/data/nuclear_p_max_pu.csv b/data/nuclear_p_max_pu.csv new file mode 100644 index 00000000..7bc54455 --- /dev/null +++ b/data/nuclear_p_max_pu.csv @@ -0,0 +1,16 @@ +country,factor +BE,0.65 +BG,0.89 +CZ,0.82 +FI,0.92 +FR,0.70 +DE,0.88 +HU,0.90 +NL,0.86 +RO,0.92 +SK,0.89 +SI,0.94 +ES,0.89 +SE,0.82 +CH,0.86 +GB,0.67 diff --git a/data/override_component_attrs/buses.csv b/data/override_component_attrs/buses.csv new file mode 100644 index 00000000..7581e328 --- /dev/null +++ b/data/override_component_attrs/buses.csv @@ -0,0 +1,3 @@ +attribute,type,unit,default,description,status +location,string,n/a,n/a,Reference to original electricity bus,Input (optional) +unit,string,n/a,MWh,Unit of the bus (descriptive only), Input (optional) diff --git a/data/override_component_attrs/generators.csv b/data/override_component_attrs/generators.csv new file mode 100644 index 00000000..4f214396 --- /dev/null +++ b/data/override_component_attrs/generators.csv @@ -0,0 +1,4 @@ +attribute,type,unit,default,description,status +carrier,string,n/a,n/a,carrier,Input (optional) +lifetime,float,years,inf,lifetime,Input (optional) +build_year,int,year ,0,build year,Input (optional) diff --git a/data/override_component_attrs/links.csv b/data/override_component_attrs/links.csv new file mode 100644 index 00000000..0fc2747a --- /dev/null +++ b/data/override_component_attrs/links.csv @@ -0,0 +1,13 @@ +attribute,type,unit,default,description,status +bus2,string,n/a,n/a,2nd bus,Input (optional) +bus3,string,n/a,n/a,3rd bus,Input (optional) +bus4,string,n/a,n/a,4th bus,Input (optional) +efficiency2,static or series,per unit,1,2nd bus efficiency,Input (optional) +efficiency3,static or series,per unit,1,3rd bus efficiency,Input (optional) +efficiency4,static or series,per unit,1,4th bus efficiency,Input (optional) +p2,series,MW,0,2nd bus output,Output +p3,series,MW,0,3rd bus output,Output +p4,series,MW,0,4th bus output,Output +carrier,string,n/a,n/a,carrier,Input (optional) +lifetime,float,years,inf,lifetime,Input (optional) +build_year,int,year ,0,build year,Input (optional) diff --git a/data/override_component_attrs/loads.csv b/data/override_component_attrs/loads.csv new file mode 100644 index 00000000..10bb5b4f --- /dev/null +++ b/data/override_component_attrs/loads.csv @@ -0,0 +1,2 @@ +attribute,type,unit,default,description,status +carrier,string,n/a,n/a,carrier,Input (optional) diff --git a/data/override_component_attrs/stores.csv b/data/override_component_attrs/stores.csv new file mode 100644 index 00000000..4f214396 --- /dev/null +++ b/data/override_component_attrs/stores.csv @@ -0,0 +1,4 @@ +attribute,type,unit,default,description,status +carrier,string,n/a,n/a,carrier,Input (optional) +lifetime,float,years,inf,lifetime,Input (optional) +build_year,int,year ,0,build year,Input (optional) diff --git a/data/parameter_corrections.yaml b/data/parameter_corrections.yaml index b50fc03a..df15738a 100644 --- a/data/parameter_corrections.yaml +++ b/data/parameter_corrections.yaml @@ -36,12 +36,20 @@ Link: "5583": "7428" # bus0 == bus1 to remove link in remove_unconnected_components (Sardinia) "13588": "7428" # bus0 == bus1 to remove link in remove_unconnected_components (Sardinia) "T23": "6355" # bus0 == bus1 to remove link in remove_unconnected_components (NordBalt) + "14815": "5939" # Kainachtal + "8706": "6448" bus1: index: "12931": "8152" # BorWin3 "5582": "2382" # combine link 5583 + 5582 in 5582 (Sardinia) "13589": "1349" # combine link 13589 + 13588 in 13589 (Sardinia) "14820": "6354" # NordBalt + "14810": "6365" # Skagerrak + "8708": "6448" + "8394": "6695" + "14813": "7052" + "8009": "5939" + "5601": "7052" # Link Sweden - Lübeck length: index: "5582": 26.39 # new length of combined links (sum) @@ -53,6 +61,7 @@ Line: bus0: index: "14573": "7179" #fix bus-id substation in PT (220/380kV issue) + "14756": "8577" # Deeside connection v_nom: index: "14573": 220 # 220/380kV issue of substation in PT 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/data/urban_percent.csv b/data/urban_percent.csv new file mode 100644 index 00000000..d57e0728 --- /dev/null +++ b/data/urban_percent.csv @@ -0,0 +1,30 @@ +AT,66 +BA,40 +BE,98 +BG,74 +CH,74 +CZ,73 +DE,75 +DK,88 +EE,68 +ES,80 +FI,84 +FR,80 +GB,83 +GR,78 +HR,59 +HU,71 +IE,63 +IT,69 +LT,67 +LU,90 +LV,67 +NL,90 +NO,80 +PL,61 +PT,63 +RO,55 +RS,56 +SE,86 +SI,50 +SK,54 diff --git a/doc/Makefile b/doc/Makefile index 75df2f48..a2ae2428 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2017-2020 The PyPSA-Eur Authors +# SPDX-FileCopyrightText: 2017-2023 The PyPSA-Eur Authors # # SPDX-License-Identifier: MIT diff --git a/doc/_static/theme_overrides.css b/doc/_static/theme_overrides.css deleted file mode 100644 index a4c9818d..00000000 --- a/doc/_static/theme_overrides.css +++ /dev/null @@ -1,74 +0,0 @@ -/* SPDX-FileCopyrightText: 2017-2020 The PyPSA-Eur Authors - SPDX-License-Identifier: MIT -*/ - -.wy-side-nav-search { - background-color: #eeeeee; -} - -.wy-side-nav-search .wy-dropdown>a, -.wy-side-nav-search>a { - color: rgb(34, 97, 156) -} - -.wy-side-nav-search>div.version { - color: rgb(34, 97, 156) -} - -.wy-menu-vertical header, -.wy-menu-vertical p.caption, -.rst-versions a { - color: #999999; -} - -.wy-menu-vertical a.reference:hover, -.wy-menu-vertical a.reference.internal:hover { - background: #dddddd; - color: #fff; -} - -.wy-nav-side { - background: #efefef; -} - -.wy-menu-vertical a.reference { - color: #000; -} - -.rst-versions .rst-current-version, -.wy-nav-top, -.wy-menu-vertical li.toctree-l2.current li.toctree-l3>a:hover { - background: #002221; -} - -.wy-nav-content .highlight { - background: #ffffff; -} - -.rst-content code.literal, -.rst-content tt.literal { - color: rgb(34, 97, 156) -} - -.wy-nav-content a.reference { - color: rgb(34, 97, 156); -} - - -/* override table width restrictions */ - -@media screen and (min-width: 767px) { - .wy-table-responsive table td { - /* !important prevents the common CSS stylesheets from overriding - this as on RTD they are loaded after this stylesheet */ - white-space: normal !important; - background: rgb(250, 250, 250) !important; - } - .wy-table-responsive { - max-width: 100%; - overflow: visible !important; - } - .wy-nav-content { - max-width: 910px !important; - } -} \ No newline at end of file diff --git a/doc/cloudcomputing.rst b/doc/cloudcomputing.rst deleted file mode 100644 index f751d624..00000000 --- a/doc/cloudcomputing.rst +++ /dev/null @@ -1,130 +0,0 @@ -.. - SPDX-FileCopyrightText: 2020 Maximilian Parzen and Emmanuel Paez - - SPDX-License-Identifier: CC-BY-4.0 - - -.. _cloudcomputing: - -########################### -Cloud Computing -########################### - -Google Cloud Platform (GCP) -=========================== - -.. note:: - This set of instructions is partially Windows specific. - We are happy to take pull requests explaining where the procedures deviate from the descriptions below for other operating systems. - Likewise, tutorials for other cloud computing solutions are also highly welcome. - -The Google Cloud Platform (GCP) is a cloud computing service you can use to run PyPSA-Eur calculations, especially if - -- you do not have immediate access to high-performance computating facilities, -- you have problems with the Windows operating system and want a quick run on a linux-based system, -- you want to model whole of Europe in sufficient spatial and temporal resolution, -- you need quick results (trial version includes 32 vCPU cores and up to 800 GB of memory). - -With the Google Cloud Platform you set up a virtual machine in the cloud which can store and operate data. -Like on your local computer, you have to install all software and solvers, and create paths on the virtual machine to set up the required environment. -The 300$ free trial budget is offered which equals roughly 10-20 simulations with 180 nodes at hourly basis. -The following steps are required: - -- `Google Cloud Platform registration `_, to receive 300$ free budget. -- `Creating an Virtual Machine (VM) instance `_, which is practically a virtual computer with Linux as OS. -- `Installation of Cloud SDK `_, to create a communication channel between your computer and the cloud virtual machine (VM). -- `Installation of WinSCP (Windows) `_ (or alternative), to handle or transfer files between the VM and you local computer. - -Step 1 - Google Cloud Platform registration -------------------------------------------- - -First, register at the `Google Cloud Platform `_ (GCP). -Ann active bank account is required, which will not be charged unless you exceed the trial budget. - -Step 2 - Create your Virtual Machine instance ---------------------------------------------- - -With the following steps we create a Virtual Machine (VM) on Google Cloud. - -- Click on the `GCP Dashboard `_. -- Click on the "COMPUTE" header, on the "Compute Engine" and then on the "VM instance". -- Click on create. -- Click on new VM instance. - -Now a window with the machine details will open. You have to configure the following things: - -- Name: Set a name for your VM. Cannot be changed after creation. -- Region: You can keep the default us-central1 (Iowa), since it is a cheap computational region. Sometimes your machine is limited in a specific region. Just pick another region in that case. -- Machine configuration: The machine configuration sets how powerful your VM is. - You can start with a 1 vCPU and 3.75 GB memory, N1 series machine as every operating second cost money. - You can edit your machine configuration later. So use a cheap machine type configuration to transfer data and - only when everything is ready and tested, your expensive machine type, for instance a custom 8 vCPU with 160 GB memory. - Solvers do not parallelise well, so we recommend not to choose more than 8 vCPU. - Check ``snakemake -n -j 1 solve_all_networks`` as a dry run to see how much memory is required. - The memory requirements will vary depending on the spatial and temporal resoulution of your optimisation. - Example: for an hourly, 181 node full European network, set 8 vCPU and 150 GB memory since the dry-run calculated a 135 GB memory requirement.) -- Boot disk: As default, your VM is created with 10 GB. Depending on how much you want to handle on one VM you should increase the disk size. - We recommend a disk size of 100 GB for a safe start (cost roughly 8$ per month), the disk can be resized at any later stage with an additional disk. -- Click on create and celebrate your first VM on GCP. - -Step 3 - Installation of Cloud SDK ----------------------------------- - -- Download Google Cloud SDK `SDK `_. Check that you are logged in in your Google account. The link should lead you to the Windows installation of Google Cloud SDK. -- Follow the "Quickstart for Windows - Before you begin" steps. -- After the successfull installation and initialization, close the Google Cloud SDK reopen it again. Type the following command into the "Google Cloud SDK Shell": - - .. code:: bash - - gcloud compute ssh -- -L 8888:localhost:8888 - -- This command above will open a PuTTy command window that is connected to your Virtual Machine. Time to celebrate if it works! -- Now install all necessary tools. As little help, the first steps: - .. code:: bash - - sudo apt-get update - sudo apt-get install bzip2 libxml2-dev - sudo apt-get install wget - wget https://repo.anaconda.com/archive/Anaconda3-2020.07-Linux-x86_64.sh - ls (to see what anaconda file to bash) - bash Anaconda3-2020.07-Linux-x86_64.sh - source ~/.bashrc - -- Close and reopen the PuTTy file (-> open Google Cloud SDK -> initialize again with the command above to open the PuTTY command window). Now ``conda`` can be listed with ``conda list``. - Noq you can follow the standard installation instructions to finalize your machine (don't forget the solvers - for bigger simulations use commercial solvers such as Gurobi). - -Step 4 - Installation of WinSCP -------------------------------- - -For smooth data exchange between the VM and your local computer you may use WinSCP on Windows. -Make sure that your instance is operating for the next steps. - -- Download `WinSCP `_ and follow the default installation steps. -- Open WinSCP after the installation. A login window will open. -- Keep SFTP as file protocol. -- As host name insert the External IP of your VM (click in your internet browser on your GCP VM instance to see the external IP) -- Set the User name in WinSCP to the name you see in your PuTTy window (check step 3 - for instance [username]@[VM-name]:~$) -- Click on the advanced setting. SSH -> Authentication. -- Option 1. Click on the Tools button and "Install Public Key into Server..". Somewhere in your folder structure must be a public key. I found it with the following folder syntax on my local windows computer -> :\Users\...\.ssh (there should be a PKK file). -- Option 2. Click on the Tools button and "Generate new key pair...". Save the private key at a folder you remember and add it to the "private key file" field in WinSCP. Upload the public key to the metadeta of your instance. -- Click ok and save. Then click Login. If successfull WinSCP will open on the left side your local computer folder structure and on the right side the folder strucutre of your VM. (If you followed Option 2 and its not initially working. Stop your instance, refresh the website, reopen the WinSCP field. Afterwards your your Login should be successfull) - -If you had struggle with the above steps, you could also try `this video `_. - -.. note:: - Double check the External IP of your VM before you try to login with WinSCP. It's often a cause for an error. - -Step 5 - Extra. Copying your instance with all its data and paths included --------------------------------------------------------------------------- - -Especially if you think about operating several instance for quicker simulations, you can create a so called `"image" `_ of the virtual machine. -The "image" includes all the data and software set-ups from your VM. Afterwards you can create a VM from an image and avoid all the installation steps above. - -Important points when to solve networks in PyPSA ------------------------------------------------- - -If you use the GCP with the default PyPSA-Eur settings, your budget will be used up very quickly. The following tips should help you to make the most of your budget: - -- Always test using low resolution networks; i.e. a single country at 5 nodes and 24h resolution for 2 month of weather data. -- Adjust your solver in the ``config.yaml`` file. Set ``solving: skip_iterations: true``. - This will lead to a single solver iteration which is often precise enough. diff --git a/doc/conf.py b/doc/conf.py index 01dd6bc8..8111c86c 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # SPDX-FileCopyrightText: 20017-2020 The PyPSA-Eur Authors # # SPDX-License-Identifier: MIT @@ -16,19 +17,18 @@ # All configuration values have a default; values that are commented out # serve to show the default. -import sys import os -import shlex +import sys # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. -sys.path.insert(0, os.path.abspath('../scripts')) +sys.path.insert(0, os.path.abspath("../scripts")) # -- General configuration ------------------------------------------------ # If your documentation needs a minimal Sphinx version, state it here. -#needs_sphinx = '1.0' +# needs_sphinx = '1.0' # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom @@ -36,88 +36,94 @@ sys.path.insert(0, os.path.abspath('../scripts')) extensions = [ #'sphinx.ext.autodoc', #'sphinx.ext.autosummary', - 'sphinx.ext.intersphinx', - 'sphinx.ext.todo', - 'sphinx.ext.mathjax', - 'sphinx.ext.napoleon', - 'sphinx.ext.graphviz', + "myst_parser", + "sphinx.ext.autosectionlabel", + "sphinx.ext.intersphinx", + "sphinx.ext.todo", + "sphinx.ext.mathjax", + "sphinx.ext.napoleon", + "sphinx.ext.graphviz", + "sphinxcontrib.bibtex", #'sphinx.ext.pngmath', #'sphinxcontrib.tikz', #'rinoh.frontend.sphinx', - 'sphinx.ext.imgconverter', # for SVG conversion + "sphinx.ext.imgconverter", # for SVG conversion ] -autodoc_default_flags = ['members'] +autodoc_default_flags = ["members"] autosummary_generate = True +bibtex_bibfiles = ["publications.bib"] +bibtex_default_style = "unsrt" + # Add any paths that contain templates here, relative to this directory. -templates_path = ['_templates'] +templates_path = ["_templates"] # The suffix(es) of source filenames. # You can specify multiple suffix as a list of string: # source_suffix = ['.rst', '.md'] -source_suffix = '.rst' +source_suffix = ".rst" # The encoding of source files. -#source_encoding = 'utf-8-sig' +# source_encoding = 'utf-8-sig' # The master toctree document. -master_doc = 'index' +master_doc = "index" # General information about the project. -project = u'PyPSA-Eur' -copyright = u'2017-2020 Jonas Hoersch (KIT, FIAS), Fabian Hofmann (FIAS), David Schlachtberger (FIAS), Tom Brown (KIT, FIAS); 2019-2020 Fabian Neumann (KIT)' -author = u'Jonas Hoersch (KIT, FIAS), Fabian Hofmann (FIAS), David Schlachtberger (FIAS), Tom Brown (KIT, FIAS), Fabian Neumann (KIT)' +project = "PyPSA-Eur" +copyright = "2017-2023 Tom Brown (KIT, TUB, FIAS), Jonas Hoersch (KIT, FIAS), Fabian Hofmann (TUB, FIAS), Fabian Neumann (TUB, KIT), Marta Victoria (Aarhus University), Lisa Zeyen (KIT, TUB)" +author = "Tom Brown (KIT, TUB, FIAS), Jonas Hoersch (KIT, FIAS), Fabian Hofmann (TUB, FIAS), Fabian Neumann (TUB, KIT), Marta Victoria (Aarhus University), Lisa Zeyen (KIT, TUB)" # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. -version = u'0.3' +version = "0.8" # The full version, including alpha/beta/rc tags. -release = u'0.4.0' +release = "0.8.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. # # This is also used if you do content translation via gettext catalogs. # Usually you set "language" from the command line for these cases. -language = None +language = "en" # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: -#today = '' +# today = '' # Else, today_fmt is used as the format for a strftime call. -#today_fmt = '%B %d, %Y' +# today_fmt = '%B %d, %Y' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. -exclude_patterns = ['_build'] +exclude_patterns = ["_build"] # The reST default role (used for this markup: `text`) to use for all # documents. -#default_role = None +# default_role = None # If true, '()' will be appended to :func: etc. cross-reference text. -#add_function_parentheses = True +# add_function_parentheses = True # If true, the current module name will be prepended to all description # unit titles (such as .. function::). -#add_module_names = True +# add_module_names = True # If true, sectionauthor and moduleauthor directives will be shown in the # output. They are ignored by default. -#show_authors = False +# show_authors = False # The name of the Pygments (syntax highlighting) style to use. -pygments_style = 'sphinx' +pygments_style = "sphinx" # A list of ignored prefixes for module index sorting. -#modindex_common_prefix = [] +# modindex_common_prefix = [] # If true, keep warnings as "system message" paragraphs in the built documents. -#keep_warnings = False +# keep_warnings = False # If true, `todo` and `todoList` produce output, else they produce nothing. todo_include_todos = True @@ -127,170 +133,168 @@ todo_include_todos = True # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. -html_theme = 'sphinx_rtd_theme' +html_theme = "sphinx_book_theme" # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. html_theme_options = { - 'display_version': True, - 'sticky_navigation': True, + "repository_url": "https://github.com/pypsa/pypsa-eur", + "use_repository_button": True, + "show_navbar_depth": 1, } # Add any paths that contain custom themes here, relative to this directory. -#html_theme_path = [] +# html_theme_path = [] # The name for this set of Sphinx documents. If None, it defaults to # " v documentation". -#html_title = None +html_title = "PyPSA-Eur" # A shorter title for the navigation bar. Default is the same as html_title. -#html_short_title = None +html_short_title = "PyPSA-Eur" # The name of an image file (relative to this directory) to place at the top # of the sidebar. -#html_logo = None +html_logo = "img/pypsa-logo.png" # The name of an image file (within the static path) to use as favicon of the # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 # pixels large. -#html_favicon = None +# html_favicon = None # These folders are copied to the documentation's HTML output -html_static_path = ["_static"] +# html_static_path = ["_static"] # These paths are either relative to html_static_path # or fully qualified paths (eg. https://...) -html_css_files = ["theme_overrides.css"] +# html_css_files = ["theme_overrides.css"] # Add any extra paths that contain custom files (such as robots.txt or # .htaccess) here, relative to this directory. These files are copied # directly to the root of the documentation. -#html_extra_path = [] +# html_extra_path = [] # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. -#html_last_updated_fmt = '%b %d, %Y' +# html_last_updated_fmt = '%b %d, %Y' # If true, SmartyPants will be used to convert quotes and dashes to # typographically correct entities. -#html_use_smartypants = True +# html_use_smartypants = True # Custom sidebar templates, maps document names to template names. -#html_sidebars = {} +# html_sidebars = {} # Additional templates that should be rendered to pages, maps page names to # template names. -#html_additional_pages = {} +# html_additional_pages = {} # If false, no module index is generated. -#html_domain_indices = True +# html_domain_indices = True # If false, no index is generated. -#html_use_index = True +# html_use_index = True # If true, the index is split into individual pages for each letter. -#html_split_index = False +# html_split_index = False # If true, links to the reST sources are added to the pages. -#html_show_sourcelink = True +# html_show_sourcelink = True # If true, "Created using Sphinx" is shown in the HTML footer. Default is True. -#html_show_sphinx = True +# html_show_sphinx = True # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. -#html_show_copyright = True +# html_show_copyright = True # If true, an OpenSearch description file will be output, and all pages will # contain a tag referring to it. The value of this option must be the # base URL from which the finished HTML is served. -#html_use_opensearch = '' +# html_use_opensearch = '' # This is the file name suffix for HTML files (e.g. ".xhtml"). -#html_file_suffix = None +# html_file_suffix = None # Language to be used for generating the HTML full-text search index. # Sphinx supports the following languages: # 'da', 'de', 'en', 'es', 'fi', 'fr', 'hu', 'it', 'ja' # 'nl', 'no', 'pt', 'ro', 'ru', 'sv', 'tr' -#html_search_language = 'en' +# html_search_language = 'en' # A dictionary with options for the search language support, empty by default. # Now only 'ja' uses this config value -#html_search_options = {'type': 'default'} +# html_search_options = {'type': 'default'} # The name of a javascript file (relative to the configuration directory) that # implements a search results scorer. If empty, the default will be used. -#html_search_scorer = 'scorer.js' +# html_search_scorer = 'scorer.js' # Output file base name for HTML help builder. -htmlhelp_basename = 'PyPSAEurdoc' +htmlhelp_basename = "PyPSAEurdoc" # -- Options for LaTeX output --------------------------------------------- latex_elements = { -# The paper size ('letterpaper' or 'a4paper'). -#'papersize': 'letterpaper', - -# The font size ('10pt', '11pt' or '12pt'). -#'pointsize': '10pt', - -# Additional stuff for the LaTeX preamble. -#'preamble': '', - -# Latex figure (float) alignment -#'figure_align': 'htbp', + # The paper size ('letterpaper' or 'a4paper'). + #'papersize': 'letterpaper', + # The font size ('10pt', '11pt' or '12pt'). + #'pointsize': '10pt', + # Additional stuff for the LaTeX preamble. + #'preamble': '', + # Latex figure (float) alignment + #'figure_align': 'htbp', } # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, # author, documentclass [howto, manual, or own class]). latex_documents = [ - (master_doc, 'PyPSA-Eur.tex', u'PyPSA-Eur Documentation', - u'author', 'manual'), + (master_doc, "PyPSA-Eur.tex", "PyPSA-Eur Documentation", "author", "manual"), ] -#Added for rinoh http://www.mos6581.org/rinohtype/quickstart.html -rinoh_documents = [(master_doc, # top-level file (index.rst) - 'PyPSA-Eur', # output (target.pdf) - 'PyPSA-Eur Documentation', # document title - 'author')] # document author +# Added for rinoh http://www.mos6581.org/rinohtype/quickstart.html +rinoh_documents = [ + ( + master_doc, # top-level file (index.rst) + "PyPSA-Eur", # output (target.pdf) + "PyPSA-Eur Documentation", # document title + "author", + ) +] # document author # The name of an image file (relative to this directory) to place at the top of # the title page. -#latex_logo = None +# latex_logo = None # For "manual" documents, if this is true, then toplevel headings are parts, # not chapters. -#latex_use_parts = False +# latex_use_parts = False # If true, show page references after internal links. -#latex_show_pagerefs = False +# latex_show_pagerefs = False # If true, show URL addresses after external links. -#latex_show_urls = False +# latex_show_urls = False # Documents to append as an appendix to all manuals. -#latex_appendices = [] +# latex_appendices = [] # If false, no module index is generated. -#latex_domain_indices = True +# latex_domain_indices = True # -- Options for manual page output --------------------------------------- # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). -man_pages = [ - (master_doc, 'pypsa-eur', u'PyPSA-Eur Documentation', - [author], 1) -] +man_pages = [(master_doc, "pypsa-eur", "PyPSA-Eur Documentation", [author], 1)] # If true, show URL addresses after external links. -#man_show_urls = False +# man_show_urls = False # -- Options for Texinfo output ------------------------------------------- @@ -299,23 +303,29 @@ man_pages = [ # (source start file, target name, title, author, # dir menu entry, description, category) texinfo_documents = [ - (master_doc, 'PyPSA-Eur', u'PyPSA-Eur Documentation', - author, 'PyPSA-Eur', 'One line description of project.', - 'Miscellaneous'), + ( + master_doc, + "PyPSA-Eur", + "PyPSA-Eur Documentation", + author, + "PyPSA-Eur", + "One line description of project.", + "Miscellaneous", + ), ] # Documents to append as an appendix to all manuals. -#texinfo_appendices = [] +# texinfo_appendices = [] # If false, no module index is generated. -#texinfo_domain_indices = True +# texinfo_domain_indices = True # How to display URL addresses: 'footnote', 'no', or 'inline'. -#texinfo_show_urls = 'footnote' +# texinfo_show_urls = 'footnote' # If true, do not generate a @detailmenu in the "Top" node's menu. -#texinfo_no_detailmenu = False +# texinfo_no_detailmenu = False # Example configuration for intersphinx: refer to the Python standard library. -intersphinx_mapping = {'https://docs.python.org/': None} +intersphinx_mapping = {"https://docs.python.org/": None} diff --git a/doc/configtables/atlite.csv b/doc/configtables/atlite.csv index 7bb56040..0b01005d 100644 --- a/doc/configtables/atlite.csv +++ b/doc/configtables/atlite.csv @@ -1,9 +1,13 @@ ,Unit,Values,Description +default_cutout,--,str,"Defines a default cutout." nprocesses,--,int,"Number of parallel processes in cutout preparation" +show_progress,bool,true/false,"Whether progressbar for atlite conversion processes should be shown. False saves time." cutouts,,, -- {name},--,"Convention is to name cutouts like ``--`` (e.g. ``europe-2013-era5``).","Name of the cutout netcdf file. The user may specify multiple cutouts under configuration ``atlite: cutouts:``. Reference is used in configuration ``renewable: {technology}: cutout:``. The cutout ``base`` may be used to automatically calculate temporal and spatial bounds of the network." -- -- module,--,"Subset of {'era5','sarah'}","Source of the reanalysis weather dataset (e.g. `ERA5 `_ or `SARAH-2 `_)" -- -- x,°,"Float interval within [-180, 180]","Range of longitudes to download weather data for. If not defined, it defaults to the spatial bounds of all bus shapes." -- -- y,°,"Float interval within [-90, 90]","Range of latitudes to download weather data for. If not defined, it defaults to the spatial bounds of all bus shapes." +-- -- dx,°,"Larger than 0.25","Grid resolution for longitude" +-- -- dy,°,"Larger than 0.25","Grid resolution for latitude" -- -- time,,"Time interval within ['1979', '2018'] (with valid pandas date time strings)","Time span to download weather data for. If not defined, it defaults to the time interval spanned by the snapshots." -- -- features,,"String or list of strings with valid cutout features ('inlfux', 'wind').","When freshly building a cutout, retrieve data only for those features. If not defined, it defaults to all available features." diff --git a/doc/configtables/clustering.csv b/doc/configtables/clustering.csv index 2f63f955..f13d8cbd 100644 --- a/doc/configtables/clustering.csv +++ b/doc/configtables/clustering.csv @@ -1,3 +1,17 @@ ,Unit,Values,Description -simplify,,, +simplify_network,,, -- to_substations,bool,"{'true','false'}","Aggregates all nodes without power injection (positive or negative, i.e. demand or generation) to electrically closest ones" +-- algorithm,str,"One of {‘kmeans’, ‘hac’, ‘modularity‘}", +-- feature,str,"Str in the format ‘carrier1+carrier2+...+carrierN-X’, where CarrierI can be from {‘solar’, ‘onwind’, ‘offwind’, ‘ror’} and X is one of {‘cap’, ‘time’}.", +-- exclude_carriers,list,"List of Str like [ 'solar', 'onwind'] or empy list []","List of carriers which will not be aggregated. If empty, all carriers will be aggregated." +-- remove stubs,bool,"true/false","Controls whether radial parts of the network should be recursively aggregated. Defaults to true." +-- remove_stubs_across_borders,bool,"true/false","Controls whether radial parts of the network should be recursively aggregated across borders. Defaults to true." +cluster_network,,, +-- algorithm,str,"One of {‘kmeans’, ‘hac’}", +-- feature,str,"Str in the format ‘carrier1+carrier2+...+carrierN-X’, where CarrierI can be from {‘solar’, ‘onwind’, ‘offwind’, ‘ror’} and X is one of {‘cap’, ‘time’}.", +-- exclude_carriers,list,"List of Str like [ 'solar', 'onwind'] or empy list []","List of carriers which will not be aggregated. If empty, all carriers will be aggregated." +aggregation_strategies,,, +-- generators,,, +-- -- {key},str,"{key} can be any of the component of the generator (str). It’s value can be any that can be converted to pandas.Series using getattr(). For example one of {min, max, sum}.","Aggregates the component according to the given strategy. For example, if sum, then all values within each cluster are summed to represent the new generator." +-- buses,,, +-- -- {key},str,"{key} can be any of the component of the bus (str). It’s value can be any that can be converted to pandas.Series using getattr(). For example one of {min, max, sum}.","Aggregates the component according to the given strategy. For example, if sum, then all values within each cluster are summed to represent the new bus." diff --git a/doc/configtables/conventional.csv b/doc/configtables/conventional.csv new file mode 100644 index 00000000..fb031197 --- /dev/null +++ b/doc/configtables/conventional.csv @@ -0,0 +1,3 @@ +,Unit,Values,Description +{name},--,"string","For any carrier/technology overwrite attributes as listed below." +-- {attribute},--,"string or float","For any attribute, can specify a float or reference to a file path to a CSV file giving floats for each country (2-letter code)." diff --git a/doc/configtables/costs.csv b/doc/configtables/costs.csv index ed2d56e4..9797d77e 100644 --- a/doc/configtables/costs.csv +++ b/doc/configtables/costs.csv @@ -1,8 +1,9 @@ ,Unit,Values,Description -year,--,"YYYY; e.g. '2030'","Year for which to retrieve cost assumptions of ``data/costs.csv``." -discountrate,--,float,"Default discount rate if not specified for a technology in ``data/costs.csv``." -USD2013_to_EUR2013,--,float,"Exchange rate from USD :math:`_{2013}` to EUR :math:`_{2013}` from `ECB `_" -capital_cost,EUR/MW,"Keys should be in the 'technology' column of ``data/costs.csv``. Values can be any float.","For the given technologies, assumptions about their capital investment costs are set to the corresponding value. Optional; overwrites cost assumptions from ``data/costs.csv``." -marginal_cost,EUR/MWh,"Keys should be in the 'technology' column of ``data/costs.csv``. Values can be any float.","For the given technologies, assumptions about their marginal operating costs are set to the corresponding value. Optional; overwrites cost assumptions from ``data/costs.csv``." +year,--,"YYYY; e.g. '2030'","Year for which to retrieve cost assumptions of ``resources/costs.csv``." +version,--,"vX.X.X; e.g. 'v0.5.0'","Version of ``technology-data`` repository to use." +rooftop_share,--,float,"Share of rooftop PV when calculating capital cost of solar (joint rooftop and utility-scale PV)." +fill_values,--,float,"Default values if not specified for a technology in ``resources/costs.csv``." +capital_cost,EUR/MW,"Keys should be in the 'technology' column of ``resources/costs.csv``. Values can be any float.","For the given technologies, assumptions about their capital investment costs are set to the corresponding value. Optional; overwrites cost assumptions from ``resources/costs.csv``." +marginal_cost,EUR/MWh,"Keys should be in the 'technology' column of ``resources/costs.csv``. Values can be any float.","For the given technologies, assumptions about their marginal operating costs are set to the corresponding value. Optional; overwrites cost assumptions from ``resources/costs.csv``." emission_prices,,,"Specify exogenous prices for emission types listed in ``network.carriers`` to marginal costs." -- co2,EUR/t,float,"Exogenous price of carbon-dioxide added to the marginal costs of fossil-fuelled generators according to their carbon intensity. Added through the keyword ``Ep`` in the ``{opts}`` wildcard only in the rule :mod:`prepare_network``." diff --git a/doc/configtables/electricity.csv b/doc/configtables/electricity.csv index aef35350..9cf23ebf 100644 --- a/doc/configtables/electricity.csv +++ b/doc/configtables/electricity.csv @@ -1,19 +1,29 @@ ,Unit,Values,Description -voltages,kV,"Any subset of {220., 300., 380.}",Voltage levels to consider when +voltages,kV,"Any subset of {220., 300., 380.}",Voltage levels to consider +gaslimit,MWhth,"float or false",Global gas usage limit co2limit,:math:`t_{CO_2-eq}/a`,float,Cap on total annual system carbon dioxide emissions co2base,:math:`t_{CO_2-eq}/a`,float,Reference value of total annual system carbon dioxide emissions if relative emission reduction target is specified in ``{opts}`` wildcard. agg_p_nom_limits,file,path,Reference to ``.csv`` file specifying per carrier generator nominal capacity constraints for individual countries if ``'CCL'`` is in ``{opts}`` wildcard. Defaults to ``data/agg_p_nom_minmax.csv``. -extendable_carriers,,, --- Generator,--,"Any subset of {'OCGT','CCGT'}",Places extendable conventional power plants (OCGT and/or CCGT) where gas power plants are located today without capacity limits. --- StorageUnit,--,"Any subset of {'battery','H2'}",Adds extendable storage units (battery and/or hydrogen) at every node/bus after clustering without capacity limits and with zero initial capacity. --- Store,--,"Any subset of {'battery','H2'}",Adds extendable storage units (battery and/or hydrogen) at every node/bus after clustering without capacity limits and with zero initial capacity. --- Link,--,Any subset of {'H2 pipeline'},Adds extendable links (H2 pipelines only) at every connection where there are lines or HVDC links without capacity limits and with zero initial capacity. Hydrogen pipelines require hydrogen storage to be modelled as ``Store``. +operational_reserve,,,"Settings for reserve requirements following like `GenX `_" +-- activate,bool,"true or false","Whether to take operational reserve requirements into account during optimisation" +-- epsilon_load,--,float,share of total load +-- epsilon_vres,--,float,share of total renewable supply +-- contingency,MW,float,fixed reserve capacity max_hours,,, -- battery,h,float,Maximum state of charge capacity of the battery in terms of hours at full output capacity ``p_nom``. Cf. `PyPSA documentation `_. -- H2,h,float,Maximum state of charge capacity of the hydrogen storage in terms of hours at full output capacity ``p_nom``. Cf. `PyPSA documentation `_. +extendable_carriers,,, +-- Generator,--,"Any extendable carrier","Defines existing or non-existing conventional and renewable power plants to be extendable during the optimization. Conventional generators can only be built/expanded where already existent today. If a listed conventional carrier is not included in the ``conventional_carriers`` list, the lower limit of the capacity expansion is set to 0." +-- StorageUnit,--,"Any subset of {'battery','H2'}",Adds extendable storage units (battery and/or hydrogen) at every node/bus after clustering without capacity limits and with zero initial capacity. +-- Store,--,"Any subset of {'battery','H2'}",Adds extendable storage units (battery and/or hydrogen) at every node/bus after clustering without capacity limits and with zero initial capacity. +-- Link,--,Any subset of {'H2 pipeline'},Adds extendable links (H2 pipelines only) at every connection where there are lines or HVDC links without capacity limits and with zero initial capacity. Hydrogen pipelines require hydrogen storage to be modelled as ``Store``. powerplants_filter,--,"use `pandas.query `_ strings here, e.g. Country not in ['Germany']",Filter query for the default powerplant database. custom_powerplants,--,"use `pandas.query `_ strings here, e.g. Country in ['Germany']",Filter query for the custom powerplant database. -conventional_carriers,--,"Any subset of {nuclear, oil, OCGT, CCGT, coal, lignite, geothermal, biomass}",List of conventional power plants to include in the model from ``resources/powerplants.csv``. -renewable_capacities_from_OPSD,,"[solar, onwind, offwind]",List of carriers (offwind-ac and offwind-dc are included in offwind) whose capacities 'p_nom' are aligned to the `OPSD renewable power plant list `_ -estimate_renewable_capacities_from_capacitiy_stats,,, -"-- Fueltype [ppm], e.g. Wind",,"list of fueltypes strings in PyPSA-Eur, e.g. [onwind, offwind-ac, offwind-dc]",converts ppm Fueltype to PyPSA-EUR Fueltype +conventional_carriers,--,"Any subset of {nuclear, oil, OCGT, CCGT, coal, lignite, geothermal, biomass}","List of conventional power plants to include in the model from ``resources/powerplants.csv``. If an included carrier is also listed in `extendable_carriers`, the capacity is taken as a lower bound." +renewable_carriers,--,"Any subset of {solar, onwind, offwind-ac, offwind-dc, hydro}",List of renewable generators to include in the model. +estimate_renewable_capacities,,, +-- enable,,bool,"Activate routine to estimate renewable capacities" +-- from_opsd,--,bool,"Add capacities from OPSD data" +-- year,--,bool,"Renewable capacities are based on existing capacities reported by IRENA for the specified year" +-- expansion_limit,--,float or false,"Artificially limit maximum capacities to factor * (IRENA capacities), i.e. 110% of 's capacities => expansion_limit: 1.1 false: Use estimated renewable potentials determine by the workflow" +-- technology_mapping,,,"Mapping between powerplantmatching and PyPSA-Eur technology names" diff --git a/doc/configtables/enable.csv b/doc/configtables/enable.csv new file mode 100644 index 00000000..8a543b46 --- /dev/null +++ b/doc/configtables/enable.csv @@ -0,0 +1,10 @@ +,Unit,Values,Description +prepare_links_p_nom,bool,"{true, false}","Switch to retrieve current HVDC projects from `Wikipedia `_" +retrieve_databundle,bool,"{true, false}","Switch to retrieve databundle from zenodo via the rule :mod:`retrieve_databundle` or whether to keep a custom databundle located in the corresponding folder." +retrieve_sector_databundle,bool,"{true, false}","Switch to retrieve sector databundle from zenodo via the rule :mod:`retrieve_sector_databundle` or whether to keep a custom databundle located in the corresponding folder." +retrieve_cost_data,bool,"{true, false}","Switch to retrieve technology cost data from `technology-data repository `_." +build_cutout,bool,"{true, false}","Switch to enable the building of cutouts via the rule :mod:`build_cutout`." +retrieve_cutout,bool,"{true, false}","Switch to enable the retrieval of cutouts from zenodo with :mod:`retrieve_cutout`." +build_natura_raster,bool,"{true, false}","Switch to enable the creation of the raster ``natura.tiff`` via the rule :mod:`build_natura_raster`." +retrieve_natura_raster,bool,"{true, false}","Switch to enable the retrieval of ``natura.tiff`` from zenodo with :mod:`retrieve_natura_raster`." +custom_busmap,bool,"{true, false}","Switch to enable the use of custom busmaps in rule :mod:`cluster_network`. If activated the rule looks for provided busmaps at ``data/custom_busmap_elec_s{simpl}_{clusters}.csv`` which should have the same format as ``resources/busmap_elec_s{simpl}_{clusters}.csv``, i.e. the index should contain the buses of ``networks/elec_s{simpl}.nc``." diff --git a/doc/configtables/licenses-sector.csv b/doc/configtables/licenses-sector.csv new file mode 100644 index 00000000..d65d3b36 --- /dev/null +++ b/doc/configtables/licenses-sector.csv @@ -0,0 +1,28 @@ +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 +JRC ENSPRESO biomass potentials,remote,CC BY 4.0,https://data.jrc.ec.europa.eu/dataset/74ed5a04-7d74-4807-9eab-b94774309d9f +EEA emission statistics,eea/UNFCCC_v23.csv,EEA standard re-use policy,https://www.eea.europa.eu/data-and-maps/data/national-emissions-reported-to-the-unfccc-and-to-the-eu-greenhouse-gas-monitoring-mechanism-16 +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 +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 +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,h2_salt_caverns_GWh_per_sqkm.geojson,CC BY 4.0,https://doi.org/10.1016/j.ijhydene.2019.12.161 https://doi.org/10.20944/preprints201910.0187.v1 +international port trade volumes,attributed_ports.json,CC BY 4.0,https://datacatalog.worldbank.org/search/dataset/0038118/Global---International-Ports +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 +Building topologies and corresponding standard values,tabula-calculator-calcsetbuilding.csv,unknown,https://episcope.eu/fileadmin/tabula/public/calc/tabula-calculator.xlsx +Retrofitting thermal envelope costs for Germany,retro_cost_germany.csv,unknown,https://www.iwu.de/forschung/handlungslogiken/kosten-energierelevanter-bau-und-anlagenteile-bei-modernisierung/ +District heating most countries,jrc-idees-2015/,CC BY 4.0,https://ec.europa.eu/jrc/en/potencia/jrc-idees,, +District heating missing countries,district_heat_share.csv,unknown,https://www.euroheat.org/knowledge-hub/country-profiles,, diff --git a/doc/configtables/load.csv b/doc/configtables/load.csv index 66f3b994..6e98f881 100644 --- a/doc/configtables/load.csv +++ b/doc/configtables/load.csv @@ -1,6 +1,5 @@ ,Unit,Values,Description -url,--,string,"Link to open power system data time series data." -power_statistics,bool,"{true, false}",Whether to load the electricity consumption data of the ENTSOE power statistics (only for files from 2019 and before) or from the ENTSOE transparency data (only has load data from 2015 onwards). +power_statistics,bool,"{true, false}",Whether to load the electricity consumption data of the ENTSOE power statistics (only for files from 2019 and before) or from the ENTSOE transparency data (only has load data from 2015 onwards). interpolate_limit,hours,integer,"Maximum gap size (consecutive nans) which interpolated linearly." time_shift_for_large_gaps,string,string,"Periods which are used for copying time-slices in order to fill large gaps of nans. Have to be valid ``pandas`` period strings." manual_adjustments,bool,"{true, false}","Whether to adjust the load data manually according to the function in :func:`manual_adjustment`." diff --git a/doc/configtables/offwind-ac.csv b/doc/configtables/offwind-ac.csv index e5bbc847..6b756799 100644 --- a/doc/configtables/offwind-ac.csv +++ b/doc/configtables/offwind-ac.csv @@ -4,10 +4,13 @@ resource,,, -- method,--,"Must be 'wind'","A superordinate technology type." -- turbine,--,"One of turbine types included in `atlite `_","Specifies the turbine type and its characteristic power curve." capacity_per_sqkm,:math:`MW/km^2`,float,"Allowable density of wind turbine placement." +correction_factor,--,float,"Correction factor for capacity factor time series." +excluder_resolution,m,float,"Resolution on which to perform geographical elibility analysis." corine,--,"Any *realistic* subset of the `CORINE Land Cover code list `_","Specifies areas according to CORINE Land Cover codes which are generally eligible for AC-connected offshore wind turbine placement." natura,bool,"{true, false}","Switch to exclude `Natura 2000 `_ natural protection areas. Area is excluded if ``true``." +ship_threshold,--,float,"Ship density threshold from which areas are excluded." max_depth,m,float,"Maximum sea water depth at which wind turbines can be build. Maritime areas with deeper waters are excluded in the process of calculating the AC-connected offshore wind potential." min_shore_distance,m,float,"Minimum distance to the shore below which wind turbines cannot be build. Such areas close to the shore are excluded in the process of calculating the AC-connected offshore wind potential." +max_shore_distance,m,float,"Maximum distance to the shore above which wind turbines cannot be build. Such areas close to the shore are excluded in the process of calculating the AC-connected offshore wind potential." potential,--,"One of {'simple', 'conservative'}","Method to compute the maximal installable potential for a node; confer :ref:`renewableprofiles`" clip_p_max_pu,p.u.,float,"To avoid too small values in the renewables` per-unit availability time series values below this threshold are set to zero." -keep_all_available_areas,bool,"{'true', 'false'}","Use all availabe weather cells for renewable profile and potential generation. The default ignores weather cells where only less than 1 MW can be installed." diff --git a/doc/configtables/offwind-dc.csv b/doc/configtables/offwind-dc.csv index 06b82ba0..1f72228a 100644 --- a/doc/configtables/offwind-dc.csv +++ b/doc/configtables/offwind-dc.csv @@ -4,10 +4,13 @@ resource,,, -- method,--,"Must be 'wind'","A superordinate technology type." -- turbine,--,"One of turbine types included in `atlite `__","Specifies the turbine type and its characteristic power curve." capacity_per_sqkm,:math:`MW/km^2`,float,"Allowable density of wind turbine placement." +correction_factor,--,float,"Correction factor for capacity factor time series." +excluder_resolution,m,float,"Resolution on which to perform geographical elibility analysis." corine,--,"Any *realistic* subset of the `CORINE Land Cover code list `_","Specifies areas according to CORINE Land Cover codes which are generally eligible for AC-connected offshore wind turbine placement." natura,bool,"{true, false}","Switch to exclude `Natura 2000 `_ natural protection areas. Area is excluded if ``true``." +ship_threshold,--,float,"Ship density threshold from which areas are excluded." max_depth,m,float,"Maximum sea water depth at which wind turbines can be build. Maritime areas with deeper waters are excluded in the process of calculating the AC-connected offshore wind potential." -min_shore_distance,m,float,"Minimum distance to the shore below which wind turbines cannot be build. Such areas close to the shore are excluded in the process of calculating the AC-connected offshore wind potential." +min_shore_distance,m,float,"Minimum distance to the shore below which wind turbines cannot be build." +max_shore_distance,m,float,"Maximum distance to the shore above which wind turbines cannot be build." potential,--,"One of {'simple', 'conservative'}","Method to compute the maximal installable potential for a node; confer :ref:`renewableprofiles`" clip_p_max_pu,p.u.,float,"To avoid too small values in the renewables` per-unit availability time series values below this threshold are set to zero." -keep_all_available_areas,bool,"{'true', 'false'}","Use all availabe weather cells for renewable profile and potential generation. The default ignores weather cells where only less than 1 MW can be installed." diff --git a/doc/configtables/onwind.csv b/doc/configtables/onwind.csv index 31884183..ba9482e5 100644 --- a/doc/configtables/onwind.csv +++ b/doc/configtables/onwind.csv @@ -11,4 +11,5 @@ corine,,, natura,bool,"{true, false}","Switch to exclude `Natura 2000 `_ natural protection areas. Area is excluded if ``true``." potential,--,"One of {'simple', 'conservative'}","Method to compute the maximal installable potential for a node; confer :ref:`renewableprofiles`" clip_p_max_pu,p.u.,float,"To avoid too small values in the renewables` per-unit availability time series values below this threshold are set to zero." -keep_all_available_areas,bool,"{'true', 'false'}","Use all availabe weather cells for renewable profile and potential generation. The default ignores weather cells where only less than 1 MW can be installed." +correction_factor,--,float,"Correction factor for capacity factor time series." +excluder_resolution,m,float,"Resolution on which to perform geographical elibility analysis." diff --git a/doc/configtables/opts.csv b/doc/configtables/opts.csv index 918d0d17..b468be6e 100644 --- a/doc/configtables/opts.csv +++ b/doc/configtables/opts.csv @@ -8,4 +8,5 @@ Trigger, Description, Definition, Status ``ATK``, "Require each node to be autarkic. Example: ``ATK`` removes all lines and links. ``ATKc`` removes all cross-border lines and links.", ``prepare_network``, In active use ``BAU``, Add a per-``carrier`` minimal overall capacity; i.e. at least ``40GW`` of ``OCGT`` in Europe; configured in ``electricity: BAU_mincapacities``, ``solve_network``: `add_opts_constraints() `__, Untested ``SAFE``, Add a capacity reserve margin of a certain fraction above the peak demand to which renewable generators and storage do *not* contribute. Ignores network., ``solve_network`` `add_opts_constraints() `__, Untested -``carrier+{c|p}factor``, "Alter the capital cost (``c``) or installable potential (``p``) of a carrier by a factor. Example: ``solar+c0.5`` reduces the capital cost of solar to 50\% of original values.", ``prepare_network``, In active use +``carrier+{c|p|m}factor``,"Alter the capital cost (``c``), installable potential (``p``) or marginal costs (``m``) of a carrier by a factor. Example: ``solar+c0.5`` reduces the capital cost of solar to 50\% of original values.", ``prepare_network``, In active use +``CH4L``,"Add an overall absolute gas limit. If configured in ``electricity: gaslimit`` it is given in MWh thermal, if a float is appended, the overall gaslimit is assumed to be given in TWh thermal (e.g. ``CH4L200`` limits gas dispatch to 200 TWh termal)", ``prepare_network``: ``add_gaslimit()``, In active use diff --git a/doc/configtables/plotting.csv b/doc/configtables/plotting.csv index f5910e16..bea345ca 100644 --- a/doc/configtables/plotting.csv +++ b/doc/configtables/plotting.csv @@ -1,10 +1,6 @@ ,Unit,Values,Description map,,, --- figsize,--,"[width, height]; e.g. [7,7]","Figure size in inches." -- boundaries,°,"[x1,x2,y1,y2]","Boundaries of the map plots in degrees latitude (y) and longitude (x)" --- p_nom,,, --- -- bus_size_factor,--,float,"Factor by which values determining bus sizes are scaled to fit well in the plot." --- -- linewidth_factor,--,float,"Factor by which values determining bus sizes are scaled to fit well in the plot." costs_max,bn Euro,float,"Upper y-axis limit in cost bar plots." costs_threshold,bn Euro,float,"Threshold below which technologies will not be shown in cost bar plots." energy_max,TWh,float,"Upper y-axis limit in energy bar plots." diff --git a/doc/configtables/run.csv b/doc/configtables/run.csv new file mode 100644 index 00000000..90cf65ad --- /dev/null +++ b/doc/configtables/run.csv @@ -0,0 +1,5 @@ +,Unit,Values,Description +name,--,"any string","Specify a name for your run. Results will be stored under this name." +disable_progrssbar,bool,"{true, false}","Switch to select whether progressbar should be disabled." +shared_resources,bool,"{true, false}","Switch to select whether resources should be shared across runs." +shared_cutouts,bool,"{true, false}","Switch to select whether cutouts should be shared across runs." diff --git a/doc/configtables/scenario.csv b/doc/configtables/scenario.csv index a82462e4..d456be80 100644 --- a/doc/configtables/scenario.csv +++ b/doc/configtables/scenario.csv @@ -3,3 +3,5 @@ simpl,--,cf. :ref:`simpl`,"List of ``{simpl}`` wildcards to run." clusters,--,cf. :ref:`clusters`,"List of ``{clusters}`` wildcards to run." ll,--,cf. :ref:`ll`,"List of ``{ll}`` wildcards to run." opts,--,cf. :ref:`opts`,"List of ``{opts}`` wildcards to run." +sector_opts,--,cf. :ref:`sector_opts`,"List of ``{sector_opts}`` wildcards to run." +planning_horizons,--,cf. :ref:`planning_horizons`,"List of ``{planning_horizon}`` wildcards to run." diff --git a/doc/configtables/sector-opts.csv b/doc/configtables/sector-opts.csv new file mode 100644 index 00000000..5a6b6852 --- /dev/null +++ b/doc/configtables/sector-opts.csv @@ -0,0 +1,11 @@ +Trigger, Description, Definition, Status +``nH``, i.e. ``2H``-``6H``, Resample the time-resolution by averaging over every ``n`` snapshots, ``prepare_network``: `average_every_nhours() `_ and its `caller `__), In active use +``Co2L``, Add an overall absolute carbon-dioxide emissions limit configured in ``electricity: co2limit``. If a float is appended an overall emission limit relative to the emission level given in ``electricity: co2base`` is added (e.g. ``Co2L0.05`` limits emissisions to 5% of what is given in ``electricity: co2base``), ``prepare_network``: `add_co2limit() `_ and its `caller `__, In active use +``carrier+{c|p|m}factor``,"Alter the capital cost (``c``), installable potential (``p``) or marginal costs (``m``) of a carrier by a factor. Example: ``solar+c0.5`` reduces the capital cost of solar to 50\% of original values.", ``prepare_network``, In active use +``T``,Add land transport sector,,In active use +``H``,Add heating sector,,In active use +``B``,Add biomass,,In active use +``I``,Add industry sector,,In active use +``A``,Add agriculture sector,,In active use +``dist``+``n``,Add distribution grid with investment costs of ``n`` times costs in ``data/costs_{cost_year}.csv``,,In active use +``seq``+``n``,Sets the CO2 sequestration potential to ``n`` Mt CO2 per year,,In active use diff --git a/doc/configtables/snapshots.csv b/doc/configtables/snapshots.csv index 4d917f4d..d60c78dc 100644 --- a/doc/configtables/snapshots.csv +++ b/doc/configtables/snapshots.csv @@ -1,4 +1,4 @@ ,Unit,Values,Description start,--,"str or datetime-like; e.g. YYYY-MM-DD","Left bound of date range" end,--,"str or datetime-like; e.g. YYYY-MM-DD","Right bound of date range" -closed,--,"One of {None, ‘left’, ‘right’}","Make the time interval closed to the ``left``, ``right``, or both sides ``None``." +inclusive,--,"One of {'neither', 'both', ‘left’, ‘right’}","Make the time interval closed to the ``left``, ``right``, or both sides ``both`` or neither side ``None``." diff --git a/doc/configtables/solar.csv b/doc/configtables/solar.csv index 7be39c04..803445d5 100644 --- a/doc/configtables/solar.csv +++ b/doc/configtables/solar.csv @@ -12,4 +12,4 @@ corine,--,"Any subset of the `CORINE Land Cover code list `_ natural protection areas. Area is excluded if ``true``." potential,--,"One of {'simple', 'conservative'}","Method to compute the maximal installable potential for a node; confer :ref:`renewableprofiles`" clip_p_max_pu,p.u.,float,"To avoid too small values in the renewables` per-unit availability time series values below this threshold are set to zero." -keep_all_available_areas,bool,"{'true', 'false'}","Use all availabe weather cells for renewable profile and potential generation. The default ignores weather cells where only less than 1 MW can be installed." +excluder_resolution,m,float,"Resolution on which to perform geographical elibility analysis." diff --git a/doc/configtables/solving-options.csv b/doc/configtables/solving-options.csv deleted file mode 100644 index f77eec24..00000000 --- a/doc/configtables/solving-options.csv +++ /dev/null @@ -1,10 +0,0 @@ -,Unit,Values,Description -formulation,--,"Any of {'angles', 'kirchhoff', 'cycles', 'ptdf'}","Specifies which variant of linearized power flow formulations to use in the optimisation problem. Recommended is 'kirchhoff'. Explained in `this article `_." -load_shedding,bool,"{'true','false'}","Add generators with a prohibitively high marginal cost to simulate load shedding and avoid problem infeasibilities." -noisy_costs,bool,"{'true','false'}","Add random noise to marginal cost of generators by :math:`\mathcal{U}(0.009,0,011)` and capital cost of lines and links by :math:`\mathcal{U}(0.09,0,11)`." -min_iterations,--,int,"Minimum number of solving iterations in between which resistance and reactence (``x/r``) are updated for branches according to ``s_nom_opt`` of the previous run." -max_iterations,--,int,"Maximum number of solving iterations in between which resistance and reactence (``x/r``) are updated for branches according to ``s_nom_opt`` of the previous run." -nhours,--,int,"Specifies the :math:`n` first snapshots to take into account. Must be less than the total number of snapshots. Rather recommended only for debugging." -clip_p_max_pu,p.u.,float,"To avoid too small values in the renewables` per-unit availability time series values below this threshold are set to zero." -skip_iterations,bool,"{'true','false'}","Skip iterating, do not update impedances of branches." -track_iterations,bool,"{'true','false'}","Flag whether to store the intermediate branch capacities and objective function values are recorded for each iteration in ``network.lines['s_nom_opt_X']`` (where ``X`` labels the iteration)" diff --git a/doc/configtables/solving-solver.csv b/doc/configtables/solving-solver.csv deleted file mode 100644 index e9146dfc..00000000 --- a/doc/configtables/solving-solver.csv +++ /dev/null @@ -1,3 +0,0 @@ -,Unit,Values,Description -name,--,"One of {'gurobi', 'cplex', 'cbc', 'glpk', 'ipopt'}; potentially more possible","Solver to use for optimisation problems in the workflow; e.g. clustering and linear optimal power flow." -opts,--,"Parameter list for `Gurobi `_ and `CPLEX `_","Solver specific parameter settings." diff --git a/doc/configtables/solving.csv b/doc/configtables/solving.csv new file mode 100644 index 00000000..c252ff32 --- /dev/null +++ b/doc/configtables/solving.csv @@ -0,0 +1,17 @@ +,Unit,Values,Description +options,,, +-- load_shedding,bool/float,"{'true','false', float}","Add generators with very high marginal cost to simulate load shedding and avoid problem infeasibilities. If load shedding is a float, it denotes the marginal cost in EUR/kWh." +-- transmission_losses,int,"[0-9]","Add piecewise linear approximation of transmission losses based on n tangents. Defaults to 0, which means losses are ignored." +-- noisy_costs,bool,"{'true','false'}","Add random noise to marginal cost of generators by :math:`\mathcal{U}(0.009,0,011)` and capital cost of lines and links by :math:`\mathcal{U}(0.09,0,11)`." +-- min_iterations,--,int,"Minimum number of solving iterations in between which resistance and reactence (``x/r``) are updated for branches according to ``s_nom_opt`` of the previous run." +-- max_iterations,--,int,"Maximum number of solving iterations in between which resistance and reactence (``x/r``) are updated for branches according to ``s_nom_opt`` of the previous run." +-- nhours,--,int,"Specifies the :math:`n` first snapshots to take into account. Must be less than the total number of snapshots. Rather recommended only for debugging." +-- clip_p_max_pu,p.u.,float,"To avoid too small values in the renewables` per-unit availability time series values below this threshold are set to zero." +-- skip_iterations,bool,"{'true','false'}","Skip iterating, do not update impedances of branches. Defaults to true." +-- track_iterations,bool,"{'true','false'}","Flag whether to store the intermediate branch capacities and objective function values are recorded for each iteration in ``network.lines['s_nom_opt_X']`` (where ``X`` labels the iteration)" +-- seed,--,int,"Random seed for increased deterministic behaviour." +solver,,, +-- name,--,"One of {'gurobi', 'cplex', 'cbc', 'glpk', 'ipopt'}; potentially more possible","Solver to use for optimisation problems in the workflow; e.g. clustering and linear optimal power flow." +-- options,--,"Key listed under ``solver_options``.","Link to specific parameter settings." +solver_options,,"dict","Dictionaries with solver-specific parameter settings." +mem,MB,"int","Estimated maximum memory requirement for solving networks." diff --git a/doc/configtables/toplevel.csv b/doc/configtables/toplevel.csv index b7f39d05..8a4b443c 100644 --- a/doc/configtables/toplevel.csv +++ b/doc/configtables/toplevel.csv @@ -1,17 +1,10 @@ ,Unit,Values,Description -version,--,0.x.x,"Version of PyPSA-Eur" +version,--,0.x.x,"Version of PyPSA-Eur. Descriptive only." tutorial,bool,"{true, false}","Switch to retrieve the tutorial data set instead of the full data set." logging,,, -- level,--,"Any of {'INFO', 'WARNING', 'ERROR'}","Restrict console outputs to all infos, warning or errors only" -- format,--,"","Custom format for log messages. See `LogRecord `_ attributes." -summary_dir,--,"e.g. 'results'","Directory into which results are written." +foresight,string,"{overnight, myopic, perfect}","Defaults to overnight scenarios." countries,--,"Subset of {'AL', 'AT', 'BA', 'BE', 'BG', 'CH', 'CZ', 'DE', 'DK', 'EE', 'ES', 'FI', 'FR', 'GB', 'GR', 'HR', 'HU', 'IE', 'IT', 'LT', 'LU', 'LV', 'ME', 'MK', 'NL', 'NO', 'PL', 'PT', 'RO', 'RS', 'SE', 'SI', 'SK'}","European countries defined by their `Two-letter country codes (ISO 3166-1) `_ which should be included in the energy system model." focus_weights,--,"Keys should be two-digit country codes (e.g. DE) and values should range between 0 and 1","Ratio of total clusters for particular countries. the remaining weight is distributed according to mean load. An example: ``focus_weights: 'DE': 0.6 'FR': 0.2``." -enable,,, --- prepare_links_p_nom,bool,"{true, false}","Switch to retrieve current HVDC projects from `Wikipedia `_" --- retrieve_databundle,bool,"{true, false}","Switch to retrieve databundle from zenodo via the rule :mod:`retrieve_databundle` or whether to keep a custom databundle located in the corresponding folder." --- build_cutout,bool,"{true, false}","Switch to enable the building of cutouts via the rule :mod:`build_cutout`." --- retrieve_cutout,bool,"{true, false}","Switch to enable the retrieval of cutouts from zenodo with :mod:`retrieve_cutout`." --- build_natura_raster,bool,"{true, false}","Switch to enable the creation of the raster ``natura.tiff`` via the rule :mod:`build_natura_raster`." --- retrieve_natura_raster,bool,"{true, false}","Switch to enable the retrieval of ``natura.tiff`` from zenodo with :mod:`retrieve_natura_raster`." --- custom_busmap,bool,"{true, false}","Switch to enable the use of custom busmaps in rule :mod:`cluster_network`. If activated the rule looks for provided busmaps at ``data/custom_busmap_elec_s{simpl}_{clusters}.csv`` which should have the same format as ``resources/busmap_elec_s{simpl}_{clusters}.csv``, i.e. the index should contain the buses of ``networks/elec_s{simpl}.nc``." +co2_budget,--,"Dictionary with planning horizons as keys.","CO2 budget as a fraction of 1990 emissions. Overwritten if ``CO2Lx`` or ``cb`` are set in ``{sector_opts}`` wildcard" diff --git a/doc/configuration.rst b/doc/configuration.rst index a448f817..ee61c018 100644 --- a/doc/configuration.rst +++ b/doc/configuration.rst @@ -1,5 +1,5 @@ .. - SPDX-FileCopyrightText: 2019-2020 The PyPSA-Eur Authors + SPDX-FileCopyrightText: 2019-2023 The PyPSA-Eur Authors SPDX-License-Identifier: CC-BY-4.0 @@ -9,16 +9,16 @@ Configuration ########################################## -PyPSA-Eur has several configuration options which are documented in this section and are collected in a ``config.yaml`` file located in the root directory. Users should copy the provided default configuration (``config.default.yaml``) and amend their own modifications and assumptions in the user-specific configuration file (``config.yaml``); confer installation instructions at :ref:`defaultconfig`. +PyPSA-Eur has several configuration options which are documented in this section and are collected in a ``config/config.yaml`` file located in the root directory. Users should copy the provided default configuration (``config/config.default.yaml``) and amend their own modifications and assumptions in the user-specific configuration file (``config/config.yaml``); confer installation instructions at :ref:`defaultconfig`. .. _toplevel_cf: Top-level configuration ======================= -.. literalinclude:: ../config.default.yaml +.. literalinclude:: ../config/config.default.yaml :language: yaml - :lines: 5-12,20,31-38 + :lines: 5-11,18-19,62,80-90 .. csv-table:: @@ -28,28 +28,55 @@ Top-level configuration .. _scenario: -``scenario`` -============ +``run`` +======= It is common conduct to analyse energy system optimisation models for **multiple scenarios** for a variety of reasons, e.g. assessing their sensitivity towards changing the temporal and/or geographical resolution or investigating how investment changes as more ambitious greenhouse-gas emission reduction targets are applied. +The ``run`` section is used for running and storing scenarios with different configurations which are not covered by :ref:`wildcards`. It determines the path at which resources, networks and results are stored. Therefore the user can run different configurations within the same directory. If a run with a non-empty name should use cutouts shared across runs, set ``shared_cutouts`` to `true`. + +.. literalinclude:: ../config/config.default.yaml + :language: yaml + :start-at: run: + :end-before: foresight: + +.. csv-table:: + :header-rows: 1 + :widths: 25,7,22,30 + :file: configtables/run.csv + +``scenario`` +============ + The ``scenario`` section is an extraordinary section of the config file that is strongly connected to the :ref:`wildcards` and is designed to facilitate running multiple scenarios through a single command .. code:: bash - snakemake -j 1 solve_all_networks + # for electricity-only studies + snakemake -call solve_elec_networks -For each wildcard, a **list of values** is provided. The rule ``solve_all_networks`` will trigger the rules for creating ``results/networks/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.nc`` for **all combinations** of the provided wildcard values as defined by Python's `itertools.product(...) `_ function that snakemake's `expand(...) function `_ uses. + # for sector-coupling studies + snakemake -call solve_sector_networks + +For each wildcard, a **list of values** is provided. The rule +``solve_all_elec_networks`` will trigger the rules for creating +``results/networks/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.nc`` for **all +combinations** of the provided wildcard values as defined by Python's +`itertools.product(...) +`_ function +that snakemake's `expand(...) function +`_ +uses. An exemplary dependency graph (starting from the simplification rules) then looks like this: .. image:: img/scenarios.png -.. literalinclude:: ../config.default.yaml +.. literalinclude:: ../config/config.default.yaml :language: yaml :start-at: scenario: :end-before: countries: @@ -66,7 +93,7 @@ An exemplary dependency graph (starting from the simplification rules) then look Specifies the temporal range to build an energy system model for as arguments to `pandas.date_range `_ -.. literalinclude:: ../config.default.yaml +.. literalinclude:: ../config/config.default.yaml :language: yaml :start-at: snapshots: :end-before: enable: @@ -76,12 +103,29 @@ Specifies the temporal range to build an energy system model for as arguments to :widths: 25,7,22,30 :file: configtables/snapshots.csv +.. _enable_cf: + +``enable`` +========== + +Switches for some rules and optional features. + +.. literalinclude:: ../config/config.default.yaml + :language: yaml + :start-at: enable: + :end-before: co2_budget: + +.. csv-table:: + :header-rows: 1 + :widths: 25,7,22,30 + :file: configtables/enable.csv + .. _electricity_cf: ``electricity`` =============== -.. literalinclude:: ../config.default.yaml +.. literalinclude:: ../config/config.default.yaml :language: yaml :start-at: electricity: :end-before: atlite: @@ -91,9 +135,6 @@ Specifies the temporal range to build an energy system model for as arguments to :widths: 25,7,22,30 :file: configtables/electricity.csv -.. warning:: - Carriers in ``conventional_carriers`` must not also be in ``extendable_carriers``. - .. _atlite_cf: ``atlite`` @@ -101,7 +142,7 @@ Specifies the temporal range to build an energy system model for as arguments to Define and specify the ``atlite.Cutout`` used for calculating renewable potentials and time-series. All options except for ``features`` are directly used as `cutout parameters `_. -.. literalinclude:: ../config.default.yaml +.. literalinclude:: ../config/config.default.yaml :language: yaml :start-at: atlite: :end-before: renewable: @@ -119,7 +160,7 @@ Define and specify the ``atlite.Cutout`` used for calculating renewable potentia ``onwind`` ---------- -.. literalinclude:: ../config.default.yaml +.. literalinclude:: ../config/config.default.yaml :language: yaml :start-at: renewable: :end-before: offwind-ac: @@ -132,7 +173,7 @@ Define and specify the ``atlite.Cutout`` used for calculating renewable potentia ``offwind-ac`` -------------- -.. literalinclude:: ../config.default.yaml +.. literalinclude:: ../config/config.default.yaml :language: yaml :start-at: offwind-ac: :end-before: offwind-dc: @@ -145,7 +186,7 @@ Define and specify the ``atlite.Cutout`` used for calculating renewable potentia ``offwind-dc`` --------------- -.. literalinclude:: ../config.default.yaml +.. literalinclude:: ../config/config.default.yaml :language: yaml :start-at: offwind-dc: :end-before: solar: @@ -158,7 +199,7 @@ Define and specify the ``atlite.Cutout`` used for calculating renewable potentia ``solar`` --------------- -.. literalinclude:: ../config.default.yaml +.. literalinclude:: ../config/config.default.yaml :language: yaml :start-at: solar: :end-before: hydro: @@ -171,10 +212,10 @@ Define and specify the ``atlite.Cutout`` used for calculating renewable potentia ``hydro`` --------------- -.. literalinclude:: ../config.default.yaml +.. literalinclude:: ../config/config.default.yaml :language: yaml :start-at: hydro: - :end-before: lines: + :end-before: conventional: .. csv-table:: :header-rows: 1 @@ -183,10 +224,30 @@ Define and specify the ``atlite.Cutout`` used for calculating renewable potentia .. _lines_cf: +``conventional`` +================ + +Define additional generator attribute for conventional carrier types. If a +scalar value is given it is applied to all generators. However if a string +starting with "data/" is given, the value is interpreted as a path to a csv file +with country specific values. Then, the values are read in and applied to all +generators of the given carrier in the given country. Note that the value(s) +overwrite the existing values. + +.. literalinclude:: ../config/config.default.yaml + :language: yaml + :start-at: conventional: + :end-before: lines: + +.. csv-table:: + :header-rows: 1 + :widths: 25,7,22,30 + :file: configtables/conventional.csv + ``lines`` ============= -.. literalinclude:: ../config.default.yaml +.. literalinclude:: ../config/config.default.yaml :language: yaml :start-at: lines: :end-before: links: @@ -201,7 +262,7 @@ Define and specify the ``atlite.Cutout`` used for calculating renewable potentia ``links`` ============= -.. literalinclude:: ../config.default.yaml +.. literalinclude:: ../config/config.default.yaml :language: yaml :start-at: links: :end-before: transformers: @@ -216,7 +277,7 @@ Define and specify the ``atlite.Cutout`` used for calculating renewable potentia ``transformers`` ================ -.. literalinclude:: ../config.default.yaml +.. literalinclude:: ../config/config.default.yaml :language: yaml :start-at: transformers: :end-before: load: @@ -231,10 +292,10 @@ Define and specify the ``atlite.Cutout`` used for calculating renewable potentia ``load`` ============= -.. literalinclude:: ../config.default.yaml +.. literalinclude:: ../config/config.default.yaml :language: yaml - :start-at: load: - :end-before: costs: + :start-after: type: + :end-at: scaling_factor: .. csv-table:: :header-rows: 1 @@ -246,57 +307,159 @@ Define and specify the ``atlite.Cutout`` used for calculating renewable potentia ``costs`` ============= -.. literalinclude:: ../config.default.yaml +.. literalinclude:: ../config/config.default.yaml :language: yaml - :start-after: scaling_factor: - :end-before: solving: + :start-at: costs: + :end-before: clustering: .. csv-table:: :header-rows: 1 :widths: 25,7,22,30 :file: configtables/costs.csv + +.. _clustering_cf: + +``clustering`` +============== + +.. literalinclude:: ../config/config.default.yaml + :language: yaml + :start-at: clustering: + :end-before: solving: + +.. csv-table:: + :header-rows: 1 + :widths: 25,7,22,30 + :file: configtables/clustering.csv + + +.. _energy_cf: + +``energy`` +======================= + .. note:: - To change cost assumptions in more detail (i.e. other than ``marginal_cost`` and ``capital_cost``), consider modifying cost assumptions directly in ``data/costs.csv`` as this is not yet supported through the config file. - You can also build multiple different cost databases. Make a renamed copy of ``data/costs.csv`` (e.g. ``data/costs-optimistic.csv``) and set the variable ``COSTS=data/costs-optimistic.csv`` in the ``Snakefile``. + Only used for sector-coupling studies. + +.. warning:: + More comprehensive documentation for this segment will be released soon. + +.. literalinclude:: ../config/config.default.yaml + :language: yaml + :start-at: energy: + :end-before: biomass: + + +.. _biomass_cf: + +``biomass`` +======================= + +.. note:: + Only used for sector-coupling studies. + +.. warning:: + More comprehensive documentation for this segment will be released soon. + +.. literalinclude:: ../config/config.default.yaml + :language: yaml + :start-at: biomass: + :end-before: solar_thermal: + +.. _solar_thermal_cf: + +``solar_thermal`` +======================= + +.. note:: + Only used for sector-coupling studies. + +.. warning:: + More comprehensive documentation for this segment will be released soon. + +.. literalinclude:: ../config/config.default.yaml + :language: yaml + :start-at: solar_thermal: + :end-before: existing_capacities: + +.. _existing_capacities_cf: + +``existing_capacities`` +======================= + +.. note:: + Only used for sector-coupling studies. + +.. warning:: + More comprehensive documentation for this segment will be released soon. + +.. literalinclude:: ../config/config.default.yaml + :language: yaml + :start-at: existing_capacities: + :end-before: sector: + +.. _sector_cf: + +``sector`` +======================= + +.. note:: + Only used for sector-coupling studies. + +.. warning:: + More comprehensive documentation for this segment will be released soon. + +.. literalinclude:: ../config/config.default.yaml + :language: yaml + :start-at: sector: + :end-before: industry: + +.. _industry_cf: + +``industry`` +======================= + +.. note:: + Only used for sector-coupling studies. + +.. warning:: + More comprehensive documentation for this segment will be released soon. + +.. literalinclude:: ../config/config.default.yaml + :language: yaml + :start-at: industry: + :end-before: costs: .. _solving_cf: ``solving`` ============= -``options`` ------------ - -.. literalinclude:: ../config.default.yaml +.. literalinclude:: ../config/config.default.yaml :language: yaml :start-at: solving: - :end-before: solver: - -.. csv-table:: - :header-rows: 1 - :widths: 25,7,22,30 - :file: configtables/solving-options.csv - -``solver`` ----------- - -.. literalinclude:: ../config.default.yaml - :language: yaml - :start-at: solver: :end-before: plotting: .. csv-table:: :header-rows: 1 :widths: 25,7,22,30 - :file: configtables/solving-solver.csv + :file: configtables/solving.csv + +.. csv-table:: + :header-rows: 1 + :widths: 25,7,22,30 + :file: configtables/solving.csv .. _plotting_cf: ``plotting`` ============= -.. literalinclude:: ../config.default.yaml +.. warning:: + More comprehensive documentation for this segment will be released soon. + +.. literalinclude:: ../config/config.default.yaml :language: yaml :start-at: plotting: diff --git a/doc/contributing.rst b/doc/contributing.rst index d57f1212..30de4f7e 100644 --- a/doc/contributing.rst +++ b/doc/contributing.rst @@ -1,5 +1,5 @@ .. - SPDX-FileCopyrightText: 2019-2020 The PyPSA-Eur Authors + SPDX-FileCopyrightText: 2019-2023 The PyPSA-Eur Authors SPDX-License-Identifier: CC-BY-4.0 @@ -7,20 +7,31 @@ Contributing ####################### -We happily welcome anyone interested in contributing to this project, -be it with new ideas, suggestions, by filing bug reports or contributing code -to our `GitHub repository `_. +We welcome anyone interested in contributing to this project, be it with new +ideas, suggestions, by filing bug reports or contributing code to our `GitHub +repository `_. * If you already have some code changes, you can submit them directly as a `pull request `_. * If you are wondering where we would greatly appreciate your efforts, check out the ``help wanted`` tag in the `issues list `_ and initiate a discussion there. * If you start working on a feature in the code, let us know by opening an issue or a draft pull request. This helps all of us to keep an overview on what is being done and helps to avoid a situation where we are doing the same work twice in parallel. -* We encourage you to use the `PEP 8 coding style `_. + +For linting, formatting and checking your code contributions +against our guidelines (e.g. we use `Black `_ as code style +use `pre-commit `_: + +1. Installation ``mamba install -c conda-forge pre-commit`` or ``pip install pre-commit`` +2. Usage: + * To automatically activate ``pre-commit`` on every ``git commit``: Run ``pre-commit install`` + * To manually run it: ``pre-commit run --all`` + +.. note:: + Note that installing ``pre-commit`` locally is not strictly necessary. If you create a Pull Request the ``pre-commit CI`` will be triggered automatically and take care of the checks. For all code contributions we follow the four eyes principle (two person principle), i.e. all suggested code -including our own are reviewed by a second person before they are incoporated into our repository. +including our own are reviewed by a second person before they are incorporated into our repository. If you are unfamiliar with pull requests, the GitHub help pages have a nice `guide `_. -To ask and answer general usage questions, join the `PyPSA and PyPSA-Eur mailing list `_. +To ask and answer general usage questions, join the `PyPSA mailing list `_. diff --git a/doc/costs.rst b/doc/costs.rst index 5ced95dc..21938ced 100644 --- a/doc/costs.rst +++ b/doc/costs.rst @@ -1,16 +1,24 @@ .. - SPDX-FileCopyrightText: 2019-2020 The PyPSA-Eur Authors + SPDX-FileCopyrightText: 2019-2023 The PyPSA-Eur Authors SPDX-License-Identifier: CC-BY-4.0 -################## -Cost Assumptions -################## +############################ +Techno-Economic Assumptions +############################ -The database of cost assumptions is stored in ``data/costs.csv``. +The database of cost assumptions is retrieved from the repository +`PyPSA/technology-data `_ and then +saved to a file ``data/costs_{year}.csv``. The ``config/config.yaml`` provides options +to choose a reference year and use a specific version of the repository. -It includes cost assumptions for all included technologies for specific -years from various sources, namely for +.. literalinclude:: ../config.default.yaml + :language: yaml + :start-at: costs: + :end-at: version: + +The file includes cost assumptions for all included technologies for specific +years compiled from various sources, namely for - discount rate, - lifetime, @@ -21,6 +29,10 @@ years from various sources, namely for - efficiency, and - carbon-dioxide intensity. +Many values are taken from a database published by the Danish Energy Agency (`DEA +`_). + + The given overnight capital costs are annualised to net present costs with a discount rate of :math:`r` over the economic lifetime :math:`n` using the annuity factor @@ -28,26 +40,18 @@ with a discount rate of :math:`r` over the economic lifetime :math:`n` using the a = \frac{1-(1+r)^{-n}}{r}. -Based on the parameters above the ``marginal_cost`` and ``capital_cost`` of the system components are calculated. - -.. note:: - - Another great resource for cost assumptions is the `cost database from the Danish Energy Agency `_. - -Modifying Cost Assumptions -========================== - -Some cost assumptions (e.g. marginal cost and capital cost) can be directly overwritten in the ``config.yaml`` (cf. Section :ref:`costs_cf` in :ref:`config`). - -To change cost assumptions in more detail, modify cost assumptions directly in ``data/costs.csv`` as this is not yet supported through the config file. - -You can also build multiple different cost databases. Make a renamed copy of ``data/costs.csv`` (e.g. ``data/costs-optimistic.csv``) and set the variable ``COSTS=data/costs-optimistic.csv`` in the ``Snakefile``. +Based on the parameters above the ``marginal_cost`` and ``capital_cost`` of the +system components are automatically calculated. -Default Cost Assumptions -======================== +Modifying Assumptions +===================== -.. csv-table:: - :header-rows: 1 - :widths: 10,3,5,4,6,8 - :file: ../data/costs.csv +Some cost assumptions (e.g. marginal cost and capital cost) can be directly +set in the ``config/config.yaml`` (cf. Section :ref:`costs_cf` in +:ref:`config`). To change cost assumptions in more detail, make a copy of +``data/costs_{year}.csv`` and reference the new cost file in the ``Snakefile``: + +.. literalinclude:: ../Snakefile + :start-at: COSTS + :end-at: COSTS diff --git a/doc/foresight.rst b/doc/foresight.rst new file mode 100644 index 00000000..9b821060 --- /dev/null +++ b/doc/foresight.rst @@ -0,0 +1,271 @@ +.. + SPDX-FileCopyrightText: 2021-2023 The PyPSA-Eur Authors + + SPDX-License-Identifier: CC-BY-4.0 + +.. _foresight: + +##################### +Foresight Options +##################### + +.. _overnight: + +Overnight (greenfield) scenarios +================================ + +The default is to calculate a rebuilding of the energy system to meet demand, a so-called overnight or greenfield approach. + +In this case, the ``planning_horizons`` parameter specifies the reference year for exogenously given transition paths (e.g. the level of steel recycling). +It does not affect the year for cost and technology assumptions, which is set separately in the config. + +.. code:: yaml + + scenario: + planning_horizons: + - 2050 + + costs: + year: 2030 + +For running overnight scenarios, use in the ``config/config.yaml``: + +.. code:: yaml + + foresight: overnight + +.. _perfect: + +Perfect foresight scenarios +=========================== + +.. warning:: + + Perfect foresight is currently under development and not yet implemented. + +For running perfect foresight scenarios, in future versions you will be able to +set in the ``config/config.yaml``: + +.. code:: yaml + + foresight: perfect + + +.. _myopic: + +Myopic foresight scenarios +============================= + +The myopic code can be used to investigate progressive changes in a network, for +instance, those taking place throughout a transition path. The capacities +installed in a certain time step are maintained in the network until their +operational lifetime expires. + +The myopic approach was initially developed and used in the paper `Early +decarbonisation of the European Energy system pays off (2020) +`__ and later further +extended in `Speed of technological transformations required in Europe to +achieve different climate goals (2022) +`__. The current implementation +complies with the PyPSA-Eur-Sec standard working flow and is compatible with +using the higher resolution electricity transmission model `PyPSA-Eur +`__ rather than a one-node-per-country +model. + +The current code applies the myopic approach to generators, storage technologies +and links in the power sector. It furthermore applies it to the space and water +heating sector (e.g., the share of district heating and reduced space heat +demand), industry processes (e.g., steel, direct reduced iron, and aluminum +production via primary route), the share of fuel cell and battery electric +vehicles in land transport, and the hydrogen share in shipping (see +:doc:`supply_demand` for further information). + +The following subjects within the land transport and biomass currently do not +evolve with the myopic approach: + +- The percentage of electric vehicles that allow demand-side management and + vehicle-to-grid services. + +- The annual biomass potential (default year and scenario for which potential is + taken is 2030, defined `here + `_) + + +Configuration +-------------- + +For running myopic foresight transition scenarios, set in ``config/config.yaml``: + +.. code:: yaml + + foresight: myopic + +The following options included in the ``config/config.yaml`` file are relevant for the +myopic code. + +The ``{planning_horizons}`` wildcard indicates the year in which the network is +optimized. For a myopic optimization, this is equivalent to the investment year. +To set the investment years which are sequentially simulated for the myopic +investment planning, select for example: + +.. literalinclude:: ../test/config.myopic.yaml + :language: yaml + :start-at: planning_horizons: + :end-before: countries: + + +**existing capacities** + +Grouping years indicates the bins limits for grouping the existing capacities of +different technologies. Note that separate bins are defined for the power and +heating plants due to different data sources. + +``grouping_years_power: [1980, 1985, 1990, 1995, 2000, 2005, 2010, 2015, 2020, +2025, 2030]`` + +``grouping_years_heat: [1980, 1985, 1990, 1995, 2000, 2005, 2010, 2015, 2019]`` + + + + + +**threshold capacity** + +If for a technology, node, and grouping bin, the capacity is lower than +threshold_capacity, it is ignored. + +``threshold_capacity: 10`` + + + + +**conventional carriers** + +Conventional carriers indicate carriers used in the existing conventional +technologies. + + conventional_carriers: + + \- lignite + + \- coal + + \- oil + + \- uranium + + + + +Options +-------------- + +The total carbon budget for the entire transition path can be indicated in the +`sector_opts +`_ +in ``config/config.yaml``. The carbon budget can be split among the +``planning_horizons`` following an exponential or beta decay. E.g. ``'cb40ex0'`` +splits a carbon budget equal to 40 Gt :math:`_{CO_2}` following an exponential +decay whose initial linear growth rate r is zero. They can also follow some +user-specified path, if defined `here +`_. +The paper `Speed of technological transformations required in Europe to achieve +different climate goals (2022) `__ +defines CO_2 budgets corresponding to global temperature increases (1.5C – 2C) +as response to the emissions. Here, global carbon budgets are converted to +European budgets assuming equal-per capita distribution which translates into a +6.43% share for Europe. The carbon budgets are in this paper distributed +throughout the transition paths assuming an exponential decay. Emissions e(t) in +every year t are limited by + +.. math:: + e(t) = e_0 (1+ (r+m)t) e^{-mt} + +where r is the initial linear growth rate, which here is assumed to be r=0, and +the decay parameter m is determined by imposing the integral of the path to be +equal to the budget for Europe. Following this approach, the CO_2 budget is +defined. Following the same approach as in this paper, add the following to the +``scenario.sector_opts`` E.g. ``-cb25.7ex0`` (1.5C increase) Or ``cb73.9ex0`` +(2C increase). See details in Supplemental Note S1 `Speed of technological +transformations required in Europe to achieve different climate goals (2022) +`__. + + +General myopic code structure +--------------------------------- + +The myopic code solves the network for the time steps included in +``planning_horizons`` in a recursive loop, so that: + +1. The existing capacities (those installed before the base year are added as + fixed capacities with p_nom=value, p_nom_extendable=False). E.g. for + baseyear=2020, capacities installed before 2020 are added. In addition, the + network comprises additional generator, storage, and link capacities with + p_nom_extendable=True. The non-solved network is saved in + ``results/run_name/networks/prenetworks-brownfield``. +The base year is the first element in ``planning_horizons``. Step 1 is +implemented with the rule add_baseyear for the base year and with the rule +add_brownfield for the remaining planning_horizons. + +2. The 2020 network is optimized. The solved network is saved in + ``results/run_name/networks/postnetworks`` + +3. For the next planning horizon, e.g. 2030, the capacities from a previous time + step are added if they are still in operation (i.e., if they fulfil planning + horizon <= commissioned year + lifetime). In addition, the network comprises + additional generator, storage, and link capacities with + p_nom_extendable=True. The non-solved network is saved in + ``results/run_name/networks/prenetworks-brownfield``. + +Steps 2 and 3 are solved recursively for all the planning_horizons included in +``config/config.yaml``. + +Rule overview +-------------- + +- rule add_existing baseyear + + The rule add_existing_baseyear loads the network in + ‘results/run_name/networks/prenetworks’ and performs the following operations: + + 1. Add the conventional, wind and solar power generators that were installed + before the base year. + + 2. Add the heating capacities that were installed before the base year. + + The existing conventional generators are retrieved from the `powerplants.csv + file + `__ + generated by pypsa-eur which, in turn, is based on the `powerplantmatching + `__ database. + + Existing wind and solar capacities are retrieved from `IRENA annual statistics + `__ and distributed among the + nodes in a country proportional to capacity factor. (This will be updated to + include capacity distributions closer to reality.) + + Existing heating capacities are retrieved from the report `Mapping and + analyses of the current and future (2020 - 2030) heating/cooling fuel + deployment (fossil/renewables) + `__. + + The heating capacities are assumed to have a lifetime indicated by the + parameter lifetime in the configuration file, e.g 25 years. They are assumed + to be decommissioned linearly starting on the base year, e.g., from 2020 to + 2045. + + Then, the resulting network is saved in + ``results/run_name/networks/prenetworks-brownfield``. + +- rule add_brownfield + + The rule add_brownfield loads the network in + ``results/run_name/networks/prenetworks`` and performs the following + operation: + + 1. Read the capacities optimized in the previous time step and add them to the + network if they are still in operation (i.e., if they fulfill planning + horizon < commissioned year + lifetime) + + Then, the resulting network is saved in + ``results/run_name/networks/prenetworks_brownfield``. diff --git a/doc/img/elec.png b/doc/img/elec.png index 52d4f772..2f688671 100644 Binary files a/doc/img/elec.png and b/doc/img/elec.png differ diff --git a/doc/img/intro-workflow.png b/doc/img/intro-workflow.png new file mode 100644 index 00000000..da2c06d8 Binary files /dev/null and b/doc/img/intro-workflow.png differ diff --git a/doc/img/pypsa-logo.png b/doc/img/pypsa-logo.png new file mode 100755 index 00000000..fe663fe0 Binary files /dev/null and b/doc/img/pypsa-logo.png differ diff --git a/doc/img/synchronisation.png b/doc/img/synchronisation.png new file mode 100644 index 00000000..9029d900 Binary files /dev/null and b/doc/img/synchronisation.png differ diff --git a/doc/img/workflow.png b/doc/img/workflow.png deleted file mode 100644 index ea4e0ef5..00000000 Binary files a/doc/img/workflow.png and /dev/null differ diff --git a/doc/index.rst b/doc/index.rst index 5ee1db5b..314900f7 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -1,10 +1,11 @@ .. - SPDX-FileCopyrightText: 2019-2020 The PyPSA-Eur Authors + SPDX-FileCopyrightText: 2019-2023 The PyPSA-Eur Authors SPDX-License-Identifier: CC-BY-4.0 -PyPSA-Eur: An Open Optimisation Model of the European Transmission System -========================================================================= +################################################################################## +PyPSA-Eur: A Sector-Coupled Open Optimisation Model of the European Energy System +################################################################################## .. image:: https://img.shields.io/github/v/release/pypsa/pypsa-eur?include_prereleases :alt: GitHub release (latest by date including pre-releases) @@ -14,7 +15,7 @@ PyPSA-Eur: An Open Optimisation Model of the European Transmission System .. image:: https://readthedocs.org/projects/pypsa-eur/badge/?version=latest :target: https://pypsa-eur.readthedocs.io/en/latest/?badge=latest - :alt: Documentation Status + :alt: Documentation .. image:: https://img.shields.io/github/repo-size/pypsa/pypsa-eur :alt: GitHub repo size @@ -22,39 +23,105 @@ PyPSA-Eur: An Open Optimisation Model of the European Transmission System .. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.3520874.svg :target: https://doi.org/10.5281/zenodo.3520874 -.. image:: https://badges.gitter.im/PyPSA/community.svg - :target: https://gitter.im/PyPSA/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge - :alt: Chat on Gitter - -.. image:: https://img.shields.io/badge/snakemake-≥5.0.0-brightgreen.svg?style=flat +.. image:: https://img.shields.io/badge/snakemake-≥7.19-brightgreen.svg?style=flat :target: https://snakemake.readthedocs.io :alt: Snakemake .. image:: https://api.reuse.software/badge/github.com/pypsa/pypsa-eur :target: https://api.reuse.software/info/github.com/pypsa/pypsa-eur - :alt: REUSE status + :alt: REUSE -PyPSA-Eur is an open model dataset of the European power system at the -transmission network level that covers the full ENTSO-E area. +.. image:: https://img.shields.io/stackexchange/stackoverflow/t/pypsa + :target: https://stackoverflow.com/questions/tagged/pypsa + :alt: Stackoverflow -It contains alternating current lines at and above 220 kV voltage level and all high voltage direct current lines, substations, an open database of conventional power plants, time series for electrical demand and variable renewable generator availability, and geographic potentials for the expansion of wind and solar power. +PyPSA-Eur is an open model dataset of the European energy system at the +transmission network level that covers the full ENTSO-E area. It covers demand +and supply for all energy sectors. From version v0.8.0, PyPSA-Eur includes all +the features from PyPSA-Eur-Sec, which is now deprecated. -The model is suitable both for operational studies and generation and transmission expansion planning studies. The continental scope and highly resolved spatial scale enables a proper description of the long-range smoothing effects for renewable power generation and their varying resource availability. +Electricity System +================== -.. image:: img/base.png - :width: 50% +The electricity system representation contains alternating current lines at +and above 220 kV voltage level and all high voltage direct current lines, +substations, an open database of conventional power plants, time series for +electrical demand and variable renewable generator availability, geographic +potentials for the expansion of wind and solar power. + +The model is suitable both for operational studies and generation and +transmission expansion planning studies. The continental scope and highly +resolved spatial scale enables a proper description of the long-range smoothing +effects for renewable power generation and their varying resource availability. + +.. image:: img/elec.png + :width: 70% :align: center -The restriction to freely available and open data encourages the open exchange of model data developments and eases the comparison of model results. It provides a full, automated software pipeline to assemble the load-flow-ready model from the original datasets, which enables easy replacement and improvement of the individual parts. +| -PyPSA-Eur is designed to be imported into the open toolbox `PyPSA `_ for which `documentation `_ is available as well. +Sector-Coupled Energy System +============================ + +A sector-coupled extension (previously known as **PyPSA-Eur-Sec**, which is now +deprecated) adds demand and supply for the following sectors: transport, space +and water heating, biomass, energy consumption in the agriculture, industry and +industrial feedstocks, carbon management, carbon capture and +usage/sequestration. This completes the energy system and includes all +greenhouse gas emitters except waste management, agriculture, forestry and land +use. The diagram below gives an overview of the sectors and the links between +them: + +.. image:: ../graphics/multisector_figure.png + :width: 70% + :align: center + +.. note:: + You can find showcases of the model's capabilities in the Supplementary Materials of the + preprint `Benefits of a Hydrogen Network in Europe + `_, the Supplementary Materials of the `paper in Joule with a + description of the industry sector + `_, or in `a 2021 presentation + at EMP-E `_. + The sector-coupled extension of PyPSA-Eur was + initially described in the paper `Synergies of sector coupling and transmission + reinforcement in a cost-optimised, highly renewable European energy system + `_ (2018) but it differs by being based on the + higher resolution electricity transmission model `PyPSA-Eur + `_ rather than a one-node-per-country model, + and by including biomass, industry, industrial feedstocks, aviation, shipping, + better carbon management, carbon capture and usage/sequestration, and gas + networks. + +About +===== + +PyPSA-Eur is designed to be imported into the open energy system modelling +framework `PyPSA `_ for which `documentation +`_ is available as well. However, since the +workflow is modular, it should be easy to adapt the data workflow to other +modelling frameworks. + +The restriction to freely available and open data encourages the open exchange +of model data developments and eases the comparison of model results. It +provides a full, automated software pipeline to assemble the load-flow-ready +model from the original datasets, which enables easy replacement and improvement +of the individual parts. + +.. warning:: + PyPSA-Eur is under active development and has several + :doc:`limitations` which + you should understand before using the model. The Github repository + `issues `_ collect known + topics we are working on. Please feel free to help or make suggestions. This project is currently maintained by the `Department of Digital Transformation in Energy Systems `_ at the `Technische Universität Berlin `_. Previous versions were -developed within the `IAI `_ at the `Karlsruhe Institute of -Technology (KIT) `_ and by the `Renewable -Energy Group +developed within the `IAI `_ at the `Karlsruhe Institute +of Technology (KIT) `_ which was funded by +the `Helmholtz Association `_, and by the +`Renewable Energy Group `_ at `FIAS `_ to carry out simulations for the `CoNDyNet project `_, financed by the `German Federal @@ -62,129 +129,83 @@ Ministry for Education and Research (BMBF) `_ as part of the `Stromnetze Research Initiative `_. -A version of the model that adds building heating, transport and industry sectors to the model, -as well as gas networks, is currently being developed in the `PyPSA-Eur-Sec repository `_. -Documentation -============= - -**Getting Started** - -* :doc:`introduction` -* :doc:`installation` -* :doc:`tutorial` - -.. toctree:: - :hidden: - :maxdepth: 1 - :caption: Getting Started - - introduction - installation - tutorial - -**Configuration** - -* :doc:`wildcards` -* :doc:`configuration` -* :doc:`costs` - -.. toctree:: - :hidden: - :maxdepth: 1 - :caption: Configuration - - wildcards - configuration - costs - -**Rules Overview** - -* :doc:`preparation` -* :doc:`simplification` -* :doc:`solving` -* :doc:`plotting` - -.. toctree:: - :hidden: - :maxdepth: 1 - :caption: Rules Overview - - preparation - simplification - solving - plotting - -**References** - -* :doc:`release_notes` -* :doc:`limitations` -* :doc:`contributing` -* :doc:`cloudcomputing` - -.. toctree:: - :hidden: - :maxdepth: 1 - :caption: References - - release_notes - limitations - contributing - cloudcomputing - -Warnings +Workflow ======== -Please read the `limitations `_ section of the -documentation and paper carefully before using the model. We do not -recommend to use the full resolution network model for simulations. At -high granularity the assignment of loads and generators to the nearest -network node may not be a correct assumption, depending on the topology of the underlying distribution grid, -and local grid -bottlenecks may cause unrealistic load-shedding or generator -curtailment. We recommend to cluster the network to a couple of -hundred nodes to remove these local inconsistencies. +.. image:: ../graphics/workflow.png + :class: full-width + :align: center + +.. note:: + The graph above was generated using + ``snakemake --rulegraph -F | sed -n "/digraph/,/}/p" | dot -Tpng -o workflow.png`` + Learning Energy System Modelling ================================ -If you are (relatively) new to energy system modelling and optimisation -and plan to use PyPSA-Eur, the following resources are *one way* to get started -in addition to reading this documentation. +If you are (relatively) new to energy system modelling and optimisation and plan +to use PyPSA-Eur, the following resources are one way to get started in addition +to reading this documentation. - Documentation of `PyPSA `__, the package for - simulating and optimising modern power systems which PyPSA-Eur uses under the hood. -- Course on `Energy System Modelling `_, - Karlsruhe Institute of Technology (KIT), `Dr. Tom Brown `_ + modelling energy systems which PyPSA-Eur uses under the hood. +- Course on `Energy Systems `_ given at + Technical University of Berlin by `Prof. Dr. Tom Brown `_. +- Course on `Data Science for Energy System Modelling `_ + given at Technical University of Berlin by `Dr. Fabian Neumann `_. + Citing PyPSA-Eur ================ -If you use PyPSA-Eur for your research, we would appreciate it if you would cite the following paper: +If you use PyPSA-Eur for your research, we would appreciate it if you would cite one of the following papers: -- Jonas Hörsch, Fabian Hofmann, David Schlachtberger, and Tom Brown. `PyPSA-Eur: An open optimisation model of the European transmission system `_. Energy Strategy Reviews, 22:207-215, 2018. `arXiv:1806.01613 `_, `doi:10.1016/j.esr.2018.08.012 `_. - -Please use the following BibTeX: :: +For electricity-only studies: :: @article{PyPSAEur, author = "Jonas Hoersch and Fabian Hofmann and David Schlachtberger and Tom Brown", title = "PyPSA-Eur: An open optimisation model of the European transmission system", journal = "Energy Strategy Reviews", volume = "22", - pages = "207 - 215", + pages = "207--215", year = "2018", - issn = "2211-467X", doi = "10.1016/j.esr.2018.08.012", eprint = "1806.01613" } +For sector-coupling studies: :: -If you want to cite a specific PyPSA-Eur version, each release of PyPSA-Eur is stored on Zenodo with a release-specific DOI. -This can be found linked from the overall PyPSA-Eur Zenodo DOI: + @misc{PyPSAEurSec, + author = "Fabian Neumann and Elisabeth Zeyen and Marta Victoria and Tom Brown", + title = "The Potential Role of a Hydrogen Network in Europe", + year = "2022", + eprint = "2207.05816", + url = "https://arxiv.org/abs/2207.05816", + } + +For sector-coupling studies with pathway optimisation: :: + + @article{SpeedTechnological2022, + title = "Speed of technological transformations required in {Europe} to achieve different climate goals", + author = "Marta Victoria and Elisabeth Zeyen and Tom Brown", + journal = "Joule", + volume = "6", + number = "5", + pages = "1066--1086", + year = "2022", + doi = "10.1016/j.joule.2022.04.016", + eprint = "2109.09563", + } + + +If you want to cite a specific PyPSA-Eur version, each release of PyPSA-Eur is stored on Zenodo with a release-specific DOI: .. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.3520874.svg :target: https://doi.org/10.5281/zenodo.3520874 + Pre-Built Networks as a Dataset =============================== @@ -199,29 +220,61 @@ The included ``.nc`` files are PyPSA network files which can be imported with Py import pypsa - filename = "elec_s_1024_ec.nc" # example + filename = "elec_s_1024_ec.nc" # example n = pypsa.Network(filename) -Licence -======= -PyPSA-Eur work is released under multiple licenses: -* All original source code is licensed as free software under `MIT `_. -* The documentation is licensed under `CC-BY-4.0 `_. -* Configuration files are mostly licensed under `CC0-1.0 `_. -* Data files are licensed under `CC-BY-4.0 `_. -See the individual files and the `dep5 <.reuse/dep5>`_ file for license details. -Additionally, different licenses and terms of use also apply to the various input data, which are summarised below. -More details are included in -`the description of the data bundles on zenodo `_. +.. toctree:: + :hidden: + :maxdepth: 1 + :caption: Getting Started -.. csv-table:: - :header-rows: 1 - :file: configtables/licenses.csv + introduction + installation + tutorial + tutorial_sector -* *BY: Attribute Source* -* *NC: Non-Commercial Use Only* -* *SA: Share Alike* +.. toctree:: + :hidden: + :maxdepth: 1 + :caption: Configuration + + wildcards + configuration + foresight + costs + +.. toctree:: + :hidden: + :maxdepth: 1 + :caption: Rules Overview + + retrieve + preparation + simplification + sector + solving + plotting + +.. toctree:: + :hidden: + :maxdepth: 1 + :caption: Implementation details for sector-coupled systems + + spatial_resolution + supply_demand + +.. toctree:: + :hidden: + :maxdepth: 1 + :caption: References + + release_notes + licenses + limitations + contributing + support + publications diff --git a/doc/installation.rst b/doc/installation.rst index 16fdf766..01fdafeb 100644 --- a/doc/installation.rst +++ b/doc/installation.rst @@ -1,5 +1,5 @@ .. - SPDX-FileCopyrightText: 2019-2020 The PyPSA-Eur Authors + SPDX-FileCopyrightText: 2019-2023 The PyPSA-Eur Authors SPDX-License-Identifier: CC-BY-4.0 @@ -15,15 +15,13 @@ directory in which the commands following the ``%`` should be entered. Clone the Repository ==================== -First of all, clone the `PyPSA-Eur repository `_ using the version control system ``git``. -The path to the directory into which the ``git repository`` is cloned, must **not** have any spaces! -If you do not have ``git`` installed, follow installation instructions `here `_. +First of all, clone the `PyPSA-Eur repository `_ using the version control system ``git`` in the command line. .. code:: bash - /some/other/path % cd /some/path/without/spaces + /some/other/path % cd /some/path - /some/path/without/spaces % git clone https://github.com/PyPSA/pypsa-eur.git + /some/path % git clone https://github.com/PyPSA/pypsa-eur.git .. _deps: @@ -32,99 +30,108 @@ Install Python Dependencies =============================== PyPSA-Eur relies on a set of other Python packages to function. -We recommend using the package manager and environment management system ``conda`` to install them. -Install `miniconda `_, which is a mini version of `Anaconda `_ that includes only ``conda`` and its dependencies or make sure ``conda`` is already installed on your system. -For instructions for your operating system follow the ``conda`` `installation guide `_. +We recommend using the package manager `mamba `_ to install them and manage your environments. +For instructions for your operating system follow the ``mamba`` `installation guide `_. +You can also use ``conda`` equivalently. -The python package requirements are curated in the `envs/environment.yaml `_ file. +The package requirements are curated in the `envs/environment.yaml `_ file. The environment can be installed and activated using .. code:: bash - .../pypsa-eur % conda env create -f envs/environment.yaml + .../pypsa-eur % mamba env create -f envs/environment.yaml - .../pypsa-eur % conda activate pypsa-eur - -Note that activation is local to the currently open shell! -After opening a new terminal window, one needs to reissue the second command! + .../pypsa-eur % mamba activate pypsa-eur .. note:: - If you have troubles with a slow ``conda`` installation, we recommend to install - `mamba `_ as a fast drop-in replacement via + The equivalent commands for ``conda`` would be .. code:: bash - conda install -c conda-forge mamba + .../pypsa-eur % conda env create -f envs/environment.yaml - and then install the environment with + .../pypsa-eur % conda activate pypsa-eur - .. code:: bash - - mamba env create -f envs/environment.yaml Install a Solver ================ -PyPSA passes the PyPSA-Eur network model to an external solver for performing a total annual system cost minimization with optimal power flow. +PyPSA passes the PyPSA-Eur network model to an external solver for performing the optimisation. PyPSA is known to work with the free software -- `Ipopt `_ +- `HiGHS `_ - `Cbc `_ - `GLPK `_ (`WinGLKP `_) +- `Ipopt `_ and the non-free, commercial software (for some of which free academic licenses are available) - `Gurobi `_ - `CPLEX `_ -- `FICO® Xpress Solver `_ +- `FICO Xpress Solver `_ For installation instructions of these solvers for your operating system, follow the links above. -Commercial solvers such as Gurobi and CPLEX currently significantly outperform open-source solvers for large-scale problems. -It might be the case that you can only retrieve solutions by using a commercial solver. +Commercial solvers such as Gurobi and CPLEX currently significantly outperform open-source solvers for large-scale problems, and +it might be the case that you can only retrieve solutions by using a commercial solver. +Nevertheless, you can still use open-source solvers for smaller problems. .. seealso:: - `Getting a solver in the PyPSA documentation `_ + `Instructions how to install a solver in the documentation of PyPSA `_ .. note:: The rules :mod:`cluster_network` and :mod:`simplify_network` solve a quadratic optimisation problem for clustering. The open-source solvers Cbc and GlPK cannot handle this. A fallback to Ipopt is implemented in this case, but requires - also Ipopt to be installed. For an open-source solver setup install in your ``conda`` environment on OSX/Linux + it to be installed. For an open-source solver setup install in your ``conda`` environment on OSX/Linux .. code:: bash - conda activate pypsa-eur - conda install -c conda-forge ipopt coincbc + mamba activate pypsa-eur + mamba install -c conda-forge ipopt coincbc and on Windows .. code:: bash - conda activate pypsa-eur - conda install -c conda-forge ipopt glpk + mamba activate pypsa-eur + mamba install -c conda-forge ipopt glpk + + For HiGHS, run + + .. code:: bash + + mamba activate pypsa-eur + mamba install -c conda-forge ipopt + pip install highspy + + For Gurobi, run + + .. code:: bash + + mamba activate pypsa-eur + mamba install -c gurobi gurobi + + Additionally, you need to setup your `Gurobi license `_. .. _defaultconfig: -Set Up the Default Configuration -================================ +Handling Configuration Files +============================ -PyPSA-Eur has several configuration options that must be specified in a ``config.yaml`` file located in the root directory. -An example configuration ``config.default.yaml`` is maintained in the repository. -More details on the configuration options are in :ref:`config`. +PyPSA-Eur has several configuration options that must be specified in a +``config/config.yaml`` file located in the root directory. An example configuration +``config/config.default.yaml`` is maintained in the repository, which will be used to +automatically create your customisable ``config/config.yaml`` on first use. More +details on the configuration options are in :ref:`config`. -Before first use, create a ``config.yaml`` by copying the example. +You can also use ``snakemake`` to specify another file, e.g. +``config/config.mymodifications.yaml``, to update the settings of the ``config/config.yaml``. .. code:: bash - .../pypsa-eur % cp config.default.yaml config.yaml + .../pypsa-eur % snakemake -call --configfile config/config.mymodifications.yaml -Users are advised to regularly check their own ``config.yaml`` against changes in the ``config.default.yaml`` -when pulling a new version from the remote repository. - -.. Using PyPSA-Eur with Docker Images -.. ================================== - -.. If docker. Optional. -.. To run on cloud computing. -.. Gurobi license - floating token server - license must not be tied to a particular machine -.. Provide ``Dockerfile``. +.. warning:: + Users are advised to regularly check their own ``config/config.yaml`` against changes + in the ``config/config.default.yaml`` when pulling a new version from the remote + repository. diff --git a/doc/introduction.rst b/doc/introduction.rst index bc4f267f..df060723 100644 --- a/doc/introduction.rst +++ b/doc/introduction.rst @@ -1,5 +1,5 @@ .. - SPDX-FileCopyrightText: 2019-2020 The PyPSA-Eur Authors + SPDX-FileCopyrightText: 2019-2023 The PyPSA-Eur Authors SPDX-License-Identifier: CC-BY-4.0 @@ -13,57 +13,89 @@ -Find the introductory slides `here `_. +.. note:: + Find the introductory slides `here `_. + +.. warning:: + The video only introduces the electricity-only part of PyPSA-Eur. Workflow ========= -The generation of the model is controlled by the workflow management system -`Snakemake `_. -In a nutshell, the ``Snakefile`` declares for each python script in the ``scripts`` directory a rule which describes which files the scripts consume and produce (their corresponding input and output files). -The ``snakemake`` tool then runs the scripts in the correct order according to the rules' input/output dependencies. -Moreover, it is able to track, what parts of the workflow have to be regenerated, when a data file or a script is modified/updated. +The generation of the model is controlled by the open workflow management system +`Snakemake `_. In a nutshell, the ``Snakefile`` +declares for each script in the ``scripts`` directory a rule which describes +which files the scripts consume and produce (their corresponding input and +output files). The ``snakemake`` tool then runs the scripts in the correct order +according to the rules' input and output dependencies. Moreover, ``snakemake`` +will track what parts of the workflow have to be regenerated when files or +scripts were modified. -For instance an invocation to +For instance, an invocation to .. code:: bash - .../pypsa-eur % snakemake -j 1 networks/elec_s_128.nc + .../pypsa-eur % snakemake -call results/networks/elec_s_128_ec_lvopt_Co2L-3H.nc -follows this dependency graph: +follows this dependency graph -.. image:: img/workflow.png +.. image:: img/intro-workflow.png + :class: full-width -The **blocks** represent the individual rules which are required to create the file ``networks/elec_s_128.nc``. The **arrows** indicate the outputs from preceding rules which a particular rule takes as input data. +to solve an electricity system model. + +The **blocks** represent the individual rules which are required to create the +file referenced in the command above. The **arrows** indicate the outputs from +preceding rules which another rule takes as input data. .. note:: - The dependency graph shown above was generated using - ``snakemake --dag networks/elec_s_128.nc | dot -Tpng > workflow.png`` + The dependency graph was generated using + ``snakemake --dag results/networks/elec_s_128_ec_lvopt_Co2L-3H.nc -F | sed -n "/digraph/,/}/p" | dot -Tpng -o doc/img/intro-workflow.png`` -For the use of ``snakemake``, it makes sense to familiarize oneself quickly with its `basic tutorial `_ and then read carefully through the section `Executing Snakemake `_, noting the arguments ``-j``, ``-n``, ``-r``, but also ``--dag``, ``-R`` and ``-t``. +For the use of ``snakemake``, it makes sense to familiarize yourself quickly +with the `basic tutorial +`_ and then +read carefully through the documentation of the `command line interface +`_, noting the +arguments ``-j``, ``-c``, ``-f``, ``-F``, ``-n``, ``-r``, ``--dag`` and ``-t`` +in particular. Scenarios, Configuration and Modification ========================================= -It is easy to run PyPSA-Eur for multiple scenarios using the `wildcards feature `_ of ``snakemake``. Wildcards allow to generalise a rule to produce all files that follow a `regular expression `_ pattern, which e.g. defines one particular scenario. One can think of a wildcard as a parameter that shows up in the input/output file names and thereby determines which rules to run, what data to retrieve and what files to produce. **Details are explained in** :ref:`wildcards` **and** :ref:`scenario`. +It is easy to run PyPSA-Eur for multiple scenarios using the `wildcards feature +`_ +of ``snakemake``. Wildcards allow to generalise a rule to produce all files that +follow a `regular expression +`_ pattern, which defines +a particular scenario. One can think of a wildcard as a parameter that shows +up in the input/output file names and thereby determines which rules to run, +what data to retrieve and what files to produce. Details are explained in +:ref:`wildcards` and :ref:`scenario`. -The model also has several further configuration options collected in the ``config.yaml`` file -located in the root directory, which that are not part of the scenarios. **All options are explained in detail in** :ref:`config`. +The model also has several further configuration options collected in the +``config/config.yaml`` file located in the root directory, which that are not part of +the scenarios. Options are explained in :ref:`config`. Folder Structure ================ -- ``data``: Includes input data that is not produced by any ``snakemake`` rule. - ``scripts``: Includes all the Python scripts executed by the ``snakemake`` rules. +- ``rules``: Includes all the ``snakemake`` rules loaded in the ``Snakefile``. +- ``envs``: Includes all the ``conda`` environment specifications to run the workflow. +- ``data``: Includes input data that is not produced by any ``snakemake`` rule. +- ``cutouts``: Stores raw weather data cutouts from ``atlite``. - ``resources``: Stores intermediate results of the workflow which can be picked up again by subsequent rules. -- ``networks``: Stores intermediate, unsolved stages of the PyPSA network that describes the energy system model. - ``results``: Stores the solved PyPSA network data, summary files and plots. +- ``logs``: Stores log files. - ``benchmarks``: Stores ``snakemake`` benchmarks. -- ``logs``: Stores log files about solving, including the solver output, console output and the output of a memory logger. +- ``test``: Includes the test configuration files used for continuous integration. +- ``doc``: Includes the documentation of PyPSA-Eur. System Requirements =================== -Building the model with the scripts in this repository runs on a normal computer. -But computing optimal investment and operation scenarios requires a strong interior-point solver +Building the model with the scripts in this repository runs on a regular computer. +But optimising for investment and operation decisions across many scenarios requires a strong interior-point solver like `Gurobi `_ or `CPLEX `_ with more memory. +Open-source solvers like `HiGHS ` can also be used for smaller problems. diff --git a/doc/licenses.rst b/doc/licenses.rst new file mode 100644 index 00000000..beb6f5b8 --- /dev/null +++ b/doc/licenses.rst @@ -0,0 +1,44 @@ +.. + SPDX-FileCopyrightText: 2023 The PyPSA-Eur Authors + + SPDX-License-Identifier: CC-BY-4.0 + +########################################## +Licenses +########################################## + + +PyPSA-Eur is released under multiple licenses: + +* All original source code is licensed as free software under `MIT `_. +* The documentation is licensed under `CC-BY-4.0 `_. +* Configuration files are mostly licensed under `CC0-1.0 `_. +* Data files are licensed under `CC-BY-4.0 `_. + +See the individual files and the `dep5 <.reuse/dep5>`_ file for license details. + +Additionally, different licenses and terms of use also apply to the various +input data for both electricity-only and sector-coupled modelling exercises, +which are summarised below. + +Electricity Systems Databundle +============================== + +.. note:: + More details are included in `the description of the + data bundles on zenodo `_. + +.. csv-table:: + :header-rows: 1 + :file: configtables/licenses.csv + +* BY: Attribute Source +* NC: Non-Commercial Use Only +* SA: Share Alike + +Sector-Coupled Systems Databundle +================================= + +.. csv-table:: + :header-rows: 1 + :file: configtables/licenses-sector.csv diff --git a/doc/limitations.rst b/doc/limitations.rst index 3b6c03d7..a67fad0c 100644 --- a/doc/limitations.rst +++ b/doc/limitations.rst @@ -1,5 +1,5 @@ .. - SPDX-FileCopyrightText: 2019-2020 The PyPSA-Eur Authors + SPDX-FileCopyrightText: 2019-2023 The PyPSA-Eur Authors SPDX-License-Identifier: CC-BY-4.0 @@ -7,15 +7,21 @@ Limitations ########################################## - While the benefit of an openly available, functional and partially validated -model of the European transmission system is high, many approximations have +model of the European energy system is high, many approximations have been made due to missing data. The limitations of the dataset are listed below, both as a warning to the user and as an encouragement to assist in improving the approximations. -- **Network topology:** +.. warning:: + + This list of limitations is incomplete and will be added to over time. + +.. seealso:: + See also the `GitHub repository issues `_. + +- **Electricity transmission network topology:** The grid data is based on a map of the ENTSO-E area that is known to contain small distortions to improve readability. Since the exact impedances of the lines are unknown, approximations based on line lengths and standard @@ -23,14 +29,27 @@ improving the approximations. particular lines. There is no openly available data on busbar configurations, switch locations, transformers or reactive power compensation assets. -- **Distribution networks:** +- **Assignment of electricity demand to transmission nodes:** Using Voronoi cells to aggregate load and generator data to transmission network substations ignores the topology of the underlying distribution network, meaning that assets may be connected to the wrong substation. -- **Power Demand:** +- **Incomplete information on existing assets:** Approximations have + been made for missing data, including: existing distribution grid + capacities and costs, existing space and water heating supply, + existing industry facilities, existing transport vehicle fleets. + +- **Exogenous pathways for transformation of transport and industry:** + To avoid penny-switching the transformation of transport and + industry away from fossil fuels is determined exogenously. + +- **Industry materials production constant and inelastic:** + For industry, the production of different materials per country is + assumed to remain constant and no industry demand elasticity is included in the modelled. + +- **Energy demand distribution within countries:** Assumptions - have been made about the distribution of load in each country proportional to + have been made about the distribution of demand in each country proportional to population and GDP that may not reflect local circumstances. Openly available data on load time series may not correspond to the true vertical load and is @@ -56,3 +75,6 @@ improving the approximations. Belarus, Ukraine, Turkey and Morocco have not been taken into account; islands which are not connected to the main European system, such as Malta, Crete and Cyprus, are also excluded from the model. + +- **Demand sufficiency:** Further measures of demand reduction may be + possible beyond the assumptions made here. diff --git a/doc/make.bat b/doc/make.bat index 35dcecc2..3037f934 100644 --- a/doc/make.bat +++ b/doc/make.bat @@ -1,4 +1,4 @@ -REM SPDX-FileCopyrightText: 2019-2020 The PyPSA-Eur Authors +REM SPDX-FileCopyrightText: 2019-2023 The PyPSA-Eur Authors REM SPDX-License-Identifier: MIT @ECHO OFF diff --git a/doc/plotting.rst b/doc/plotting.rst index 6b0ce392..895eab3b 100644 --- a/doc/plotting.rst +++ b/doc/plotting.rst @@ -1,82 +1,16 @@ .. - SPDX-FileCopyrightText: 2019-2020 The PyPSA-Eur Authors + SPDX-FileCopyrightText: 2019-2023 The PyPSA-Eur Authors SPDX-License-Identifier: CC-BY-4.0 ########################################## -Plotting and Summary +Plotting and Summaries ########################################## -.. warning:: The corresponding code is currently under revision and has only minimal documentation. - -.. _plot_potentials: - -Rule ``plot_p_nom_max`` -========================== - -.. graphviz:: - :align: center - - digraph snakemake_dag { - graph [bgcolor=white, - margin=0, - size="8,5" - ]; - node [fontname=sans, - fontsize=10, - penwidth=2, - shape=box, - style=rounded - ]; - edge [color=grey, - penwidth=2 - ]; - 0 [color="0.42 0.6 0.85", - fillcolor=gray, - label=plot_p_nom_max, - style=filled]; - 1 [color="0.58 0.6 0.85", - label=cluster_network]; - 1 -> 0; - } - -| - -.. automodule:: plot_p_nom_max - -.. _summary: Rule ``make_summary`` ======================== -.. graphviz:: - :align: center - - digraph snakemake_dag { - graph [bgcolor=white, - margin=0, - size="8,5" - ]; - node [fontname=sans, - fontsize=10, - penwidth=2, - shape=box, - style=rounded - ]; - edge [color=grey, - penwidth=2 - ]; - 0 [color="0.47 0.6 0.85", - fillcolor=gray, - label=make_summary, - style=filled]; - 1 [color="0.11 0.6 0.85", - label=solve_network]; - 1 -> 0; - } - -| - .. automodule:: make_summary .. _summary_plot: @@ -84,13 +18,6 @@ Rule ``make_summary`` Rule ``plot_summary`` ======================== -.. .. graphviz:: -.. :align: center - - - -| - .. automodule:: plot_summary .. _map_plot: @@ -98,35 +25,4 @@ Rule ``plot_summary`` Rule ``plot_network`` ======================== -.. graphviz:: - :align: center - - digraph snakemake_dag { - graph [bgcolor=white, - margin=0, - size="8,5" - ]; - node [fontname=sans, - fontsize=10, - penwidth=2, - shape=box, - style=rounded - ]; - edge [color=grey, - penwidth=2 - ]; - 0 [color="0.00 0.6 0.85", - fillcolor=gray, - label=plot_network, - style=filled]; - 1 [color="0.50 0.6 0.85", - label=solve_network]; - 1 -> 0; - } - -| - .. automodule:: plot_network - -.. image:: img/tech-colors.png - :align: center diff --git a/doc/preparation.rst b/doc/preparation.rst index dba5e981..b5a12062 100644 --- a/doc/preparation.rst +++ b/doc/preparation.rst @@ -1,10 +1,10 @@ .. - SPDX-FileCopyrightText: 2019-2020 The PyPSA-Eur Authors + SPDX-FileCopyrightText: 2019-2023 The PyPSA-Eur Authors SPDX-License-Identifier: CC-BY-4.0 ########################################## -Preparing Networks +Building Electricity Networks ########################################## The preparation process of the PyPSA-Eur energy system model consists of a group of ``snakemake`` @@ -28,24 +28,99 @@ Then the process continues by calculating conventional power plant capacities, p - :mod:`build_powerplants` for today's thermal power plant capacities using `powerplantmatching `_ allocating these to the closest substation for each powerplant, - :mod:`build_natura_raster` for rasterising NATURA2000 natural protection areas, +- :mod:`build_ship_raster` for building shipping traffic density, - :mod:`build_renewable_profiles` for the hourly capacity factors and installation potentials constrained by land-use in each substation's Voronoi cell for PV, onshore and offshore wind, and - :mod:`build_hydro_profile` for the hourly per-unit hydro power availability time series. The central rule :mod:`add_electricity` then ties all the different data inputs together into a detailed PyPSA network stored in ``networks/elec.nc``. -.. toctree:: - :caption: Overview +.. _busregions: - preparation/retrieve - preparation/build_shapes - preparation/build_load_data - preparation/build_cutout - preparation/build_natura_raster - preparation/prepare_links_p_nom - preparation/base_network - preparation/build_bus_regions - preparation/build_powerplants - preparation/build_renewable_profiles - preparation/build_hydro_profile - preparation/add_electricity +Rule ``build_bus_regions`` +============================= + +.. automodule:: build_bus_regions + +.. _cutout: + +Rule ``build_cutout`` +============================= + +.. automodule:: build_cutout + + +Rule ``prepare_links_p_nom`` +=============================== + +.. automodule:: prepare_links_p_nom + +.. _natura: + +Rule ``build_natura_raster`` +=============================== + +.. automodule:: build_natura_raster + + +.. _base: + +Rule ``base_network`` +============================= + +.. automodule:: base_network + +.. _shapes: + +Rule ``build_shapes`` +============================= + +.. automodule:: build_shapes + + +.. _powerplants: + +Rule ``build_powerplants`` +============================= + +.. automodule:: build_powerplants + + +.. _electricity_demand: + +Rule ``build_electricity_demand`` +============================= + + +.. automodule:: build_electricity_demand + +.. _ship: + +Rule ``build_ship_raster`` +=============================== + + +.. automodule:: build_ship_raster + + +.. _renewableprofiles: + +Rule ``build_renewable_profiles`` +==================================== + +.. automodule:: build_renewable_profiles + + +.. _hydroprofiles: + +Rule ``build_hydro_profile`` +=============================== + +.. automodule:: build_hydro_profile + +.. _electricity: + +Rule ``add_electricity`` +============================= + +.. automodule:: add_electricity diff --git a/doc/preparation/add_electricity.rst b/doc/preparation/add_electricity.rst deleted file mode 100644 index 0f3d431f..00000000 --- a/doc/preparation/add_electricity.rst +++ /dev/null @@ -1,57 +0,0 @@ -.. - SPDX-FileCopyrightText: 2019-2020 The PyPSA-Eur Authors - - SPDX-License-Identifier: CC-BY-4.0 - -.. _electricity: - -Rule ``add_electricity`` -============================= - -.. graphviz:: - :align: center - - digraph snakemake_dag { - graph [bgcolor=white, - margin=0, - size="8,5" - ]; - node [fontname=sans, - fontsize=10, - penwidth=2, - shape=box, - style=rounded - ]; - edge [color=grey, - penwidth=2 - ]; - 3 [color="0.25 0.6 0.85", - label=simplify_network]; - 4 [color="0.50 0.6 0.85", - fillcolor=gray, - label=add_electricity, - style=filled]; - 4 -> 3; - 5 [color="0.36 0.6 0.85", - label=build_bus_regions]; - 5 -> 4; - 6 [color="0.58 0.6 0.85", - label=base_network]; - 6 -> 4; - 7 [color="0.31 0.6 0.85", - label=build_powerplants]; - 7 -> 4; - 8 [color="0.28 0.6 0.85", - label=build_shapes]; - 8 -> 4; - 9 [color="0.22 0.6 0.85", - label=build_renewable_profiles]; - 9 -> 4; - 10 [color="0.44 0.6 0.85", - label=build_hydro_profile]; - 10 -> 4; - } - -| - -.. automodule:: add_electricity diff --git a/doc/preparation/base_network.rst b/doc/preparation/base_network.rst deleted file mode 100644 index 1afc4e05..00000000 --- a/doc/preparation/base_network.rst +++ /dev/null @@ -1,54 +0,0 @@ -.. - SPDX-FileCopyrightText: 2019-2020 The PyPSA-Eur Authors - - SPDX-License-Identifier: CC-BY-4.0 - -.. _base: - -Rule ``base_network`` -============================= - -.. graphviz:: - :align: center - - digraph snakemake_dag { - graph [bgcolor=white, - margin=0, - size="8,5" - ]; - node [fontname=sans, - fontsize=10, - penwidth=2, - shape=box, - style=rounded - ]; - edge [color=grey, - penwidth=2 - ]; - 4 [color="0.50 0.6 0.85", - label=add_electricity]; - 5 [color="0.36 0.6 0.85", - label=build_bus_regions]; - 6 [color="0.58 0.6 0.85", - fillcolor=gray, - label=base_network, - style=filled]; - 6 -> 4; - 6 -> 5; - 7 [color="0.31 0.6 0.85", - label=build_powerplants]; - 6 -> 7; - 9 [color="0.22 0.6 0.85", - label=build_renewable_profiles]; - 6 -> 9; - 8 [color="0.28 0.6 0.85", - label=build_shapes]; - 8 -> 6; - 11 [color="0.03 0.6 0.85", - label=prepare_links_p_nom]; - 11 -> 6; - } - -| - -.. automodule:: base_network diff --git a/doc/preparation/build_bus_regions.rst b/doc/preparation/build_bus_regions.rst deleted file mode 100644 index 16aab725..00000000 --- a/doc/preparation/build_bus_regions.rst +++ /dev/null @@ -1,51 +0,0 @@ -.. - SPDX-FileCopyrightText: 2019-2020 The PyPSA-Eur Authors - - SPDX-License-Identifier: CC-BY-4.0 - -.. _busregions: - -Rule ``build_bus_regions`` -============================= - -.. graphviz:: - :align: center - - digraph snakemake_dag { - graph [bgcolor=white, - margin=0, - size="8,5" - ]; - node [fontname=sans, - fontsize=10, - penwidth=2, - shape=box, - style=rounded - ]; - edge [color=grey, - penwidth=2 - ]; - 3 [color="0.25 0.6 0.85", - label=simplify_network]; - 4 [color="0.50 0.6 0.85", - label=add_electricity]; - 5 [color="0.36 0.6 0.85", - fillcolor=gray, - label=build_bus_regions, - style=filled]; - 5 -> 3; - 5 -> 4; - 9 [color="0.22 0.6 0.85", - label=build_renewable_profiles]; - 5 -> 9; - 6 [color="0.58 0.6 0.85", - label=base_network]; - 6 -> 5; - 8 [color="0.28 0.6 0.85", - label=build_shapes]; - 8 -> 5; - } - -| - -.. automodule:: build_bus_regions diff --git a/doc/preparation/build_cutout.rst b/doc/preparation/build_cutout.rst deleted file mode 100644 index da2c04d1..00000000 --- a/doc/preparation/build_cutout.rst +++ /dev/null @@ -1,42 +0,0 @@ -.. - SPDX-FileCopyrightText: 2019-2020 The PyPSA-Eur Authors - - SPDX-License-Identifier: CC-BY-4.0 - -.. _cutout: - -Rule ``build_cutout`` -============================= - -.. graphviz:: - :align: center - - digraph snakemake_dag { - graph [bgcolor=white, - margin=0, - size="8,5" - ]; - node [fontname=sans, - fontsize=10, - penwidth=2, - shape=box, - style=rounded - ]; - edge [color=grey, - penwidth=2 - ]; - 9 [color="0.22 0.6 0.85", - label=build_renewable_profiles]; - 10 [color="0.44 0.6 0.85", - label=build_hydro_profile]; - 13 [color="0.17 0.6 0.85", - fillcolor=gray, - label=build_cutout, - style=filled]; - 13 -> 9; - 13 -> 10; - } - -| - -.. automodule:: build_cutout diff --git a/doc/preparation/build_hydro_profile.rst b/doc/preparation/build_hydro_profile.rst deleted file mode 100644 index 77b12915..00000000 --- a/doc/preparation/build_hydro_profile.rst +++ /dev/null @@ -1,45 +0,0 @@ -.. - SPDX-FileCopyrightText: 2019-2020 The PyPSA-Eur Authors - - SPDX-License-Identifier: CC-BY-4.0 - -.. _hydroprofiles: - -Rule ``build_hydro_profile`` -=============================== - -.. graphviz:: - :align: center - - digraph snakemake_dag { - graph [bgcolor=white, - margin=0, - size="8,5" - ]; - node [fontname=sans, - fontsize=10, - penwidth=2, - shape=box, - style=rounded - ]; - edge [color=grey, - penwidth=2 - ]; - 4 [color="0.61 0.6 0.85", - label=add_electricity]; - 8 [color="0.00 0.6 0.85", - label=build_shapes]; - 10 [color="0.11 0.6 0.85", - fillcolor=gray, - label=build_hydro_profile, - style=filled]; - 8 -> 10; - 10 -> 4; - 13 [color="0.56 0.6 0.85", - label=build_cutout]; - 13 -> 10; - } - -| - -.. automodule:: build_hydro_profile diff --git a/doc/preparation/build_load_data.rst b/doc/preparation/build_load_data.rst deleted file mode 100644 index 03535981..00000000 --- a/doc/preparation/build_load_data.rst +++ /dev/null @@ -1,12 +0,0 @@ -.. - SPDX-FileCopyrightText: 2020-2021 The PyPSA-Eur Authors - - SPDX-License-Identifier: CC-BY-4.0 - -.. _load_data: - -Rule ``build_load_data`` -============================= - - -.. automodule:: build_load_data diff --git a/doc/preparation/build_natura_raster.rst b/doc/preparation/build_natura_raster.rst deleted file mode 100644 index e3ec4364..00000000 --- a/doc/preparation/build_natura_raster.rst +++ /dev/null @@ -1,39 +0,0 @@ -.. - SPDX-FileCopyrightText: 2019-2020 The PyPSA-Eur Authors - - SPDX-License-Identifier: CC-BY-4.0 - -.. _natura: - -Rule ``build_natura_raster`` -=============================== - -.. graphviz:: - :align: center - - digraph snakemake_dag { - graph [bgcolor=white, - margin=0, - size="8,5" - ]; - node [fontname=sans, - fontsize=10, - penwidth=2, - shape=box, - style=rounded - ]; - edge [color=grey, - penwidth=2 - ]; - 9 [color="0.22 0.6 0.85", - label=build_renewable_profiles]; - 12 [color="0.31 0.6 0.85", - fillcolor=gray, - label=build_natura_raster, - style=filled]; - 12 -> 9; - } - -| - -.. automodule:: build_natura_raster diff --git a/doc/preparation/build_powerplants.rst b/doc/preparation/build_powerplants.rst deleted file mode 100644 index 19cce03b..00000000 --- a/doc/preparation/build_powerplants.rst +++ /dev/null @@ -1,42 +0,0 @@ -.. - SPDX-FileCopyrightText: 2019-2020 The PyPSA-Eur Authors - - SPDX-License-Identifier: CC-BY-4.0 - -.. _powerplants: - -Rule ``build_powerplants`` -============================= - -.. graphviz:: - :align: center - - digraph snakemake_dag { - graph [bgcolor=white, - margin=0, - size="8,5" - ]; - node [fontname=sans, - fontsize=10, - penwidth=2, - shape=box, - style=rounded - ]; - edge [color=grey, - penwidth=2 - ]; - 4 [color="0.61 0.6 0.85", - label=add_electricity]; - 6 [color="0.17 0.6 0.85", - label=base_network]; - 7 [color="0.58 0.6 0.85", - fillcolor=gray, - label=build_powerplants, - style=filled]; - 6 -> 7; - 7 -> 4; - } - -| - -.. automodule:: build_powerplants diff --git a/doc/preparation/build_renewable_profiles.rst b/doc/preparation/build_renewable_profiles.rst deleted file mode 100644 index 27e61583..00000000 --- a/doc/preparation/build_renewable_profiles.rst +++ /dev/null @@ -1,54 +0,0 @@ -.. - SPDX-FileCopyrightText: 2019-2020 The PyPSA-Eur Authors - - SPDX-License-Identifier: CC-BY-4.0 - -.. _renewableprofiles: - -Rule ``build_renewable_profiles`` -==================================== - -.. graphviz:: - :align: center - - digraph snakemake_dag { - graph [bgcolor=white, - margin=0, - size="8,5" - ]; - node [fontname=sans, - fontsize=10, - penwidth=2, - shape=box, - style=rounded - ]; - edge [color=grey, - penwidth=2 - ]; - 4 [color="0.61 0.6 0.85", - label=add_electricity]; - 5 [color="0.19 0.6 0.85", - label=build_bus_regions]; - 9 [color="0.22 0.6 0.85", - fillcolor=gray, - label=build_renewable_profiles, - style=filled]; - 5 -> 9; - 9 -> 4; - 6 [color="0.17 0.6 0.85", - label=base_network]; - 6 -> 9; - 8 [color="0.00 0.6 0.85", - label=build_shapes]; - 8 -> 9; - 12 [color="0.31 0.6 0.85", - label=build_natura_raster]; - 12 -> 9; - 13 [color="0.56 0.6 0.85", - label=build_cutout]; - 13 -> 9; - } - -| - -.. automodule:: build_renewable_profiles diff --git a/doc/preparation/build_shapes.rst b/doc/preparation/build_shapes.rst deleted file mode 100644 index 6bed0109..00000000 --- a/doc/preparation/build_shapes.rst +++ /dev/null @@ -1,51 +0,0 @@ -.. - SPDX-FileCopyrightText: 2019-2020 The PyPSA-Eur Authors - - SPDX-License-Identifier: CC-BY-4.0 - -.. _shapes: - -Rule ``build_shapes`` -============================= - -.. graphviz:: - :align: center - - digraph snakemake_dag { - graph [bgcolor=white, - margin=0, - size="8,5" - ]; - node [fontname=sans, - fontsize=10, - penwidth=2, - shape=box, - style=rounded - ]; - edge [color=grey, - penwidth=2 - ]; - 4 [color="0.61 0.6 0.85", - label=add_electricity]; - 5 [color="0.19 0.6 0.85", - label=build_bus_regions]; - 6 [color="0.17 0.6 0.85", - label=base_network]; - 8 [color="0.00 0.6 0.85", - fillcolor=gray, - label=build_shapes, - style=filled]; - 8 -> 4; - 8 -> 5; - 8 -> 6; - 9 [color="0.22 0.6 0.85", - label=build_renewable_profiles]; - 8 -> 9; - 10 [color="0.11 0.6 0.85", - label=build_hydro_profile]; - 8 -> 10; - } - -| - -.. automodule:: build_shapes diff --git a/doc/preparation/prepare_links_p_nom.rst b/doc/preparation/prepare_links_p_nom.rst deleted file mode 100644 index 7ae9c3b4..00000000 --- a/doc/preparation/prepare_links_p_nom.rst +++ /dev/null @@ -1,39 +0,0 @@ -.. - SPDX-FileCopyrightText: 2019-2020 The PyPSA-Eur Authors - - SPDX-License-Identifier: CC-BY-4.0 - -.. _links: - -Rule ``prepare_links_p_nom`` -=============================== - -.. graphviz:: - :align: center - - digraph snakemake_dag { - graph [bgcolor=white, - margin=0, - size="8,5" - ]; - node [fontname=sans, - fontsize=10, - penwidth=2, - shape=box, - style=rounded - ]; - edge [color=grey, - penwidth=2 - ]; - 6 [color="0.17 0.6 0.85", - label=base_network]; - 11 [color="0.39 0.6 0.85", - fillcolor=gray, - label=prepare_links_p_nom, - style=filled]; - 11 -> 6; - } - -| - -.. automodule:: prepare_links_p_nom diff --git a/doc/publications.bib b/doc/publications.bib new file mode 100644 index 00000000..4be6676a --- /dev/null +++ b/doc/publications.bib @@ -0,0 +1,261 @@ +@Comment{ +SPDX-FileCopyrightText: 2023 The PyPSA-Eur Authors + +SPDX-License-Identifier: CC0-1.0 +} + +@article{PyPSAEur, + author = "Jonas Hörsch and Fabian Hofmann and David Schlachtberger and Tom Brown", + title = "PyPSA-Eur: An open optimisation model of the {European} transmission system", + journal = "Energy Strategy Reviews", + volume = "22", + pages = "207--215", + year = "2018", + doi = "10.1016/j.esr.2018.08.012", + eprint = "1806.01613" +} + +@misc{PyPSAEurSec, + author = "Fabian Neumann and Elisabeth Zeyen and Marta Victoria and Tom Brown", + title = "The Potential Role of a Hydrogen Network in {Europe}", + year = "2022", + eprint = "2207.05816", +} + +@article{brownSynergiesSector2018a, + title = {Synergies of sector coupling and transmission reinforcement in a cost-optimised, highly renewable {European} energy system}, + volume = {160}, + issn = {03605442}, + doi = {10.1016/j.energy.2018.06.222}, + journal = {Energy}, + author = {Brown, T. and Schlachtberger, D. and Kies, A. and Schramm, S. and Greiner, M.}, + year = {2018}, + pages = {720--739}, +} + + +@article{SpeedTechnological2022, + title = "Speed of technological transformations required in {Europe} to achieve different climate goals", + author = "Marta Victoria and Elisabeth Zeyen and Tom Brown", + journal = "Joule", + volume = "6", + number = "5", + pages = "1066--1086", + year = "2022", + doi = "10.1016/j.joule.2022.04.016", + eprint = "2109.09563", +} + + + +@article{victoriaEarlyDecarbonisation2020, + title = {Early decarbonisation of the {European} energy system pays off}, + volume = {11}, + doi = {10.1038/s41467-020-20015-4}, + number = {1}, + journal = {Nature Communications}, + author = {Victoria, Marta and Zhu, Kun and Brown, Tom and Andresen, Gorm B. and Greiner, Martin}, + year = {2020}, + pages = {6223}, +} + +@article{schlachtbergerCostOptimal2018, + title = {Cost optimal scenarios of a future highly renewable {European} electricity system: {Exploring} the influence of weather data, cost parameters and policy constraints}, + volume = {163}, + eprint = {http://arxiv.org/abs/1803.09711}, + doi = {10/gfk5cj}, + journal = {Energy}, + author = {Schlachtberger, David P. and Brown, Tom and Schäfer, Mirko and Schramm, Stefan and Greiner, Martin}, + year = {2018}, + pages = {100--114}, +} + +@article{zeyenMitigatingHeat2021, + title = {Mitigating heat demand peaks in buildings in a highly renewable {European} energy system}, + volume = {231}, + url = {http://arxiv.org/abs/2012.01831}, + doi = {10.1016/j.energy.2021.120784}, + journal = {Energy}, + author = {Zeyen, Elisabeth and Hagenmeyer, Veit and Brown, Tom}, + year = {2021}, + pages = {120784}, +} + +@misc{zeyenEndogenousLearning2022, + title = {Endogenous learning for green hydrogen in a sector-coupled energy model for {Europe}}, + url = {http://arxiv.org/abs/2205.11901}, + author = {Zeyen, Elisabeth and Victoria, Marta and Brown, Tom}, + year = {2022}, +} + + + +@article{MILLINGER2022120016, + title = {Are biofuel mandates cost-effective? - An analysis of transport fuels and biomass usage to achieve emissions targets in the European energy system}, + journal = {Applied Energy}, + volume = {326}, + pages = {120016}, + year = {2022}, + doi = {https://doi.org/10.1016/j.apenergy.2022.120016}, + author = {M. Millinger and L. Reichenberg and F. Hedenus and G. Berndes and E. Zeyen and T. Brown}, +} + +@misc{frysztackiInverseMethods2022, + title = {Inverse methods: {How} feasible are spatially low-resolved capacity expansion modeling results when dis-aggregated at high resolution?}, + url = {http://arxiv.org/abs/2209.02364}, + author = {Frysztacki, Martha Maria and Hagenmeyer, Veit and Brown, Tom}, + year = {2022}, +} + + + +@article{frysztackiStrongEffect2021a, + title = {The strong effect of network resolution on electricity system models with high shares of wind and solar}, + volume = {291}, + issn = {03062619}, + doi = {10.1016/j.apenergy.2021.116726}, + journal = {Applied Energy}, + author = {Frysztacki, Martha Maria and Hörsch, Jonas and Hagenmeyer, Veit and Brown, Tom}, + year = {2021}, + pages = {116726}, +} + + + + +@inproceedings{frysztackiModelingCurtailment2020a, + title = {Modeling {Curtailment} in {Germany}: {How} {Spatial} {Resolution} {Impacts} {Line} {Congestion}}, + shorttitle = {Modeling {Curtailment} in {Germany}}, + doi = {10.1109/EEM49802.2020.9221886}, + booktitle = {2020 17th {International} {Conference} on the {European} {Energy} {Market} ({EEM})}, + publisher = {IEEE}, + author = {Frysztacki, Martha and Brown, Tom}, + year = {2020}, + pages = {1--7}, +} + + +@article{frysztackiComparisonClustering2022, + title = {A comparison of clustering methods for the spatial reduction of renewable electricity optimisation models of {Europe}}, + volume = {5}, + url = {https://energyinformatics.springeropen.com/articles/10.1186/s42162-022-00187-7}, + doi = {10.1186/s42162-022-00187-7}, + number = {1}, + journal = {Energy Informatics}, + author = {Frysztacki, Martha Maria and Recht, Gereon and Brown, Tom}, + year = {2022}, + pages = {4}, +} + +@article{neumannNearoptimalFeasible2021, + title = {The near-optimal feasible space of a renewable power system model}, + volume = {190}, + doi = {10.1016/j.epsr.2020.106690}, + journal = {Electric Power Systems Research}, + author = {Neumann, Fabian and Brown, Tom}, + year = {2021}, + pages = {106690}, +} + +@article{neumannAssessmentsLinear2022, + title = {Assessments of linear power flow and transmission loss approximations in coordinated capacity expansion problems}, + volume = {314}, + doi = {10.1016/j.apenergy.2022.118859}, + journal = {Applied Energy}, + author = {Neumann, Fabian and Hagenmeyer, Veit and Brown, Tom}, + year = {2022}, +} + + +@article{neumannCostsRegional2021, + title = {Costs of regional equity and autarky in a renewable {European} power system}, + volume = {35}, + doi = {10.1016/j.esr.2021.100652}, + journal = {Energy Strategy Reviews}, + author = {Neumann, Fabian}, + year = {2021}, +} + + +@article{roseHydrogenRefueling2020, + title = {Hydrogen refueling station networks for heavy-duty vehicles in future power systems}, + volume = {83}, + issn = {13619209}, + doi = {10.1016/j.trd.2020.102358}, + journal = {Transportation Research Part D: Transport and Environment}, + author = {Rose, Philipp K. and Neumann, Fabian}, + year = {2020}, + pages = {102358}, +} + +@inproceedings{neumannHeuristicsTransmission2019a, + title = {Heuristics for {Transmission} {Expansion} {Planning} in {Low}-{Carbon} {Energy} {System} {Models}}, + doi = {10.1109/EEM.2019.8916411}, + booktitle = {2019 16th {International} {Conference} on the {European} {Energy} {Market} ({EEM})}, + publisher = {IEEE}, + author = {Neumann, Fabian and Brown, Tom}, + year = {2019}, + pages = {1--8}, +} + +@misc{neumannBroadRanges2021, + title = {Broad {Ranges} of {Investment} {Configurations} for {Renewable} {Power} {Systems}, {Robust} to {Cost} {Uncertainty} and {Near}-{Optimality}}, + url = {http://arxiv.org/abs/2111.14443}, + author = {Neumann, Fabian and Brown, Tom}, + year = {2021}, +} + +@misc{gazafroudiLongTermBenefits2021, + title = {Long-{Term} {Benefits} for {Renewables} {Integration} of {Network} {Boosters} for {Corrective} {Grid} {Security}}, + url = {http://arxiv.org/abs/2112.06667}, + author = {Gazafroudi, Amin Shokri and Zeyen, Elisabeth and Frysztacki, Martha and Neumann, Fabian and Brown, Tom}, + year = {2021}, +} + + + +@article{shokrigazafroudiTopologybasedApproximations2022, + title = {Topology-based approximations for {N} - 1 contingency constraints in power transmission networks}, + volume = {137}, + doi = {10.1016/j.ijepes.2021.107702}, + journal = {International Journal of Electrical Power \& Energy Systems}, + author = {Shokri Gazafroudi, Amin and Neumann, Fabian and Brown, Tom}, + year = {2022}, + pages = {107702}, +} + + +@inproceedings{horschRoleSpatial2017, + title = {The role of spatial scale in joint optimisations of generation and transmission for {European} highly renewable scenarios}, + doi = {10.1109/EEM.2017.7982024}, + booktitle = {2017 14th {International} {Conference} on the {European} {Energy} {Market} ({EEM})}, + publisher = {IEEE}, + author = {Horsch, Jonas and Brown, Tom}, + year = {2017}, + pages = {1--7}, +} + +@article{schlachtbergerBenefitsCooperation2017a, + title = {The benefits of cooperation in a highly renewable {European} electricity network}, + volume = {134}, + issn = {03605442}, + doi = {10.1016/j.energy.2017.06.004}, + journal = {Energy}, + author = {Schlachtberger, D.P. and Brown, T. and Schramm, S. and Greiner, M.}, + year = {2017}, + pages = {469--481}, +} + +@misc{glaumEnhancingGerman2022, + title = {Enhancing the {German} {Transmission} {Grid} {Through} {Dynamic} {Line} {Rating}}, + url = {http://arxiv.org/abs/2208.04716}, + author = {Glaum, Philipp and Hofmann, Fabian}, + year = {2022}, +} + +@misc{parzenPyPSAEarthNew2022, + title = {{PyPSA}-{Earth}. {A} {New} {Global} {Open} {Energy} {System} {Optimization} {Model} {Demonstrated} in {Africa}}, + url = {http://arxiv.org/abs/2209.04663}, + author = {Parzen, Maximilian and Abdel-Khalek, Hazem and Fedorova, Ekaterina and Mahmood, Matin and Frysztacki, Martha Maria and Hampp, Johannes and Franken, Lukas and Schumm, Leon and Neumann, Fabian and Poli, Davide and Kiprakis, Aristides and Fioriti, Davide}, + year = {2022}, +} diff --git a/doc/publications.rst b/doc/publications.rst new file mode 100644 index 00000000..c824873e --- /dev/null +++ b/doc/publications.rst @@ -0,0 +1,11 @@ +.. + SPDX-FileCopyrightText: 2023 The PyPSA-Eur Authors + + SPDX-License-Identifier: CC-BY-4.0 + +########################################## +Publications +########################################## + +.. bibliography:: + :all: diff --git a/doc/release_notes.rst b/doc/release_notes.rst index e70bc8ed..3af16477 100644 --- a/doc/release_notes.rst +++ b/doc/release_notes.rst @@ -1,5 +1,5 @@ .. - SPDX-FileCopyrightText: 2019-2021 The PyPSA-Eur Authors + SPDX-FileCopyrightText: 2019-2023 The PyPSA-Eur Authors SPDX-License-Identifier: CC-BY-4.0 @@ -7,30 +7,430 @@ Release Notes ########################################## - Upcoming Release ================ -* Add an efficiency factor of 88.55% to offshore wind capacity factors - as a proxy for wake losses. More rigorous modelling is `planned `_ - [`#277 `_]. -* The default deployment density of AC- and DC-connected offshore wind capacity is reduced from 3 MW/sqkm - to a more conservative estimate of 2 MW/sqkm [`#280 `_]. +* **Important:** The configuration files are now located in the ``config`` directory. This counts for ``config.default.yaml``, ``config.yaml`` as well as the test configuration files which are now located in ``config/test``. Config files that are still in the root directory will be ignored. -* Following discussion in `#285 `_ we have disabled the - correction factor for solar PV capacity factors by default while satellite data is used. - A correction factor of 0.854337 is recommended if reanalysis data like ERA5 is used. +* Bugfix: Correct typo in the CPLEX solver configuration in ``config.default.yaml``. -* Resource definitions for memory usage now follow [Snakemake standard resource definition](https://snakemake.readthedocs.io/en/stable/snakefiles/rules.html#standard-resources) ```mem_mb`` rather than ``mem``. +* Renamed script file from PyPSA-EUR ``build_load_data`` to ``build_electricity_demand`` and ``retrieve_load_data`` to ``retrieve_electricity_demand``. -* Network building is made deterministic by supplying a fixed random state to network clustering routines. +* Fix docs readthedocs built + +* Add plain hydrogen turbine as additional re-electrification option besides + hydrogen fuel cell. Add switches for both re-electrification options under + ``sector: hydrogen_turbine:`` and ``sector: hydrogen_fuel_cell:``. + +* Remove ``vresutils`` dependency. + +* Add option to include a piecewise linear approximation of transmission losses, + e.g. by setting ``solving: options: transmission_losses: 2`` for an + approximation with two tangents. + +PyPSA-Eur 0.8.0 (18th March 2023) +================================= + +.. note:: + This is the first release of PyPSA-Eur which incorporates its sector-coupled extension PyPSA-Eur-Sec (v0.7.0). + PyPSA-Eur can now directly be used for high-resolution energy system modelling with sector-coupling + including industry, transport, buildings, biomass, and detailed carbon management. The PyPSA-Eur-Sec repository is now deprecated. + +* The :mod:`solve_network` script now uses the ``linopy`` backend of PyPSA and is applied for both electricity-only and sector-coupled models. This + requires an adjustment of custom ``extra_functionality``. + See the `migration guide `_ in the PyPSA documentation. + +* The configuration file ``config.default.yaml`` now also includes settings for + sector-coupled models, which will be ignored when the user runs + electricity-only studies. Common settings have been aligned. + +* Unified handling of scenario runs. Users can name their scenarios in ``run: + name:``, which will encapsulate results in a correspondingly named folder + under ``results``. Additionally, users can select to encapsulate the ``resources`` folder + in the same way, through the setting ``run: shared_resources:``. + +* The solver configurations in ``config.default.yaml`` are now modularized. To + change the set of solver options, change to value in ``solving: solver: + options:`` to one of the keys in ``solving: solver_options:``. + +* The ``Snakefile`` has been modularised. Rules are now organised in the + ``rules`` directory. + +* Unified wildcard for transmission line expansion from ``{lv}`` and ``{ll}`` to + ``{ll}``. + +* Renamed collection rules to distinguish between sector-coupled and + electricity-only runs: ``cluster_networks``, ``extra_components_networks``, + ``prepare_elec_networks``, ``prepare_sector_networks``, + ``solve_elec_networks``, ``solve_sector_networks``, ``plot_networks``, + ``all``. + +* Some rules with a small computational footprint have been declared as ``localrules``. + +* Added new utility rules ``purge`` for clearing workflow outputs from the + directory, ``doc`` to build the documentation, and ``dag`` to create a + workflow graph. + +* The workflow can now be used with the ``snakemake --use-conda`` directive. In + this way, Snakemake can automatically handle the installation of dependencies. + +* Data retrieval rules now retry download twice in case of connection problems. + +* The cutouts are now marked as ``protected()`` in the workflow to avoid + accidental recomputation. + +* The files contained in ``data/bundle`` are now marked as ``ancient()`` as they + are not expected to be altered by workflow changes. + +* Preparation scripts for sector-coupled models have been improved to only run + for the subset of selected countries rather than all European countries. + +* Added largely automated country code conversion using ``country_converter``.. + +* Test coverage extended to an electricity-only run and sector-coupled runs for + overnight and myopic foresight scenarios for Ubuntu, MacOS and Windows. + +* Apply ``black`` and ``snakefmt`` code formatting. + +* Implemented REUSE compatibility for merged code. + +* Merged documentations of PyPSA-Eur and PyPSA-Eur-Sec. + +* Added a tutorial for running sector-coupled models to the documentation + (:ref:`tutorial_sector`). + +* Deleted ``config.tutorial.yaml``, which is superseded by + ``test/config.electricity.yaml``. + +* The ``mock_snakemake`` function now also takes configuration files as inputs. + +* The helper scripts ``helper.py`` and ``_helpers.py`` have been merged into + ``_helpers.py``. + +* The unused rule ``plot_p_nom_max`` has been removed. + +* The rule ``solve_network`` from PyPSA-Eur-Sec was renamed to + ``solve_sector_network``. + +* The plotting scripts from PyPSA-Eur (electricity-only) have been removed and + are superseded by those from PyPSA-Eur-Sec (sector-coupled). + +PyPSA-Eur Releases (pre-merge) +============================== + +PyPSA-Eur 0.7.0 (16th February 2023) +------------------------------------ + + +**New Features** + +* Carriers of generators can now be excluded from aggregation in clustering + network and simplify network (see ``exclude_carriers``). + +* Added control for removing stubs in :mod:`simplify_network` with options + ``remove_stubs`` and ``remove_stubs_across_countries``. + +* Add control for showing a progressbar in ``atlite`` processes + (``show_progress``). Disabling the progressbar saves a lot of time. + +* Added control for resolution of land eligibility analysis (see + ``excluder_resolution``). + + +**Breaking Changes** + +* The config entry ``snapshots: closed:`` was renamed to ``snapshots: + inclusive:`` to address the upstream deprecation with ``pandas=1.4``. The + previous setting ``None`` is no longer supported and replaced by ``both``, see + the `pandas documentation + `_. + Minimum version is now ``pandas>=1.4``. + +* The configuration setting ``summary_dir`` was removed. + + +**Changes** + +* Configuration defaults to new ``technology-data`` version 0.5.0. + +* Fixed CRS warnings when projection of datasets was not specified. + +* Cleaned shape unary unions. + +* Increased resource requirements for some rules. + +* Updated documentation. + +* The documentation now uses the ``sphinx_book_theme``. + + +**Bugs and Compatibility** + + +* Bugfix: Corrected extent of natural protection areas in :mod:`build_natura_raster`. + +* Bugfix: Use correct load variables for formulating reserve constraints. + +* Bugfix: Use all available energy-to-power ratios for hydropower plants. + +* Bugfix: The most recent processing of the ``entsoegridkit`` extract required + further manual corrections. Also, the connection points of TYNDP links were + corrected. + +* Bugfix: Handle absence of hydropower inflow in ``EQ`` constraint. + +* Compatibility with ``pyomo>=6.4.3`` in :mod:`cluster_network`. + +* Upgrade to ``shapely>=2``. + +* Updated version of CI cache action to version 3. +* +* Updated dependency constraints in ``environment.yaml``. + +* Address various deprecation warnings. + + + +PyPSA-Eur 0.6.1 (20th September 2022) +------------------------------------- + +* Individual commits are now tested against pre-commit hooks. This includes + black style formatting, sorting of package imports, Snakefile formatting and + others. Installation instructions can for the pre-commit can be found `here + `_. + +* Pre-commit CI is now part of the repository's CI. + +* The software now supports running the workflow with different settings within + the same directory. A new config section ``run`` was created that specifies + under which scenario ``name`` the created resources, networks and results + should be stored. If ``name`` is not specified, the workflow uses the default + paths. The entry ``shared_cutouts`` specifies whether the run should use + cutouts from the default root directory or use run-specific cutouts. + +* The heuristic distribution of today's renewable capacity installations is now + enabled by default. + +* The marginal costs of conventional generators are now taking the plant-specific + efficiency into account where available. + +PyPSA-Eur 0.6.0 (10th September 2022) +------------------------------------- + +* Functionality to consider shipping routes when calculating the available area + for offshore technologies were added. Data for the shipping density comes from + the `Global Shipping Traffic Density dataset + `_. + +* When transforming all transmission lines to a unified voltage level of 380kV, + the workflow now preserves the transmission capacity rather than electrical + impedance and reactance. + +* Memory resources are now specified for all rules. + +* Filtering of power plant data was adjusted to new versions of + ``powerplantmatching``. + +* The resolution of land exclusion calculation is now a configurable option. See + setting ``excluder_resolution``. + + +PyPSA-Eur 0.5.0 (27th July 2022) +-------------------------------- + +**New Features** * New network topology extracted from the ENTSO-E interactive map. +* Added existing renewable capacities for all countries based on IRENA + statistics (IRENASTAT) using new ``powerplantmatching`` version: +* The corresponding ``config`` entries changed from ``estimate_renewable_capacities_from_capacity_stats`` to ``estimate_renewable_capacities``. +* The estimation is endabled by setting the subkey ``enable`` to ``True``. +* Configuration of reference year for capacities can be configured (default: ``2020``) +* The list of renewables provided by the OPSD database can be used as a basis, using the tag ``from_opsd: True``. This adds the renewables from the database and fills up the missing capacities with the heuristic distribution. +* Uniform expansion limit of renewable build-up based on existing capacities + can be configured using ``expansion_limit`` option (default: ``false``; + limited to determined renewable potentials) +* Distribution of country-level capacities proportional to maximum annual + energy yield for each bus region +* The config key ``renewable_capacities_from_OPSD`` is deprecated and was moved + under the section, ``estimate_renewable_capacities``. To enable it, set + ``from_opsd`` to ``True``. + +* Add operational reserve margin constraint analogous to `GenX implementation + `_. Can be activated + with config setting ``electricity: operational_reserve:``. + +* Implement country-specific Energy Availability Factors (EAFs) for nuclear + power plants based on IAEA 2018-2020 reported country averages. These are + specified ``data/nuclear_p_max_pu.csv`` and translate to static ``p_max_pu`` + values. + +* Add function to add global constraint on use of gas in :mod:`prepare_network`. + This can be activated by including the keyword ``CH4L`` in the ``{opts}`` + wildcard which enforces the limit set in ``electricity: gaslimit:`` given in + MWh thermal. Alternatively, it is possible to append a number in the ``{opts}`` + wildcard, e.g. ``CH4L200`` which limits the gas use to 200 TWh thermal. + +* Add option to alter marginal costs of a carrier through ``{opts}`` wildcard: + ``+m``, e.g. ``gas+m2.5``, will multiply the default marginal + cost for gas by factor 2.5. + +* Hierarchical clustering was introduced. Distance metric is calculated from + renewable potentials on hourly (feature entry ends with ``-time``) or annual + (feature entry in config end with ``-cap``) values. + +* Greedy modularity clustering was introduced. Distance metric is based on electrical distance taking into account the impedance of all transmission lines of the network. + +* Techno-economic parameters of technologies (e.g. costs and efficiencies) will + now be retrieved from a separate repository `PyPSA/technology-data + `_ that collects assumptions from a + variety of sources. It is activated by default with ``enable: + retrieve_cost_data: true`` and controlled with ``costs: year:`` and ``costs: + version:``. The location of this data changed from ``data/costs.csv`` to + ``resources/costs.csv`` [`#184 + `_]. + +* A new section ``conventional`` was added to the config file. This section + contains configurations for conventional carriers. + +* Add configuration option to implement arbitrary generator attributes for + conventional generation technologies. + +* Add option to set CO2 emission prices through ``{opts}`` wildcard: ``Ep``, + e.g. ``Ep180``, will set the EUR/tCO2 price. + +**Changes** + +* Add an efficiency factor of 88.55% to offshore wind capacity factors as a + proxy for wake losses. More rigorous modelling is `planned + `_ [`#277 + `_]. + +* Following discussion in `#285 + `_ we have disabled the + correction factor for solar PV capacity factors by default while satellite + data is used. A correction factor of 0.854337 is recommended if reanalysis + data like ERA5 is used. + +* The default deployment density of AC- and DC-connected offshore wind capacity + is reduced from 3 MW/sqkm to a more conservative estimate of 2 MW/sqkm [`#280 + `_]. + +* The inclusion of renewable carriers is now specified in the config entry + ``renewable_carriers``. Before this was done by commenting/uncommenting + sub-sections in the ``renewable`` config section. + +* Now, all carriers that should be extendable have to be listed in the config + entry ``extendable_carriers``. Before, renewable carriers were always set to + be extendable. For backwards compatibility, the workflow is still looking at + the listed carriers under the ``renewable`` key. In the future, all of them + have to be listed under ``extendable_carriers``. + +* It is now possible to set conventional power plants as extendable by adding + them to the list of extendable ``Generator`` carriers in the config. + +* Listing conventional carriers in ``extendable_carriers`` but not in + ``conventional_carriers``, sets the corresponding conventional power plants as + extendable without a lower capacity bound of today's capacities. + +* Now, conventional carriers have an assigned capital cost by default. + +* The ``build_year`` and ``lifetime`` column are now defined for conventional + power plants. + +* Use updated SARAH-2 and ERA5 cutouts with slightly wider scope to east and + additional variables. + +* Resource definitions for memory usage now follow `Snakemake standard resource + definition + `_ + ``mem_mb`` rather than ``mem``. + +* The powerplants that have been shut down by 2021 are filtered out. + +* Updated historical `EIA hydro generation data `_. + +* Network building is made deterministic by supplying a fixed random state to + network clustering routines. + +* Clustering strategies for generator and bus attributes can now be specified directly in the ``config/config.yaml``. + +* Iterative solving with impedance updates is skipped if there are no expandable + lines. + +* The unused argument ``simple_hvdc_costs`` in :mod:`add_electricity` was + removed. + +* Switch from Germany to Belgium for continuous integration and tutorial to save + resources. + +* It is now possible to skip the progressbar for land eligibility calculations for additional speedup. + +**Bugs and Compatibility** + +* Fix crs bug. Change crs 4236 to 4326. + +* ``powerplantmatching>=0.5.1`` is now required for ``IRENASTATS``. + +* Update rasterio version to correctly calculate exclusion raster. + +* It is now possible to run the workflow with only landlocked countries. + +* Bugfixes for manual load adjustments across years. + +* Enable parallel computing with new dask version. + +* Restore compatibility of ``mock_snakemake`` with latest Snakemake versions. + +* Script ``build_bus_regions``: move voronoi partition from vresutils to script. + +* Script ``add_electricity``: remove ``vresutils.costdata.annuity`` dependency. + +* Fix the plot_network snakemake rule. + +* Compatibility with pandas 1.4. Address deprecations. + +* Restore Windows compatibility by using ``shutil.move`` rather than ``mv``. + + +Synchronisation Release - Ukraine and Moldova (17th March 2022) +--------------------------------------------------------------- + +On March 16, 2022, the transmission networks of Ukraine and Moldova have +successfully been `synchronised with the continental European grid `_. We have taken +this as an opportunity to add the power systems of Ukraine and Moldova to +PyPSA-Eur. This includes: + +.. image:: img/synchronisation.png + :width: 500 + +* the transmission network topology from the `ENTSO-E interactive map `_. + +* existing power plants (incl. nuclear, coal, gas and hydro) from the `powerplantmatching `_ tool + +* country-level load time series from ENTSO-E through the `OPSD platform `_, which are then distributed heuristically to substations by GDP and population density. + +* wind and solar profiles based on ERA5 and SARAH-2 weather data + +* hydro profiles based on historical `EIA generation data `_ + +* a simplified calculation of wind and solar potentials based on the `Copernicus Land Cover dataset `_. + +* electrical characteristics of 750 kV transmission lines + +The Crimean power system is currently disconnected from the main Ukrainian grid and, hence, not included. + +This release is not on the ``master`` branch. It can be used with + +.. code-block:: bash + + git clone https://github.com/pypsa/pypsa-eur + git checkout synchronisation-release PyPSA-Eur 0.4.0 (22th September 2021) -===================================== +------------------------------------- **New Features and Changes** @@ -43,7 +443,7 @@ PyPSA-Eur 0.4.0 (22th September 2021) (~factor 2). A lot of the code which calculated the land-use availability is now outsourced and does not rely on ``glaes``, ``geokit`` anymore. This facilitates the environment building and version compatibility of ``gdal``, ``libgdal`` with - other packages [`#224 `_]. + other packages [`#224 `_]. * Implemented changes to ``n.snapshot_weightings`` in new PyPSA version v0.18 (cf. `PyPSA/PyPSA/#227 `_) @@ -66,17 +466,17 @@ PyPSA-Eur 0.4.0 (22th September 2021) used or maintained. * The connection cost of generators in :mod:`simplify_network` are now reported - in ``resources/connection_costs_s{simpl}.csv`` + in ``resources/connection_costs_s{simpl}.csv`` [`#261 `_]. * The tutorial cutout was renamed from ``cutouts/europe-2013-era5.nc`` to - ``cutouts/europe-2013-era5-tutorial.nc`` to accomodate tutorial and productive + ``cutouts/be-03-2013-era5.nc`` to accommodate tutorial and productive cutouts side-by-side. * The flag ``keep_all_available_areas`` in the configuration for renewable - potentials was deprecated and now defaults to ``True``. + potentials was deprecated and now defaults to ``True``. -* Update dependencies in ``envs/environment.yaml`` +* Update dependencies in ``envs/environment.yaml`` [`#257 `_] * Continuous integration testing switches to Github Actions from Travis CI @@ -105,7 +505,7 @@ PyPSA-Eur 0.4.0 (22th September 2021) * Value for ``co2base`` in ``config.yaml`` adjusted to 1.487e9 t CO2-eq (from 3.1e9 t CO2-eq). The new value represents emissions related to the electricity sector for EU+UK+Balkan. The old value was too high and used when - the emissions wildcard in ``{opts}`` was used + the emissions wildcard in ``{opts}`` was used [`#233 `_]. * Add escape in :mod:`base_network` if all TYNDP links are already @@ -113,11 +513,11 @@ PyPSA-Eur 0.4.0 (22th September 2021) [`#246 `_]. * In :mod:`solve_operations_network` the optimised capacities are now - fixed for all extendable links, not only HVDC links + fixed for all extendable links, not only HVDC links [`#244 `_]. * The ``focus_weights`` are now also considered when pre-clustering in - the :mod:`simplify_network` rule + the :mod:`simplify_network` rule [`#241 `_]. * in :mod:`build_renewable_profile` where offshore wind profiles could @@ -137,25 +537,24 @@ PyPSA-Eur 0.4.0 (22th September 2021) load shedding generators are only added at the AC buses, excluding buses for H2 and battery stores [`#269 `_]. -* Delete duplicated capital costs at battery discharge link +* Delete duplicated capital costs at battery discharge link [`#240 `_]. * Propagate the solver log file name to the solver. Previously, the PyPSA network solving functions were not told about the solver logfile specified in the Snakemake file [`#247 `_] - PyPSA-Eur 0.3.0 (7th December 2020) -=================================== +----------------------------------- **New Features** -Using the ``{opts}`` wildcard for scenarios: +Using the ``{opts}`` wildcard for scenario: * An option is introduced which adds constraints such that each country or node produces on average a minimal share of its total consumption itself. For example ``EQ0.5c`` set in the ``{opts}`` wildcard requires each country to produce on average at least 50% of its consumption. Additionally, the option ``ATK`` requires autarky at each node and removes all means of power transmission through lines and links. ``ATKc`` only removes - cross-border transfer capacities. + cross-border transfer capacities. [`#166 `_]. * Added an option to alter the capital cost (``c``) or installable potentials (``p``) of carriers by a factor via ``carrier+{c,p}factor`` in the ``{opts}`` wildcard. @@ -176,7 +575,7 @@ More OPSD integration: This will overwrite the capacities calculated from the heuristic approach in :func:`estimate_renewable_capacities()` [`#212 `_]. -* Electricity consumption data is now retrieved directly from the `OPSD website `_ using the rule :mod:`build_load_data`. +* Electricity consumption data is now retrieved directly from the `OPSD website `_ using the rule :mod:`build_electricity_demand`. The user can decide whether to take the ENTSO-E power statistics data (default) or the ENTSO-E transparency data [`#211 `_]. @@ -242,11 +641,11 @@ Other: [`#191 `_]. * Raise a warning if ``tech_colors`` in the config are not defined for all carriers - [`#178 `_]. + [`#178 `_]. PyPSA-Eur 0.2.0 (8th June 2020) -================================== +------------------------------- * The optimization is now performed using the ``pyomo=False`` setting in the :func:`pypsa.lopf.network_lopf`. This speeds up the solving process significantly and consumes much less memory. The inclusion of additional constraints were adjusted to the new implementation. They are all passed to the :func:`network_lopf` function via the ``extra_functionality`` argument. The rule ``trace_solve_network`` was integrated into the rule :mod:`solve_network` and can be activated via configuration with ``solving: options: track_iterations: true``. The charging and discharging capacities of batteries modelled as store-link combination are now coupled [`#116 `_]. @@ -264,7 +663,7 @@ PyPSA-Eur 0.2.0 (8th June 2020) * Removed the ``id`` column for custom power plants in ``data/custom_powerplants.csv`` to avoid custom power plants with conflicting ids getting attached to the wrong bus [`#131 `_]. -* Add option ``renewables: {carrier}: keep_all_available_areas:`` to use all availabe weather cells for renewable profile and potential generation. The default ignores weather cells where only less than 1 MW can be installed [`#150 `_]. +* Add option ``renewables: {carrier}: keep_all_available_areas:`` to use all available weather cells for renewable profile and potential generation. The default ignores weather cells where only less than 1 MW can be installed [`#150 `_]. * Added a function ``_helpers.load_network()`` which loads a network with overridden components specified in ``snakemake.config['override_components']`` [`#128 `_]. @@ -279,7 +678,7 @@ PyPSA-Eur 0.2.0 (8th June 2020) * Updated ``conda`` environment regarding ``pypsa``, ``pyproj``, ``gurobi``, ``lxml``. This release requires PyPSA v0.17.0. PyPSA-Eur 0.1.0 (9th January 2020) -================================== +---------------------------------- This is the first release of PyPSA-Eur, a model of the European power system at the transmission network level. Recent changes include: @@ -295,7 +694,7 @@ This is the first release of PyPSA-Eur, a model of the European power system at * Data dependencies are now retrieved directly from within the snakemake workflow [`#86 `_]. -* Emission prices can be added to marginal costs of generators through the keyworks ``Ep`` in the ``{opts}`` wildcard [`#100 `_]. +* Emission prices can be added to marginal costs of generators through the keywords ``Ep`` in the ``{opts}`` wildcard [`#100 `_]. * An option is introduced to add extendable nuclear power plants to the network [`#98 `_]. @@ -309,6 +708,566 @@ This is the first release of PyPSA-Eur, a model of the European power system at * The new function ``_helpers.mock_snakemake`` creates a ``snakemake`` object which mimics the actual ``snakemake`` object produced by workflow by parsing the ``Snakefile`` and setting all paths for inputs, outputs, and logs. This allows running all scripts within a (I)python terminal (or just by calling ``python ``) and thereby facilitates developing and debugging scripts significantly [`#107 `_]. + +PyPSA-Eur-Sec Releases (pre-merge) +================================== + +PyPSA-Eur-Sec 0.7.0 (16th February 2023) +---------------------------------------- + +This release includes many new features. Highlights include new gas +infrastructure data with retrofitting options for hydrogen transport, improved +carbon management and infrastructure planning, regionalised potentials for +hydrogen underground storage and carbon sequestration, new applications for +biomass, and explicit modelling of methanol and ammonia as separate energy +carriers. + +This release is known to work with `PyPSA-Eur +`_ Version 0.7.0 and `Technology Data +`_ Version 0.5.0. + +**Gas Transmission Network** + +* New rule ``retrieve_gas_infrastructure_data`` that downloads and extracts the + SciGRID_gas `IGGIELGN `_ dataset from + zenodo. It includes data on the transmission routes, pipe diameters, + capacities, pressure, and whether the pipeline is bidirectional and carries + H-Gas or L-Gas. + +* New rule ``build_gas_network`` processes and cleans the pipeline data from + SciGRID_gas. Missing or uncertain pipeline capacities can be inferred by + diameter. + +* New rule ``build_gas_input_locations`` compiles the LNG import capacities + (from the Global Energy Monitor's `Europe Gas Tracker + `_, pipeline + entry capacities and local production capacities for each region of the model. + These are the regions where fossil gas can eventually enter the model. + +* New rule ``cluster_gas_network`` that clusters the gas transmission network + data to the model resolution. Cross-regional pipeline capacities are + aggregated (while pressure and diameter compatibility is ignored), + intra-regional pipelines are dropped. Lengths are recalculated based on the + regions' centroids. + +* With the option ``sector: gas_network:``, the existing gas network is added + with a lossless transport model. A length-weighted `k-edge augmentation + algorithm + `_ + can be run to add new candidate gas pipelines such that all regions of the + model can be connected to the gas network. The number of candidates can be + controlled via the setting ``sector: gas_network_connectivity_upgrade:``. When + the gas network is activated, all the gas demands are regionally disaggregated + as well. + +* New constraint allows endogenous retrofitting of gas pipelines to hydrogen + pipelines. This option is activated via the setting ``sector: H2_retrofit:``. + For every unit of gas pipeline capacity dismantled, ``sector: + H2_retrofit_capacity_per_CH4`` units are made available as hydrogen pipeline + capacity in the corresponding corridor. These repurposed hydrogen pipelines + have lower costs than new hydrogen pipelines. Both new and repurposed + pipelines can be built simultaneously. The retrofitting option ``sector: + H2_retrofit:`` also works with a copperplated methane infrastructure, i.e. + when ``sector: gas_network: false``. + +* New hydrogen pipelines can now be built where there are already power or gas + transmission routes. Previously, only the electricity transmission routes were + considered. + +**Carbon Management and Biomass** + +* Add option to spatially resolve carrier representing stored carbon dioxide + (``co2_spatial``). This allows for more detailed modelling of CCUTS, e.g. + regarding the capturing of industrial process emissions, usage as feedstock + for electrofuels, transport of carbon dioxide, and geological sequestration + sites. + +* Add option for regionally-resolved geological carbon dioxide sequestration + potentials through new rule ``build_sequestration_potentials`` based on + `CO2StoP `_. This + can be controlled in the section ``regional_co2_sequestration_potential`` of + the ``config.yaml``. It includes options to select the level of conservatism, + whether onshore potentials should be included, the respective upper and lower + limits per region, and an annualisation parameter for the cumulative + potential. The defaults are preliminary and will be validated the next + release. + +* Add option to sweep the global CO2 sequestration potentials with keyword + ``seq200`` in the ``{sector_opts}`` wildcard (for limit of 200 Mt CO2). + +* Add option to include `Allam cycle gas power plants + `_ (``allam_cycle``). + +* Add option for planning a new carbon dioxide network (``co2network``). + +* Separate option to regionally resolve biomass (``biomass_spatial``) from + option to allow biomass transport (``biomass_transport``). + +* Add option for biomass boilers (wood pellets) for decentral heating. + +* Add option for BioSNG (methane from biomass) with and without carbon capture. + +* Add option for BtL (biomass to liquid fuel/oil) with and without carbon + capture. + + +**Other new features** + +* Add regionalised hydrogen salt cavern storage potentials from `Technical + Potential of Salt Caverns for Hydrogen Storage in Europe + `_. This data is compiled in + a new rule ``build_salt_cavern_potentials``. + +* Add option to resolve ammonia as separate energy carrier with Haber-Bosch + synthesis, ammonia cracking, storage and industrial demand. The ammonia + carrier can be nodally resolved or copperplated across Europe (see + ``ammonia``). + +* Add methanol as energy carrier, methanolisation as process, and option for + methanol demand in shipping sector. + +* Shipping demand now defaults to methanol rather than liquefied hydrogen + until 2050. + +* Demand for liquid hydrogen in international shipping is now geographically + distributed by port trade volumes in a new rule ``build_shipping_demand`` + using data from the `World Bank Data Catalogue + `_. + Domestic shipping remains distributed by population. + +* Add option to aggregate network temporally using representative snapshots or + segments (with `tsam `_). + +* Add option for minimum part load for Fischer-Tropsch plants (default: 90%) and + methanolisation plants (default: 50%). + +* Add option to use waste heat of electrolysis in district heating networks + (``use_electrolysis_waste_heat``). + +* Add option for coal CHPs with carbon capture (see ``coal_cc``). + +* In overnight optimisation, it is now possible to specify a year for the + technology cost projections separate from the planning horizon. + +* New config options for changing energy demands in aviation + (``aviation_demand_factor``) and HVC industry (``HVC_demand_factor``), as well + as explicit ICE shares for land transport (``land_transport_ice_share``) and + agriculture machinery (``agriculture_machinery_oil_share``). + +* It is now possible to merge residential and services heat buses to reduce the + problem size (see ``cluster_heat_nodes``). + +* Added option to tweak (almost) any configuration parameter through the + ``{sector_opts}`` wildcard. The regional_co2_sequestration_potential is + triggered by the prefix ``CF+`` after which it is possible to pipe to any + setting that does not contain underscores (``_``). Example: + ``CF+sector+v2g+false`` disables vehicle-to-grid flexibility. + +* Option ``retrieve_sector_databundle`` to automatically retrieve and extract + data bundle. + +* Removed the need to clone ``technology-data`` repository in a parallel + directory. The new approach automatically retrieves the technology data from + remote in the rule ``retrieve_cost_data``. + +* Improved network plots including better legends, hydrogen retrofitting network + display, and change to EqualEarth projection. A new color scheme for + technologies was also introduced. + +* Add two new rules ``build_transport_demand`` and + ``build_population_weighted_energy_totals`` using code previously contained in + ``prepare_sector_network``. + +* Rules that convert weather data with ``atlite`` now largely run separately for + categories residential, rural and total. + +* Units are assigned to the buses. These only provide a better understanding. + The specifications of the units are not taken into account in the + optimisation, which means that no automatic conversion of units takes place. + +* Configuration file and wildcards are now stored under ``n.meta`` in every + PyPSA network. + +* Updated `data bundle + `_ + that includes the hydrogan salt cavern storage potentials. + +* Updated and extended documentation in + + +* Added new rule ``copy_conda_env`` that exports a list of packages with which + the workflow was executed. + +* Add basic continuous integration using Github Actions. + +* Add basic ``rsync`` setup. + +**Bugfixes** + +* The CO2 sequestration limit implemented as GlobalConstraint (introduced in the + previous version) caused a failure to read in the shadow prices of other + global constraints. + +* Correct capital cost of Fischer-Tropsch according to new units in + ``technology-data`` repository. + +* Fix unit conversion error for thermal energy storage. + +* For myopic pathway optimisation, set optimised capacities of power grid + expansion of previous iteration as minimum capacity for next iteration. + +* Further rather minor bugfixes for myopic optimisation code (see `#256 + `_). + + +Many thanks to all who contributed to this release! + + +PyPSA-Eur-Sec 0.6.0 (4 October 2021) +------------------------------------ + +This release includes +improvements regarding the basic chemical production, +the addition of plastics recycling, +the addition of the agriculture, forestry and fishing sector, +more regionally resolved biomass potentials, +CO2 pipeline transport and storage, and +more options in setting exogenous transition paths, +besides many performance improvements. + +This release is known to work with `PyPSA-Eur +`_ Version 0.4.0, `Technology Data +`_ Version 0.3.0 and +`PyPSA `_ Version 0.18.0. + +Please note that the data bundle has also been updated. + + +**General** + +* With this release, we change the license from copyleft GPLv3 to the more + liberal MIT license with the consent of all contributors. + + +**New features and functionality** + +* Distinguish costs for home battery storage and inverter from utility-scale + battery costs. + +* Separate basic chemicals into HVC (high-value chemicals), chlorine, methanol and ammonia + [`#166 `_]. + +* Add option to specify reuse, primary production, and mechanical and chemical + recycling fraction of platics + [`#166 `_]. + +* Include energy demands and CO2 emissions for the agriculture, forestry and fishing sector. + It is included by default through the option ``A`` in the ``sector_opts`` wildcard. + Part of the emissions (1.A.4.c) was previously assigned to "industry non-elec" in the ``co2_totals.csv``. + Hence, excluding the agriculture sector will now lead to a tighter CO2 limit. + Energy demands are taken from the JRC IDEES database (missing countries filled with eurostat data) + and are split into + electricity (lighting, ventilation, specific electricity uses, pumping devices (electric)), + heat (specific heat uses, low enthalpy heat) + machinery oil (motor drives, farming machine drives, pumping devices (diesel)). + Heat demand is assigned at "services rural heat" buses. + Electricity demands are added to low-voltage buses. + Time series for demands are constant and distributed inside countries by population + [`#147 `_]. + +* Include today's district heating shares in myopic optimisation and add option + to specify exogenous path for district heating share increase under ``sector: + district_heating:`` [`#149 `_]. + +* Added option for hydrogen liquefaction costs for hydrogen demand in shipping. + This introduces a new ``H2 liquid`` bus at each location. It is activated via + ``sector: shipping_hydrogen_liquefaction: true``. + +* The share of shipping transformed into hydrogen fuel cell can be now defined + for different years in the ``config.yaml`` file. The carbon emission from the + remaining share is treated as a negative load on the atmospheric carbon dioxide + bus, just like aviation and land transport emissions. + +* The transformation of the Steel and Aluminium production can be now defined + for different years in the ``config.yaml`` file. + +* Include the option to alter the maximum energy capacity of a store via the + ``carrier+factor`` in the ``{sector_opts}`` wildcard. This can be useful for + sensitivity analyses. Example: ``co2 stored+e2`` multiplies the ``e_nom_max`` by + factor 2. In this example, ``e_nom_max`` represents the CO2 sequestration + potential in Europe. + +* Use `JRC ENSPRESO database `_ to + spatially disaggregate biomass potentials to PyPSA-Eur regions based on + overlaps with NUTS2 regions from ENSPRESO (proportional to area) (`#151 + `_). + +* Add option to regionally disaggregate biomass potential to individual nodes + (previously given per country, then distributed by population density within) + and allow the transport of solid biomass. The transport costs are determined + based on the `JRC-EU-Times Bioenergy report + `_ in the new optional rule + ``build_biomass_transport_costs``. Biomass transport can be activated with the + setting ``sector: biomass_transport: true``. + +* Add option to regionally resolve CO2 storage and add CO2 pipeline transport + because geological storage potential, + CO2 utilisation sites and CO2 capture sites may be separated. The CO2 network + is built from zero based on the topology of the electricity grid (greenfield). + Pipelines are assumed to be bidirectional and lossless. Furthermore, neither + retrofitting of natural gas pipelines (required pressures are too high, 80-160 + bar vs <80 bar) nor other modes of CO2 transport (by ship, road or rail) are + considered. The regional representation of CO2 is activated with the config + setting ``sector: co2_network: true`` but is deactivated by default. The + global limit for CO2 sequestration now applies to the sum of all CO2 stores + via an ``extra_functionality`` constraint. + +* The myopic option can now be used together with different clustering for the + generators and the network. The existing renewable capacities are split evenly + among the regions in every country [`#144 `_]. + +* Add optional function to use ``geopy`` to locate entries of the Hotmaps + database of industrial sites with missing location based on city and country, + which reduces missing entries by half. It can be activated by setting + ``industry: hotmaps_locate_missing: true``, takes a few minutes longer, and + should only be used if spatial resolution is coarser than city level. + + +**Performance and Structure** + +* Extended use of ``multiprocessing`` for much better performance + (from up to 20 minutes to less than one minute). + +* Handle most input files (or base directories) via ``snakemake.input``. + +* Use of ``mock_snakemake`` from PyPSA-Eur. + +* Update ``solve_network`` rule to match implementation in PyPSA-Eur by using + ``n.ilopf()`` and remove outdated code using ``pyomo``. + Allows the new setting to skip iterated impedance updates with ``solving: + options: skip_iterations: true``. + +* The component attributes that are to be overridden are now stored in the folder + ``data/override_component_attrs`` analogous to ``pypsa/component_attrs``. + This reduces verbosity and also allows circumventing the ``n.madd()`` hack + for individual components with non-default attributes. + This data is also tracked in the Snakefile. + A function ``helper.override_component_attrs`` was added that loads this data + and can pass the overridden component attributes into ``pypsa.Network()``. + +* Add various parameters to ``config.default.yaml`` which were previously hardcoded inside the scripts + (e.g. energy reference years, BEV settings, solar thermal collector models, geomap colours). + +* Removed stale industry demand rules ``build_industrial_energy_demand_per_country`` + and ``build_industrial_demand``. These are superseded with more regionally resolved rules. + +* Use simpler and shorter ``gdf.sjoin()`` function to allocate industrial sites + from the Hotmaps database to onshore regions. + This change also fixes a bug: + The previous version allocated sites to the closest bus, + but at country borders (where Voronoi cells are distorted by the borders), + this had resulted in e.g. a Spanish site close to the French border + being wrongly allocated to the French bus if the bus center was closer. + +* Retrofitting rule is now only triggered if endogeneously optimised. + +* Show progress in build rules with ``tqdm`` progress bars. + +* Reduced verbosity of ``Snakefile`` through directory prefixes. + +* Improve legibility of ``config.default.yaml`` and remove unused options. + +* Use the country-specific time zone mappings from ``pytz`` rather than a manual mapping. + +* A function ``add_carrier_buses()`` was added to the ``prepare_network`` rule to reduce code duplication. + +* In the ``prepare_network`` rule the cost and potential adjustment was moved into an + own function ``maybe_adjust_costs_and_potentials()``. + +* Use ``matplotlibrc`` to set the default plotting style and backend. + +* Added benchmark files for each rule. + +* Consistent use of ``__main__`` block and further unspecific code cleaning. + +* Updated data bundle and moved data bundle to zenodo.org (`10.5281/zenodo.5546517 `_). + + +**Bugfixes and Compatibility** + +* Compatibility with ``atlite>=0.2``. Older versions of ``atlite`` will no longer work. + +* Corrected calculation of "gas for industry" carbon capture efficiency. + +* Implemented changes to ``n.snapshot_weightings`` in PyPSA v0.18.0. + +* Compatibility with ``xarray`` version 0.19. + +* New dependencies: ``tqdm``, ``atlite>=0.2.4``, ``pytz`` and ``geopy`` (optional). + These are included in the environment specifications of PyPSA-Eur v0.4.0. + +Many thanks to all who contributed to this release! + + +PyPSA-Eur-Sec 0.5.0 (21st May 2021) +----------------------------------- + +This release includes improvements to the cost database for building retrofits, carbon budget management and wildcard settings, as well as an important bugfix for the emissions from land transport. + +This release is known to work with `PyPSA-Eur `_ Version 0.3.0 and `Technology Data `_ Version 0.2.0. + +Please note that the data bundle has also been updated. + +New features and bugfixes: + +* The cost database for retrofitting of the thermal envelope of buildings has been updated. Now, for calculating the space heat savings of a building, losses by thermal bridges and ventilation are included as well as heat gains (internal and by solar radiation). See the section :ref:`retro` for more details on the retrofitting module. +* For the myopic investment option, a carbon budget and a type of decay (exponential or beta) can be selected in the ``config.yaml`` file to distribute the budget across the ``planning_horizons``. For example, ``cb40ex0`` in the ``{sector_opts}`` wildcard will distribute a carbon budget of 40 GtCO2 following an exponential decay with initial growth rate 0. +* Added an option to alter the capital cost or maximum capacity of carriers by a factor via ``carrier+factor`` in the ``{sector_opts}`` wildcard. This can be useful for exploring uncertain cost parameters. Example: ``solar+c0.5`` reduces the ``capital_cost`` of solar to 50\% of original values. Similarly ``solar+p3`` multiplies the ``p_nom_max`` by 3. +* Rename the bus for European liquid hydrocarbons from ``Fischer-Tropsch`` to ``EU oil``, since it can be supplied not just with the Fischer-Tropsch process, but also with fossil oil. +* Bugfix: The new separation of land transport by carrier in Version 0.4.0 failed to account for the carbon dioxide emissions from internal combustion engines in land transport. This is now treated as a negative load on the atmospheric carbon dioxide bus, just like aviation emissions. +* Bugfix: Fix reading in of ``pypsa-eur/resources/powerplants.csv`` to PyPSA-Eur Version 0.3.0 (use column attribute name ``DateIn`` instead of old ``YearDecommissioned``). +* Bugfix: Make sure that ``Store`` components (battery and H2) are also removed from PyPSA-Eur, so they can be added later by PyPSA-Eur-Sec. + +Thanks to Lisa Zeyen (KIT) for the retrofitting improvements and Marta Victoria (Aarhus University) for the carbon budget and wildcard management. + +PyPSA-Eur-Sec 0.4.0 (11th December 2020) +---------------------------------------- + +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) +----------------------------------- + +This is the first proper release of PyPSA-Eur-Sec, a model of the European energy system at the transmission network level that covers the full ENTSO-E area. + +It is known to work with PyPSA-Eur v0.1.0 (commit bb3477cd69) and PyPSA v0.17.0. + +We are making this release since in version 0.2.0 we will introduce changes to allow myopic investment planning that will require minor changes for users of the overnight investment planning. + +PyPSA-Eur-Sec builds on the electricity generation and transmission +model `PyPSA-Eur `_ to add demand +and supply for the following sectors: transport, space and water +heating, biomass, industry and industrial feedstocks. This completes +the energy system and includes all greenhouse gas emitters except +waste management, agriculture, forestry and land use. + +PyPSA-Eur-Sec was initially based on the model PyPSA-Eur-Sec-30 (Version 0.0.1 below) described +in the paper `Synergies of sector coupling and transmission +reinforcement in a cost-optimised, highly renewable European energy +system `_ (2018) but it differs by +being based on the higher resolution electricity transmission model +`PyPSA-Eur `_ rather than a +one-node-per-country model, and by including biomass, industry, +industrial feedstocks, aviation, shipping, better carbon management, +carbon capture and usage/sequestration, and gas networks. + + +PyPSA-Eur-Sec includes PyPSA-Eur as a +`snakemake `_ +`subworkflow `_. PyPSA-Eur-Sec +uses PyPSA-Eur to build the clustered transmission model along with +wind, solar PV and hydroelectricity potentials and time series. Then +PyPSA-Eur-Sec adds other conventional generators, storage units and +the additional sectors. + + + + +PyPSA-Eur-Sec 0.0.2 (4th September 2020) +---------------------------------------- + +This version, also called PyPSA-Eur-Sec-30-Path, built on +PyPSA-Eur-Sec 0.0.1 (also called PyPSA-Eur-Sec-30) to include myopic +pathway optimisation for the paper `Early decarbonisation of the +European energy system pays off `_ +(2020). The myopic pathway optimisation was then merged into the main +PyPSA-Eur-Sec codebase in Version 0.2.0 above. + +This model has `its own github repository +`_ and is `archived +on Zenodo `_. + + + +PyPSA-Eur-Sec 0.0.1 (12th January 2018) +--------------------------------------- + +This is the first published version of PyPSA-Eur-Sec, also called +PyPSA-Eur-Sec-30. It was first used in the research paper `Synergies of +sector coupling and transmission reinforcement in a cost-optimised, +highly renewable European energy system +`_ (2018). The model covers 30 +European countries with one node per country. It includes demand and +supply for electricity, space and water heating in buildings, and land +transport. + +It is `archived on Zenodo `_. + + Release Process =============== @@ -318,19 +1277,21 @@ Release Process * Update ``envs/environment.fixed.yaml`` via ``conda env export -n pypsa-eur -f envs/environment.fixed.yaml --no-builds`` - from an up-to-date `pypsa-eur` environment. + from an up-to-date ``pypsa-eur`` environment. -* Update version number in ``doc/conf.py`` and ``*config.*.yaml``. +* Update version number in ``doc/conf.py``, ``CITATION.cff`` and ``*config.*.yaml``. + +* Make a ``git commit``. * Open, review and merge pull request for branch ``release-v0.x.x``. Make sure to close issues and PRs or the release milestone with it (e.g. closes #X). * Tag a release on Github via ``git tag v0.x.x``, ``git push``, ``git push --tags``. Include release notes in the tag message. -* Upload code to `zenodo code repository `_ with `MIT license `_. +* Make a `GitHub release `_, which automatically triggers archiving to the `zenodo code repository `_ with `MIT license `_. -* Create pre-built networks for ``config.default.yaml`` by running ``snakemake -j 1 extra_components_all_networks``. +* Create pre-built networks for ``config.default.yaml`` by running ``snakemake -call prepare_sector_networks``. * Upload pre-built networks to `zenodo data repository `_ with `CC BY 4.0 `_ license. -* Send announcement on the `PyPSA and PyPSA-Eur mailing list `_. +* Send announcement on the `PyPSA mailing list `_. diff --git a/doc/requirements.txt b/doc/requirements.txt index 2b461718..3e760c81 100644 --- a/doc/requirements.txt +++ b/doc/requirements.txt @@ -1,15 +1,19 @@ -# SPDX-FileCopyrightText: : 2019-2021 The PyPSA-Eur Authors +# SPDX-FileCopyrightText: : 2019-2023 The PyPSA-Eur Authors # # SPDX-License-Identifier: CC0-1.0 +setuptools sphinx -sphinx_rtd_theme +sphinx_book_theme +sphinxcontrib-bibtex +myst-parser # recommark is deprecated, https://stackoverflow.com/a/71660856/13573820 pypsa -vresutils>=0.3.1 -powerplantmatching>=0.4.8 -atlite>=0.2.2 -dask<=2021.3.1 +powerplantmatching>=0.5.5 +atlite>=0.2.9 +dask[distributed] +matplotlib>3.5.1,<3.6 +tabula-py # cartopy scikit-learn @@ -18,4 +22,4 @@ pyyaml seaborn memory_profiler tables -descartes \ No newline at end of file +descartes diff --git a/doc/preparation/retrieve.rst b/doc/retrieve.rst similarity index 60% rename from doc/preparation/retrieve.rst rename to doc/retrieve.rst index 42479284..cc93c3d9 100644 --- a/doc/preparation/retrieve.rst +++ b/doc/retrieve.rst @@ -1,12 +1,13 @@ .. - SPDX-FileCopyrightText: 2019-2020 The PyPSA-Eur Authors + SPDX-FileCopyrightText: 2019-2023 The PyPSA-Eur Authors SPDX-License-Identifier: CC-BY-4.0 .. _data: -Rules ``retrieve*`` -============================= +############### +Retrieving Data +############### Not all data dependencies are shipped with the git repository, since git is not suited for handling large changing files. @@ -14,12 +15,12 @@ Instead we provide separate data bundles which can be obtained using the ``retrieve*`` rules. Rule ``retrieve_databundle`` ----------------------------- +============================ .. automodule:: retrieve_databundle Rule ``retrieve_cutout`` ------------------------- +============================ .. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.3517949.svg :target: https://doi.org/10.5281/zenodo.3517949 @@ -30,7 +31,7 @@ The :ref:`tutorial` uses a smaller cutout than required for the full model (30 M .. note:: To download cutouts yourself from the `ECMWF ERA5 `_ you need to `set up the CDS API `_. - + **Relevant Settings** @@ -41,7 +42,7 @@ The :ref:`tutorial` uses a smaller cutout than required for the full model (30 M build_cutout: .. seealso:: - Documentation of the configuration file ``config.yaml`` at + Documentation of the configuration file ``config/config.yaml`` at :ref:`toplevel_cf` **Outputs** @@ -53,7 +54,7 @@ The :ref:`tutorial` uses a smaller cutout than required for the full model (30 M Rule ``retrieve_natura_raster`` -------------------------------- +================================ .. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.4706686.svg :target: https://doi.org/10.5281/zenodo.4706686 @@ -68,7 +69,7 @@ This rule, as a substitute for :mod:`build_natura_raster`, downloads an already build_natura_raster: .. seealso:: - Documentation of the configuration file ``config.yaml`` at + Documentation of the configuration file ``config/config.yaml`` at :ref:`toplevel_cf` **Outputs** @@ -77,3 +78,66 @@ This rule, as a substitute for :mod:`build_natura_raster`, downloads an already .. seealso:: For details see :mod:`build_natura_raster`. + + +Rule ``retrieve_electricity_demand`` +==================================== + +This rule downloads hourly electric load data for each country from the `OPSD platform `_. + +**Relevant Settings** + +None. + +**Outputs** + +- ``data/load_raw.csv`` + + +Rule ``retrieve_cost_data`` +================================ + +This rule downloads techno-economic assumptions from the `technology-data repository `_. + +**Relevant Settings** + +.. code:: yaml + + enable: + retrieve_cost_data: + + costs: + year: + version: + +.. seealso:: + Documentation of the configuration file ``config/config.yaml`` at + :ref:`costs_cf` + +**Outputs** + +- ``resources/costs.csv`` + +Rule ``retrieve_ship_raster`` +================================ + +This rule downloads data on global shipping traffic density from the `World Bank Data Catalogue `_. + +**Relevant Settings** + +None. + +**Outputs** + +- ``data/shipdensity_global.zip`` + + +Rule ``retrieve_sector_databundle`` +==================================== + +.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.5546516.svg + :target: https://doi.org/10.5281/zenodo.5546516 + +In addition to the databundle required for electricity-only studies, +another databundle is required for modelling sector-coupled systems. +The size of this data bundle is around 640 MB. diff --git a/doc/sector.rst b/doc/sector.rst new file mode 100644 index 00000000..303e7ed2 --- /dev/null +++ b/doc/sector.rst @@ -0,0 +1,166 @@ +.. + SPDX-FileCopyrightText: 2023 The PyPSA-Eur Authors + + SPDX-License-Identifier: CC-BY-4.0 + +########################################## +Building Sector-Coupled Networks +########################################## + +.. warning:: + This part of the documentation is under development. + +Rule ``add_brownfield`` +============================================================================== + +.. automodule:: add_brownfield + +Rule ``add_existing_baseyear`` +============================================================================== + +.. automodule:: add_existing_baseyear + +Rule ``build_ammonia_production`` +============================================================================== + +.. automodule:: build_ammonia_production + +Rule ``build_biomass_potentials`` +============================================================================== + +.. automodule:: build_biomass_potentials + +Rule ``build_biomass_transport_costs`` +============================================================================== + +.. automodule:: build_biomass_transport_costs + +Rule ``build_clustered_population_layouts`` +============================================================================== + +.. automodule:: build_clustered_population_layouts + +Rule ``build_cop_profiles`` +============================================================================== + +.. automodule:: build_cop_profiles + +Rule ``build_energy_totals`` +============================================================================== + +.. automodule:: build_energy_totals + +Rule ``build_gas_input_locations`` +============================================================================== + +.. automodule:: build_gas_input_locations + +Rule ``build_gas_network`` +============================================================================== + +.. automodule:: build_gas_network + +Rule ``build_heat_demand`` +============================================================================== + +.. automodule:: build_heat_demand + +Rule ``build_industrial_distribution_key`` +============================================================================== + +.. automodule:: build_industrial_distribution_key + +Rule ``build_industrial_energy_demand_per_country_today`` +============================================================================== + +.. automodule:: build_industrial_energy_demand_per_country_today + +Rule ``build_industrial_energy_demand_per_node_today`` +============================================================================== + +.. automodule:: build_industrial_energy_demand_per_node_today + +Rule ``build_industrial_energy_demand_per_node`` +============================================================================== + +.. automodule:: build_industrial_energy_demand_per_node + +Rule ``build_industrial_production_per_country_tomorrow`` +============================================================================== + +.. automodule:: build_industrial_production_per_country_tomorrow + +Rule ``build_industrial_production_per_country`` +============================================================================== + +.. automodule:: build_industrial_production_per_country + +Rule ``build_industrial_production_per_node`` +============================================================================== + +.. automodule:: build_industrial_production_per_node + +Rule ``build_industry_sector_ratios`` +============================================================================== + +.. automodule:: build_industry_sector_ratios + +Rule ``build_population_layouts`` +============================================================================== + +.. automodule:: build_population_layouts + +Rule ``build_population_weighted_energy_totals`` +============================================================================== + +.. automodule:: build_population_weighted_energy_totals + +Rule ``build_retro_cost`` +============================================================================== + +.. automodule:: build_retro_cost + +Rule ``build_salt_cavern_potentials`` +============================================================================== + +.. automodule:: build_salt_cavern_potentials + +Rule ``build_sequestration_potentials`` +============================================================================== + +.. automodule:: build_sequestration_potentials + +Rule ``build_shipping_demand`` +============================================================================== + +.. automodule:: build_shipping_demand + +Rule ``build_solar_thermal_profiles`` +============================================================================== + +.. automodule:: build_solar_thermal_profiles + +Rule ``build_temperature_profiles`` +============================================================================== + +.. automodule:: build_temperature_profiles + +Rule ``build_transport_demand`` +============================================================================== + +.. automodule:: build_transport_demand + +Rule ``cluster_gas_network`` +============================================================================== + +.. automodule:: cluster_gas_network + +Rule ``copy_config`` +============================================================================== + +.. automodule:: copy_config + +Rule ``prepare_sector_network`` +============================================================================== + +.. automodule:: prepare_sector_network diff --git a/doc/simplification.rst b/doc/simplification.rst index 280b1da0..21f61de7 100644 --- a/doc/simplification.rst +++ b/doc/simplification.rst @@ -1,12 +1,12 @@ .. - SPDX-FileCopyrightText: 2019-2020 The PyPSA-Eur Authors + SPDX-FileCopyrightText: 2019-2023 The PyPSA-Eur Authors SPDX-License-Identifier: CC-BY-4.0 ########################################## -Simplifying Networks +Simplifying Electricity Networks ########################################## The simplification ``snakemake`` rules prepare **approximations** of the full model, for which it is computationally viable to co-optimize generation, storage and transmission capacities. @@ -20,10 +20,31 @@ The simplification and clustering steps are described in detail in the paper After simplification and clustering of the network, additional components may be appended in the rule :mod:`add_extra_components` and the network is prepared for solving in :mod:`prepare_network`. -.. toctree:: - :caption: Overview +.. _simplify: - simplification/simplify_network - simplification/cluster_network - simplification/add_extra_components - simplification/prepare_network +Rule ``simplify_network`` +============================ + +.. automodule:: simplify_network + +.. _cluster: + +Rule ``cluster_network`` +=========================== + +.. automodule:: cluster_network + +.. _extra_components: + +Rule ``add_extra_components`` +============================= + +.. automodule:: add_extra_components + + +.. _prepare: + +Rule ``prepare_network`` +=========================== + +.. automodule:: prepare_network diff --git a/doc/simplification/add_extra_components.rst b/doc/simplification/add_extra_components.rst deleted file mode 100644 index c1337b44..00000000 --- a/doc/simplification/add_extra_components.rst +++ /dev/null @@ -1,42 +0,0 @@ -.. - SPDX-FileCopyrightText: 2019-2020 The PyPSA-Eur Authors - - SPDX-License-Identifier: CC-BY-4.0 - -.. _extra_components: - -Rule ``add_extra_components`` -============================= - -.. graphviz:: - :align: center - - digraph snakemake_dag { - graph [bgcolor=white, - margin=0, - size="8,5" - ]; - node [fontname=sans, - fontsize=10, - penwidth=2, - shape=box, - style=rounded - ]; - edge [color=grey, - penwidth=2 - ]; - 1 [color="0.56 0.6 0.85", - label=prepare_network]; - 2 [color="0.47 0.6 0.85", - fillcolor=gray, - label=add_extra_components, - style=filled]; - 2 -> 1; - 3 [color="0.03 0.6 0.85", - label=cluster_network]; - 3 -> 2; - } - -| - -.. automodule:: add_extra_components diff --git a/doc/simplification/cluster_network.rst b/doc/simplification/cluster_network.rst deleted file mode 100644 index 52fc5840..00000000 --- a/doc/simplification/cluster_network.rst +++ /dev/null @@ -1,43 +0,0 @@ -.. - SPDX-FileCopyrightText: 2019-2020 The PyPSA-Eur Authors - - SPDX-License-Identifier: CC-BY-4.0 - -.. _cluster: - -Rule ``cluster_network`` -=========================== - -.. graphviz:: - :align: center - - digraph snakemake_dag { - graph [bgcolor=white, - margin=0, - size="8,5" - ]; - node [fontname=sans, - fontsize=10, - penwidth=2, - shape=box, - style=rounded - ]; - edge [color=grey, - penwidth=2 - ]; - 1 [color="0.50 0.6 0.85", - label=prepare_network]; - 2 [color="0.36 0.6 0.85", - fillcolor=gray, - label=cluster_network, - style=filled]; - 2 -> 1; - 3 [color="0.14 0.6 0.85", - label=simplify_network]; - 3 -> 2; - } - - -| - -.. automodule:: cluster_network diff --git a/doc/simplification/prepare_network.rst b/doc/simplification/prepare_network.rst deleted file mode 100644 index d7e22e03..00000000 --- a/doc/simplification/prepare_network.rst +++ /dev/null @@ -1,42 +0,0 @@ -.. - SPDX-FileCopyrightText: 2019-2020 The PyPSA-Eur Authors - - SPDX-License-Identifier: CC-BY-4.0 - -.. _prepare: - -Rule ``prepare_network`` -=========================== - -.. graphviz:: - :align: center - - digraph snakemake_dag { - graph [bgcolor=white, - margin=0, - size="8,5" - ]; - node [fontname=sans, - fontsize=10, - penwidth=2, - shape=box, - style=rounded - ]; - edge [color=grey, - penwidth=2 - ]; - 0 [color="0.53 0.6 0.85", - label=solve_network]; - 1 [color="0.50 0.6 0.85", - fillcolor=gray, - label=prepare_network, - style=filled]; - 1 -> 0; - 2 [color="0.36 0.6 0.85", - label=cluster_network]; - 2 -> 1; - } - -| - -.. automodule:: prepare_network diff --git a/doc/simplification/simplify_network.rst b/doc/simplification/simplify_network.rst deleted file mode 100644 index 128a697f..00000000 --- a/doc/simplification/simplify_network.rst +++ /dev/null @@ -1,45 +0,0 @@ -.. - SPDX-FileCopyrightText: 2019-2020 The PyPSA-Eur Authors - - SPDX-License-Identifier: CC-BY-4.0 - -.. _simplify: - -Rule ``simplify_network`` -============================ - -.. graphviz:: - :align: center - - digraph snakemake_dag { - graph [bgcolor=white, - margin=0, - size="8,5" - ]; - node [fontname=sans, - fontsize=10, - penwidth=2, - shape=box, - style=rounded - ]; - edge [color=grey, - penwidth=2 - ]; - 2 [color="0.36 0.6 0.85", - label=cluster_network]; - 3 [color="0.14 0.6 0.85", - fillcolor=gray, - label=simplify_network, - style=filled]; - 3 -> 2; - 4 [color="0.61 0.6 0.85", - label=add_electricity]; - 4 -> 3; - 5 [color="0.19 0.6 0.85", - label=build_bus_regions]; - 5 -> 3; - } - -| - -.. automodule:: simplify_network diff --git a/doc/solving.rst b/doc/solving.rst index 87fdc040..21cc5c25 100644 --- a/doc/solving.rst +++ b/doc/solving.rst @@ -1,5 +1,5 @@ .. - SPDX-FileCopyrightText: 2019-2020 The PyPSA-Eur Authors + SPDX-FileCopyrightText: 2019-2023 The PyPSA-Eur Authors SPDX-License-Identifier: CC-BY-4.0 @@ -7,10 +7,27 @@ Solving Networks ########################################## -After generating and simplifying the networks they can be solved through the rule :mod:`solve_network` by using the collection rule :mod:`solve_all_networks`. Moreover, networks can be solved for another focus with the derivative rules :mod:`solve_network` by using the collection rule :mod:`solve_operations_network` for dispatch-only analyses on an already solved network. +After generating and simplifying the networks they can be solved through the +rule :mod:`solve_network` by using the collection rules ``solve_elec_networks`` +or ``solve_sector_networks``. Moreover, networks can be solved for dispatch-only +analyses on an already solved network with :mod:`solve_operations_network`. -.. toctree:: - :caption: Overview +.. _solve: - solving/solve_network - solving/solve_operations_network +Rule ``solve_network`` +========================= + +.. automodule:: solve_network + +.. _solve_operations: + +Rule ``solve_operations_network`` +==================================== + +.. automodule:: solve_operations_network + +Rule ``solve_sector_network`` +============================= + +.. warning:: + More comprehensive documentation for this rule will be released soon. diff --git a/doc/solving/solve_network.rst b/doc/solving/solve_network.rst deleted file mode 100644 index 4b0b9861..00000000 --- a/doc/solving/solve_network.rst +++ /dev/null @@ -1,39 +0,0 @@ -.. - SPDX-FileCopyrightText: 2019-2020 The PyPSA-Eur Authors - - SPDX-License-Identifier: CC-BY-4.0 - -.. _solve: - -Rule ``solve_network`` -========================= - -.. graphviz:: - :align: center - - digraph snakemake_dag { - graph [bgcolor=white, - margin=0, - size="3,3" - ]; - node [fontname=sans, - fontsize=10, - penwidth=2, - shape=box, - style=rounded - ]; - edge [color=grey, - penwidth=2 - ]; - 0 [color="0.64 0.6 0.85", - fillcolor=gray, - label=solve_network, - style=filled]; - 1 [color="0.33 0.6 0.85", - label=prepare_network]; - 1 -> 0; - } - -| - -.. automodule:: solve_network diff --git a/doc/solving/solve_operations_network.rst b/doc/solving/solve_operations_network.rst deleted file mode 100644 index b5bbc89f..00000000 --- a/doc/solving/solve_operations_network.rst +++ /dev/null @@ -1,42 +0,0 @@ -.. - SPDX-FileCopyrightText: 2019-2020 The PyPSA-Eur Authors - - SPDX-License-Identifier: CC-BY-4.0 - -.. _solve_operations: - -Rule ``solve_operations_network`` -==================================== - -.. graphviz:: - :align: center - - digraph snakemake_dag { - graph [bgcolor=white, - margin=0, - size="8,5" - ]; - node [fontname=sans, - fontsize=10, - penwidth=2, - shape=box, - style=rounded - ]; - edge [color=grey, - penwidth=2 - ]; - 0 [color="0.06 0.6 0.85", - fillcolor=gray, - label=solve_operations_network, - style=filled]; - 1 [color="0.00 0.6 0.85", - label=cluster_network]; - 1 -> 0; - 2 [color="0.19 0.6 0.85", - label=solve_network]; - 2 -> 0; - } - -| - -.. automodule:: solve_operations_network diff --git a/doc/spatial_resolution.rst b/doc/spatial_resolution.rst new file mode 100644 index 00000000..0293a5ce --- /dev/null +++ b/doc/spatial_resolution.rst @@ -0,0 +1,54 @@ +.. + SPDX-FileCopyrightText: 2021-2023 The PyPSA-Eur Authors + + SPDX-License-Identifier: CC-BY-4.0 + +.. _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 (See `cluster_network `_ for a complete explanation). 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/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 commercial solver like Gurobi. + +Exemplary unsolved network clustered to 512 nodes: + +.. image:: ../graphics/elec_s_512.png + +Exemplary unsolved network clustered to 37 nodes: + +.. image:: ../graphics/elec_s_37.png + +The total number of nodes for Europe is set in the ``config/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 commercial 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. + +Here are some examples of how spatial resolution is set for different sectors in PyPSA-Eur-Sec: + +• Electricity network: Modeled as nodal. + +• Electricity residential and commercial demand: Modeled as nodal, distributed in each country based on population and GDP. + +• Electricity distribution network: Not included in the model, but a link per node can be used to represent energy transferred between distribution and transmission levels (explained more in detail below). + +• Residential and commercial building heating demand: Modeled as nodal, distributed in each country based on population. + +• Electricity demand in industry: Modeled as nodal, based on the location of industrial facilities from HotMaps database. + +• Industry demand (heat, chemicals, etc.) : Modeled as nodal, distributed in each country based on locations of industry from HotMaps database. +• Hydrogen network: Modeled as nodal (if activated in the `config `_ file). + +• Methane network: It can be modeled as a single node for Europe or it can be nodally resolved if activated in the `config `_. One node can be considered reasonable since future demand is expected to be low and no bottlenecks are expected. Also, the nodally resolved methane grid is based on SciGRID_gas data. + +• Solid biomass: It can be modeled as a single node for Europe or it can be nodally resolved if activated in the `config `_. Nodal modeling includes modeling biomass potential per country (given per country, then distributed by population density within) and the transport of solid biomass between countries. + +• CO2: It can be modeled as a single node for Europe or it can be nodally resolved with CO2 transport pipelines if activated in the `config `_. It should mentioned that in single node mode a transport and storage cost is added for sequestered CO2, the cost of which can be adjusted in the `config `_. + +• Liquid hydrocarbons: Modeled as a single node for Europe, since transport costs for liquids are low and no bottlenecks are expected. + +**Electricity distribution network** + +Contrary to the transmission grid, the grid topology at the distribution level (at and below 110 kV) is not included due to the very high computational burden. However, a link per node can be used (if activated in the `Config `_ file) to represent energy transferred between distribution and transmission levels at every node. In essence, the total energy capacity connecting the transmission grid and the low-voltage level is optimized. The cost assumptions for this link can be adjusted in Config file `options `_ , and is currently assumed to be 500 Eur/kW. + +Rooftop PV, heat pumps, resistive heater, home batteries chargers for passenger EVs, as well as individual heating technologies (heat pumps and resistive heaters) are connected to low-voltage level. All the remaining generation and storage technologies are connected to the transmission grid. In practice, this means that the distribution grid capacity is only extended if it is necessary to balance the mismatch between local generation and demand. diff --git a/doc/supply_demand.rst b/doc/supply_demand.rst new file mode 100644 index 00000000..b043268b --- /dev/null +++ b/doc/supply_demand.rst @@ -0,0 +1,621 @@ +.. + SPDX-FileCopyrightText: 2021-2023 The PyPSA-Eur Authors + + SPDX-License-Identifier: CC-BY-4.0 + +########################################## +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 +============================= + +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 +=========== + +Building heating in residential and services sectors is resolved regionally, both for individual buildings and district heating systems, which include different supply options (see :ref:`heat-supply`.) +Annual heat demands per country are retrieved from `JRC-IDEES `_ and split into space and water heating. For space heating, the annual demands are converted to daily values based on the population-weighted Heating Degree Day (HDD) using the `atlite tool `_, where space heat demand is proportional to the difference between the daily average ambient temperature (read from `ERA5 `_) and a threshold temperature above which space heat demand is zero. A threshold temperature of 15 °C is assumed by default. The daily space heat demand is distributed to the hours of the day following heat demand profiles from `BDEW `_. These differ for weekdays and weekends/holidays and between residential and services demand. + +*Space heating* + +The space heating demand can be exogenously reduced by retrofitting measures that improve the buildings’ thermal envelopes. + +.. literalinclude:: ../config.default.yaml + :language: yaml + :lines: 205 + +Co-optimsing of building renovation is also possible, if it is activated in the `config file `_. +Renovation of the thermal envelope reduces the space heating demand and is optimised at each node for every heat bus. Renovation measures through additional insulation material and replacement of energy inefficient windows are considered. +In a first step, costs per energy savings are estimated in `build_retro_cost.py `_. They depend on the insulation condition of the building stock and costs for renovation of the building elements. In a second step, for those cost per energy savings two possible renovation strengths are determined: a moderate renovation with lower costs, a lower maximum possible space heat savings, and an ambitious renovation with associated higher costs and higher efficiency gains. They are added by step-wise linearisation in form of two additional generations in `prepare_sector_network.py `_. +Further information are given in the publication : + `Mitigating heat demand peaks in buildings in a highly renewable European energy system, (2021) `_. + +*Water heating* + +Hot water demand is assumed to be constant throughout the year. + +*Urban and rural heating* + +For every country, heat demand is split between low and high population density areas. These country-level totals are then distributed to each region in proportion to their rural and urban populations respectively. Urban areas with dense heat demand can be supplied with large-scale district heating systems. The percentage of urban heat demand that can be supplied by district heating networks as well as lump-sum losses in district heating systems is exogenously determined in the `config file `_. + +*Cooling demand* + +Cooling is electrified and is included in the electricity demand. Cooling demand is assumed to remain at current levels. An example of regional distribution of the total heat demand for network 181 regions is depicted below. + +.. image:: ../graphics/demand-map-heat.png + +As below figure shows, the current total heat demand in Europe is similar to the total electricity demand but features much more pronounced seasonal variations. The current total building heating demand in Europe adds up to 3084 TWh/a of which 78% occurs in urban areas. + +.. image:: ../graphics/Heat_and_el_demand_timeseries.png + +In practice, in PyPSA-Eur-Sec, there are heat demand buses to which the corresponding heat demands are added. + + +1) Urban central heat: large-scale district heating networks in urban areas with dense heat population. Residential and services demand in these areas are added as demands to this bus +2) Residential urban decentral heat: heating for residential buildings in urban areas not using district heating +3) Services urban decentral heat: heating for services buildings in urban areas not using district heating +4) Residential rural heat: heating for residential buildings in rural areas with low population density. +5) Services rural heat: heating for residential services buildings in rural areas with low population density. Heat demand from agriculture sector is also included here. + +.. _heat-supply: + +Heat supply +======================= + +Different supply options are available depending on whether demand is met centrally through district heating systems, or decentrally through appliances in individual buildings. + +**Urban central heat** + +For large-scale district heating systems the following options are available: combined heat and power (CHP) plants consuming gas or biomass from waste and residues with and without carbon capture (CC), large-scale air-sourced heat pumps, gas and oil boilers, resistive heaters, and fuel cell CHPs. Additionally, waste heat from the `Fischer-Tropsch `_ and `Sabatier `_ processes for the production of synthetic hydrocarbons can supply district heating systems. For more detailed explanation of these processes, see :ref:`Oil-based products supply` and :ref:`Methane supply`. + +**Residential and Urban decentral heat** + +Supply options in individual buildings include gas and oil boilers, air- and ground-sourced heat pumps, resistive heaters, and solar thermal collectors. +Ground-source heat pumps are only allowed in rural areas because of space constraints. Thus, 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 (e.g. waste water, ground water, or natural bodies of water). Costs, lifetimes and efficiencies for these technologies are retrieved from the `technology-data repository `_. + +Below are more detailed explanations for each heating supply component, all of which are modelled as `links `_ in PyPSA-Eur-Sec. + +.. _Large-scale CHP: + +**Large-scale CHP** + +Large Combined Heat and Power plants are included in the model if it is specified in the `config file `_. + +CHPs are based on back pressure plants operating with a fixed ratio of electricity to heat output. The efficiencies of each are given on the back pressure line, where the back pressure coefficient cb is the electricity output divided by the heat output. (For a more complete explanation of the operation of CHPs refer to the study by Dahl et al. : `Cost sensitivity of optimal sector-coupled district heating production systems `_. + +PyPSA-Eur-Sec includes CHP plants fueled by methane and solid biomass from waste and residues. Hydrogen fuel cells also produce both electricity and heat. + +The methane CHP is modeled 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”. For biomass CHP, cb = `0.46 `_ , whereas for gas CHP, cb = `1 `_. + +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 study by `Brown et al. `_ 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** + +PyPSA-Eur-Sec allows individual buildings to make use of `micro gas CHPs `_ that are assumed to be installed at the distribution grid level. + +**Heat pumps** + +The coefficient of performance (COP) of air- and ground-sourced heat pumps depends on the ambient or soil temperature respectively. Hence, the COP is a time-varying parameter (refer to `Config `_ file). Generally, the COP will be lower during winter when temperatures are low. Because the ambient temperature is more volatile than the soil temperature, the COP of ground-sourced heat pumps is less variable. Moreover, the COP depends on the difference between the source and sink temperatures: + +.. math:: + \Delta T = T_{sink} − T_{source} + +For the sink water temperature Tsink we assume 55 °C [`Config `_ file]. For the time- and location-dependent source temperatures Tsource, we rely on the `ERA5 `_ reanalysis weather data. The temperature differences are converted into COP time series using results from a regression analysis performed in the study by `Stafell et al. `_. For air-sourced heat pumps (ASHP), we use the function: + +.. math:: + COP (\Delta T) = 6.81 - 0.121\Delta T + 0.000630\Delta T^2 + +for ground-sourced heat pumps (GSHP), we use the function: + +.. math:: + COP(\Delta T) = 8.77 - 0.150\Delta T + 0.000734\Delta T^2 + +**Resistive heaters** + +Can be activated in Config from the `boilers `_ option. +Resistive heaters produce heat with a fixed conversion efficiency (refer to `Technology-data repository `_ ). + +**Gas, oil, and biomass boilers** + +Can be activated in Config from the `boilers `_ , `oil boilers `_ , and `biomass boiler `_ option. +Similar to resistive heaters, boilers have a fixed efficiency and produce heat using gas, oil or biomass. + +**Solar thermal collectors** + +Can be activated in the config file from the `solar_thermal `_ option. +Solar thermal profiles are built based on weather data and also have the `options `_ for setting the sky model and the orientation of the panel in the config file, which are then used by the atlite tool to calculate the solar resource time series. + +**Waste heat from Fuel Cells, Methanation and Fischer-Tropsch plants** + +Waste heat from `fuel cells `_ in addition to processes like `Fischer-Tropsch `_, methanation, and Direct Air Capture (DAC) is dumped into district heating networks. + +**Existing heating capacities and decommissioning** + +For the myopic transition paths, capacities already existing for technologies supplying heat are retrieved from `“Mapping and analyses of the current and future (2020 - 2030)” `_ . For the sake of simplicity, coal, oil and gas boiler capacities are assimilated to gas boilers. Besides that, existing capacities for heat resistors, air-sourced and ground-sourced heat pumps are included in the model. For heating capacities, 25% of existing capacities in 2015 are assumed to be decommissioned in every 5-year time step after 2020. + +**Thermal Energy Storage** + +Activated in Config from the `tes `_ option. + +Thermal energy can be stored in large water pits associated with district heating systems and individual thermal energy storage (TES), i.e., small water tanks. Water tanks are modelled as `stores `_. +A thermal energy density of 46.8 kWh :math:`_{th}`/m3 is assumed, corresponding to a temperature difference of 40 K. The decay of thermal energy in the stores: 1- :math:`e^{-1/24τ}` is assumed to have a time constant of  τ=180 days for central TES and  τ=3 days for individual TES, both modifiable through `tes_tau `_ in config file. Charging and discharging efficiencies are 90% due to pipe losses. + +**Retrofitting of the thermal envelope of buildings** + +Co-optimising building renovation is only enabled if in the `config `_ file. To reduce the computational burden, +default setting is set as false. + +Renovation of the thermal envelope reduces the space heating demand and is +optimised at each node for every heat bus. Renovation measures through additional +insulation material and replacement of energy inefficient windows are considered. + +In a first step, costs per energy savings are estimated in the `build_retro_cost.py `_ script. +They depend on the insulation condition of the building stock and costs for +renovation of the building elements. +In a second step, for those cost per energy savings two possible renovation +strengths are determined: a moderate renovation with lower costs and lower +maximum possible space heat savings, and an ambitious renovation with associated +higher costs and higher efficiency gains. They are added by step-wise +linearisation in form of two additional generations in +the `prepare_sector_network.py `_ script. + +Settings in the ``config/config.yaml`` concerning the endogenously optimisation of building +renovation include `cost factor `_, `interest rate `_, `annualised cost `_, `tax weighting `_, and `construction index `_. + +Further information are given in the study by Zeyen et al. : `Mitigating heat demand peaks in buildings in a highly renewable European energy system, (2021) `_. + +.. _Hydrogen demand: + +Hydrogen demand +============================= + +Hydrogen is consumed in the industry sector (see :ref:`Industry demand`) to produce ammonia (see :ref:`Chemicals Industry`) and direct reduced iron (DRI) (see :ref:`Iron and Steel`). Hydrogen is also consumed to produce synthetic methane (see :ref:`Methane supply`) and liquid hydrocarbons (see :ref:`Oil-based products supply`) which have multiple uses in industry and other sectors. +Hydrogen is also used for transport applications (see :ref:`Transportation`), where it is exogenously fixed. It is used in `heavy-duty land transport `_ and as liquified hydrogen in the shipping sector (see :ref:`Shipping`). Furthermore, stationary fuel cells may re-electrify hydrogen (with waste heat as a byproduct) to balance renewable fluctuations (see :ref:`Electricity supply and demand`). The waste heat from the stationary fuel cells can be used in `district-heating systems `_. + +.. _Hydrogen supply: + +Hydrogen supply +============================= + +Today, most of the :math:`H_2` consumed globally is produced from natural gas by steam methane reforming (SMR) + +.. math:: + + CH_4 + H_2O \xrightarrow{} CO + 3H_2 + +combined with a water-gas shift reaction + +.. math:: + + CO + H_2O \xrightarrow{} CO_2 + H_2 + + +SMR is included `here `_. +PyPSA-Eur-Sec allows this route of :math:`H_2` production with and without [carbon capture (CC)] (see :ref:`Carbon dioxide capture, usage and sequestration (CCU/S)`). These routes are often referred to as blue and grey hydrogen. Here, methane input can be both of fossil or synthetic origin. + +Green hydrogen can be produced by electrolysis to split water into hydrogen and oxygen + +.. math:: + + 2H_2O \xrightarrow{} 2H_2 + O_2 + + +For the electrolysis, alkaline electrolysers are chosen since they have lower cost and higher cumulative installed capacity than polymer electrolyte membrane (PEM) electrolysers. The techno-economic assumptions are taken from the technology-data repository. Waste heat from electrolysis is not leveraged in the model. + +**Transport** + +Hydrogen is transported by pipelines. :math:`H_2` pipelines are endogenously generated, either via a greenfield :math:`H_2` network, or by `retrofitting natural gas pipelines `_). Retrofitting is implemented in such a way that for every unit of decommissioned gas pipeline, a share (60% is used in the study by `Neumann et al. `_) of its nominal capacity (exogenously determined in the `config file `_.) is available for hydrogen transport. When the gas network is not resolved, this input denotes the potential for gas pipelines repurposed into hydrogen pipelines. +New pipelines can be built additionally on all routes where there currently is a gas or electricity network connection. These new pipelines will be built where no sufficient retrofitting options are available. The capacities of new and repurposed pipelines are a result of the optimisation. + +**Storage** + +Hydrogen can be stored in overground steel tanks or `underground salt caverns `_. For the latter, energy storage capacities in every country are limited to the potential estimation for onshore salt caverns within `50 km `_ of shore to avoid environmental issues associated with brine solution disposal. Underground storage potentials for hydrogen in European salt caverns is acquired from `Caglayan et al. `_ + +.. _Methane demand: + +Methane demand +==================================== + +Methane is used in individual and large-scale gas boilers, in CHP plants with and without carbon capture, in OCGT and CCGT power plants, and in some industry subsectors for the provision of high temperature heat (see :ref:`Industry demand`). Methane is not used in the transport sector because of engine slippage. + +.. _Methane supply: + +Methane supply +=================================== + +In addition to methane from fossil origins, the model also considers biogenic and synthetic sources. `The gas network can either be modelled, or it can be assumed that gas transport is not limited `_. If gas infrastructure is regionally resolved, fossil gas can enter the system only at existing and planned LNG terminals, pipeline entry-points, and intra- European gas extraction sites, which are retrieved from the SciGRID Gas IGGIELGN dataset and the GEM Wiki. +Biogas can be upgraded to methane. +Synthetic methane can be produced by processing hydrogen and captures :math:`CO_2` in the Sabatier reaction + +.. math:: + CO_2 + 4H_2 \xrightarrow{} CH_4 + 2H_2O + + +Direct power-to-methane conversion with efficient heat integration developed in the HELMETH project is also an option. The share of synthetic, biogenic and fossil methane is an optimisation result depending on the techno-economic assumptions. + +*Methane transport* + +The existing European gas transmission network is represented based on the SciGRID Gas IGGIELGN dataset. This dataset is based on compiled and merged data from the ENTSOG maps and other publicly available data sources. It includes data on the capacity, diameter, pressure, length, and directionality of pipelines. Missing capacity data is conservatively inferred from the pipe diameter following conversion factors derived from an EHB report. The gas network is clustered to the selected number of model regions. Gas pipelines can be endogenously expanded or repurposed for hydrogen transport. Gas flows are represented by a lossless transport model. Methane is assumed to be transmitted without cost or capacity constraints because future demand is predicted to be low compared to available transport capacities. + +The following figure shows the unclustered European gas transmission network based on the SciGRID Gas IGGIELGN dataset. Pipelines are color-coded by estimated capacities. Markers indicate entry-points, sites of fossil resource extraction, and LNG terminals. + +.. image:: ../graphics/gas_pipeline_figure.png + +.. _Biomass supply: + +Biomass Supply +===================== +Biomass supply potentials for each European country are taken from the `JRC ENSPRESO database `_ where data is available for various years (2010, 2020, 2030, 2040 and 2050) and scenarios (low, medium, high). No biomass import from outside Europe is assumed. More information on the data set can be found `here `_. + +.. _Biomass demand: + +Biomass demand +===================== + + +Biomass supply potentials for every NUTS2 region are taken from the `JRC ENSPRESO database `_ where data is available for various years (2010, 2020, 2030, 2040 and 2050) and different availability scenarios (low, medium, high). No biomass import from outside Europe is assumed. More information on the data set can be found `here `_. The data for NUTS2 regions is mapped to PyPSA-Eur-Sec model regions in proportion to the area overlap. + + +The desired scenario can be selected in the PyPSA-Eur-Sec `configuration `_. The script for building the biomass potentials from the JRC ENSPRESO data base is located `here `_. Consult the script to see the keywords that specify the scenario options. + + +The `configuration `_ also allows the user to define how the various types of biomass are used in the model by using the following categories: biogas, solid biomass, and not included. Feedstocks categorized as biogas, typically manure and sludge waste, are available to the model as biogas, which can be upgraded to biomethane. Feedstocks categorized as solid biomass, e.g. secondary forest residues or municipal waste, are available for combustion in combined-heat-and power (CHP) plants and for medium temperature heat (below 500 °C) applications in industry. It can also converted to gas or liquid fuels. + + +Feedstocks labeled as not included are ignored by the model. + + +A `typical use case for biomass `_ would be the medium availability scenario for 2030 where only residues from agriculture and forestry as well as biodegradable municipal waste are considered as energy feedstocks. Fuel crops are avoided because they compete with scarce land for food production, while primary wood, as well as wood chips and pellets, are avoided because of concerns about sustainability. See the supporting materials of the `paper `_ for more details. + + +*Solid biomass conversion and use* + +Solid biomass can be used directly to provide process heat up to 500˚C in the industry. It can also be burned in CHP plants and boilers associated with heating systems. These technologies are described elsewhere (see :ref:`Large-scale CHP` and :ref:`Industry demand`). + + +Solid biomass can be converted to syngas if the option is enabled in the `config file `_. In this case the model will enable the technology BioSNG both with and without the option for carbon capture (see `Technology-data repository `_). + + +Liquefaction of solid biomass `can be enabled `_ allowing the model to convert it into liquid hydrocarbons that can replace conventional oil products. This technology also comes with and without carbon capture (see `Technology-data repository `_). + + +*Transport of solid biomass* + +The transport of solid biomass can either be assumed unlimited between countries or it can be associated with a country specific cost per MWh/km. In the config file these options are toggled `here `_. If the option is off, use of solid biomass is transport. If it is turned on, a biomass transport network will be `created `_ between all nodes. This network resembles road transport of biomass and the cost of transportation is a variable cost which is proportional to distance and a country specific cost per MWh/km. The latter is `estimated `_ from the country specific costs per ton/km used in the publication `“The JRC-EU-TIMES model. Bioenergy potentials for EU and neighbouring countries” `_. + +*Biogas transport and use* + +Biogas will be aggregated into a common European resources if a gas network is not modelled explicitly, i.e., the `gas_network `_ option is set to false. If, on the other hand, a gas network is included, the biogas potential will be associated with each node of origin. +The model can only use biogas by first upgrading it to natural gas quality [see :ref:`Methane supply`] (bio methane) which is fed into the general gas network. + +.. _Oil-based products demand: + + +Oil-based products demand +========================= + +Naphtha is used as a feedstock in the chemicals industry (see :ref:`Chemicals Industry`). Furthermore, kerosene is used as transport fuel in the aviation sector (see :ref:`Aviation`). Non-electrified agriculture machinery also consumes gasoline. +Land transport [(see :ref:`Land transport`) that is not electrified or converted into using :math:`H_2`-fuel cells also consumes oil-based products. While there is regional distribution of demand, the carrier is copperplated in the model, which means that transport costs and constraints are neglected. + +.. _Oil-based products supply: + +Oil-based products supply +========================= + +Oil-based products can be either of fossil origin or synthetically produced by combining :math:`H_2` (see :ref:`Hydrogen supply`) and captured :math:`CO_2` (see :ref:`Carbon dioxide capture, usage and sequestration (CCU/S)`) in Fischer-Tropsch plants + +.. math:: + 𝑛CO+(2𝑛+1)H_2 → C_{n}H_{2n + 2} +𝑛H_2O + + +with costs as included from the `technology-data repository `_. The waste heat from the Fischer-Tropsch process is supplied to `district heating networks `_. The share of fossil and synthetic oil is an optimisation result depending on the techno-economic assumptions. + + +*Oil-based transport* + +Liquid hydrocarbons are assumed to be transported freely among the model region since future demand is predicted to be low, transport costs for liquids are low and no bottlenecks are expected. + +.. _Industry demand: + +Industry demand +================ + +Industry demand is split into a dozen different sectors with specific energy demands, process +emissions of carbon dioxide, as well as existing and prospective mitigation strategies. + +The Subsection overview below provides a general description of the modelling approach for the industry sector. The following subsections describe the current energy demands, available mitigation strategies, and whether mitigation is exogenously fixed or co-optimised with the other components of the model for each industry subsector in more detail. See details for Iron and Steel (see :ref:`Iron and Steel`), Chemicals Industry and Ammonia (see :ref:`Chemicals Industry`), Non-metallic Mineral products , Non-ferrous Metals , and other Industry Subsectors. + +.. _Overview: + +**Overview** + +Greenhouse gas emissions associated with industry can be classified into energy-related and process-related emissions. Today, fossil fuels are used for process heat energy in the chemicals industry, but also as a non-energy feedstock for chemicals like ammonia ( :math:`NH_3`), ethylene ( :math:`C_2H_4`) and methanol ( :math:`CH_3OH`). Energy-related emissions can be curbed by using low-emission energy sources. The only option to reduce process-related emissions is by using an alternative manufacturing process or by assuming a certain rate of recycling so that a lower amount of virgin material is needed. + +The overarching modelling procedure can be described as follows. First, the energy demands and process emissions for every unit of material output are estimated based on data from the `JRC-IDEES database `_ and the fuel and process switching described in the subsequent sections. Second, the 2050 energy demands and process emissions are calculated using the per-unit-of-material ratios based on the industry transformations and the `country-level material production in 2015 `_, assuming constant material demand. + +Missing or too coarsely aggregated data in the JRC-IDEES database is supplemented with additional datasets: `Eurostat energy balances `_, `United States `_, `Geological Survey `_ for ammonia production, `DECHEMA `_ for methanol and chlorine, and `national statistics from Switzerland `_. + + +Where there are fossil and electrified alternatives for the same process (e.g. in glass manufacture or drying), we assume that the process is completely electrified. Current electricity demands (lighting, air compressors, motor drives, fans, pumps) will remain electric. Processes that require temperatures below 500 °C are supplied with solid biomass, since we assume that residues and wastes are not suitable for high-temperature applications. We see solid biomass use primarily in the pulp and paper industry, where it is already widespread, and in food, beverages and tobacco, where it replaces natural gas. Industries which require high temperatures (above 500 °C), such as metals, chemicals and non-metallic minerals are either electrified where suitable processes already exist, or the heat is provided with synthetic methane. + +Hydrogen for high-temperature process heat is not part of the model currently. + +Where process heat is required, our approach depends on the necessary temperature. For example, due to the high share of high-temperature process heat demand (see `Naegler et al. `_ and `Rehfeldt el al. `_), we disregard geothermal and solar thermal energy as sources for process heat since they cannot attain high-temperature heat. + +The following figure shows the final consumption of energy and non-energy feedstocks in industry today in comparison to the scenario in 2050 assumed in `Neumann et al `_. + +.. image:: ../graphics/fec_industry_today_tomorrow.png + + +The following figure shows the process emissions in industry today (top bar) and in 2050 without +carbon capture (bottom bar) assumed in `Neumann et al `_. + + + + +.. image:: ../graphics/process-emissions.png + + +Inside each country the industrial demand is then distributed using the `Hotmaps Industrial Database `_, which is illustrated in the figure below. This open database includes georeferenced industrial sites of energy-intensive industry sectors in EU28, including cement, basic chemicals, glass, iron and steel, non-ferrous metals, non-metallic minerals, paper, and refineries subsectors. The use of this spatial dataset enables the calculation of regional and process-specific energy demands. This approach assumes that there will be no significant migration of energy-intensive industries. + +.. image:: ../graphics/hotmaps.png + + +.. _Iron and Steel: + +**Iron and Steel** + +Two alternative routes are used today to manufacture steel in Europe. The primary route (integrated steelworks) represents 60% of steel production, while the secondary route (electric arc furnaces, EAF), represents the other 40% `(Lechtenböhmer et. al) `_. + +The primary route uses blast furnaces in which coke is used to reduce iron ore into molten iron, which is then converted into steel: + +.. math:: + CO_2 + C \xrightarrow{} 2 CO + + +.. math:: + 3 Fe_2O_3 + CO \xrightarrow{} 2 Fe_3O_4 + CO + + +.. math:: + Fe_3O_4 + CO \xrightarrow{} 3 FeO + CO_2 + + +.. math:: + FeO + CO \xrightarrow{} Fe + CO_2 + + +The primary route of steelmaking implies large process emissions of 0.22 t :math:`_{CO_2}` /t of steel, amounting to 7% of global greenhouse gas emissions `(Vogl et. al) `_. + +In the secondary route, electric arc furnaces are used to melt scrap metal. This limits the :math:`CO_2` emissions to the burning of graphite electrodes `(Friedrichsen et. al) `_, and reduces process emissions to 0.03 t :math:`_{CO_2}` /t of steel. + +We assume that the primary route can be replaced by a third route in 2050, using direct reduced iron (DRI) and subsequent processing in an EAF. + +.. math:: + 3 Fe_2O_3 + H_2 \xrightarrow{} 2 Fe_3O_4 + H_2O + + +.. math:: + Fe_3O_4 +H_2 \xrightarrow{} 3FeO+H_2O + + +.. math:: + FeO + H_2 \xrightarrow{} Fe + H_2O + + +This circumvents the process emissions associated with the use of coke. For hydrogen- based DRI, we assume energy requirements of 1.7 MWh :math:`_{H_2}` /t steel `(Vogl et. al) `_ and 0.322 MWh :math:`_{el}`/t steel `(HYBRIT 2016) `_. + + +The share of steel produced via the primary route is exogenously set in the `config file `_. The share of steel obtained via hydrogen-based DRI plus EAF is also set exogenously in the `config file `_. The remaining share is manufactured through the secondary route using scrap metal in EAF. Bioenergy as alternative to coke in blast furnaces is not considered in the model (`Mandova et.al `_, `Suopajärvi et.al `_). + +For the remaining subprocesses in this sector, the following transformations are assumed. Methane is used as energy source for the smelting process. Activities associated with furnaces, refining and rolling, and product finishing are electrified assuming the current efficiency values for these cases. These transformations result in changes in process emissions as outlined in the process emissions figure presented in the industry overview section (see :ref:`Overview`). + +.. _Chemicals Industry: + +**Chemicals Industry** + +The chemicals industry includes a wide range of diverse industries, including the production of basic organic compounds (olefins, alcohols, aromatics), basic inorganic compounds (ammonia, chlorine), polymers (plastics), and end-user products (cosmetics, pharmaceutics). + +The chemicals industry consumes large amounts of fossil-fuel based feedstocks (see `Levi et. al `_), which can also be produced from renewables as outlined for hydrogen (see :ref:`Hydrogen supply`), for methane (see :ref:`Methane supply`), and for oil-based products (see :ref:`Oil-based products supply`). The ratio between synthetic and fossil-based fuels used in the industry is an endogenous result of the optimisation. + +The basic chemicals consumption data from the `JRC IDEES `_ database comprises high- value chemicals (ethylene, propylene and BTX), chlorine, methanol and ammonia. However, it is necessary to separate out these chemicals because their current and future production routes are different. + +Statistics for the production of ammonia, which is commonly used as a fertilizer, are taken from the `USGS `_ for every country. Ammonia can be made from hydrogen and nitrogen using the Haber-Bosch process. + +.. math:: + N_2 + 3H_2 \xrightarrow{} 2NH_3 + + + +The Haber-Bosch process is not explicitly represented in the model, such that demand for ammonia enters the model as a demand for hydrogen ( 6.5 MWh :math:`_{H_2}` / t :math:`_{NH_3}` ) and electricity ( 1.17 MWh :math:`_{el}` /t :math:`_{NH_3}` ) (see `Wang et. al `_). Today, natural gas dominates in Europe as the source for the hydrogen used in the Haber-Bosch process, but the model can choose among the various hydrogen supply options described in the hydrogen section (see :ref:`Hydrogen supply`) + +The total production and specific energy consumption of chlorine and methanol is taken from a `DECHEMA report `_. According to this source, the production of chlorine amounts to 9.58 MtCl/a, which is assumed to require electricity at 3.6 MWh :math:`_{el}`/t of chlorine and yield hydrogen at 0.937 MWh :math:`_{H_2}`/t of chlorine in the chloralkali process. The production of methanol adds up to 1.5 MtMeOH/a, requiring electricity at 0.167 MWh :math:`_{el}`/t of methanol and methane at 10.25 MWh :math:`_{CH_4}`/t of methanol. + + +The production of ammonia, methanol, and chlorine production is deducted from the JRC IDEES basic chemicals, leaving the production totals of high-value chemicals. For this, we assume that the liquid hydrocarbon feedstock comes from synthetic or fossil- origin naphtha (14 MWh :math:`_{naphtha}`/t of HVC, similar to `Lechtenböhmer et al `_), ignoring the methanol-to-olefin route. Furthermore, we assume the following transformations of the energy-consuming processes in the production of plastics: the final energy consumption in steam processing is converted to methane since requires temperature above 500 °C (4.1 MWh :math:`_{CH_4}` /t of HVC, see `Rehfeldt et al. `_); and the remaining processes are electrified using the current efficiency of microwave for high-enthalpy heat processing, electric furnaces, electric process cooling and electric generic processes (2.85 MWh :math:`_{el}`/t of HVC). + +The process emissions from feedstock in the chemical industry are as high as 0.369 t :math:`_{CO_2}`/t of ethylene equivalent. We consider process emissions for all the material output, which is a conservative approach since it assumes that all plastic-embedded :math:`CO_2` will eventually be released into the atmosphere. However, plastic disposal in landfilling will avoid, or at least delay, associated :math:`CO_2` emissions. + +Circular economy practices drastically reduce the amount of primary feedstock needed for the production of plastics in the model (see `Kullmann et al. `_, `Meys et al. (2021) `_, `Meys et al. (2020) `_, `Gu et al. `_) and consequently, also the energy demands and level of process emission. The percentage of plastics that are assumed to be mechanically recycled can be selected in the `config file `_, as well as +the percentage that is chemically recycled, see `config file `_ The energy consumption for those recycling processes are respectively 0.547 MWh :math:`_{el}`/t of HVC (as indicated in the `config file `_) (`Meys et al. (2020) `_), and 6.9 MWh :math:`_{el}`/t of HVC (as indicated in the `config file `_) based on pyrolysis and electric steam cracking (see `Materials Economics `_ report). + + +**Non-metallic Mineral Products** + +This subsector includes the manufacturing of cement, ceramics, and glass. + +*Cement* + +Cement is used in construction to make concrete. The production of cement involves high energy consumption and large process emissions. The calcination of limestone to chemically reactive calcium oxide, also known as lime, involves process emissions of 0.54 t :math:`_{CO_2}` /t cement (see `Akhtar et al. `_. + + +.. math:: + CaCO_3 \xrightarrow{} CaO + CO_2 + + +Additionally, :math:`CO_2` is emitted from the combustion of fossil fuels to provide process heat. Thereby, cement constitutes the biggest source of industry process emissions in Europe. + +Cement process emissions can be captured assuming a capture rate of 90%. Whether emissions are captured is decided by the model taking into account the capital costs of carbon capture modules. The electricity and heat demand of process emission carbon capture is currently ignored. For net-zero emission scenarios, the remaining process emissions need to be compensated by negative emissions. + +With the exception of electricity demand and biomass demand for low-temperature heat (0.06 MWh/t and 0.2 MWh/t), the final energy consumption of this subsector is assumed to be supplied by methane (0.52 MWh/t), which is capable of delivering the required high-temperature heat. This implies a switch from burning solid fuels to burning gas which will require adjustments of the `kilns <10.1109/CITCON.2013.6525276>`_. The share of fossil vs. synthetic methane consumed is a result of the optimisation + + +*Ceramics* + +The ceramics sector is assumed to be fully electrified based on the current efficiency of already electrified processes which include microwave drying and sintering of raw materials, electric kilns for primary production processes, electric furnaces for the `product finishing `_. In total, the final electricity consumption is 0.44 MWh/t of ceramic. The manufacturing of ceramics includes process emissions of 0.03 t :math:`_{CO_2}`/t of ceramic. For a detailed overview of the ceramics industry sector see `Furszyfer Del Rio et al `_. + +*Glass* + +The production of glass is assumed to be fully electrified based on the current efficiency of electric melting tanks and electric annealing which adds up to an electricity demand of 2.07 MWh :math:`_{el}`/t of `glass `_. The manufacturing of glass incurs process emissions of 0.1 t :math:`_{CO_2}`/t of glass. Potential efficiency improvements, which according to `Lechtenböhmer et al `_ could reduce energy demands to 0.85 MW :math:`_{el}`/t of glass, have not been considered. For a detailed overview of the glass industry sector see `Furszyfer Del Rio et al `_. + + +**Non-ferrous Metals** + +The non-ferrous metal subsector includes the manufacturing of base metals (aluminium, copper, lead, zinc), precious metals (gold, silver), and technology metals (molybdenum, cobalt, silicon). + +The manufacturing of aluminium accounts for more than half of the final energy consumption of this subsector. Two alternative processing routes are used today to manufacture aluminium in Europe. The primary route represents 40% of the aluminium pro- duction, while the secondary route represents the remaining 60%. + +The primary route involves two energy-intensive processes: the production of alumina from bauxite (aluminium ore) and the electrolysis to transform alumina into aluminium via the Hall-Héroult process + +.. math:: + 2Al_2O_3 +3C \xrightarrow{} 4Al+3CO_2 + + +The primary route requires high-enthalpy heat (2.3 MWh/t) to produce alumina which is supplied by methane and causes process emissions of 1.5 t :math:`_{CO_2}`/t aluminium. According to `Friedrichsen et al. `_, inert anodes might become commercially available by 2030 that would eliminate the process emissions, but they are not included in the model. Assuming all subprocesses are electrified, the primary route requires 15.4 MWh :math:`_{el}`/t of aluminium. + +In the secondary route, scrap aluminium is remelted. The energy demand for this process is only 10% of the primary route and there are no associated process emissions. Assuming all subprocesses are electrified, the secondary route requires 1.7 MWh/t of aluminium. The share of aliminum manufactured by the primary and secondary route can be selected in the `config file `_] + +For the other non-ferrous metals, we assume the electrification of the entire manufacturing process with an average electricity demand of 3.2 MWh :math:`_{el}`/t lead equivalent. + +**Other Industry Subsectors** + +The remaining industry subsectors include (a) pulp, paper, printing, (b) food, beverages, tobacco, (c) textiles and leather, (d) machinery equipment, (e) transport equipment, (f) wood and wood products, (g) others. Low- and mid-temperature process heat in these industries is assumed to be `supplied by biomass `_ while the remaining processes are electrified. None of the subsectors involve process emissions. + + +Agriculture demand +========================= + +Energy demands for the agriculture, forestry and fishing sector per country are taken from the `JRC-IDEES database `_. Missing countries are filled with `Eurostat data `_. Agricultural energy demands are split into electricity (lighting, ventilation, specific electricity uses, electric pumping devices), heat (specific heat uses, low enthalpy heat), and machinery oil (motor drives, farming machine drives, diesel-fueled pumping devices). Heat demand is assigned at “services rural heat” buses. Time series for demands are assumed to be constant and distributed inside countries by population. + +.. _Transportation: + +Transportation +========================= +Annual energy demands for land transport, aviation and shipping for every country are retrieved from `JRC-IDEES data set `_. Below, the details of how each of these categories are treated is explained. + +.. _Land transport: + +**Land transport** + +Both road and rail transport is combined as `land transport demand `_ although electrified rail transport is excluded because that demand is included in the current electricity demand. + +The most important settings for land transport are the exogenously fixed fuel mix (an option enabling the endogeous optimization of transport electrification is planned but not yet implemented). In the `config file `_, the share of battery electric vehicles (BEV) and hydrogen fuel cell vehicles (FCEV) can be set. The remaining percentage will be treated as internal combustion engines (ICE) that consume oil products. + +*Battery Electric vehicles (BEV)* + +For the electrified land transport, country-specific factors are computed by comparing the `current car final energy consumption per km in `_ (average for Europe 0.7 kWh/km) to the 0.18 kWh/km value assumed for battery-to-wheels efficiency in EVs. The characteristic `weekly profile `_ provided by the German Federal Highway Research Institute (BASt) is used to obtain hourly time series for European countries taking into account the corresponding local times. Furthermore, a temperature dependence is included in the time series to account for heating/cooling demand in transport. For temperatures `below `_/`above `_ certain threshold values, e.g. 15 °C/20 °C, `temperature coefficients `_ of typically 0.98%/°C and 0.63%/°C are assumed, based on the `paper `_. + +For BEVs the user can define the `storage energy capacity `_, `charging power capacity `_, and `charging efficiency `_. + +For BEV, smart charging is an option. A `certain share `_ of the BEV fleet can shift their charging time. The BEV state of charge is forced to be higher than a `set percentage `_, e.g. 75%, every day at a `specified hour `_, e.g., 7 am, to ensure that the batteries are sufficiently charged for peak usage in the morning and they not behave as seasonal storage. They also have the option to participate in vehicle-to-grid (V2G) services to facilitate system operation if that `is enabled `_. + +The battery cost of BEV is not included in the model since it is assumed that BEV owners buy them to primarily satisfy their mobility needs. + +*Hydrogen fuel cell vehicles (FCEV)* + +The share of all land transport that is specified to be be FCEV will be converted to a demand for hydrogen (see :ref:`Hydrogen supply`) using the `FCEV efficiency +`_. + +FCEVs are typically used to simulate demand for transport that is hard to electrify directly, e.g. heavy construction machinery. But it may also be used to investigate a more widespread adoption of the technology. + +*Internal combustion engine vehicles (ICE)* + +All land transport that is not specified to be either BEV or FCEV will be treated as conventional ICEs. The transport demand is converted to a demand for oil products (see :ref:`Oil-based products supply`) using the `ICE efficiency +`_. + +.. _Aviation: + +**Aviation** + +The `demand for aviation `_ includes international and domestic use. It is modelled as an oil demand since aviation consumes kerosene. This can be produced synthetically or have fossil-origin (see :ref:`Oil-based products supply`). + +.. _Shipping: + +**Shipping** + +Shipping energy demand is covered by a combination of oil and hydrogen. Other fuel options, like methanol or ammonia, are currently not included in PyPSA-Eur-Sec. The share of shipping that is assumed to be supplied by hydrogen can be selected in the `config file `_. + +To estimate the `hydrogen demand `_, the average fuel efficiency of the fleet is used in combination with the efficiency of the fuel cell defined in the technology-data repository. The average fuel efficiency is set in the `config file `_. + +The consumed hydrogen comes from the general hydrogen bus where it can be produced by SMR, SMR+CC or electrolysers (see :ref:`Hydrogen supply`). The fraction that is not converted into hydrogen use oil products, i.e. is connected to the general oil bus. + +The energy demand for liquefaction of the hydrogen used for shipping can be `included `_. If this option is selected, liquifaction will happen at the `node where the shipping demand occurs `_. + +.. _Carbon dioxide capture, usage and sequestration (CCU/S): + +Carbon dioxide capture, usage and sequestration (CCU/S) +========================================================= + +PyPSA-Eur-Sec includes carbon capture from air (i.e., direct air capture (DAC)), electricity generators, and industrial facilities. It furthermore includes carbon dioxide storage and transport, the usage of carbon dioxide in synthetic methane and oil products, as well as the sequestration of carbon dioxide underground. + +**Carbon dioxide capture** + +For the following point source emissions, carbon capture is applicable: + +• Industry process emissions, e.g., from limestone in cement production + +• Methane or biomass used for process heat in the industry + +• Hydrogen production by SMR + +• CHP plants using biomass or methane + +• `Coal power plants `_. + +Point source emissions are captured assuming a capture rate, e.g. 90%, which can be specified in the `config file `_. The electricity and heat demand of process emission carbon capture +is currently ignored. + +DAC (if `included `_) includes the adsorption phase where electricity and heat consumptionsare required to assist the adsorption process and regenerate the adsorbent. It also includes the drying and compression of :math:`CO_2` prior to storage which consumes electricity and rejects heat. + +*Carbon dioxide usage* + +Captured :math:`CO_2` can be used to produce synthetic methane and synthetic oil products (e.g. +naphtha). If captured carbon is used, the :math:`CO_2` emissions of the synthetic fuels are net-neutral. + +*Carbon dioxide sequestration* + +Captured :math:`CO_2` can also be sequestered underground up to an annual sequestration limit of 200 Mt :math:`_{CO_2}`/a. This limit can be chosen in the `config file `_. As stored carbon dioxide is modelled as a single node for Europe, :math:`CO_2` transport constraints are neglected. Since :math:`CO_2` sequestration is an immature technology, the cost assumption is defined in the `config file `_. + +*Carbon dioxide transport* + +Carbon dioxide can be modelled as a single node for Europe (in this case, :math:`CO_2` transport constraints are neglected). A network for modelling the transport of :math:`CO_2` among the different nodes can also be created if selected in the `config file `_. diff --git a/doc/support.rst b/doc/support.rst new file mode 100644 index 00000000..1d512d59 --- /dev/null +++ b/doc/support.rst @@ -0,0 +1,14 @@ +.. + SPDX-FileCopyrightText: 2019-2023 The PyPSA-Eur Authors + + SPDX-License-Identifier: CC-BY-4.0 + +####################### +Support +####################### + +* In case of code-related **questions**, please post on `stack overflow `_. +* For non-programming related and more general questions please refer to the `mailing list `_. +* To **discuss** with other PyPSA users, organise projects, share news, and get in touch with the community you can use the `discord server `_. +* For **bugs and feature requests**, please use the `issue tracker `_. +* We strongly welcome anyone interested in providing **contributions** to this project. If you have any ideas, suggestions or encounter problems, feel invited to file issues or make pull requests on `Github `_. For further information on how to contribute, please refer to :ref:`contributing`. diff --git a/doc/tutorial.rst b/doc/tutorial.rst index 17d4e3c1..1b87cefe 100644 --- a/doc/tutorial.rst +++ b/doc/tutorial.rst @@ -1,189 +1,221 @@ .. - SPDX-FileCopyrightText: 2019-2020 The PyPSA-Eur Authors + SPDX-FileCopyrightText: 2019-2023 The PyPSA-Eur Authors SPDX-License-Identifier: CC-BY-4.0 .. _tutorial: -##################### -Tutorial -##################### +############################### +Tutorial: Electricity-Only +############################### .. raw:: html -Before getting started with **PyPSA-Eur** it makes sense to be familiar +.. note:: + If you have not done it yet, follow the :ref:`installation` steps first. + +In this tutorial, we will build a heavily simplified power system model for +Belgium. But before getting started with **PyPSA-Eur** it makes sense to be familiar with its general modelling framework `PyPSA `__. -Running the tutorial requires limited computational resources compared to the full model, -which allows the user to explore most of its functionalities on a local machine. -It takes approximately five minutes to complete and -requires 3 GB of memory along with 1 GB free disk space. - -If not yet completed, follow the :ref:`installation` steps first. - -The tutorial will cover examples on how to - -- configure and customise the PyPSA-Eur model and -- run the ``snakemake`` workflow step by step from network creation to the solved network. - -The configuration of the tutorial is included in the ``config.tutorial.yaml``. -To run the tutorial, use this as your configuration file ``config.yaml``. +Running the tutorial requires limited computational resources compared to the +full model, which allows the user to explore most of its functionalities on a +local machine. The tutorial will cover examples on how to configure and +customise the PyPSA-Eur model and run the ``snakemake`` workflow step by step +from network creation to the solved network. The configuration for the tutorial +is located at ``test/config.electricity.yaml``. It includes parts deviating from +the default config file ``config/config.default.yaml``. To run the tutorial with this +configuration, execute .. code:: bash + :class: full-width - .../pypsa-eur % cp config.tutorial.yaml config.yaml + snakemake -call results/test-elec/networks/elec_s_6_ec_lcopt_Co2L-24H.nc --configfile test/config.electricity.yaml This configuration is set to download a reduced data set via the rules :mod:`retrieve_databundle`, -:mod:`retrieve_natura_raster`, :mod:`retrieve_cutout` totalling at less than 250 MB. -The full set of data dependencies would consume 5.3 GB. +:mod:`retrieve_natura_raster`, :mod:`retrieve_cutout`. For more information on the data dependencies of PyPSA-Eur, continue reading :ref:`data`. -How to customise PyPSA-Eur? +How to configure runs? =========================== -The model can be adapted to only include selected countries (e.g. Germany) instead of all European countries to limit the spatial scope. +The model can be adapted to only include selected countries (e.g. Belgium) instead of all European countries to limit the spatial scope. -.. literalinclude:: ../config.tutorial.yaml +.. literalinclude:: ../test/config.electricity.yaml :language: yaml - :lines: 20 + :start-at: countries: + :end-before: snapshots: -Likewise, the example's temporal scope can be restricted (e.g. to a single month). +Likewise, the example's temporal scope can be restricted (e.g. to a single week). -.. literalinclude:: ../config.tutorial.yaml +.. literalinclude:: ../test/config.electricity.yaml :language: yaml - :lines: 24-27 + :start-at: snapshots: + :end-before: electricity: -It is also possible to allow less or more carbon-dioxide emissions. Here, we limit the emissions of Germany 100 Megatonnes per year. +It is also possible to allow less or more carbon-dioxide emissions. Here, we limit the emissions of Belgium to 100 Mt per year. -.. literalinclude:: ../config.tutorial.yaml +.. literalinclude:: ../test/config.electricity.yaml :language: yaml - :lines: 38,40 + :start-at: electricity: + :end-before: extendable_carriers: PyPSA-Eur also includes a database of existing conventional powerplants. -We can select which types of powerplants we like to be included with fixed capacities: +We can select which types of existing powerplants we like to be extendable: -.. literalinclude:: ../config.tutorial.yaml +.. literalinclude:: ../test/config.electricity.yaml :language: yaml - :lines: 38,54 + :start-at: extendable_carriers: + :end-before: renewable_carriers: -To accurately model the temporal and spatial availability of renewables such as wind and solar energy, we rely on historical weather data. -It is advisable to adapt the required range of coordinates to the selection of countries. +To accurately model the temporal and spatial availability of renewables such as +wind and solar energy, we rely on historical weather data. It is advisable to +adapt the required range of coordinates to the selection of countries. -.. literalinclude:: ../config.tutorial.yaml +.. literalinclude:: ../test/config.electricity.yaml :language: yaml - :lines: 56-63 + :start-at: atlite: + :end-before: renewable: -We can also decide which weather data source should be used to calculate potentials and capacity factor time-series for each carrier. -For example, we may want to use the ERA-5 dataset for solar and not the default SARAH-2 dataset. +We can also decide which weather data source should be used to calculate +potentials and capacity factor time-series for each carrier. For example, we may +want to use the ERA-5 dataset for solar and not the default SARAH-2 dataset. -.. literalinclude:: ../config.tutorial.yaml +.. literalinclude:: ../test/config.electricity.yaml :language: yaml - :lines: 65,108-109 + :start-at: solar: + :end-at: cutout: -Finally, it is possible to pick a solver. For instance, this tutorial uses the open-source solvers CBC and Ipopt and does not rely -on the commercial solvers Gurobi or CPLEX (for which free academic licenses are available). +Finally, it is possible to pick a solver. For instance, this tutorial uses the +open-source solver GLPK. -.. literalinclude:: ../config.tutorial.yaml +.. literalinclude:: ../test/config.electricity.yaml :language: yaml - :lines: 171,181-182 + :start-at: solver: + :end-before: plotting: -.. note:: +Note, that ``test/config.electricity.yaml`` only includes changes relative to +the default configuration. There are many more configuration options, which are +documented at :ref:`config`. - To run the tutorial, either install CBC and Ipopt (see instructions for :ref:`installation`). - Alternatively, choose another installed solver in the ``config.yaml`` at ``solving: solver:``. - -Note, that we only note major changes to the provided default configuration that is comprehensibly documented in :ref:`config`. -There are many more configuration options beyond what is adapted for the tutorial! - -How to use the ``snakemake`` rules? +How to use ``snakemake`` rules? =================================== Open a terminal, go into the PyPSA-Eur directory, and activate the ``pypsa-eur`` environment with .. code:: bash - .../pypsa-eur % conda activate pypsa-eur + mamba activate pypsa-eur Let's say based on the modifications above we would like to solve a very simplified model clustered down to 6 buses and every 24 hours aggregated to one snapshot. The command .. code:: bash - .../pypsa-eur % snakemake -j 1 results/networks/elec_s_6_ec_lcopt_Co2L-24H.nc + snakemake -call results/test-elec/networks/elec_s_6_ec_lcopt_Co2L-24H.nc --configfile test/config.electricity.yaml -orders ``snakemake`` to run the script ``solve_network`` that produces the solved network and stores it in ``.../pypsa-eur/results/networks`` with the name ``elec_s_6_ec_lcopt_Co2L-24H.nc``: +orders ``snakemake`` to run the rule :mod:`solve_network` that produces the solved network and stores it in ``results/networks`` with the name ``elec_s_6_ec_lcopt_Co2L-24H.nc``: -.. code:: - - rule solve_network: - input: "networks/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.nc" - output: "results/networks/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.nc" - [...] - script: "scripts/solve_network.py" - -.. until https://github.com/snakemake/snakemake/issues/46 closed - -.. warning:: - On Windows the previous command may currently cause a ``MissingRuleException`` due to problems with output files in subfolders. - This is an `open issue `_ at `snakemake `_. - Windows users should add the option ``--keep-target-files`` to the command or instead run ``snakemake -j 1 solve_all_networks``. +.. literalinclude:: ../rules/solve_electricity.smk + :start-at: rule solve_network: + :end-before: rule solve_operations_network: This triggers a workflow of multiple preceding jobs that depend on each rule's inputs and outputs: .. graphviz:: + :class: full-width :align: center digraph snakemake_dag { graph[bgcolor=white, margin=0]; - node[shape=box, style=rounded, fontname=sans, fontsize=10, penwidth=2]; + node[shape=box, style=rounded, fontname=sans, fontsize=10, penwidth=2]; edge[penwidth=2, color=grey]; - 0[label = "solve_network", color = "0.10 0.6 0.85", style="rounded"]; - 1[label = "prepare_network\nll: copt\nopts: Co2L-24H", color = "0.13 0.6 0.85", style="rounded"]; - 2[label = "cluster_network\nclusters: 6", color = "0.51 0.6 0.85", style="rounded"]; - 3[label = "simplify_network\nnetwork: elec\nsimpl: ", color = "0.00 0.6 0.85", style="rounded"]; - 4[label = "add_electricity", color = "0.60 0.6 0.85", style="rounded"]; - 5[label = "build_bus_regions", color = "0.19 0.6 0.85", style="rounded"]; - 6[label = "base_network", color = "0.38 0.6 0.85", style="rounded"]; - 7[label = "build_shapes", color = "0.03 0.6 0.85", style="rounded"]; - 8[label = "build_renewable_profiles\ntechnology: onwind", color = "0.48 0.6 0.85", style="rounded"]; - 9[label = "build_renewable_profiles\ntechnology: offwind-ac", color = "0.48 0.6 0.85", style="rounded"]; - 10[label = "build_renewable_profiles\ntechnology: offwind-dc", color = "0.48 0.6 0.85", style="rounded"]; - 11[label = "build_renewable_profiles\ntechnology: solar", color = "0.48 0.6 0.85", style="rounded"]; - 12[label = "build_cutout\ncutout: europe-2013-era5", color = "0.35 0.6 0.85", style="rounded,dashed"]; + 0[label = "solve_network", color = "0.21 0.6 0.85", style="rounded"]; + 1[label = "prepare_network\nll: copt\nopts: Co2L-24H", color = "0.02 0.6 0.85", style="rounded"]; + 2[label = "add_extra_components", color = "0.37 0.6 0.85", style="rounded"]; + 3[label = "cluster_network\nclusters: 6", color = "0.39 0.6 0.85", style="rounded"]; + 4[label = "simplify_network\nsimpl: ", color = "0.11 0.6 0.85", style="rounded"]; + 5[label = "add_electricity", color = "0.23 0.6 0.85", style="rounded"]; + 6[label = "build_renewable_profiles\ntechnology: onwind", color = "0.57 0.6 0.85", style="rounded"]; + 7[label = "base_network", color = "0.09 0.6 0.85", style="rounded"]; + 8[label = "build_shapes", color = "0.41 0.6 0.85", style="rounded"]; + 9[label = "retrieve_databundle", color = "0.28 0.6 0.85", style="rounded"]; + 10[label = "retrieve_natura_raster", color = "0.62 0.6 0.85", style="rounded"]; + 11[label = "build_bus_regions", color = "0.53 0.6 0.85", style="rounded"]; + 12[label = "retrieve_cutout\ncutout: europe-2013-era5", color = "0.05 0.6 0.85", style="rounded,dashed"]; + 13[label = "build_renewable_profiles\ntechnology: offwind-ac", color = "0.57 0.6 0.85", style="rounded"]; + 14[label = "build_ship_raster", color = "0.64 0.6 0.85", style="rounded"]; + 15[label = "retrieve_ship_raster", color = "0.07 0.6 0.85", style="rounded,dashed"]; + 16[label = "retrieve_cutout\ncutout: europe-2013-sarah", color = "0.05 0.6 0.85", style="rounded,dashed"]; + 17[label = "build_renewable_profiles\ntechnology: offwind-dc", color = "0.57 0.6 0.85", style="rounded"]; + 18[label = "build_renewable_profiles\ntechnology: solar", color = "0.57 0.6 0.85", style="rounded"]; + 19[label = "build_hydro_profile", color = "0.44 0.6 0.85", style="rounded"]; + 20[label = "retrieve_cost_data", color = "0.30 0.6 0.85", style="rounded"]; + 21[label = "build_powerplants", color = "0.16 0.6 0.85", style="rounded"]; + 22[label = "build_electricity_demand", color = "0.00 0.6 0.85", style="rounded"]; + 23[label = "retrieve_electricity_demand", color = "0.34 0.6 0.85", style="rounded,dashed"]; 1 -> 0 2 -> 1 + 20 -> 1 3 -> 2 + 20 -> 2 4 -> 3 - 5 -> 3 - 6 -> 4 + 20 -> 3 5 -> 4 - 7 -> 4 - 8 -> 4 - 9 -> 4 - 10 -> 4 + 20 -> 4 11 -> 4 - 7 -> 5 6 -> 5 + 13 -> 5 + 17 -> 5 + 18 -> 5 + 19 -> 5 + 7 -> 5 + 20 -> 5 + 11 -> 5 + 21 -> 5 + 9 -> 5 + 22 -> 5 + 8 -> 5 7 -> 6 - 6 -> 8 - 7 -> 8 - 5 -> 8 - 12 -> 8 - 6 -> 9 - 7 -> 9 - 5 -> 9 - 12 -> 9 - 6 -> 10 - 7 -> 10 - 5 -> 10 - 12 -> 10 - 6 -> 11 + 9 -> 6 + 10 -> 6 + 8 -> 6 + 11 -> 6 + 12 -> 6 + 8 -> 7 + 9 -> 8 + 8 -> 11 7 -> 11 - 5 -> 11 - 12 -> 11 + 7 -> 13 + 9 -> 13 + 10 -> 13 + 14 -> 13 + 8 -> 13 + 11 -> 13 + 12 -> 13 + 15 -> 14 + 12 -> 14 + 16 -> 14 + 7 -> 17 + 9 -> 17 + 10 -> 17 + 14 -> 17 + 8 -> 17 + 11 -> 17 + 12 -> 17 + 7 -> 18 + 9 -> 18 + 10 -> 18 + 8 -> 18 + 11 -> 18 + 16 -> 18 + 8 -> 19 + 12 -> 19 + 7 -> 21 + 23 -> 22 } | @@ -193,97 +225,99 @@ In the terminal, this will show up as a list of jobs to be run: .. code:: bash Building DAG of jobs... - Using shell: /bin/bash - Provided cores: 1 - Rules claiming more threads will be scaled down. - Unlimited resources: mem - Job counts: - count jobs - 1 add_electricity - 1 base_network - 1 build_bus_regions - 4 build_renewable_profiles - 1 build_shapes - 1 cluster_network - 1 prepare_network - 1 simplify_network - 1 solve_network - 12 + job count min threads max threads + ------------------------ ------- ------------- ------------- + add_electricity 1 1 1 + add_extra_components 1 1 1 + base_network 1 1 1 + build_bus_regions 1 1 1 + build_hydro_profile 1 1 1 + build_electricity_demand 1 1 1 + build_powerplants 1 1 1 + build_renewable_profiles 4 1 1 + build_shapes 1 1 1 + build_ship_raster 1 1 1 + cluster_network 1 1 1 + prepare_network 1 1 1 + retrieve_cost_data 1 1 1 + retrieve_databundle 1 1 1 + retrieve_natura_raster 1 1 1 + simplify_network 1 1 1 + solve_network 1 1 1 + total 20 1 1 + ``snakemake`` then runs these jobs in the correct order. -A job (here ``simplify_network``) will display its attributes and normally some logs in the terminal: +A job (here ``simplify_network``) will display its attributes and normally some logs below this block: .. code:: bash - [] + [Mon Jan 1 00:00:00 2023] rule simplify_network: - input: networks/elec.nc, data/costs.csv, resources/regions_onshore.geojson, resources/regions_offshore.geojson - output: networks/elec_s.nc, resources/regions_onshore_elec_s.geojson, resources/regions_offshore_elec_s.geojson, resources/clustermaps_elec_s.h5 - jobid: 3 + input: networks/elec.nc, resources/costs.csv, resources/regions_onshore.geojson, resources/regions_offshore.geojson + output: networks/elec_s.nc, resources/regions_onshore_elec_s.geojson, resources/regions_offshore_elec_s.geojson, resources/busmap_elec_s.csv, resources/connection_costs_s.csv + log: logs/simplify_network/elec_s.log + jobid: 4 benchmark: benchmarks/simplify_network/elec_s - wildcards: network=elec, simpl= - resources: mem=4000 + reason: Missing output files: resources/busmap_elec_s.csv, resources/regions_onshore_elec_s.geojson, networks/elec_s.nc, resources/regions_offshore_elec_s.geojson; Input files updated by another job: resources/regions_offshore.geojson, resources/regions_onshore.geojson, resources/costs.csv, networks/elec.nc + wildcards: simpl= + resources: tmpdir=/tmp, mem_mb=4000, mem_mib=3815 - INFO:pypsa.io:Imported network elec.nc has buses, carriers, generators, lines, links, loads, storage_units, transformers - INFO:__main__:Mapping all network lines onto a single 380kV layer - INFO:__main__:Simplifying connected link components - INFO:__main__:Removing stubs - INFO:__main__:Displacing offwind-ac generator(s) and adding connection costs to capital_costs: 20128 Eur/MW/a for `5718 offwind-ac` - INFO:__main__:Displacing offwind-dc generator(s) and adding connection costs to capital_costs: 14994 Eur/MW/a for `5718 offwind-dc`, 26939 Eur/MW/a for `5724 offwind-dc`, 29621 Eur/MW/a for `5725 offwind-dc` - INFO:pypsa.io:Exported network elec_s.nc has lines, carriers, links, storage_units, loads, buses, generators - [] - Finished job 3. - 9 of 12 steps (75%) done - -Once the whole worktree is finished, it should show state so in the terminal: - -.. code:: bash - - Finished job 0. - 12 of 12 steps (100%) done - Complete log: /home/XXXX/pypsa-eur/.snakemake/log/20XX-XX-XXTXX.snakemake.log - snakemake results/networks/elec_s_6_ec_lcopt_Co2L-24H.nc 519,84s user 34,26s system 242% cpu 3:48,83 total +Once the whole worktree is finished, it should state so in the terminal. You will notice that many intermediate stages are saved, namely the outputs of each individual ``snakemake`` rule. -You can produce any output file occuring in the ``Snakefile`` by running +You can produce any output file occurring in the ``Snakefile`` by running .. code:: bash - .../pypsa-eur % snakemake -j 1 + snakemake -call For example, you can explore the evolution of the PyPSA networks by running -#. ``.../pypsa-eur % snakemake -j 1 networks/base.nc`` -#. ``.../pypsa-eur % snakemake -j 1 networks/elec.nc`` -#. ``.../pypsa-eur % snakemake -j 1 networks/elec_s.nc`` -#. ``.../pypsa-eur % snakemake -j 1 networks/elec_s_6.nc`` -#. ``.../pypsa-eur % snakemake -j 1 networks/elec_s_6_ec_lcopt_Co2L-24H.nc`` +#. ``snakemake resources/networks/base.nc -call --configfile test/config.electricity.yaml`` +#. ``snakemake resources/networks/elec.nc -call --configfile test/config.electricity.yaml`` +#. ``snakemake resources/networks/elec_s.nc -call --configfile test/config.electricity.yaml`` +#. ``snakemake resources/networks/elec_s_6.nc -call --configfile test/config.electricity.yaml`` +#. ``snakemake resources/networks/elec_s_6_ec_lcopt_Co2L-24H.nc -call --configfile test/config.electricity.yaml`` -There's a special rule: If you simply run +To run all combinations of wildcard values provided in the ``config/config.yaml`` under ``scenario:``, +you can use the collection rule ``solve_elec_networks``. .. code:: bash - .../pypsa-eur % snakemake + snakemake -call solve_elec_networks --configfile test/config.electricity.yaml -the wildcards given in ``scenario`` in the configuration file ``config.yaml`` are used: +If you now feel confident and want to tackle runs with larger temporal and +spatial scope, clean-up the repository and after modifying the ``config/config.yaml`` file +target the collection rule ``solve_elec_networks`` again without providing the test +configuration file. -.. literalinclude:: ../config.tutorial.yaml - :language: yaml - :lines: 14-18 +.. code:: bash -In this example we would not only solve a 6-node model of Germany but also a 2-node model. + snakemake -call purge + snakemake -call solve_elec_networks -How to analyse solved networks? +.. note:: + + It is good practice to perform a dry-run using the option `-n`, before you + commit to a run: + + .. code:: bash + + snakemake -call solve_elec_networks -n + +How to analyse results? =============================== -The solved networks can be analysed just like any other PyPSA network (e.g. in Jupyter Notebooks). +The solved networks can be analysed just like any other PyPSA network (e.g. in +Jupyter Notebooks). .. code:: python import pypsa - network = pypsa.Network("results/networks/elec_s_6_ec_lcopt_Co2L-24H.nc") + n = pypsa.Network("results/networks/elec_s_6_ec_lcopt_Co2L-24H.nc") -For inspiration, read the `examples section in the PyPSA documentation `_. +For inspiration, read the `examples section in the PyPSA documentation `_. diff --git a/doc/tutorial_sector.rst b/doc/tutorial_sector.rst new file mode 100644 index 00000000..29971e3a --- /dev/null +++ b/doc/tutorial_sector.rst @@ -0,0 +1,532 @@ +.. + SPDX-FileCopyrightText: 2023 The PyPSA-Eur Authors + + SPDX-License-Identifier: CC-BY-4.0 + +.. _tutorial_sector: + +############################### +Tutorial: Sector-Coupled +############################### + +.. note:: + If you have not done it yet, follow the :ref:`installation` steps first. + + Also, checkout the tutorial for electricity-only systems first at :ref:`tutorial`. + +In this tutorial, we will add further sectors to the electricity-only model from +:ref:`tutorial`, namely industry, transport, and buildings. This +requires processing of a few more raw data sources. + +The sector-coupling code can be run as an overnight / greenfield scenario or +with multi-horizon investment with myopic foresight. Pathway analysis with +perfect foresight is under development. See also the documentation on +:ref:`foresight`. + +Overnight Scenarios +=========================== + +Configuration +------------- + +The default configuration file (``config/config.default.yaml``) is set up for running +overnight scenarios. Running a sector-coupled model unlocks many further +configuration options. In the example below, we say that the gas network should +be added and spatially resolved. We also say that the existing gas network may +be retrofitted to transport hydrogen instead. + +.. literalinclude:: ../test/config.overnight.yaml + :language: yaml + :start-at: sector: + :end-before: solving: + +Documentation for all options will be added successively to :ref:`config`. + +Scenarios can be defined like for electricity-only studies, but with additional +wildcard options. + +.. literalinclude:: ../test/config.overnight.yaml + :language: yaml + :start-at: scenario: + :end-before: countries: + +For allowed wildcard values, refer to :ref:`wildcards`. + +Execution +--------- + +To run an overnight / greenfiled scenario with the specifications above, run + +.. code:: bash + + snakemake -call --configfile test/config.overnight.yaml all + +which will result in the following *additional* jobs ``snakemake`` wants to run +on top of those already included in the electricity-only tutorial: + +.. code:: bash + + job count min threads max threads + ------------------------------------------------ ------- ------------- ------------- + all 1 1 1 + build_ammonia_production 1 1 1 + build_biomass_potentials 1 1 1 + build_clustered_population_layouts 1 1 1 + build_cop_profiles 1 1 1 + build_gas_input_locations 1 1 1 + build_gas_network 1 1 1 + build_heat_demands 3 1 1 + build_industrial_distribution_key 1 1 1 + build_industrial_energy_demand_per_country_today 1 1 1 + build_industrial_energy_demand_per_node 1 1 1 + build_industrial_energy_demand_per_node_today 1 1 1 + build_industrial_production_per_country 1 1 1 + build_industrial_production_per_country_tomorrow 1 1 1 + build_industrial_production_per_node 1 1 1 + build_industry_sector_ratios 1 1 1 + build_population_weighted_energy_totals 1 1 1 + build_salt_cavern_potentials 1 1 1 + build_shipping_demand 1 1 1 + build_simplified_population_layouts 1 1 1 + build_solar_thermal_profiles 3 1 1 + build_temperature_profiles 3 1 1 + build_transport_demand 1 1 1 + cluster_gas_network 1 1 1 + cluster_network 1 1 1 + copy_config 1 1 1 + make_summary 1 1 1 + plot_network 1 1 1 + plot_summary 1 1 1 + prepare_sector_network 1 1 1 + retrieve_gas_infrastructure_data 1 1 1 + retrieve_sector_databundle 1 1 1 + solve_sector_network 1 1 1 + +This covers the retrieval of additional raw data from online resources and +preprocessing data about the transport, industry, and heating sectors as well as +additional rules about geological storage and sequestration potentials, gas +infrastructure, and biomass potentials. The collection rule ``all`` will also +generate summary CSV files and plots after the network has been solved +successfully. + + + +.. graphviz:: + :class: full-width + :align: center + + digraph snakemake_dag { + graph[bgcolor=white, margin=0]; + node[shape=box, style=rounded, fontname=sans, fontsize=10, penwidth=2]; + edge[penwidth=2, color=grey]; + 0[label = "all", color = "0.51 0.6 0.85", style="rounded"]; + 1[label = "plot_summary", color = "0.54 0.6 0.85", style="rounded"]; + 2[label = "make_summary", color = "0.44 0.6 0.85", style="rounded"]; + 3[label = "solve_sector_network", color = "0.46 0.6 0.85", style="rounded"]; + 4[label = "prepare_sector_network", color = "0.09 0.6 0.85", style="rounded"]; + 5[label = "cluster_gas_network", color = "0.38 0.6 0.85", style="rounded"]; + 6[label = "build_gas_network", color = "0.00 0.6 0.85", style="rounded"]; + 7[label = "retrieve_gas_infrastructure_data", color = "0.33 0.6 0.85", style="rounded"]; + 8[label = "cluster_network", color = "0.26 0.6 0.85", style="rounded"]; + 9[label = "simplify_network", color = "0.03 0.6 0.85", style="rounded"]; + 10[label = "add_electricity", color = "0.25 0.6 0.85", style="rounded"]; + 11[label = "build_renewable_profiles", color = "0.07 0.6 0.85", style="rounded"]; + 12[label = "base_network", color = "0.16 0.6 0.85", style="rounded"]; + 13[label = "build_shapes", color = "0.65 0.6 0.85", style="rounded"]; + 14[label = "retrieve_databundle", color = "0.20 0.6 0.85", style="rounded"]; + 15[label = "retrieve_natura_raster", color = "0.10 0.6 0.85", style="rounded"]; + 16[label = "build_bus_regions", color = "0.11 0.6 0.85", style="rounded"]; + 17[label = "build_ship_raster", color = "0.56 0.6 0.85", style="rounded"]; + 18[label = "retrieve_ship_raster", color = "0.15 0.6 0.85", style="rounded"]; + 19[label = "retrieve_cost_data", color = "0.50 0.6 0.85", style="rounded"]; + 20[label = "build_powerplants", color = "0.49 0.6 0.85", style="rounded"]; + 21[label = "build_electricity_demand", color = "0.39 0.6 0.85", style="rounded"]; + 22[label = "retrieve_electricity_demand", color = "0.05 0.6 0.85", style="rounded"]; + 23[label = "build_gas_input_locations", color = "0.45 0.6 0.85", style="rounded"]; + 24[label = "prepare_network", color = "0.31 0.6 0.85", style="rounded"]; + 25[label = "add_extra_components", color = "0.23 0.6 0.85", style="rounded"]; + 26[label = "build_energy_totals", color = "0.19 0.6 0.85", style="rounded"]; + 27[label = "build_population_weighted_energy_totals", color = "0.27 0.6 0.85", style="rounded"]; + 28[label = "build_clustered_population_layouts", color = "0.64 0.6 0.85", style="rounded"]; + 29[label = "build_population_layouts", color = "0.43 0.6 0.85", style="rounded"]; + 30[label = "build_shipping_demand", color = "0.57 0.6 0.85", style="rounded"]; + 31[label = "build_transport_demand", color = "0.53 0.6 0.85", style="rounded"]; + 32[label = "build_temperature_profiles", color = "0.58 0.6 0.85", style="rounded"]; + 33[label = "build_biomass_potentials", color = "0.30 0.6 0.85", style="rounded"]; + 34[label = "build_salt_cavern_potentials", color = "0.47 0.6 0.85", style="rounded"]; + 35[label = "build_simplified_population_layouts", color = "0.32 0.6 0.85", style="rounded"]; + 36[label = "build_industrial_energy_demand_per_node", color = "0.14 0.6 0.85", style="rounded"]; + 37[label = "build_industry_sector_ratios", color = "0.18 0.6 0.85", style="rounded"]; + 38[label = "build_ammonia_production", color = "0.48 0.6 0.85", style="rounded"]; + 39[label = "build_industrial_production_per_node", color = "0.12 0.6 0.85", style="rounded"]; + 40[label = "build_industrial_distribution_key", color = "0.61 0.6 0.85", style="rounded"]; + 41[label = "build_industrial_production_per_country_tomorrow", color = "0.22 0.6 0.85", style="rounded"]; + 42[label = "build_industrial_production_per_country", color = "0.59 0.6 0.85", style="rounded"]; + 43[label = "build_industrial_energy_demand_per_node_today", color = "0.62 0.6 0.85", style="rounded"]; + 44[label = "build_industrial_energy_demand_per_country_today", color = "0.41 0.6 0.85", style="rounded"]; + 45[label = "build_heat_demands", color = "0.08 0.6 0.85", style="rounded"]; + 46[label = "build_cop_profiles", color = "0.52 0.6 0.85", style="rounded"]; + 47[label = "build_solar_thermal_profiles", color = "0.17 0.6 0.85", style="rounded"]; + 48[label = "copy_config", color = "0.40 0.6 0.85", style="rounded"]; + 49[label = "plot_network", color = "0.60 0.6 0.85", style="rounded"]; + 1 -> 0 + 2 -> 1 + 49 -> 2 + 19 -> 2 + 3 -> 2 + 48 -> 3 + 4 -> 3 + 19 -> 3 + 9 -> 4 + 11 -> 4 + 45 -> 4 + 36 -> 4 + 47 -> 4 + 26 -> 4 + 27 -> 4 + 8 -> 4 + 33 -> 4 + 24 -> 4 + 35 -> 4 + 5 -> 4 + 23 -> 4 + 34 -> 4 + 19 -> 4 + 31 -> 4 + 46 -> 4 + 30 -> 4 + 32 -> 4 + 28 -> 4 + 6 -> 5 + 8 -> 5 + 7 -> 6 + 19 -> 8 + 9 -> 8 + 19 -> 9 + 10 -> 9 + 16 -> 9 + 14 -> 10 + 21 -> 10 + 20 -> 10 + 19 -> 10 + 11 -> 10 + 16 -> 10 + 13 -> 10 + 12 -> 10 + 14 -> 11 + 17 -> 11 + 15 -> 11 + 16 -> 11 + 12 -> 11 + 13 -> 11 + 13 -> 12 + 14 -> 13 + 12 -> 16 + 13 -> 16 + 18 -> 17 + 12 -> 20 + 22 -> 21 + 8 -> 23 + 7 -> 23 + 25 -> 24 + 19 -> 24 + 19 -> 25 + 8 -> 25 + 13 -> 26 + 28 -> 27 + 26 -> 27 + 8 -> 28 + 29 -> 28 + 13 -> 29 + 13 -> 30 + 8 -> 30 + 26 -> 30 + 32 -> 31 + 28 -> 31 + 27 -> 31 + 26 -> 31 + 8 -> 32 + 29 -> 32 + 13 -> 33 + 14 -> 33 + 8 -> 33 + 8 -> 34 + 9 -> 35 + 29 -> 35 + 37 -> 36 + 39 -> 36 + 43 -> 36 + 38 -> 37 + 41 -> 39 + 40 -> 39 + 28 -> 40 + 8 -> 40 + 42 -> 41 + 38 -> 42 + 44 -> 43 + 40 -> 43 + 38 -> 44 + 42 -> 44 + 8 -> 45 + 29 -> 45 + 32 -> 46 + 8 -> 47 + 29 -> 47 + 8 -> 49 + 3 -> 49 + } + +| + +Myopic Foresight Scenarios +=================================== + +Configuration +------------- + +To activate the myopic foresight mode, set + +.. code:: yaml + + foresight: myopic + +Scenarios can be defined like for electricity-only studies, but with additional +wildcard options. For the myopic foresight mode, the ``{planning_horizons}`` wildcard +defines the sequence of investment horizons. + +.. literalinclude:: ../test/config.myopic.yaml + :language: yaml + :start-at: scenario: + :end-before: countries: + +For allowed wildcard values, refer to :ref:`wildcards`. + +In the myopic foresight mode, you can tweak for instance exogenously given transition paths, like the one for +the share of primary steel production we change below: + +.. literalinclude:: ../test/config.myopic.yaml + :language: yaml + :start-at: industry: + :end-before: solving: + +Documentation for all options will be added successively to :ref:`config`. + +Execution +--------- + +To run a myopic foresight scenario with the specifications above, run + +.. code:: bash + + snakemake -call --configfile test/config.myopic.yaml all + +which will result in the following *additional* jobs ``snakemake`` wants to run: + +.. code:: bash + + job count min threads max threads + ------------------------------------------------ ------- ------------- ------------- + all 1 1 1 + add_brownfield 2 1 1 + add_existing_baseyear 1 1 1 + plot_network 3 1 1 + plot_summary 1 1 1 + prepare_sector_network 3 1 1 + solve_sector_network_myopic 3 1 1 + +which translates to the following workflow diagram which nicely outlines +how the sequential pathway optimisation with myopic foresight is +implemented in the workflow: + +.. graphviz:: + :class: full-width + :align: center + + digraph snakemake_dag { + graph[bgcolor=white, margin=0]; + node[shape=box, style=rounded, fontname=sans, fontsize=10, penwidth=2]; + edge[penwidth=2, color=grey]; + 0[label = "all", color = "0.38 0.6 0.85", style="rounded"]; + 1[label = "plot_summary", color = "0.61 0.6 0.85", style="rounded"]; + 2[label = "make_summary", color = "0.51 0.6 0.85", style="rounded"]; + 3[label = "solve_sector_network_myopic", color = "0.32 0.6 0.85", style="rounded"]; + 4[label = "add_existing_baseyear", color = "0.20 0.6 0.85", style="rounded"]; + 5[label = "prepare_sector_network", color = "0.14 0.6 0.85", style="rounded"]; + 6[label = "prepare_network", color = "0.06 0.6 0.85", style="rounded"]; + 7[label = "add_extra_components", color = "0.00 0.6 0.85", style="rounded"]; + 8[label = "cluster_network", color = "0.18 0.6 0.85", style="rounded"]; + 9[label = "simplify_network", color = "0.30 0.6 0.85", style="rounded"]; + 10[label = "add_electricity", color = "0.24 0.6 0.85", style="rounded"]; + 11[label = "build_renewable_profiles", color = "0.40 0.6 0.85", style="rounded"]; + 12[label = "base_network", color = "0.11 0.6 0.85", style="rounded"]; + 13[label = "build_shapes", color = "0.29 0.6 0.85", style="rounded"]; + 14[label = "retrieve_databundle", color = "0.58 0.6 0.85", style="rounded"]; + 15[label = "retrieve_natura_raster", color = "0.39 0.6 0.85", style="rounded"]; + 16[label = "build_bus_regions", color = "0.60 0.6 0.85", style="rounded"]; + 17[label = "build_ship_raster", color = "0.65 0.6 0.85", style="rounded"]; + 18[label = "retrieve_ship_raster", color = "0.09 0.6 0.85", style="rounded"]; + 19[label = "retrieve_cost_data", color = "0.04 0.6 0.85", style="rounded"]; + 20[label = "build_powerplants", color = "0.28 0.6 0.85", style="rounded"]; + 21[label = "build_electricity_demand", color = "0.46 0.6 0.85", style="rounded"]; + 22[label = "retrieve_electricity_demand", color = "0.44 0.6 0.85", style="rounded"]; + 23[label = "build_energy_totals", color = "0.53 0.6 0.85", style="rounded"]; + 24[label = "build_population_weighted_energy_totals", color = "0.03 0.6 0.85", style="rounded"]; + 25[label = "build_clustered_population_layouts", color = "0.34 0.6 0.85", style="rounded"]; + 26[label = "build_population_layouts", color = "0.63 0.6 0.85", style="rounded"]; + 27[label = "build_shipping_demand", color = "0.05 0.6 0.85", style="rounded"]; + 28[label = "build_transport_demand", color = "0.52 0.6 0.85", style="rounded"]; + 29[label = "build_temperature_profiles", color = "0.16 0.6 0.85", style="rounded"]; + 30[label = "build_biomass_potentials", color = "0.47 0.6 0.85", style="rounded"]; + 31[label = "build_salt_cavern_potentials", color = "0.48 0.6 0.85", style="rounded"]; + 32[label = "build_simplified_population_layouts", color = "0.08 0.6 0.85", style="rounded"]; + 33[label = "build_industrial_energy_demand_per_node", color = "0.22 0.6 0.85", style="rounded"]; + 34[label = "build_industry_sector_ratios", color = "0.56 0.6 0.85", style="rounded"]; + 35[label = "build_ammonia_production", color = "0.57 0.6 0.85", style="rounded"]; + 36[label = "build_industrial_production_per_node", color = "0.66 0.6 0.85", style="rounded"]; + 37[label = "build_industrial_distribution_key", color = "0.41 0.6 0.85", style="rounded"]; + 38[label = "build_industrial_production_per_country_tomorrow", color = "0.54 0.6 0.85", style="rounded"]; + 39[label = "build_industrial_production_per_country", color = "0.10 0.6 0.85", style="rounded"]; + 40[label = "build_industrial_energy_demand_per_node_today", color = "0.55 0.6 0.85", style="rounded"]; + 41[label = "build_industrial_energy_demand_per_country_today", color = "0.35 0.6 0.85", style="rounded"]; + 42[label = "build_heat_demands", color = "0.49 0.6 0.85", style="rounded"]; + 43[label = "build_cop_profiles", color = "0.01 0.6 0.85", style="rounded"]; + 44[label = "build_solar_thermal_profiles", color = "0.45 0.6 0.85", style="rounded"]; + 45[label = "copy_config", color = "0.33 0.6 0.85", style="rounded"]; + 46[label = "add_brownfield", color = "0.59 0.6 0.85", style="rounded"]; + 47[label = "plot_network", color = "0.15 0.6 0.85", style="rounded"]; + 1 -> 0 + 2 -> 1 + 3 -> 2 + 19 -> 2 + 47 -> 2 + 46 -> 3 + 19 -> 3 + 4 -> 3 + 45 -> 3 + 43 -> 4 + 19 -> 4 + 20 -> 4 + 9 -> 4 + 5 -> 4 + 25 -> 4 + 8 -> 4 + 28 -> 5 + 23 -> 5 + 11 -> 5 + 33 -> 5 + 24 -> 5 + 43 -> 5 + 19 -> 5 + 27 -> 5 + 6 -> 5 + 31 -> 5 + 32 -> 5 + 44 -> 5 + 9 -> 5 + 30 -> 5 + 25 -> 5 + 29 -> 5 + 42 -> 5 + 8 -> 5 + 7 -> 6 + 19 -> 6 + 19 -> 7 + 8 -> 7 + 9 -> 8 + 19 -> 8 + 10 -> 9 + 19 -> 9 + 16 -> 9 + 11 -> 10 + 19 -> 10 + 14 -> 10 + 20 -> 10 + 12 -> 10 + 21 -> 10 + 16 -> 10 + 13 -> 10 + 15 -> 11 + 14 -> 11 + 13 -> 11 + 12 -> 11 + 16 -> 11 + 17 -> 11 + 13 -> 12 + 14 -> 13 + 13 -> 16 + 12 -> 16 + 18 -> 17 + 12 -> 20 + 22 -> 21 + 13 -> 23 + 25 -> 24 + 23 -> 24 + 8 -> 25 + 26 -> 25 + 13 -> 26 + 13 -> 27 + 23 -> 27 + 8 -> 27 + 24 -> 28 + 25 -> 28 + 29 -> 28 + 23 -> 28 + 8 -> 29 + 26 -> 29 + 13 -> 30 + 14 -> 30 + 8 -> 30 + 8 -> 31 + 9 -> 32 + 26 -> 32 + 34 -> 33 + 36 -> 33 + 40 -> 33 + 35 -> 34 + 37 -> 36 + 38 -> 36 + 25 -> 37 + 8 -> 37 + 39 -> 38 + 35 -> 39 + 41 -> 40 + 37 -> 40 + 39 -> 41 + 35 -> 41 + 8 -> 42 + 26 -> 42 + 29 -> 43 + 8 -> 44 + 26 -> 44 + 3 -> 46 + 19 -> 46 + 5 -> 46 + 43 -> 46 + 3 -> 47 + 8 -> 47 + } + +| + + +Scaling-Up +========== + +If you now feel confident and want to tackle runs with larger temporal, technological and +spatial scope, clean-up the repository and after modifying the ``config/config.yaml`` file +target the collection rule ``all`` again without providing the test +configuration file. + +.. code:: bash + + snakemake -call purge + snakemake -call all + +.. note:: + + It is good practice to perform a dry-run using the option `-n`, before you + commit to a run: + + .. code:: bash + + snakemake -call all -n diff --git a/doc/wildcards.rst b/doc/wildcards.rst index 2290de67..30c58929 100644 --- a/doc/wildcards.rst +++ b/doc/wildcards.rst @@ -1,5 +1,5 @@ .. - SPDX-FileCopyrightText: 2019-2020 The PyPSA-Eur Authors + SPDX-FileCopyrightText: 2019-2023 The PyPSA-Eur Authors SPDX-License-Identifier: CC-BY-4.0 @@ -15,8 +15,28 @@ which e.g. defines one particular scenario. One can think of a wildcard as a par up in the input/output file names of the ``Snakefile`` and thereby determines which rules to run, what data to retrieve and what files to produce. -Detailed explanations of how wildcards work in ``snakemake`` can be found in the -`relevant section of the documentation `_. +.. note:: + Detailed explanations of how wildcards work in ``snakemake`` can be found in the + `relevant section of the documentation `_. + +.. _cutout_wc: + +The ``{cutout}`` wildcard +========================= + +The ``{cutout}`` wildcard facilitates running the rule :mod:`build_cutout` +for all cutout configurations specified under ``atlite: cutouts:``. +These cutouts will be stored in a folder specified by ``{cutout}``. + +.. _technology: + +The ``{technology}`` wildcard +============================= + +The ``{technology}`` wildcard specifies for which renewable energy technology to produce availability time +series and potentials using the rule :mod:`build_renewable_profiles`. +It can take the values ``onwind``, ``offwind-ac``, ``offwind-dc``, and ``solar`` but **not** ``hydro`` +(since hydroelectric plant profiles are created by a different rule). .. _simpl: @@ -78,10 +98,11 @@ The wildcard, in general, consists of two parts: The ``{opts}`` wildcard ======================= -The ``{opts}`` wildcard triggers optional constraints, which are activated in either -:mod:`prepare_network` or the :mod:`solve_network` step. -It may hold multiple triggers separated by ``-``, i.e. ``Co2L-3H`` contains the -``Co2L`` trigger and the ``3H`` switch. There are currently: +The ``{opts}`` wildcard is used for electricity-only studies. It triggers +optional constraints, which are activated in either :mod:`prepare_network` or +the :mod:`solve_network` step. It may hold multiple triggers separated by ``-``, +i.e. ``Co2L-3H`` contains the ``Co2L`` trigger and the ``3H`` switch. There are +currently: .. csv-table:: @@ -89,70 +110,35 @@ It may hold multiple triggers separated by ``-``, i.e. ``Co2L-3H`` contains the :widths: 10,20,10,10 :file: configtables/opts.csv -.. _country: +.. _sector_opts: -The ``{country}`` wildcard -========================== +The ``{sector_opts}`` wildcard +============================== -The rules :mod:`make_summary` and :mod:`plot_summary` (generating summaries of all or a subselection -of the solved networks) as well as :mod:`plot_p_nom_map` (for plotting the cumulative -generation potentials for renewable technologies) can be narrowed to -individual countries using the ``{country}`` wildcard. +.. warning:: + More comprehensive documentation for this wildcard will be added soon. -If ``country=all``, then the rule acts on the network for all countries -defined in ``config.yaml``. If otherwise ``country=DE`` or another 2-letter -country code, then the network is narrowed to buses of this country -for the rule. For example to get a summary of the energy generated -in Germany (in the solution for Europe) use: +The ``{sector_opts}`` wildcard is only used for sector-coupling studies. -.. code:: bash +.. csv-table:: + :header-rows: 1 + :widths: 10,20,10,10 + :file: configtables/sector-opts.csv - snakemake -j 1 results/summaries/elec_s_all_lall_Co2L-3H_DE +.. _scope: -.. _cutout_wc: +The ``{scope}`` wildcard +======================== -The ``{cutout}`` wildcard -========================= +Takes values ``residential``, ``urban``, ``total``. -The ``{cutout}`` wildcard facilitates running the rule :mod:`build_cutout` -for all cutout configurations specified under ``atlite: cutouts:``. -These cutouts will be stored in a folder specified by ``{cutout}``. +.. _planning_horizons: -.. _technology: +The ``{planning_horizons}`` wildcard +==================================== -The ``{technology}`` wildcard -============================= +.. warning:: + More comprehensive documentation for this wildcard will be added soon. -The ``{technology}`` wildcard specifies for which renewable energy technology to produce availablity time -series and potentials using the rule :mod:`build_renewable_profiles`. -It can take the values ``onwind``, ``offwind-ac``, ``offwind-dc``, and ``solar`` but **not** ``hydro`` -(since hydroelectric plant profiles are created by a different rule). - -The wildcard can moreover be used to create technology specific figures and summaries. -For instance ``{technology}`` can be used to plot regionally disaggregated potentials -with the rule :mod:`plot_p_nom_max`. - -.. _attr: - -The ``{attr}`` wildcard -======================= - -The ``{attr}`` wildcard specifies which attribute is used for size -representations of network components on a map plot produced by the rule -:mod:`plot_network`. While it might be extended in the future, ``{attr}`` -currently only supports plotting of ``p_nom``. - -.. _ext: - -The ``{ext}`` wildcard -====================== - -The ``{ext}`` wildcard specifies the file type of the figures the -rule :mod:`plot_network`, :mod:`plot_summary`, and :mod:`plot_p_nom_max` produce. -Typical examples are ``pdf`` and ``png``. The list of supported file -formats depends on the used backend. To query the supported file types on your system, issue: - -.. code:: python - - import matplotlib.pyplot as plt - plt.gcf().canvas.get_supported_filetypes() +The ``{planning_horizons}`` wildcard is only used for sector-coupling studies. +It takes years as values, e.g. 2020, 2030, 2040, 2050. diff --git a/envs/environment.fixed.yaml b/envs/environment.fixed.yaml index 3fe3d51a..1ff9313d 100644 --- a/envs/environment.fixed.yaml +++ b/envs/environment.fixed.yaml @@ -1,311 +1,380 @@ -# SPDX-FileCopyrightText: : 2017-2020 The PyPSA-Eur Authors +# SPDX-FileCopyrightText: : 2017-2023 The PyPSA-Eur Authors # # SPDX-License-Identifier: CC0-1.0 name: pypsa-eur channels: - - bioconda - - conda-forge - - defaults +- bioconda +- http://conda.anaconda.org/gurobi +- conda-forge +- defaults dependencies: - - _libgcc_mutex=0.1 - - _openmp_mutex=4.5 - - affine=2.3.0 - - alsa-lib=1.2.3 - - amply=0.1.4 - - appdirs=1.4.4 - - atlite=0.2.5 - - attrs=21.2.0 - - backcall=0.2.0 - - backports=1.0 - - backports.functools_lru_cache=1.6.4 - - beautifulsoup4=4.10.0 - - blosc=1.21.0 - - bokeh=2.3.3 - - boost-cpp=1.74.0 - - bottleneck=1.3.2 - - brotlipy=0.7.0 - - bzip2=1.0.8 - - c-ares=1.17.2 - - ca-certificates=2021.5.30 - - cairo=1.16.0 - - cartopy=0.19.0.post1 - - cdsapi=0.5.1 - - certifi=2021.5.30 - - cffi=1.14.6 - - cfitsio=3.470 - - cftime=1.5.0 - - chardet=4.0.0 - - charset-normalizer=2.0.0 - - click=7.1.2 - - click-plugins=1.1.1 - - cligj=0.7.2 - - cloudpickle=2.0.0 - - coincbc=2.10.5 - - colorama=0.4.4 - - conda=4.10.3 - - conda-package-handling=1.7.3 - - configargparse=1.5.2 - - connection_pool=0.0.3 - - country_converter=0.7.3 - - cryptography=3.4.7 - - curl=7.79.0 - - cycler=0.10.0 - - cytoolz=0.11.0 - - dask=2021.3.1 - - dask-core=2021.3.1 - - datrie=0.8.2 - - dbus=1.13.6 - - decorator=4.4.2 - - deprecation=2.1.0 - - descartes=1.1.0 - - distributed=2021.4.1 - - distro=1.5.0 - - docutils=0.17.1 - - entsoe-py=0.3.7 - - et_xmlfile=1.0.1 - - expat=2.4.1 - - filelock=3.0.12 - - fiona=1.8.18 - - fontconfig=2.13.1 - - freetype=2.10.4 - - freexl=1.0.6 - - fsspec=2021.8.1 - - gdal=3.2.1 - - geographiclib=1.52 - - geopandas=0.9.0 - - geopandas-base=0.9.0 - - geopy=2.2.0 - - geos=3.9.1 - - geotiff=1.6.0 - - gettext=0.19.8.1 - - giflib=5.2.1 - - gitdb=4.0.7 - - gitpython=3.1.23 - - glib=2.68.4 - - glib-tools=2.68.4 - - graphite2=1.3.13 - - gst-plugins-base=1.18.5 - - gstreamer=1.18.5 - - harfbuzz=2.9.1 - - hdf4=4.2.15 - - hdf5=1.10.6 - - heapdict=1.0.1 - - icu=68.1 - - idna=3.1 - - importlib-metadata=4.8.1 - - iniconfig=1.1.1 - - ipython=7.27.0 - - ipython_genutils=0.2.0 - - jdcal=1.4.1 - - jedi=0.18.0 - - jinja2=3.0.1 - - joblib=1.0.1 - - jpeg=9d - - json-c=0.15 - - jsonschema=3.2.0 - - jupyter_core=4.8.1 - - kealib=1.4.14 - - kiwisolver=1.3.2 - - krb5=1.19.2 - - lcms2=2.12 - - ld_impl_linux-64=2.36.1 - - libarchive=3.5.1 - - libblas=3.9.0 - - libcblas=3.9.0 - - libclang=11.1.0 - - libcurl=7.79.0 - - libdap4=3.20.6 - - libedit=3.1.20191231 - - libev=4.33 - - libevent=2.1.10 - - libffi=3.4.2 - - libgcc-ng=11.2.0 - - libgdal=3.2.1 - - libgfortran-ng=11.2.0 - - libgfortran5=11.2.0 - - libglib=2.68.4 - - libgomp=11.2.0 - - libiconv=1.16 - - libkml=1.3.0 - - liblapack=3.9.0 - - libllvm11=11.1.0 - - libnetcdf=4.7.4 - - libnghttp2=1.43.0 - - libogg=1.3.4 - - libopenblas=0.3.17 - - libopus=1.3.1 - - libpng=1.6.37 - - libpq=13.3 - - librttopo=1.1.0 - - libsolv=0.7.19 - - libspatialindex=1.9.3 - - libspatialite=5.0.1 - - libssh2=1.10.0 - - libstdcxx-ng=11.2.0 - - libtiff=4.2.0 - - libuuid=2.32.1 - - libvorbis=1.3.7 - - libwebp-base=1.2.1 - - libxcb=1.13 - - libxkbcommon=1.0.3 - - libxml2=2.9.12 - - libxslt=1.1.33 - - locket=0.2.0 - - lxml=4.6.3 - - lz4-c=1.9.3 - - lzo=2.10 - - mamba=0.15.3 - - mapclassify=2.4.3 - - markupsafe=2.0.1 - - matplotlib=3.4.3 - - matplotlib-base=3.4.3 - - matplotlib-inline=0.1.3 - - memory_profiler=0.58.0 - - mock=4.0.3 - - more-itertools=8.10.0 - - msgpack-python=1.0.2 - - munch=2.5.0 - - mysql-common=8.0.25 - - mysql-libs=8.0.25 - - nbformat=5.1.3 - - ncurses=6.2 - - netcdf4=1.5.6 - - networkx=2.6.3 - - nspr=4.30 - - nss=3.69 - - numexpr=2.7.3 - - numpy=1.21.2 - - olefile=0.46 - - openjdk=11.0.9.1 - - openjpeg=2.4.0 - - openpyxl=3.0.8 - - openssl=1.1.1l - - packaging=21.0 - - pandas=1.2.5 - - parso=0.8.2 - - partd=1.2.0 - - patsy=0.5.1 - - pcre=8.45 - - pexpect=4.8.0 - - pickleshare=0.7.5 - - pillow=8.2.0 - - pip=21.2.4 - - pixman=0.40.0 - - pluggy=1.0.0 - - ply=3.11 - - poppler=0.89.0 - - poppler-data=0.4.11 - - postgresql=13.3 - - powerplantmatching=0.4.8 - - progressbar2=3.53.1 - - proj=7.2.0 - - prompt-toolkit=3.0.20 - - psutil=5.8.0 - - pthread-stubs=0.4 - - ptyprocess=0.7.0 - - pulp=2.5.0 - - py=1.10.0 - - pycosat=0.6.3 - - pycountry=20.7.3 - - pycparser=2.20 - - pygments=2.10.0 - - pyomo=6.1.2 - - pyopenssl=20.0.1 - - pyparsing=2.4.7 - - pyproj=3.1.0 - - pypsa=0.18.0 - - pyqt=5.12.3 - - pyqt-impl=5.12.3 - - pyqt5-sip=4.19.18 - - pyqtchart=5.12 - - pyqtwebengine=5.12.1 - - pyrsistent=0.17.3 - - pyshp=2.1.3 - - pysocks=1.7.1 - - pytables=3.6.1 - - pytest=6.2.5 - - python=3.9.7 - - python-dateutil=2.8.2 - - python-utils=2.5.6 - - python_abi=3.9 - - pytz=2021.1 - - pyyaml=5.4.1 - - qt=5.12.9 - - rasterio=1.2.6 - - ratelimiter=1.2.0 - - readline=8.1 - - reproc=14.2.3 - - reproc-cpp=14.2.3 - - requests=2.26.0 - - rtree=0.9.7 - - ruamel_yaml=0.15.80 - - scikit-learn=0.24.2 - - scipy=1.7.1 - - seaborn=0.11.2 - - seaborn-base=0.11.2 - - setuptools=58.0.4 - - setuptools-scm=6.3.2 - - setuptools_scm=6.3.2 - - shapely=1.7.1 - - six=1.16.0 - - smart_open=5.2.1 - - smmap=3.0.5 - - snakemake-minimal=6.8.0 - - snuggs=1.4.7 - - sortedcontainers=2.4.0 - - soupsieve=2.0.1 - - sqlite=3.36.0 - - statsmodels=0.12.2 - - stopit=1.1.2 - - tabula-py=2.2.0 - - tabulate=0.8.9 - - tblib=1.7.0 - - threadpoolctl=2.2.0 - - tiledb=2.2.9 - - tk=8.6.11 - - toml=0.10.2 - - tomli=1.2.1 - - toolz=0.11.1 - - toposort=1.6 - - tornado=6.1 - - tqdm=4.62.3 - - traitlets=5.1.0 - - typing_extensions=3.10.0.2 - - tzcode=2021a - - tzdata=2021a - - urllib3=1.26.6 - - wcwidth=0.2.5 - - wheel=0.37.0 - - wrapt=1.12.1 - - xarray=0.19.0 - - xerces-c=3.2.3 - - xlrd=2.0.1 - - xorg-fixesproto=5.0 - - xorg-inputproto=2.3.2 - - xorg-kbproto=1.0.7 - - xorg-libice=1.0.10 - - xorg-libsm=1.2.3 - - xorg-libx11=1.7.2 - - xorg-libxau=1.0.9 - - xorg-libxdmcp=1.1.3 - - xorg-libxext=1.3.4 - - xorg-libxfixes=5.0.3 - - xorg-libxi=1.7.10 - - xorg-libxrender=0.9.10 - - xorg-libxtst=1.2.3 - - xorg-recordproto=1.14.2 - - xorg-renderproto=0.11.1 - - xorg-xextproto=7.3.0 - - xorg-xproto=7.0.31 - - xz=5.2.5 - - yaml=0.2.5 - - zict=2.0.0 - - zipp=3.5.0 - - zlib=1.2.11 - - zstd=1.4.9 - - pip: - - countrycode==0.2 - - sklearn==0.0 - - tsam==1.1.1 - - vresutils==0.3.1 +- _libgcc_mutex=0.1 +- _openmp_mutex=4.5 +- affine=2.4.0 +- alsa-lib=1.2.8 +- ampl-mp=3.1.0 +- amply=0.1.5 +- appdirs=1.4.4 +- asttokens=2.2.1 +- atlite=0.2.10 +- attr=2.5.1 +- attrs=22.2.0 +- backcall=0.2.0 +- backports=1.0 +- backports.functools_lru_cache=1.6.4 +- beautifulsoup4=4.11.2 +- blosc=1.21.3 +- bokeh=2.4.3 +- boost-cpp=1.78.0 +- bottleneck=1.3.6 +- branca=0.6.0 +- brotli=1.0.9 +- brotli-bin=1.0.9 +- brotlipy=0.7.0 +- bzip2=1.0.8 +- c-ares=1.18.1 +- ca-certificates=2022.12.7 +- cairo=1.16.0 +- cartopy=0.21.1 +- cdsapi=0.5.1 +- certifi=2022.12.7 +- cffi=1.15.1 +- cfitsio=4.2.0 +- cftime=1.6.2 +- charset-normalizer=2.1.1 +- click=8.1.3 +- click-plugins=1.1.1 +- cligj=0.7.2 +- cloudpickle=2.2.1 +- coin-or-cbc=2.10.8 +- coin-or-cgl=0.60.6 +- coin-or-clp=1.17.7 +- coin-or-osi=0.108.7 +- coin-or-utils=2.11.6 +- coincbc=2.10.8 +- colorama=0.4.6 +- configargparse=1.5.3 +- connection_pool=0.0.3 +- country_converter=0.8.0 +- cryptography=39.0.1 +- curl=7.88.0 +- cycler=0.11.0 +- cytoolz=0.12.0 +- dask=2023.2.0 +- dask-core=2023.2.0 +- datrie=0.8.2 +- dbus=1.13.6 +- decorator=5.1.1 +- deprecation=2.1.0 +- descartes=1.1.0 +- distributed=2023.2.0 +- distro=1.8.0 +- docutils=0.19 +- dpath=2.1.4 +- entsoe-py=0.5.8 +- et_xmlfile=1.1.0 +- exceptiongroup=1.1.0 +- executing=1.2.0 +- expat=2.5.0 +- fftw=3.3.10 +- filelock=3.9.0 +- fiona=1.9.1 +- folium=0.14.0 +- font-ttf-dejavu-sans-mono=2.37 +- font-ttf-inconsolata=3.000 +- font-ttf-source-code-pro=2.038 +- font-ttf-ubuntu=0.83 +- fontconfig=2.14.2 +- fonts-conda-ecosystem=1 +- fonts-conda-forge=1 +- fonttools=4.38.0 +- freetype=2.12.1 +- freexl=1.0.6 +- fsspec=2023.1.0 +- gdal=3.6.2 +- geographiclib=1.52 +- geojson-rewind=1.0.2 +- geopandas=0.12.2 +- geopandas-base=0.12.2 +- geopy=2.3.0 +- geos=3.11.1 +- geotiff=1.7.1 +- gettext=0.21.1 +- giflib=5.2.1 +- gitdb=4.0.10 +- gitpython=3.1.30 +- glib=2.74.1 +- glib-tools=2.74.1 +- graphite2=1.3.13 +- gst-plugins-base=1.22.0 +- gstreamer=1.22.0 +- gstreamer-orc=0.4.33 +- harfbuzz=6.0.0 +- hdf4=4.2.15 +- hdf5=1.12.2 +- heapdict=1.0.1 +- humanfriendly=10.0 +- icu=70.1 +- idna=3.4 +- importlib-metadata=6.0.0 +- importlib_resources=5.10.2 +- iniconfig=2.0.0 +- ipopt=3.14.11 +- ipython=8.10.0 +- jack=1.9.22 +- jedi=0.18.2 +- jinja2=3.1.2 +- joblib=1.2.0 +- jpeg=9e +- json-c=0.16 +- jsonschema=4.17.3 +- jupyter_core=5.2.0 +- kealib=1.5.0 +- keyutils=1.6.1 +- kiwisolver=1.4.4 +- krb5=1.20.1 +- lame=3.100 +- lcms2=2.14 +- ld_impl_linux-64=2.40 +- lerc=4.0.0 +- libaec=1.0.6 +- libblas=3.9.0 +- libbrotlicommon=1.0.9 +- libbrotlidec=1.0.9 +- libbrotlienc=1.0.9 +- libcap=2.66 +- libcblas=3.9.0 +- libclang=15.0.7 +- libclang13=15.0.7 +- libcups=2.3.3 +- libcurl=7.88.0 +- libdb=6.2.32 +- libdeflate=1.17 +- libedit=3.1.20191231 +- libev=4.33 +- libevent=2.1.10 +- libffi=3.4.2 +- libflac=1.4.2 +- libgcc-ng=12.2.0 +- libgcrypt=1.10.1 +- libgdal=3.6.2 +- libgfortran-ng=12.2.0 +- libgfortran5=12.2.0 +- libglib=2.74.1 +- libgomp=12.2.0 +- libgpg-error=1.46 +- libiconv=1.17 +- libkml=1.3.0 +- liblapack=3.9.0 +- liblapacke=3.9.0 +- libllvm15=15.0.7 +- libnetcdf=4.8.1 +- libnghttp2=1.51.0 +- libnsl=2.0.0 +- libogg=1.3.4 +- libopenblas=0.3.21 +- libopus=1.3.1 +- libpng=1.6.39 +- libpq=15.2 +- librttopo=1.1.0 +- libsndfile=1.2.0 +- libspatialindex=1.9.3 +- libspatialite=5.0.1 +- libsqlite=3.40.0 +- libssh2=1.10.0 +- libstdcxx-ng=12.2.0 +- libsystemd0=252 +- libtiff=4.5.0 +- libtool=2.4.7 +- libudev1=252 +- libuuid=2.32.1 +- libvorbis=1.3.7 +- libwebp-base=1.2.4 +- libxcb=1.13 +- libxkbcommon=1.5.0 +- libxml2=2.10.3 +- libxslt=1.1.37 +- libzip=1.9.2 +- libzlib=1.2.13 +- linopy=0.1.3 +- locket=1.0.0 +- lxml=4.9.2 +- lz4=4.3.2 +- lz4-c=1.9.4 +- lzo=2.10 +- mapclassify=2.5.0 +- markupsafe=2.1.2 +- matplotlib=3.5.3 +- matplotlib-base=3.5.3 +- matplotlib-inline=0.1.6 +- memory_profiler=0.61.0 +- metis=5.1.0 +- mpg123=1.31.2 +- msgpack-python=1.0.4 +- mumps-include=5.2.1 +- mumps-seq=5.2.1 +- munch=2.5.0 +- munkres=1.1.4 +- mysql-common=8.0.32 +- mysql-libs=8.0.32 +- nbformat=5.7.3 +- ncurses=6.3 +- netcdf4=1.6.2 +- networkx=3.0 +- nomkl=1.0 +- nspr=4.35 +- nss=3.88 +- numexpr=2.8.3 +- numpy=1.24 +- openjdk=17.0.3 +- openjpeg=2.5.0 +- openpyxl=3.1.0 +- openssl=3.0.8 +- packaging=23.0 +- pandas=1.5.3 +- parso=0.8.3 +- partd=1.3.0 +- patsy=0.5.3 +- pcre2=10.40 +- pexpect=4.8.0 +- pickleshare=0.7.5 +- pillow=9.4.0 +- pip=23.0 +- pixman=0.40.0 +- pkgutil-resolve-name=1.3.10 +- plac=1.3.5 +- platformdirs=3.0.0 +- pluggy=1.0.0 +- ply=3.11 +- pooch=1.6.0 +- poppler=22.12.0 +- poppler-data=0.4.12 +- postgresql=15.2 +- powerplantmatching=0.5.6 +- progressbar2=4.2.0 +- proj=9.1.0 +- prompt-toolkit=3.0.36 +- psutil=5.9.4 +- pthread-stubs=0.4 +- ptyprocess=0.7.0 +- pulp=2.7.0 +- pulseaudio=16.1 +- pure_eval=0.2.2 +- pycountry=22.3.5 +- pycparser=2.21 +- pygments=2.14.0 +- pyomo=6.4.4 +- pyopenssl=23.0.0 +- pyparsing=3.0.9 +- pyproj=3.4.1 +- pypsa=0.22.1 +- pyqt=5.15.7 +- pyqt5-sip=12.11.0 +- pyrsistent=0.19.3 +- pyshp=2.3.1 +- pysocks=1.7.1 +- pytables=3.7.0 +- pytest=7.2.1 +- python=3.10.9 +- python-dateutil=2.8.2 +- python-fastjsonschema=2.16.2 +- python-utils=3.5.2 +- python_abi=3.10 +- pytz=2022.7.1 +- pyxlsb=1.0.10 +- pyyaml=6.0 +- qt-main=5.15.8 +- rasterio=1.3.4 +- readline=8.1.2 +- requests=2.28.1 +- retry=0.9.2 +- rich=12.5.1 +- rioxarray=0.13.3 +- rtree=1.0.0 +- s2n=1.0.10 +- scikit-learn=1.1.1 +- scipy=1.8.1 +- scotch=6.0.9 +- seaborn=0.12.2 +- seaborn-base=0.12.2 +- setuptools=67.3.2 +- setuptools-scm=7.1.0 +- setuptools_scm=7.1.0 +- shapely=2.0.1 +- sip=6.7.7 +- six=1.16.0 +- smart_open=6.3.0 +- smmap=3.0.5 +- snakemake-minimal=7.22.0 +- snappy=1.1.9 +- snuggs=1.4.7 +- sortedcontainers=2.4.0 +- soupsieve=2.3.2.post1 +- sqlite=3.40.0 +- stack_data=0.6.2 +- statsmodels=0.13.5 +- stopit=1.1.2 +- tabula-py=2.6.0 +- tabulate=0.9.0 +- tblib=1.7.0 +- threadpoolctl=3.1.0 +- throttler=1.2.1 +- tiledb=2.13.2 +- tk=8.6.12 +- toml=0.10.2 +- tomli=2.0.1 +- toolz=0.12.0 +- toposort=1.9 +- tornado=6.2 +- tqdm=4.64.1 +- traitlets=5.9.0 +- typing-extensions=4.4.0 +- typing_extensions=4.4.0 +- tzcode=2022g +- tzdata=2022g +- unicodedata2=15.0.0 +- unidecode=1.3.6 +- unixodbc=2.3.10 +- urllib3=1.26.14 +- wcwidth=0.2.6 +- wheel=0.38.4 +- wrapt=1.14.1 +- xarray=2023.2.0 +- xcb-util=0.4.0 +- xcb-util-image=0.4.0 +- xcb-util-keysyms=0.4.0 +- xcb-util-renderutil=0.3.9 +- xcb-util-wm=0.4.1 +- xerces-c=3.2.4 +- xlrd=2.0.1 +- xorg-fixesproto=5.0 +- xorg-inputproto=2.3.2 +- xorg-kbproto=1.0.7 +- xorg-libice=1.0.10 +- xorg-libsm=1.2.3 +- xorg-libx11=1.7.2 +- xorg-libxau=1.0.9 +- xorg-libxdmcp=1.1.3 +- xorg-libxext=1.3.4 +- xorg-libxfixes=5.0.3 +- xorg-libxi=1.7.10 +- xorg-libxrender=0.9.10 +- xorg-libxtst=1.2.3 +- xorg-recordproto=1.14.2 +- xorg-renderproto=0.11.1 +- xorg-xextproto=7.3.0 +- xorg-xproto=7.0.31 +- xyzservices=2022.9.0 +- xz=5.2.6 +- yaml=0.2.5 +- yte=1.5.1 +- zict=2.2.0 +- zipp=3.13.0 +- zlib=1.2.13 +- zstd=1.5.2 +- pip: + - countrycode==0.2 + - highspy==1.5.0.dev0 + - pybind11==2.10.3 + - tsam==2.2.2 diff --git a/envs/environment.yaml b/envs/environment.yaml index b10818ea..9d800fdc 100644 --- a/envs/environment.yaml +++ b/envs/environment.yaml @@ -1,58 +1,58 @@ -# SPDX-FileCopyrightText: : 2017-2020 The PyPSA-Eur Authors +# SPDX-FileCopyrightText: : 2017-2023 The PyPSA-Eur Authors # # SPDX-License-Identifier: MIT name: pypsa-eur channels: - - conda-forge - - bioconda +- conda-forge +- bioconda dependencies: - - python>=3.8 - - pip +- python>=3.8 +- pip - - pypsa>=0.18.1 - - atlite>=0.2.5 - - dask +- pypsa>=0.23 +- atlite>=0.2.9 +- dask # Dependencies of the workflow itself - - xlrd - - openpyxl - - pycountry - - seaborn - - snakemake-minimal - - memory_profiler - - yaml - - pytables - - lxml - - powerplantmatching>=0.5.1 - - numpy - - pandas - - geopandas - - xarray - - netcdf4 - - networkx - - scipy - - shapely - - progressbar2 - - pyomo - - matplotlib - - proj +- xlrd +- openpyxl!=3.1.1 +- pycountry +- seaborn +- snakemake-minimal>=7.7.0 +- memory_profiler +- yaml +- pytables +- lxml +- powerplantmatching>=0.5.5 +- numpy +- pandas>=1.4 +- geopandas>=0.11.0 +- xarray +- rioxarray +- netcdf4 +- networkx +- scipy +- shapely>=2.0 +- pyomo +- matplotlib<3.6 +- proj +- fiona +- country_converter +- geopy +- tqdm +- pytz +- tabula-py +- pyxlsb +- graphviz # Keep in conda environment when calling ipython - - ipython +- ipython # GIS dependencies: - - cartopy - - descartes - - rasterio +- cartopy +- descartes +- rasterio!=1.2.10 - # PyPSA-Eur-Sec Dependencies - - geopy - - tqdm - - pytz - - country_converter - - tabula-py - - - pip: - - vresutils>=0.3.1 - - tsam>=1.1.0 +- pip: + - tsam>=1.1.0 diff --git a/graphics/Heat_and_el_demand_timeseries.png b/graphics/Heat_and_el_demand_timeseries.png new file mode 100644 index 00000000..fa805db7 Binary files /dev/null and b/graphics/Heat_and_el_demand_timeseries.png differ diff --git a/graphics/demand-map-heat.png b/graphics/demand-map-heat.png new file mode 100644 index 00000000..99367981 Binary files /dev/null and b/graphics/demand-map-heat.png differ diff --git a/graphics/elec_s_37.png b/graphics/elec_s_37.png new file mode 100644 index 00000000..23607334 Binary files /dev/null and b/graphics/elec_s_37.png differ diff --git a/graphics/elec_s_512.png b/graphics/elec_s_512.png new file mode 100644 index 00000000..f9409a84 Binary files /dev/null and b/graphics/elec_s_512.png differ diff --git a/graphics/fec_industry_today_tomorrow.png b/graphics/fec_industry_today_tomorrow.png new file mode 100644 index 00000000..2daacee6 Binary files /dev/null and b/graphics/fec_industry_today_tomorrow.png differ diff --git a/graphics/gas_pipeline_figure.png b/graphics/gas_pipeline_figure.png new file mode 100644 index 00000000..e92280c5 Binary files /dev/null and b/graphics/gas_pipeline_figure.png differ diff --git a/graphics/hotmaps.png b/graphics/hotmaps.png new file mode 100644 index 00000000..4227d216 Binary files /dev/null and b/graphics/hotmaps.png differ diff --git a/graphics/multisector_figure.pdf b/graphics/multisector_figure.pdf new file mode 100644 index 00000000..42a58057 Binary files /dev/null and b/graphics/multisector_figure.pdf differ diff --git a/graphics/multisector_figure.png b/graphics/multisector_figure.png new file mode 100644 index 00000000..0f6917a5 Binary files /dev/null and b/graphics/multisector_figure.png differ diff --git a/graphics/multisector_figure.svg b/graphics/multisector_figure.svg new file mode 100644 index 00000000..3a4afbf8 --- /dev/null +++ b/graphics/multisector_figure.svg @@ -0,0 +1,2655 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + +   +   +   + Heating +   + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Wind & Solar PV + + + + Hydroelectricity + + + + Biogas + + + + Fossil gas + + + + Other biomass + + + + Atmosphere + + + + Fossil oil + + + + Electricity + + + + Hydrogen + + + + Methane + + + + Carbon Dioxide + + + + Liquid hydrocarbons + + + + + Electric devices + + + + + Resistive heaters + + + + Heat pumps + + + + + Gas boilers + + + + + CHP + + + + Electric + + + + Fuel cell + + + + + Internalcombustion + + + + + Industry + + Heating + Transport + + + + + S O U R C E S + G R I D S & S T O R A G E + D E M A N D + Electrolysis + Fuel cell + Methanation + Steam reforming + Direct air capture + Carbon capture + Fischer-Tropsch +   +   + + + diff --git a/graphics/process-emissions.png b/graphics/process-emissions.png new file mode 100644 index 00000000..08acdfab Binary files /dev/null and b/graphics/process-emissions.png differ diff --git a/graphics/workflow.png b/graphics/workflow.png new file mode 100644 index 00000000..f60f3462 Binary files /dev/null and b/graphics/workflow.png differ diff --git a/matplotlibrc b/matplotlibrc index 13468274..2cc4c229 100644 --- a/matplotlibrc +++ b/matplotlibrc @@ -1 +1,6 @@ -backend : Agg +# SPDX-FileCopyrightText: : 2017-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: CC0-1.0 +font.family: sans-serif +font.sans-serif: Ubuntu, DejaVu Sans +image.cmap: viridis diff --git a/rules/build_electricity.smk b/rules/build_electricity.smk new file mode 100644 index 00000000..6d27e4fa --- /dev/null +++ b/rules/build_electricity.smk @@ -0,0 +1,395 @@ +# SPDX-FileCopyrightText: : 2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT + +if config["enable"].get("prepare_links_p_nom", False): + + rule prepare_links_p_nom: + output: + "data/links_p_nom.csv", + log: + LOGS + "prepare_links_p_nom.log", + threads: 1 + resources: + mem_mb=1500, + conda: + "../envs/environment.yaml" + script: + "../scripts/prepare_links_p_nom.py" + + +rule build_electricity_demand: + input: + ancient("data/load_raw.csv"), + output: + RESOURCES + "load.csv", + log: + LOGS + "build_electricity_demand.log", + resources: + mem_mb=5000, + conda: + "../envs/environment.yaml" + script: + "../scripts/build_electricity_demand.py" + + +rule build_powerplants: + input: + base_network=RESOURCES + "networks/base.nc", + custom_powerplants="data/custom_powerplants.csv", + output: + RESOURCES + "powerplants.csv", + log: + LOGS + "build_powerplants.log", + threads: 1 + resources: + mem_mb=5000, + conda: + "../envs/environment.yaml" + script: + "../scripts/build_powerplants.py" + + +rule base_network: + input: + eg_buses="data/entsoegridkit/buses.csv", + eg_lines="data/entsoegridkit/lines.csv", + eg_links="data/entsoegridkit/links.csv", + eg_converters="data/entsoegridkit/converters.csv", + eg_transformers="data/entsoegridkit/transformers.csv", + parameter_corrections="data/parameter_corrections.yaml", + links_p_nom="data/links_p_nom.csv", + links_tyndp="data/links_tyndp.csv", + country_shapes=RESOURCES + "country_shapes.geojson", + offshore_shapes=RESOURCES + "offshore_shapes.geojson", + europe_shape=RESOURCES + "europe_shape.geojson", + output: + RESOURCES + "networks/base.nc", + log: + LOGS + "base_network.log", + benchmark: + BENCHMARKS + "base_network" + threads: 1 + resources: + mem_mb=1500, + conda: + "../envs/environment.yaml" + script: + "../scripts/base_network.py" + + +rule build_shapes: + input: + naturalearth=ancient("data/bundle/naturalearth/ne_10m_admin_0_countries.shp"), + eez=ancient("data/bundle/eez/World_EEZ_v8_2014.shp"), + nuts3=ancient("data/bundle/NUTS_2013_60M_SH/data/NUTS_RG_60M_2013.shp"), + nuts3pop=ancient("data/bundle/nama_10r_3popgdp.tsv.gz"), + nuts3gdp=ancient("data/bundle/nama_10r_3gdp.tsv.gz"), + ch_cantons=ancient("data/bundle/ch_cantons.csv"), + ch_popgdp=ancient("data/bundle/je-e-21.03.02.xls"), + output: + country_shapes=RESOURCES + "country_shapes.geojson", + offshore_shapes=RESOURCES + "offshore_shapes.geojson", + europe_shape=RESOURCES + "europe_shape.geojson", + nuts3_shapes=RESOURCES + "nuts3_shapes.geojson", + log: + LOGS + "build_shapes.log", + threads: 1 + resources: + mem_mb=1500, + conda: + "../envs/environment.yaml" + script: + "../scripts/build_shapes.py" + + +rule build_bus_regions: + input: + country_shapes=RESOURCES + "country_shapes.geojson", + offshore_shapes=RESOURCES + "offshore_shapes.geojson", + base_network=RESOURCES + "networks/base.nc", + output: + regions_onshore=RESOURCES + "regions_onshore.geojson", + regions_offshore=RESOURCES + "regions_offshore.geojson", + log: + LOGS + "build_bus_regions.log", + threads: 1 + resources: + mem_mb=1000, + conda: + "../envs/environment.yaml" + script: + "../scripts/build_bus_regions.py" + + +if config["enable"].get("build_cutout", False): + + rule build_cutout: + input: + regions_onshore=RESOURCES + "regions_onshore.geojson", + regions_offshore=RESOURCES + "regions_offshore.geojson", + output: + protected("cutouts/" + CDIR + "{cutout}.nc"), + log: + "logs/" + CDIR + "build_cutout/{cutout}.log", + benchmark: + "benchmarks/" + CDIR + "build_cutout_{cutout}" + threads: ATLITE_NPROCESSES + resources: + mem_mb=ATLITE_NPROCESSES * 1000, + conda: + "../envs/environment.yaml" + script: + "../scripts/build_cutout.py" + + +if config["enable"].get("build_natura_raster", False): + + rule build_natura_raster: + input: + natura=ancient("data/bundle/natura/Natura2000_end2015.shp"), + cutouts=expand("cutouts/" + CDIR + "{cutouts}.nc", **config["atlite"]), + output: + RESOURCES + "natura.tiff", + resources: + mem_mb=5000, + log: + LOGS + "build_natura_raster.log", + conda: + "../envs/environment.yaml" + script: + "../scripts/build_natura_raster.py" + + +rule build_ship_raster: + input: + ship_density="data/shipdensity_global.zip", + cutouts=expand( + "cutouts/" + CDIR + "{cutout}.nc", + cutout=[ + config["renewable"][k]["cutout"] + for k in config["electricity"]["renewable_carriers"] + ], + ), + output: + RESOURCES + "shipdensity_raster.tif", + log: + LOGS + "build_ship_raster.log", + resources: + mem_mb=5000, + benchmark: + BENCHMARKS + "build_ship_raster" + conda: + "../envs/environment.yaml" + script: + "../scripts/build_ship_raster.py" + + +rule build_renewable_profiles: + input: + base_network=RESOURCES + "networks/base.nc", + corine=ancient("data/bundle/corine/g250_clc06_V18_5.tif"), + natura=lambda w: ( + RESOURCES + "natura.tiff" + if config["renewable"][w.technology]["natura"] + else [] + ), + gebco=ancient( + lambda w: ( + "data/bundle/GEBCO_2014_2D.nc" + if config["renewable"][w.technology].get("max_depth") + else [] + ) + ), + ship_density=lambda w: ( + RESOURCES + "shipdensity_raster.tif" + if "ship_threshold" in config["renewable"][w.technology].keys() + else [] + ), + country_shapes=RESOURCES + "country_shapes.geojson", + offshore_shapes=RESOURCES + "offshore_shapes.geojson", + regions=lambda w: ( + RESOURCES + "regions_onshore.geojson" + if w.technology in ("onwind", "solar") + else RESOURCES + "regions_offshore.geojson" + ), + cutout=lambda w: "cutouts/" + + CDIR + + config["renewable"][w.technology]["cutout"] + + ".nc", + output: + profile=RESOURCES + "profile_{technology}.nc", + log: + LOGS + "build_renewable_profile_{technology}.log", + benchmark: + BENCHMARKS + "build_renewable_profiles_{technology}" + threads: ATLITE_NPROCESSES + resources: + mem_mb=ATLITE_NPROCESSES * 5000, + wildcard_constraints: + technology="(?!hydro).*", # Any technology other than hydro + conda: + "../envs/environment.yaml" + script: + "../scripts/build_renewable_profiles.py" + + +rule build_hydro_profile: + input: + country_shapes=RESOURCES + "country_shapes.geojson", + eia_hydro_generation="data/eia_hydro_annual_generation.csv", + cutout=f"cutouts/" + CDIR + config["renewable"]["hydro"]["cutout"] + ".nc", + output: + RESOURCES + "profile_hydro.nc", + log: + LOGS + "build_hydro_profile.log", + resources: + mem_mb=5000, + conda: + "../envs/environment.yaml" + script: + "../scripts/build_hydro_profile.py" + + +if config['lines']['dynamic_line_rating']['activate']: + rule build_line_rating: + input: + base_network="networks/base.nc", + cutout="cutouts/" + config["lines"]['cutout'] + ".nc" + output: + output="resources/line_rating.nc" + log: "logs/build_line_rating.log" + benchmark: "benchmarks/build_line_rating" + threads: ATLITE_NPROCESSES + resources: mem_mb=ATLITE_NPROCESSES * 1000 + script: "scripts/build_line_rating.py" + + +rule add_electricity: + input: + **{ + f"profile_{tech}": RESOURCES + f"profile_{tech}.nc" + for tech in config["electricity"]["renewable_carriers"] + }, + **{ + f"conventional_{carrier}_{attr}": fn + for carrier, d in config.get("conventional", {None: {}}).items() + for attr, fn in d.items() + if str(fn).startswith("data/") + }, + base_network=RESOURCES + "networks/base.nc", + line_rating="resources/line_rating.nc" if config['lines']['dynamic_line_rating']['activate'] else "networks/base.nc", + tech_costs=COSTS, + regions=RESOURCES + "regions_onshore.geojson", + powerplants=RESOURCES + "powerplants.csv", + hydro_capacities=ancient("data/bundle/hydro_capacities.csv"), + geth_hydro_capacities="data/geth2015_hydro_capacities.csv", + load=RESOURCES + "load.csv", + nuts3_shapes=RESOURCES + "nuts3_shapes.geojson", + output: + RESOURCES + "networks/elec.nc", + log: + LOGS + "add_electricity.log", + benchmark: + BENCHMARKS + "add_electricity" + threads: 1 + resources: + mem_mb=5000, + conda: + "../envs/environment.yaml" + script: + "../scripts/add_electricity.py" + + +rule simplify_network: + input: + network=RESOURCES + "networks/elec.nc", + tech_costs=COSTS, + regions_onshore=RESOURCES + "regions_onshore.geojson", + regions_offshore=RESOURCES + "regions_offshore.geojson", + output: + network=RESOURCES + "networks/elec_s{simpl}.nc", + regions_onshore=RESOURCES + "regions_onshore_elec_s{simpl}.geojson", + regions_offshore=RESOURCES + "regions_offshore_elec_s{simpl}.geojson", + busmap=RESOURCES + "busmap_elec_s{simpl}.csv", + connection_costs=RESOURCES + "connection_costs_s{simpl}.csv", + log: + LOGS + "simplify_network/elec_s{simpl}.log", + benchmark: + BENCHMARKS + "simplify_network/elec_s{simpl}" + threads: 1 + resources: + mem_mb=4000, + conda: + "../envs/environment.yaml" + script: + "../scripts/simplify_network.py" + + +rule cluster_network: + input: + network=RESOURCES + "networks/elec_s{simpl}.nc", + regions_onshore=RESOURCES + "regions_onshore_elec_s{simpl}.geojson", + regions_offshore=RESOURCES + "regions_offshore_elec_s{simpl}.geojson", + busmap=ancient(RESOURCES + "busmap_elec_s{simpl}.csv"), + custom_busmap=( + "data/custom_busmap_elec_s{simpl}_{clusters}.csv" + if config["enable"].get("custom_busmap", False) + else [] + ), + tech_costs=COSTS, + output: + network=RESOURCES + "networks/elec_s{simpl}_{clusters}.nc", + regions_onshore=RESOURCES + "regions_onshore_elec_s{simpl}_{clusters}.geojson", + regions_offshore=RESOURCES + "regions_offshore_elec_s{simpl}_{clusters}.geojson", + busmap=RESOURCES + "busmap_elec_s{simpl}_{clusters}.csv", + linemap=RESOURCES + "linemap_elec_s{simpl}_{clusters}.csv", + log: + LOGS + "cluster_network/elec_s{simpl}_{clusters}.log", + benchmark: + BENCHMARKS + "cluster_network/elec_s{simpl}_{clusters}" + threads: 1 + resources: + mem_mb=6000, + conda: + "../envs/environment.yaml" + script: + "../scripts/cluster_network.py" + + +rule add_extra_components: + input: + network=RESOURCES + "networks/elec_s{simpl}_{clusters}.nc", + tech_costs=COSTS, + output: + RESOURCES + "networks/elec_s{simpl}_{clusters}_ec.nc", + log: + LOGS + "add_extra_components/elec_s{simpl}_{clusters}.log", + benchmark: + BENCHMARKS + "add_extra_components/elec_s{simpl}_{clusters}_ec" + threads: 1 + resources: + mem_mb=3000, + conda: + "../envs/environment.yaml" + script: + "../scripts/add_extra_components.py" + + +rule prepare_network: + input: + RESOURCES + "networks/elec_s{simpl}_{clusters}_ec.nc", + tech_costs=COSTS, + output: + RESOURCES + "networks/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.nc", + log: + LOGS + "prepare_network/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.log", + benchmark: + (BENCHMARKS + "prepare_network/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}") + threads: 1 + resources: + mem_mb=4000, + conda: + "../envs/environment.yaml" + script: + "../scripts/prepare_network.py" diff --git a/rules/build_sector.smk b/rules/build_sector.smk new file mode 100644 index 00000000..1b724d1a --- /dev/null +++ b/rules/build_sector.smk @@ -0,0 +1,746 @@ +# SPDX-FileCopyrightText: : 2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT + + +rule build_population_layouts: + input: + nuts3_shapes=RESOURCES + "nuts3_shapes.geojson", + urban_percent="data/urban_percent.csv", + cutout="cutouts/" + CDIR + config["atlite"]["default_cutout"] + ".nc", + output: + pop_layout_total=RESOURCES + "pop_layout_total.nc", + pop_layout_urban=RESOURCES + "pop_layout_urban.nc", + pop_layout_rural=RESOURCES + "pop_layout_rural.nc", + log: + LOGS + "build_population_layouts.log", + resources: + mem_mb=20000, + benchmark: + BENCHMARKS + "build_population_layouts" + threads: 8 + conda: + "../envs/environment.yaml" + script: + "../scripts/build_population_layouts.py" + + +rule build_clustered_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=RESOURCES + "regions_onshore_elec_s{simpl}_{clusters}.geojson", + cutout="cutouts/" + CDIR + config["atlite"]["default_cutout"] + ".nc", + output: + clustered_pop_layout=RESOURCES + "pop_layout_elec_s{simpl}_{clusters}.csv", + log: + LOGS + "build_clustered_population_layouts_{simpl}_{clusters}.log", + resources: + mem_mb=10000, + benchmark: + BENCHMARKS + "build_clustered_population_layouts/s{simpl}_{clusters}" + conda: + "../envs/environment.yaml" + 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=RESOURCES + "regions_onshore_elec_s{simpl}.geojson", + cutout="cutouts/" + CDIR + config["atlite"]["default_cutout"] + ".nc", + output: + clustered_pop_layout=RESOURCES + "pop_layout_elec_s{simpl}.csv", + resources: + mem_mb=10000, + log: + LOGS + "build_simplified_population_layouts_{simpl}", + benchmark: + BENCHMARKS + "build_simplified_population_layouts/s{simpl}" + conda: + "../envs/environment.yaml" + script: + "../scripts/build_clustered_population_layouts.py" + + +if config["sector"]["gas_network"] or config["sector"]["H2_retrofit"]: + + rule build_gas_network: + input: + gas_network="data/gas_network/scigrid-gas/data/IGGIELGN_PipeSegments.geojson", + output: + cleaned_gas_network=RESOURCES + "gas_network.csv", + resources: + mem_mb=4000, + log: + LOGS + "build_gas_network.log", + conda: + "../envs/environment.yaml" + script: + "../scripts/build_gas_network.py" + + rule build_gas_input_locations: + input: + lng=HTTP.remote( + "https://globalenergymonitor.org/wp-content/uploads/2022/09/Europe-Gas-Tracker-August-2022.xlsx", + keep_local=True, + ), + entry="data/gas_network/scigrid-gas/data/IGGIELGN_BorderPoints.geojson", + production="data/gas_network/scigrid-gas/data/IGGIELGN_Productions.geojson", + regions_onshore=RESOURCES + + "regions_onshore_elec_s{simpl}_{clusters}.geojson", + regions_offshore=RESOURCES + + "regions_offshore_elec_s{simpl}_{clusters}.geojson", + output: + gas_input_nodes=RESOURCES + + "gas_input_locations_s{simpl}_{clusters}.geojson", + gas_input_nodes_simplified=RESOURCES + + "gas_input_locations_s{simpl}_{clusters}_simplified.csv", + resources: + mem_mb=2000, + log: + LOGS + "build_gas_input_locations_s{simpl}_{clusters}.log", + conda: + "../envs/environment.yaml" + script: + "../scripts/build_gas_input_locations.py" + + rule cluster_gas_network: + input: + cleaned_gas_network=RESOURCES + "gas_network.csv", + regions_onshore=RESOURCES + + "regions_onshore_elec_s{simpl}_{clusters}.geojson", + regions_offshore=RESOURCES + + "regions_offshore_elec_s{simpl}_{clusters}.geojson", + output: + clustered_gas_network=RESOURCES + "gas_network_elec_s{simpl}_{clusters}.csv", + resources: + mem_mb=4000, + log: + LOGS + "cluster_gas_network_s{simpl}_{clusters}.log", + conda: + "../envs/environment.yaml" + script: + "../scripts/cluster_gas_network.py" + + gas_infrastructure = { + **rules.cluster_gas_network.output, + **rules.build_gas_input_locations.output, + } + + +if not (config["sector"]["gas_network"] or config["sector"]["H2_retrofit"]): + # this is effecively an `else` statement which is however not liked by snakefmt + + gas_infrastructure = {} + + +rule build_heat_demands: + input: + pop_layout=RESOURCES + "pop_layout_{scope}.nc", + regions_onshore=RESOURCES + "regions_onshore_elec_s{simpl}_{clusters}.geojson", + cutout="cutouts/" + CDIR + config["atlite"]["default_cutout"] + ".nc", + output: + heat_demand=RESOURCES + "heat_demand_{scope}_elec_s{simpl}_{clusters}.nc", + resources: + mem_mb=20000, + threads: 8 + log: + LOGS + "build_heat_demands_{scope}_{simpl}_{clusters}.loc", + benchmark: + BENCHMARKS + "build_heat_demands/{scope}_s{simpl}_{clusters}" + conda: + "../envs/environment.yaml" + script: + "../scripts/build_heat_demand.py" + + +rule build_temperature_profiles: + input: + pop_layout=RESOURCES + "pop_layout_{scope}.nc", + regions_onshore=RESOURCES + "regions_onshore_elec_s{simpl}_{clusters}.geojson", + cutout="cutouts/" + CDIR + config["atlite"]["default_cutout"] + ".nc", + output: + temp_soil=RESOURCES + "temp_soil_{scope}_elec_s{simpl}_{clusters}.nc", + temp_air=RESOURCES + "temp_air_{scope}_elec_s{simpl}_{clusters}.nc", + resources: + mem_mb=20000, + threads: 8 + log: + LOGS + "build_temperature_profiles_{scope}_{simpl}_{clusters}.log", + benchmark: + BENCHMARKS + "build_temperature_profiles/{scope}_s{simpl}_{clusters}" + conda: + "../envs/environment.yaml" + script: + "../scripts/build_temperature_profiles.py" + + +rule build_cop_profiles: + input: + temp_soil_total=RESOURCES + "temp_soil_total_elec_s{simpl}_{clusters}.nc", + temp_soil_rural=RESOURCES + "temp_soil_rural_elec_s{simpl}_{clusters}.nc", + temp_soil_urban=RESOURCES + "temp_soil_urban_elec_s{simpl}_{clusters}.nc", + temp_air_total=RESOURCES + "temp_air_total_elec_s{simpl}_{clusters}.nc", + temp_air_rural=RESOURCES + "temp_air_rural_elec_s{simpl}_{clusters}.nc", + temp_air_urban=RESOURCES + "temp_air_urban_elec_s{simpl}_{clusters}.nc", + output: + cop_soil_total=RESOURCES + "cop_soil_total_elec_s{simpl}_{clusters}.nc", + cop_soil_rural=RESOURCES + "cop_soil_rural_elec_s{simpl}_{clusters}.nc", + cop_soil_urban=RESOURCES + "cop_soil_urban_elec_s{simpl}_{clusters}.nc", + cop_air_total=RESOURCES + "cop_air_total_elec_s{simpl}_{clusters}.nc", + cop_air_rural=RESOURCES + "cop_air_rural_elec_s{simpl}_{clusters}.nc", + cop_air_urban=RESOURCES + "cop_air_urban_elec_s{simpl}_{clusters}.nc", + resources: + mem_mb=20000, + log: + LOGS + "build_cop_profiles_s{simpl}_{clusters}.log", + benchmark: + BENCHMARKS + "build_cop_profiles/s{simpl}_{clusters}" + conda: + "../envs/environment.yaml" + script: + "../scripts/build_cop_profiles.py" + + +rule build_solar_thermal_profiles: + input: + pop_layout=RESOURCES + "pop_layout_{scope}.nc", + regions_onshore=RESOURCES + "regions_onshore_elec_s{simpl}_{clusters}.geojson", + cutout="cutouts/" + CDIR + config["atlite"]["default_cutout"] + ".nc", + output: + solar_thermal=RESOURCES + "solar_thermal_{scope}_elec_s{simpl}_{clusters}.nc", + resources: + mem_mb=20000, + threads: 16 + log: + LOGS + "build_solar_thermal_profiles_{scope}_s{simpl}_{clusters}.log", + benchmark: + BENCHMARKS + "build_solar_thermal_profiles/{scope}_s{simpl}_{clusters}" + conda: + "../envs/environment.yaml" + script: + "../scripts/build_solar_thermal_profiles.py" + + +rule build_energy_totals: + input: + nuts3_shapes=RESOURCES + "nuts3_shapes.geojson", + co2="data/eea/UNFCCC_v23.csv", + swiss="data/switzerland-sfoe/switzerland-new_format.csv", + idees="data/jrc-idees-2015", + district_heat_share="data/district_heat_share.csv", + eurostat=input_eurostat, + output: + energy_name=RESOURCES + "energy_totals.csv", + co2_name=RESOURCES + "co2_totals.csv", + transport_name=RESOURCES + "transport_data.csv", + threads: 16 + resources: + mem_mb=10000, + log: + LOGS + "build_energy_totals.log", + benchmark: + BENCHMARKS + "build_energy_totals" + conda: + "../envs/environment.yaml" + script: + "../scripts/build_energy_totals.py" + + +rule build_biomass_potentials: + input: + enspreso_biomass=HTTP.remote( + "https://cidportal.jrc.ec.europa.eu/ftp/jrc-opendata/ENSPRESO/ENSPRESO_BIOMASS.xlsx", + keep_local=True, + ), + nuts2="data/nuts/NUTS_RG_10M_2013_4326_LEVL_2.geojson", # https://gisco-services.ec.europa.eu/distribution/v2/nuts/download/#nuts21 + regions_onshore=RESOURCES + "regions_onshore_elec_s{simpl}_{clusters}.geojson", + nuts3_population=ancient("data/bundle/nama_10r_3popgdp.tsv.gz"), + swiss_cantons=ancient("data/bundle/ch_cantons.csv"), + swiss_population=ancient("data/bundle/je-e-21.03.02.xls"), + country_shapes=RESOURCES + "country_shapes.geojson", + output: + biomass_potentials_all=RESOURCES + + "biomass_potentials_all_s{simpl}_{clusters}.csv", + biomass_potentials=RESOURCES + "biomass_potentials_s{simpl}_{clusters}.csv", + threads: 1 + resources: + mem_mb=1000, + log: + LOGS + "build_biomass_potentials_s{simpl}_{clusters}.log", + benchmark: + BENCHMARKS + "build_biomass_potentials_s{simpl}_{clusters}" + conda: + "../envs/environment.yaml" + script: + "../scripts/build_biomass_potentials.py" + + +if config["sector"]["biomass_transport"]: + + rule build_biomass_transport_costs: + input: + transport_cost_data=HTTP.remote( + "publications.jrc.ec.europa.eu/repository/bitstream/JRC98626/biomass potentials in europe_web rev.pdf", + keep_local=True, + ), + output: + biomass_transport_costs=RESOURCES + "biomass_transport_costs.csv", + threads: 1 + resources: + mem_mb=1000, + log: + LOGS + "build_biomass_transport_costs.log", + benchmark: + BENCHMARKS + "build_biomass_transport_costs" + conda: + "../envs/environment.yaml" + script: + "../scripts/build_biomass_transport_costs.py" + + build_biomass_transport_costs_output = rules.build_biomass_transport_costs.output + + +if not config["sector"]["biomass_transport"]: + # this is effecively an `else` statement which is however not liked by snakefmt + + build_biomass_transport_costs_output = {} + + +if config["sector"]["regional_co2_sequestration_potential"]["enable"]: + + rule build_sequestration_potentials: + input: + sequestration_potential=HTTP.remote( + "https://raw.githubusercontent.com/ericzhou571/Co2Storage/main/resources/complete_map_2020_unit_Mt.geojson", + keep_local=True, + ), + regions_onshore=RESOURCES + + "regions_onshore_elec_s{simpl}_{clusters}.geojson", + regions_offshore=RESOURCES + + "regions_offshore_elec_s{simpl}_{clusters}.geojson", + output: + sequestration_potential=RESOURCES + + "co2_sequestration_potential_elec_s{simpl}_{clusters}.csv", + threads: 1 + resources: + mem_mb=4000, + log: + LOGS + "build_sequestration_potentials_s{simpl}_{clusters}.log", + benchmark: + BENCHMARKS + "build_sequestration_potentials_s{simpl}_{clusters}" + conda: + "../envs/environment.yaml" + script: + "../scripts/build_sequestration_potentials.py" + + build_sequestration_potentials_output = rules.build_sequestration_potentials.output + + +if not config["sector"]["regional_co2_sequestration_potential"]["enable"]: + # this is effecively an `else` statement which is however not liked by snakefmt + build_sequestration_potentials_output = {} + + +rule build_salt_cavern_potentials: + input: + salt_caverns="data/h2_salt_caverns_GWh_per_sqkm.geojson", + regions_onshore=RESOURCES + "regions_onshore_elec_s{simpl}_{clusters}.geojson", + regions_offshore=RESOURCES + "regions_offshore_elec_s{simpl}_{clusters}.geojson", + output: + h2_cavern_potential=RESOURCES + "salt_cavern_potentials_s{simpl}_{clusters}.csv", + threads: 1 + resources: + mem_mb=2000, + log: + LOGS + "build_salt_cavern_potentials_s{simpl}_{clusters}.log", + benchmark: + BENCHMARKS + "build_salt_cavern_potentials_s{simpl}_{clusters}" + conda: + "../envs/environment.yaml" + script: + "../scripts/build_salt_cavern_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, + log: + LOGS + "build_ammonia_production.log", + benchmark: + BENCHMARKS + "build_ammonia_production" + conda: + "../envs/environment.yaml" + script: + "../scripts/build_ammonia_production.py" + + +rule build_industry_sector_ratios: + input: + ammonia_production=RESOURCES + "ammonia_production.csv", + idees="data/jrc-idees-2015", + output: + industry_sector_ratios=RESOURCES + "industry_sector_ratios.csv", + threads: 1 + resources: + mem_mb=1000, + log: + LOGS + "build_industry_sector_ratios.log", + benchmark: + BENCHMARKS + "build_industry_sector_ratios" + conda: + "../envs/environment.yaml" + script: + "../scripts/build_industry_sector_ratios.py" + + +rule build_industrial_production_per_country: + input: + ammonia_production=RESOURCES + "ammonia_production.csv", + jrc="data/jrc-idees-2015", + eurostat="data/eurostat-energy_balances-may_2018_edition", + output: + industrial_production_per_country=RESOURCES + + "industrial_production_per_country.csv", + threads: 8 + resources: + mem_mb=1000, + log: + LOGS + "build_industrial_production_per_country.log", + benchmark: + BENCHMARKS + "build_industrial_production_per_country" + conda: + "../envs/environment.yaml" + 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_{planning_horizons}.csv", + threads: 1 + resources: + mem_mb=1000, + log: + LOGS + + "build_industrial_production_per_country_tomorrow_{planning_horizons}.log", + benchmark: + ( + BENCHMARKS + + "build_industrial_production_per_country_tomorrow_{planning_horizons}" + ) + conda: + "../envs/environment.yaml" + script: + "../scripts/build_industrial_production_per_country_tomorrow.py" + + +rule build_industrial_distribution_key: + input: + regions_onshore=RESOURCES + "regions_onshore_elec_s{simpl}_{clusters}.geojson", + clustered_pop_layout=RESOURCES + "pop_layout_elec_s{simpl}_{clusters}.csv", + hotmaps_industrial_database="data/Industrial_Database.csv", + output: + industrial_distribution_key=RESOURCES + + "industrial_distribution_key_elec_s{simpl}_{clusters}.csv", + threads: 1 + resources: + mem_mb=1000, + log: + LOGS + "build_industrial_distribution_key_s{simpl}_{clusters}.log", + benchmark: + BENCHMARKS + "build_industrial_distribution_key/s{simpl}_{clusters}" + conda: + "../envs/environment.yaml" + script: + "../scripts/build_industrial_distribution_key.py" + + +rule build_industrial_production_per_node: + input: + industrial_distribution_key=RESOURCES + + "industrial_distribution_key_elec_s{simpl}_{clusters}.csv", + industrial_production_per_country_tomorrow=RESOURCES + + "industrial_production_per_country_tomorrow_{planning_horizons}.csv", + output: + industrial_production_per_node=RESOURCES + + "industrial_production_elec_s{simpl}_{clusters}_{planning_horizons}.csv", + threads: 1 + resources: + mem_mb=1000, + log: + LOGS + + "build_industrial_production_per_node_s{simpl}_{clusters}_{planning_horizons}.log", + benchmark: + ( + BENCHMARKS + + "build_industrial_production_per_node/s{simpl}_{clusters}_{planning_horizons}" + ) + conda: + "../envs/environment.yaml" + 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_elec_s{simpl}_{clusters}_{planning_horizons}.csv", + industrial_energy_demand_per_node_today=RESOURCES + + "industrial_energy_demand_today_elec_s{simpl}_{clusters}.csv", + output: + industrial_energy_demand_per_node=RESOURCES + + "industrial_energy_demand_elec_s{simpl}_{clusters}_{planning_horizons}.csv", + threads: 1 + resources: + mem_mb=1000, + log: + LOGS + + "build_industrial_energy_demand_per_node_s{simpl}_{clusters}_{planning_horizons}.log", + benchmark: + ( + BENCHMARKS + + "build_industrial_energy_demand_per_node/s{simpl}_{clusters}_{planning_horizons}" + ) + conda: + "../envs/environment.yaml" + script: + "../scripts/build_industrial_energy_demand_per_node.py" + + +rule build_industrial_energy_demand_per_country_today: + input: + jrc="data/jrc-idees-2015", + 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: 8 + resources: + mem_mb=1000, + log: + LOGS + "build_industrial_energy_demand_per_country_today.log", + benchmark: + BENCHMARKS + "build_industrial_energy_demand_per_country_today" + conda: + "../envs/environment.yaml" + 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_elec_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_elec_s{simpl}_{clusters}.csv", + threads: 1 + resources: + mem_mb=1000, + log: + LOGS + "build_industrial_energy_demand_per_node_today_s{simpl}_{clusters}.log", + benchmark: + BENCHMARKS + "build_industrial_energy_demand_per_node_today/s{simpl}_{clusters}" + conda: + "../envs/environment.yaml" + script: + "../scripts/build_industrial_energy_demand_per_node_today.py" + + +if config["sector"]["retrofitting"]["retro_endogen"]: + + rule build_retro_cost: + input: + building_stock="data/retro/data_building_stock.csv", + data_tabula="data/retro/tabula-calculator-calcsetbuilding.csv", + air_temperature=RESOURCES + "temp_air_total_elec_s{simpl}_{clusters}.nc", + 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", + floor_area_missing="data/retro/floor_area_missing.csv", + clustered_pop_layout=RESOURCES + "pop_layout_elec_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_elec_s{simpl}_{clusters}.csv", + floor_area=RESOURCES + "floor_area_elec_s{simpl}_{clusters}.csv", + resources: + mem_mb=1000, + log: + LOGS + "build_retro_cost_s{simpl}_{clusters}.log", + benchmark: + BENCHMARKS + "build_retro_cost/s{simpl}_{clusters}" + conda: + "../envs/environment.yaml" + script: + "../scripts/build_retro_cost.py" + + build_retro_cost_output = rules.build_retro_cost.output + + +if not config["sector"]["retrofitting"]["retro_endogen"]: + # this is effecively an `else` statement which is however not liked by snakefmt + build_retro_cost_output = {} + + +rule build_population_weighted_energy_totals: + input: + energy_totals=RESOURCES + "energy_totals.csv", + clustered_pop_layout=RESOURCES + "pop_layout_elec_s{simpl}_{clusters}.csv", + output: + RESOURCES + "pop_weighted_energy_totals_s{simpl}_{clusters}.csv", + threads: 1 + resources: + mem_mb=2000, + log: + LOGS + "build_population_weighted_energy_totals_s{simpl}_{clusters}.log", + conda: + "../envs/environment.yaml" + script: + "../scripts/build_population_weighted_energy_totals.py" + + +rule build_shipping_demand: + input: + ports="data/attributed_ports.json", + scope=RESOURCES + "europe_shape.geojson", + regions=RESOURCES + "regions_onshore_elec_s{simpl}_{clusters}.geojson", + demand=RESOURCES + "energy_totals.csv", + output: + RESOURCES + "shipping_demand_s{simpl}_{clusters}.csv", + threads: 1 + resources: + mem_mb=2000, + log: + LOGS + "build_shipping_demand_s{simpl}_{clusters}.log", + conda: + "../envs/environment.yaml" + script: + "../scripts/build_shipping_demand.py" + + +rule build_transport_demand: + input: + clustered_pop_layout=RESOURCES + "pop_layout_elec_s{simpl}_{clusters}.csv", + pop_weighted_energy_totals=RESOURCES + + "pop_weighted_energy_totals_s{simpl}_{clusters}.csv", + transport_data=RESOURCES + "transport_data.csv", + traffic_data_KFZ="data/emobility/KFZ__count", + traffic_data_Pkw="data/emobility/Pkw__count", + temp_air_total=RESOURCES + "temp_air_total_elec_s{simpl}_{clusters}.nc", + output: + transport_demand=RESOURCES + "transport_demand_s{simpl}_{clusters}.csv", + transport_data=RESOURCES + "transport_data_s{simpl}_{clusters}.csv", + avail_profile=RESOURCES + "avail_profile_s{simpl}_{clusters}.csv", + dsm_profile=RESOURCES + "dsm_profile_s{simpl}_{clusters}.csv", + threads: 1 + resources: + mem_mb=2000, + log: + LOGS + "build_transport_demand_s{simpl}_{clusters}.log", + conda: + "../envs/environment.yaml" + script: + "../scripts/build_transport_demand.py" + + +rule prepare_sector_network: + params: + RDIR=RDIR, + input: + **build_retro_cost_output, + **build_biomass_transport_costs_output, + **gas_infrastructure, + **build_sequestration_potentials_output, + overrides="data/override_component_attrs", + network=RESOURCES + "networks/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.nc", + energy_totals_name=RESOURCES + "energy_totals.csv", + eurostat=input_eurostat, + pop_weighted_energy_totals=RESOURCES + + "pop_weighted_energy_totals_s{simpl}_{clusters}.csv", + shipping_demand=RESOURCES + "shipping_demand_s{simpl}_{clusters}.csv", + transport_demand=RESOURCES + "transport_demand_s{simpl}_{clusters}.csv", + transport_data=RESOURCES + "transport_data_s{simpl}_{clusters}.csv", + avail_profile=RESOURCES + "avail_profile_s{simpl}_{clusters}.csv", + dsm_profile=RESOURCES + "dsm_profile_s{simpl}_{clusters}.csv", + co2_totals_name=RESOURCES + "co2_totals.csv", + co2="data/eea/UNFCCC_v23.csv", + biomass_potentials=RESOURCES + "biomass_potentials_s{simpl}_{clusters}.csv", + heat_profile="data/heat_load_profile_BDEW.csv", + costs="data/costs_{}.csv".format(config["costs"]["year"]) + if config["foresight"] == "overnight" + else "data/costs_{planning_horizons}.csv", + profile_offwind_ac=RESOURCES + "profile_offwind-ac.nc", + profile_offwind_dc=RESOURCES + "profile_offwind-dc.nc", + h2_cavern=RESOURCES + "salt_cavern_potentials_s{simpl}_{clusters}.csv", + busmap_s=RESOURCES + "busmap_elec_s{simpl}.csv", + busmap=RESOURCES + "busmap_elec_s{simpl}_{clusters}.csv", + clustered_pop_layout=RESOURCES + "pop_layout_elec_s{simpl}_{clusters}.csv", + simplified_pop_layout=RESOURCES + "pop_layout_elec_s{simpl}.csv", + industrial_demand=RESOURCES + + "industrial_energy_demand_elec_s{simpl}_{clusters}_{planning_horizons}.csv", + heat_demand_urban=RESOURCES + "heat_demand_urban_elec_s{simpl}_{clusters}.nc", + heat_demand_rural=RESOURCES + "heat_demand_rural_elec_s{simpl}_{clusters}.nc", + heat_demand_total=RESOURCES + "heat_demand_total_elec_s{simpl}_{clusters}.nc", + temp_soil_total=RESOURCES + "temp_soil_total_elec_s{simpl}_{clusters}.nc", + temp_soil_rural=RESOURCES + "temp_soil_rural_elec_s{simpl}_{clusters}.nc", + temp_soil_urban=RESOURCES + "temp_soil_urban_elec_s{simpl}_{clusters}.nc", + temp_air_total=RESOURCES + "temp_air_total_elec_s{simpl}_{clusters}.nc", + temp_air_rural=RESOURCES + "temp_air_rural_elec_s{simpl}_{clusters}.nc", + temp_air_urban=RESOURCES + "temp_air_urban_elec_s{simpl}_{clusters}.nc", + cop_soil_total=RESOURCES + "cop_soil_total_elec_s{simpl}_{clusters}.nc", + cop_soil_rural=RESOURCES + "cop_soil_rural_elec_s{simpl}_{clusters}.nc", + cop_soil_urban=RESOURCES + "cop_soil_urban_elec_s{simpl}_{clusters}.nc", + cop_air_total=RESOURCES + "cop_air_total_elec_s{simpl}_{clusters}.nc", + cop_air_rural=RESOURCES + "cop_air_rural_elec_s{simpl}_{clusters}.nc", + cop_air_urban=RESOURCES + "cop_air_urban_elec_s{simpl}_{clusters}.nc", + solar_thermal_total=RESOURCES + + "solar_thermal_total_elec_s{simpl}_{clusters}.nc" + if config["sector"]["solar_thermal"] + else [], + solar_thermal_urban=RESOURCES + + "solar_thermal_urban_elec_s{simpl}_{clusters}.nc" + if config["sector"]["solar_thermal"] + else [], + solar_thermal_rural=RESOURCES + + "solar_thermal_rural_elec_s{simpl}_{clusters}.nc" + if config["sector"]["solar_thermal"] + else [], + output: + RESULTS + + "prenetworks/elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}.nc", + threads: 1 + resources: + mem_mb=2000, + log: + LOGS + + "prepare_sector_network_elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}.log", + benchmark: + ( + BENCHMARKS + + "prepare_sector_network/elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}" + ) + conda: + "../envs/environment.yaml" + script: + "../scripts/prepare_sector_network.py" diff --git a/rules/collect.smk b/rules/collect.smk new file mode 100644 index 00000000..611b099c --- /dev/null +++ b/rules/collect.smk @@ -0,0 +1,75 @@ +# SPDX-FileCopyrightText: : 2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT + + +localrules: + all, + cluster_networks, + extra_components_networks, + prepare_elec_networks, + prepare_sector_networks, + solve_elec_networks, + solve_sector_networks, + plot_networks, + + +rule all: + input: + RESULTS + "graphs/costs.pdf", + default_target: True + + +rule cluster_networks: + input: + expand(RESOURCES + "networks/elec_s{simpl}_{clusters}.nc", **config["scenario"]), + + +rule extra_components_networks: + input: + expand( + RESOURCES + "networks/elec_s{simpl}_{clusters}_ec.nc", **config["scenario"] + ), + + +rule prepare_elec_networks: + input: + expand( + RESOURCES + "networks/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.nc", + **config["scenario"] + ), + + +rule prepare_sector_networks: + input: + expand( + RESULTS + + "prenetworks/elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}.nc", + **config["scenario"] + ), + + +rule solve_elec_networks: + input: + expand( + RESULTS + "networks/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.nc", + **config["scenario"] + ), + + +rule solve_sector_networks: + input: + expand( + RESULTS + + "postnetworks/elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}.nc", + **config["scenario"] + ), + + +rule plot_networks: + input: + expand( + RESULTS + + "maps/elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}-costs-all_{planning_horizons}.pdf", + **config["scenario"] + ), diff --git a/rules/common.smk b/rules/common.smk new file mode 100644 index 00000000..8f0c7cbb --- /dev/null +++ b/rules/common.smk @@ -0,0 +1,41 @@ +# SPDX-FileCopyrightText: : 2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT + + +def memory(w): + factor = 3.0 + for o in w.opts.split("-"): + m = re.match(r"^(\d+)h$", o, re.IGNORECASE) + if m is not None: + factor /= int(m.group(1)) + break + for o in w.opts.split("-"): + m = re.match(r"^(\d+)seg$", o, re.IGNORECASE) + if m is not None: + factor *= int(m.group(1)) / 8760 + break + if w.clusters.endswith("m"): + return int(factor * (18000 + 180 * int(w.clusters[:-1]))) + elif w.clusters == "all": + return int(factor * (18000 + 180 * 4000)) + else: + return int(factor * (10000 + 195 * int(w.clusters))) + + +def input_eurostat(w): + # 2016 includes BA, 2017 does not + report_year = config["energy"]["eurostat_report_year"] + return f"data/eurostat-energy_balances-june_{report_year}_edition" + + +def solved_previous_horizon(wildcards): + planning_horizons = config["scenario"]["planning_horizons"] + i = planning_horizons.index(int(wildcards.planning_horizons)) + planning_horizon_p = str(planning_horizons[i - 1]) + return ( + RESULTS + + "postnetworks/elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}_" + + planning_horizon_p + + ".nc" + ) diff --git a/rules/postprocess.smk b/rules/postprocess.smk new file mode 100644 index 00000000..fae0f856 --- /dev/null +++ b/rules/postprocess.smk @@ -0,0 +1,137 @@ +# SPDX-FileCopyrightText: : 2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT + + +localrules: + copy_config, + copy_conda_env, + + +rule plot_network: + input: + overrides="data/override_component_attrs", + network=RESULTS + + "postnetworks/elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}.nc", + regions=RESOURCES + "regions_onshore_elec_s{simpl}_{clusters}.geojson", + output: + map=RESULTS + + "maps/elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}-costs-all_{planning_horizons}.pdf", + today=RESULTS + + "maps/elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}-today.pdf", + threads: 2 + resources: + mem_mb=10000, + benchmark: + ( + BENCHMARKS + + "plot_network/elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}" + ) + conda: + "../envs/environment.yaml" + script: + "../scripts/plot_network.py" + + +rule copy_config: + params: + RDIR=RDIR, + output: + RESULTS + "config/config.yaml", + threads: 1 + resources: + mem_mb=1000, + benchmark: + BENCHMARKS + "copy_config" + conda: + "../envs/environment.yaml" + script: + "../scripts/copy_config.py" + + +rule copy_conda_env: + output: + RESULTS + "config/environment.yaml", + threads: 1 + resources: + mem_mb=500, + log: + LOGS + "copy_conda_env.log", + benchmark: + BENCHMARKS + "copy_conda_env" + conda: + "../envs/environment.yaml" + shell: + "conda env export -f {output} --no-builds" + + +rule make_summary: + params: + RDIR=RDIR, + input: + overrides="data/override_component_attrs", + networks=expand( + RESULTS + + "postnetworks/elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}.nc", + **config["scenario"] + ), + costs="data/costs_{}.csv".format(config["costs"]["year"]) + if config["foresight"] == "overnight" + else "data/costs_{}.csv".format(config["scenario"]["planning_horizons"][0]), + plots=expand( + RESULTS + + "maps/elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}-costs-all_{planning_horizons}.pdf", + **config["scenario"] + ), + output: + nodal_costs=RESULTS + "csvs/nodal_costs.csv", + nodal_capacities=RESULTS + "csvs/nodal_capacities.csv", + nodal_cfs=RESULTS + "csvs/nodal_cfs.csv", + cfs=RESULTS + "csvs/cfs.csv", + costs=RESULTS + "csvs/costs.csv", + capacities=RESULTS + "csvs/capacities.csv", + curtailment=RESULTS + "csvs/curtailment.csv", + energy=RESULTS + "csvs/energy.csv", + supply=RESULTS + "csvs/supply.csv", + supply_energy=RESULTS + "csvs/supply_energy.csv", + prices=RESULTS + "csvs/prices.csv", + weighted_prices=RESULTS + "csvs/weighted_prices.csv", + market_values=RESULTS + "csvs/market_values.csv", + price_statistics=RESULTS + "csvs/price_statistics.csv", + metrics=RESULTS + "csvs/metrics.csv", + threads: 2 + resources: + mem_mb=10000, + log: + LOGS + "make_summary.log", + benchmark: + BENCHMARKS + "make_summary" + conda: + "../envs/environment.yaml" + script: + "../scripts/make_summary.py" + + +rule plot_summary: + params: + RDIR=RDIR, + input: + costs=RESULTS + "csvs/costs.csv", + energy=RESULTS + "csvs/energy.csv", + balances=RESULTS + "csvs/supply_energy.csv", + eurostat=input_eurostat, + output: + costs=RESULTS + "graphs/costs.pdf", + energy=RESULTS + "graphs/energy.pdf", + balances=RESULTS + "graphs/balances-energy.pdf", + threads: 2 + resources: + mem_mb=10000, + log: + LOGS + "plot_summary.log", + benchmark: + BENCHMARKS + "plot_summary" + conda: + "../envs/environment.yaml" + script: + "../scripts/plot_summary.py" diff --git a/rules/retrieve.smk b/rules/retrieve.smk new file mode 100644 index 00000000..0a96406a --- /dev/null +++ b/rules/retrieve.smk @@ -0,0 +1,176 @@ +# SPDX-FileCopyrightText: : 2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT + +if config["enable"].get("retrieve_databundle", True): + datafiles = [ + "ch_cantons.csv", + "je-e-21.03.02.xls", + "eez/World_EEZ_v8_2014.shp", + "hydro_capacities.csv", + "naturalearth/ne_10m_admin_0_countries.shp", + "NUTS_2013_60M_SH/data/NUTS_RG_60M_2013.shp", + "nama_10r_3popgdp.tsv.gz", + "nama_10r_3gdp.tsv.gz", + "corine/g250_clc06_V18_5.tif", + ] + + if not config.get("tutorial", False): + datafiles.extend(["natura/Natura2000_end2015.shp", "GEBCO_2014_2D.nc"]) + + rule retrieve_databundle: + output: + expand("data/bundle/{file}", file=datafiles), + log: + LOGS + "retrieve_databundle.log", + resources: + mem_mb=1000, + retries: 2 + conda: + "../envs/environment.yaml" + script: + "../scripts/retrieve_databundle.py" + + +if config["enable"].get("retrieve_cutout", True): + + rule retrieve_cutout: + input: + HTTP.remote( + "zenodo.org/record/6382570/files/{cutout}.nc", + static=True, + ), + output: + protected("cutouts/" + CDIR + "{cutout}.nc"), + log: + "logs/" + CDIR + "retrieve_cutout_{cutout}.log", + resources: + mem_mb=5000, + retries: 2 + run: + move(input[0], output[0]) + + +if config["enable"].get("retrieve_cost_data", True): + + rule retrieve_cost_data: + input: + HTTP.remote( + "raw.githubusercontent.com/PyPSA/technology-data/{}/outputs/".format( + config["costs"]["version"] + ) + + "costs_{year}.csv", + keep_local=True, + ), + output: + "data/costs_{year}.csv", + log: + LOGS + "retrieve_cost_data_{year}.log", + resources: + mem_mb=1000, + retries: 2 + run: + move(input[0], output[0]) + + +if config["enable"].get("retrieve_natura_raster", True): + + rule retrieve_natura_raster: + input: + HTTP.remote( + "zenodo.org/record/4706686/files/natura.tiff", + keep_local=True, + static=True, + ), + output: + RESOURCES + "natura.tiff", + log: + LOGS + "retrieve_natura_raster.log", + resources: + mem_mb=5000, + retries: 2 + run: + move(input[0], output[0]) + + +if config["enable"].get("retrieve_sector_databundle", True): + datafiles = [ + "data/eea/UNFCCC_v23.csv", + "data/switzerland-sfoe/switzerland-new_format.csv", + "data/nuts/NUTS_RG_10M_2013_4326_LEVL_2.geojson", + "data/myb1-2017-nitro.xls", + "data/Industrial_Database.csv", + "data/emobility/KFZ__count", + "data/emobility/Pkw__count", + "data/h2_salt_caverns_GWh_per_sqkm.geojson", + directory("data/eurostat-energy_balances-june_2016_edition"), + directory("data/eurostat-energy_balances-may_2018_edition"), + directory("data/jrc-idees-2015"), + ] + + rule retrieve_sector_databundle: + output: + *datafiles, + log: + LOGS + "retrieve_sector_databundle.log", + retries: 2 + conda: + "../envs/environment.yaml" + script: + "../scripts/retrieve_sector_databundle.py" + + +if config["sector"]["gas_network"] or config["sector"]["H2_retrofit"]: + datafiles = [ + "IGGIELGN_LNGs.geojson", + "IGGIELGN_BorderPoints.geojson", + "IGGIELGN_Productions.geojson", + "IGGIELGN_PipeSegments.geojson", + ] + + rule retrieve_gas_infrastructure_data: + output: + expand("data/gas_network/scigrid-gas/data/{files}", files=datafiles), + log: + LOGS + "retrieve_gas_infrastructure_data.log", + retries: 2 + conda: + "../envs/environment.yaml" + script: + "../scripts/retrieve_gas_infrastructure_data.py" + + +rule retrieve_electricity_demand: + input: + HTTP.remote( + "data.open-power-system-data.org/time_series/2019-06-05/time_series_60min_singleindex.csv", + keep_local=True, + static=True, + ), + output: + "data/load_raw.csv", + log: + LOGS + "retrieve_electricity_demand.log", + resources: + mem_mb=5000, + retries: 2 + run: + move(input[0], output[0]) + + +rule retrieve_ship_raster: + input: + HTTP.remote( + "https://zenodo.org/record/6953563/files/shipdensity_global.zip", + keep_local=True, + static=True, + ), + output: + "data/shipdensity_global.zip", + log: + LOGS + "retrieve_ship_raster.log", + resources: + mem_mb=5000, + retries: 2 + run: + move(input[0], output[0]) diff --git a/rules/solve_electricity.smk b/rules/solve_electricity.smk new file mode 100644 index 00000000..fc70ce42 --- /dev/null +++ b/rules/solve_electricity.smk @@ -0,0 +1,55 @@ +# SPDX-FileCopyrightText: : 2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT + + +rule solve_network: + input: + network=RESOURCES + "networks/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.nc", + output: + network=RESULTS + "networks/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.nc", + log: + solver=normpath( + LOGS + "solve_network/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}_solver.log" + ), + python=LOGS + + "solve_network/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}_python.log", + benchmark: + BENCHMARKS + "solve_network/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}" + threads: 4 + resources: + mem_mb=memory, + shadow: + "minimal" + conda: + "../envs/environment.yaml" + script: + "../scripts/solve_network.py" + + +rule solve_operations_network: + input: + network=RESULTS + "networks/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.nc", + output: + network=RESULTS + "networks/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}_op.nc", + log: + solver=normpath( + LOGS + + "solve_operations_network/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}_op_solver.log" + ), + python=LOGS + + "solve_operations_network/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}_op_python.log", + benchmark: + ( + BENCHMARKS + + "solve_operations_network/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}" + ) + threads: 4 + resources: + mem_mb=(lambda w: 5000 + 372 * int(w.clusters)), + shadow: + "minimal" + conda: + "../envs/environment.yaml" + script: + "../scripts/solve_operations_network.py" diff --git a/rules/solve_myopic.smk b/rules/solve_myopic.smk new file mode 100644 index 00000000..ec4281ff --- /dev/null +++ b/rules/solve_myopic.smk @@ -0,0 +1,104 @@ +# SPDX-FileCopyrightText: : 2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT + + +rule add_existing_baseyear: + input: + overrides="data/override_component_attrs", + network=RESULTS + + "prenetworks/elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}.nc", + powerplants=RESOURCES + "powerplants.csv", + busmap_s=RESOURCES + "busmap_elec_s{simpl}.csv", + busmap=RESOURCES + "busmap_elec_s{simpl}_{clusters}.csv", + clustered_pop_layout=RESOURCES + "pop_layout_elec_s{simpl}_{clusters}.csv", + costs="data/costs_{}.csv".format(config["scenario"]["planning_horizons"][0]), + cop_soil_total=RESOURCES + "cop_soil_total_elec_s{simpl}_{clusters}.nc", + cop_air_total=RESOURCES + "cop_air_total_elec_s{simpl}_{clusters}.nc", + existing_heating="data/existing_infrastructure/existing_heating_raw.csv", + existing_solar="data/existing_infrastructure/solar_capacity_IRENA.csv", + existing_onwind="data/existing_infrastructure/onwind_capacity_IRENA.csv", + existing_offwind="data/existing_infrastructure/offwind_capacity_IRENA.csv", + output: + RESULTS + + "prenetworks-brownfield/elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}.nc", + wildcard_constraints: + planning_horizons=config["scenario"]["planning_horizons"][0], #only applies to baseyear + threads: 1 + resources: + mem_mb=2000, + log: + LOGS + + "add_existing_baseyear_elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}.log", + benchmark: + ( + BENCHMARKS + + "add_existing_baseyear/elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}" + ) + conda: + "../envs/environment.yaml" + script: + "../scripts/add_existing_baseyear.py" + + +rule add_brownfield: + input: + overrides="data/override_component_attrs", + network=RESULTS + + "prenetworks/elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}.nc", + network_p=solved_previous_horizon, #solved network at previous time step + costs="data/costs_{planning_horizons}.csv", + cop_soil_total=RESOURCES + "cop_soil_total_elec_s{simpl}_{clusters}.nc", + cop_air_total=RESOURCES + "cop_air_total_elec_s{simpl}_{clusters}.nc", + output: + RESULTS + + "prenetworks-brownfield/elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}.nc", + threads: 4 + resources: + mem_mb=10000, + log: + LOGS + + "add_brownfield_elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}.log", + benchmark: + ( + BENCHMARKS + + "add_brownfield/elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}" + ) + conda: + "../envs/environment.yaml" + script: + "../scripts/add_brownfield.py" + + +ruleorder: add_existing_baseyear > add_brownfield + + +rule solve_sector_network_myopic: + input: + overrides="data/override_component_attrs", + network=RESULTS + + "prenetworks-brownfield/elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}.nc", + costs="data/costs_{planning_horizons}.csv", + config=RESULTS + "config/config.yaml", + output: + RESULTS + + "postnetworks/elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}.nc", + shadow: + "shallow" + log: + solver=LOGS + + "elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}_solver.log", + python=LOGS + + "elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}_python.log", + threads: 4 + resources: + mem_mb=config["solving"]["mem"], + benchmark: + ( + BENCHMARKS + + "solve_sector_network/elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}" + ) + conda: + "../envs/environment.yaml" + script: + "../scripts/solve_network.py" diff --git a/rules/solve_overnight.smk b/rules/solve_overnight.smk new file mode 100644 index 00000000..f05925b0 --- /dev/null +++ b/rules/solve_overnight.smk @@ -0,0 +1,36 @@ +# SPDX-FileCopyrightText: : 2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT + + +rule solve_sector_network: + input: + overrides="data/override_component_attrs", + network=RESULTS + + "prenetworks/elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}.nc", + costs="data/costs_{}.csv".format(config["costs"]["year"]), + config=RESULTS + "config/config.yaml", + #env=RDIR + 'config/environment.yaml', + output: + RESULTS + + "postnetworks/elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}.nc", + shadow: + "shallow" + log: + solver=LOGS + + "elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}_solver.log", + python=LOGS + + "elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}_python.log", + threads: config["solving"]["solver"].get("threads", 4) + resources: + mem_mb=config["solving"]["mem"], + benchmark: + ( + RESULTS + + BENCHMARKS + + "solve_sector_network/elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}" + ) + conda: + "../envs/environment.yaml" + script: + "../scripts/solve_network.py" diff --git a/scripts/_helpers.py b/scripts/_helpers.py index f1e5e887..8086c1b5 100644 --- a/scripts/_helpers.py +++ b/scripts/_helpers.py @@ -1,10 +1,33 @@ -# SPDX-FileCopyrightText: : 2017-2020 The PyPSA-Eur Authors +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2017-2023 The PyPSA-Eur Authors # # SPDX-License-Identifier: MIT -import pandas as pd +import contextlib +import logging +import os +import urllib from pathlib import Path +import pandas as pd +import pytz +import yaml +from pypsa.components import component_attrs, components +from pypsa.descriptors import Dict +from tqdm import tqdm + +logger = logging.getLogger(__name__) + +REGION_COLS = ["geometry", "name", "x", "y", "country"] + + +# Define a context manager to temporarily mute print statements +@contextlib.contextmanager +def mute_print(): + with open(os.devnull, "w") as devnull: + with contextlib.redirect_stdout(devnull): + yield + def configure_logging(snakemake, skip_handlers=False): """ @@ -24,24 +47,28 @@ def configure_logging(snakemake, skip_handlers=False): skip_handlers : True | False (default) Do (not) skip the default handlers created for redirecting output to STDERR and file. """ - import logging - kwargs = snakemake.config.get('logging', dict()) + kwargs = snakemake.config.get("logging", dict()).copy() kwargs.setdefault("level", "INFO") if skip_handlers is False: - fallback_path = Path(__file__).parent.joinpath('..', 'logs', f"{snakemake.rule}.log") - logfile = snakemake.log.get('python', snakemake.log[0] if snakemake.log - else fallback_path) + fallback_path = Path(__file__).parent.joinpath( + "..", "logs", f"{snakemake.rule}.log" + ) + logfile = snakemake.log.get( + "python", snakemake.log[0] if snakemake.log else fallback_path + ) kwargs.update( - {'handlers': [ - # Prefer the 'python' log, otherwise take the first log for each - # Snakemake rule - logging.FileHandler(logfile), - logging.StreamHandler() + { + "handlers": [ + # Prefer the 'python' log, otherwise take the first log for each + # Snakemake rule + logging.FileHandler(logfile), + logging.StreamHandler(), ] - }) + } + ) logging.basicConfig(**kwargs) @@ -56,7 +83,7 @@ def load_network(import_name=None, custom_components=None): custom_components : dict Dictionary listing custom components. For using ``snakemake.config['override_components']`` - in ``config.yaml`` define: + in ``config/config.yaml`` define: .. code:: yaml @@ -79,139 +106,195 @@ def load_network(import_name=None, custom_components=None): if custom_components is not None: override_components = pypsa.components.components.copy() - override_component_attrs = Dict({k : v.copy() for k,v in pypsa.components.component_attrs.items()}) + override_component_attrs = Dict( + {k: v.copy() for k, v in pypsa.components.component_attrs.items()} + ) for k, v in custom_components.items(): - override_components.loc[k] = v['component'] - override_component_attrs[k] = pd.DataFrame(columns = ["type","unit","default","description","status"]) - for attr, val in v['attributes'].items(): + override_components.loc[k] = v["component"] + override_component_attrs[k] = pd.DataFrame( + columns=["type", "unit", "default", "description", "status"] + ) + for attr, val in v["attributes"].items(): override_component_attrs[k].loc[attr] = val - return pypsa.Network(import_name=import_name, - override_components=override_components, - override_component_attrs=override_component_attrs) - - -def pdbcast(v, h): - return pd.DataFrame(v.values.reshape((-1, 1)) * h.values, - index=v.index, columns=h.index) + return pypsa.Network( + import_name=import_name, + override_components=override_components, + override_component_attrs=override_component_attrs, + ) def load_network_for_plots(fn, tech_costs, config, combine_hydro_ps=True): import pypsa - from add_electricity import update_transmission_costs, load_costs + from add_electricity import load_costs, update_transmission_costs n = pypsa.Network(fn) n.loads["carrier"] = n.loads.bus.map(n.buses.carrier) + " load" n.stores["carrier"] = n.stores.bus.map(n.buses.carrier) - n.links["carrier"] = (n.links.bus0.map(n.buses.carrier) + "-" + n.links.bus1.map(n.buses.carrier)) + n.links["carrier"] = ( + n.links.bus0.map(n.buses.carrier) + "-" + n.links.bus1.map(n.buses.carrier) + ) n.lines["carrier"] = "AC line" n.transformers["carrier"] = "AC transformer" - n.lines['s_nom'] = n.lines['s_nom_min'] - n.links['p_nom'] = n.links['p_nom_min'] + n.lines["s_nom"] = n.lines["s_nom_min"] + n.links["p_nom"] = n.links["p_nom_min"] if combine_hydro_ps: - n.storage_units.loc[n.storage_units.carrier.isin({'PHS', 'hydro'}), 'carrier'] = 'hydro+PHS' + n.storage_units.loc[ + n.storage_units.carrier.isin({"PHS", "hydro"}), "carrier" + ] = "hydro+PHS" # if the carrier was not set on the heat storage units # bus_carrier = n.storage_units.bus.map(n.buses.carrier) # n.storage_units.loc[bus_carrier == "heat","carrier"] = "water tanks" - Nyears = n.snapshot_weightings.objective.sum() / 8760. - costs = load_costs(Nyears, tech_costs, config['costs'], config['electricity']) + Nyears = n.snapshot_weightings.objective.sum() / 8760.0 + costs = load_costs(tech_costs, config["costs"], config["electricity"], Nyears) update_transmission_costs(n, costs) return n + def update_p_nom_max(n): # if extendable carriers (solar/onwind/...) have capacity >= 0, # e.g. existing assets from the OPSD project are included to the network, # the installed capacity might exceed the expansion limit. # Hence, we update the assumptions. - - n.generators.p_nom_max = n.generators[['p_nom_min', 'p_nom_max']].max(1) + + n.generators.p_nom_max = n.generators[["p_nom_min", "p_nom_max"]].max(1) + def aggregate_p_nom(n): - return pd.concat([ - n.generators.groupby("carrier").p_nom_opt.sum(), - n.storage_units.groupby("carrier").p_nom_opt.sum(), - n.links.groupby("carrier").p_nom_opt.sum(), - n.loads_t.p.groupby(n.loads.carrier,axis=1).sum().mean() - ]) + return pd.concat( + [ + n.generators.groupby("carrier").p_nom_opt.sum(), + n.storage_units.groupby("carrier").p_nom_opt.sum(), + n.links.groupby("carrier").p_nom_opt.sum(), + n.loads_t.p.groupby(n.loads.carrier, axis=1).sum().mean(), + ] + ) + def aggregate_p(n): - return pd.concat([ - n.generators_t.p.sum().groupby(n.generators.carrier).sum(), - n.storage_units_t.p.sum().groupby(n.storage_units.carrier).sum(), - n.stores_t.p.sum().groupby(n.stores.carrier).sum(), - -n.loads_t.p.sum().groupby(n.loads.carrier).sum() - ]) + return pd.concat( + [ + n.generators_t.p.sum().groupby(n.generators.carrier).sum(), + n.storage_units_t.p.sum().groupby(n.storage_units.carrier).sum(), + n.stores_t.p.sum().groupby(n.stores.carrier).sum(), + -n.loads_t.p.sum().groupby(n.loads.carrier).sum(), + ] + ) + def aggregate_e_nom(n): - return pd.concat([ - (n.storage_units["p_nom_opt"]*n.storage_units["max_hours"]).groupby(n.storage_units["carrier"]).sum(), - n.stores["e_nom_opt"].groupby(n.stores.carrier).sum() - ]) + return pd.concat( + [ + (n.storage_units["p_nom_opt"] * n.storage_units["max_hours"]) + .groupby(n.storage_units["carrier"]) + .sum(), + n.stores["e_nom_opt"].groupby(n.stores.carrier).sum(), + ] + ) + def aggregate_p_curtailed(n): - return pd.concat([ - ((n.generators_t.p_max_pu.sum().multiply(n.generators.p_nom_opt) - n.generators_t.p.sum()) - .groupby(n.generators.carrier).sum()), - ((n.storage_units_t.inflow.sum() - n.storage_units_t.p.sum()) - .groupby(n.storage_units.carrier).sum()) - ]) + return pd.concat( + [ + ( + ( + n.generators_t.p_max_pu.sum().multiply(n.generators.p_nom_opt) + - n.generators_t.p.sum() + ) + .groupby(n.generators.carrier) + .sum() + ), + ( + (n.storage_units_t.inflow.sum() - n.storage_units_t.p.sum()) + .groupby(n.storage_units.carrier) + .sum() + ), + ] + ) + def aggregate_costs(n, flatten=False, opts=None, existing_only=False): - - components = dict(Link=("p_nom", "p0"), - Generator=("p_nom", "p"), - StorageUnit=("p_nom", "p"), - Store=("e_nom", "p"), - Line=("s_nom", None), - Transformer=("s_nom", None)) + components = dict( + Link=("p_nom", "p0"), + Generator=("p_nom", "p"), + StorageUnit=("p_nom", "p"), + Store=("e_nom", "p"), + Line=("s_nom", None), + Transformer=("s_nom", None), + ) costs = {} for c, (p_nom, p_attr) in zip( - n.iterate_components(components.keys(), skip_empty=False), - components.values() + n.iterate_components(components.keys(), skip_empty=False), components.values() ): - if c.df.empty: continue - if not existing_only: p_nom += "_opt" - costs[(c.list_name, 'capital')] = (c.df[p_nom] * c.df.capital_cost).groupby(c.df.carrier).sum() + if c.df.empty: + continue + if not existing_only: + p_nom += "_opt" + costs[(c.list_name, "capital")] = ( + (c.df[p_nom] * c.df.capital_cost).groupby(c.df.carrier).sum() + ) if p_attr is not None: p = c.pnl[p_attr].sum() - if c.name == 'StorageUnit': + if c.name == "StorageUnit": p = p.loc[p > 0] - costs[(c.list_name, 'marginal')] = (p*c.df.marginal_cost).groupby(c.df.carrier).sum() + costs[(c.list_name, "marginal")] = ( + (p * c.df.marginal_cost).groupby(c.df.carrier).sum() + ) costs = pd.concat(costs) if flatten: assert opts is not None - conv_techs = opts['conv_techs'] + conv_techs = opts["conv_techs"] costs = costs.reset_index(level=0, drop=True) - costs = costs['capital'].add( - costs['marginal'].rename({t: t + ' marginal' for t in conv_techs}), - fill_value=0. + costs = costs["capital"].add( + costs["marginal"].rename({t: t + " marginal" for t in conv_techs}), + fill_value=0.0, ) return costs -def progress_retrieve(url, file): - import urllib - from progressbar import ProgressBar - pbar = ProgressBar(0, 100) +def progress_retrieve(url, file, disable=False): + if disable: + urllib.request.urlretrieve(url, file) + else: + with tqdm(unit="B", unit_scale=True, unit_divisor=1024, miniters=1) as t: - def dlProgress(count, blockSize, totalSize): - pbar.update( int(count * blockSize * 100 / totalSize) ) + def update_to(b=1, bsize=1, tsize=None): + if tsize is not None: + t.total = tsize + t.update(b * bsize - t.n) - urllib.request.urlretrieve(url, file, reporthook=dlProgress) + urllib.request.urlretrieve(url, file, reporthook=update_to) -def mock_snakemake(rulename, **wildcards): +def get_aggregation_strategies(aggregation_strategies): + # default aggregation strategies that cannot be defined in .yaml format must be specified within + # the function, otherwise (when defaults are passed in the function's definition) they get lost + # when custom values are specified in the config. + + import numpy as np + from pypsa.networkclustering import _make_consense + + bus_strategies = dict(country=_make_consense("Bus", "country")) + bus_strategies.update(aggregation_strategies.get("buses", {})) + + generator_strategies = {"build_year": lambda x: 0, "lifetime": lambda x: np.inf} + generator_strategies.update(aggregation_strategies.get("generators", {})) + + return bus_strategies, generator_strategies + + +def mock_snakemake(rulename, configfiles=[], **wildcards): """ This function is expected to be executed from the 'scripts'-directory of ' the snakemake project. It returns a snakemake.script.Snakemake object, @@ -223,43 +306,144 @@ def mock_snakemake(rulename, **wildcards): ---------- rulename: str name of the rule for which the snakemake object should be generated + configfiles: list, str + list of configfiles to be used to update the config **wildcards: keyword arguments fixing the wildcards. Only necessary if wildcards are needed. """ - import snakemake as sm import os + + import snakemake as sm + from packaging.version import Version, parse from pypsa.descriptors import Dict from snakemake.script import Snakemake script_dir = Path(__file__).parent.resolve() - assert Path.cwd().resolve() == script_dir, \ - f'mock_snakemake has to be run from the repository scripts directory {script_dir}' - os.chdir(script_dir.parent) - for p in sm.SNAKEFILE_CHOICES: - if os.path.exists(p): - snakefile = p - break - workflow = sm.Workflow(snakefile, overwrite_configfiles=[]) - workflow.include(snakefile) - workflow.global_resources = {} - rule = workflow.get_rule(rulename) - dag = sm.dag.DAG(workflow, rules=[rule]) - wc = Dict(wildcards) - job = sm.jobs.Job(rule, dag, wc) + root_dir = script_dir.parent - def make_accessable(*ios): - for io in ios: - for i in range(len(io)): - io[i] = os.path.abspath(io[i]) + user_in_script_dir = Path.cwd().resolve() == script_dir + if user_in_script_dir: + os.chdir(root_dir) + elif Path.cwd().resolve() != root_dir: + raise RuntimeError( + "mock_snakemake has to be run from the repository root" + f" {root_dir} or scripts directory {script_dir}" + ) + try: + for p in sm.SNAKEFILE_CHOICES: + if os.path.exists(p): + snakefile = p + break + kwargs = ( + dict(rerun_triggers=[]) if parse(sm.__version__) > Version("7.7.0") else {} + ) + if isinstance(configfiles, str): + configfiles = [configfiles] - make_accessable(job.input, job.output, job.log) - snakemake = Snakemake(job.input, job.output, job.params, job.wildcards, - job.threads, job.resources, job.log, - job.dag.workflow.config, job.rule.name, None,) - # create log and output dir if not existent - for path in list(snakemake.log) + list(snakemake.output): - Path(path).parent.mkdir(parents=True, exist_ok=True) + workflow = sm.Workflow(snakefile, overwrite_configfiles=configfiles, **kwargs) + workflow.include(snakefile) - os.chdir(script_dir) + if configfiles: + for f in configfiles: + if not os.path.exists(f): + raise FileNotFoundError(f"Config file {f} does not exist.") + workflow.configfile(f) + + workflow.global_resources = {} + rule = workflow.get_rule(rulename) + dag = sm.dag.DAG(workflow, rules=[rule]) + wc = Dict(wildcards) + job = sm.jobs.Job(rule, dag, wc) + + def make_accessable(*ios): + for io in ios: + for i in range(len(io)): + io[i] = os.path.abspath(io[i]) + + make_accessable(job.input, job.output, job.log) + snakemake = Snakemake( + job.input, + job.output, + job.params, + job.wildcards, + job.threads, + job.resources, + job.log, + job.dag.workflow.config, + job.rule.name, + None, + ) + # create log and output dir if not existent + for path in list(snakemake.log) + list(snakemake.output): + Path(path).parent.mkdir(parents=True, exist_ok=True) + + finally: + if user_in_script_dir: + os.chdir(script_dir) return snakemake + + +def override_component_attrs(directory): + """ + Tell PyPSA that links can have multiple outputs by overriding the + component_attrs. This can be done for as many buses as you need with format + busi for i = 2,3,4,5,.... See https://pypsa.org/doc/components.html#link- + with-multiple-outputs-or-inputs. + + Parameters + ---------- + directory : string + Folder where component attributes to override are stored + analogous to ``pypsa/component_attrs``, e.g. `links.csv`. + + Returns + ------- + Dictionary of overridden component attributes. + """ + attrs = Dict({k: v.copy() for k, v in component_attrs.items()}) + + for component, list_name in components.list_name.items(): + fn = f"{directory}/{list_name}.csv" + if os.path.isfile(fn): + overrides = pd.read_csv(fn, index_col=0, na_values="n/a") + attrs[component] = overrides.combine_first(attrs[component]) + + return attrs + + +def generate_periodic_profiles(dt_index, nodes, weekly_profile, localize=None): + """ + Give a 24*7 long list of weekly hourly profiles, generate this for each + country for the period dt_index, taking account of time zones and summer + time. + """ + weekly_profile = pd.Series(weekly_profile, range(24 * 7)) + + week_df = pd.DataFrame(index=dt_index, columns=nodes) + + for node in nodes: + timezone = pytz.timezone(pytz.country_timezones[node[:2]][0]) + tz_dt_index = dt_index.tz_convert(timezone) + week_df[node] = [24 * dt.weekday() + dt.hour for dt in tz_dt_index] + week_df[node] = week_df[node].map(weekly_profile) + + week_df = week_df.tz_localize(localize) + + return week_df + + +def parse(l): + if len(l) == 1: + return yaml.safe_load(l[0]) + else: + return {l.pop(0): parse(l)} + + +def update_config_with_sector_opts(config, sector_opts): + from snakemake.utils import update_config + + for o in sector_opts.split("-"): + if o.startswith("CF+"): + l = o.split("+")[1:] + update_config(config, parse(l)) diff --git a/scripts/add_brownfield.py b/scripts/add_brownfield.py new file mode 100644 index 00000000..e08b86d7 --- /dev/null +++ b/scripts/add_brownfield.py @@ -0,0 +1,160 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2020-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Prepares brownfield data from previous planning horizon. +""" + +import logging + +logger = logging.getLogger(__name__) + +import pandas as pd + +idx = pd.IndexSlice + +import numpy as np +import pypsa +from _helpers import override_component_attrs, update_config_with_sector_opts +from add_existing_baseyear import add_build_year_to_new_assets + + +def add_brownfield(n, n_p, year): + logger.info(f"Preparing brownfield for the year {year}") + + # electric transmission grid set optimised capacities of previous as minimum + n.lines.s_nom_min = n_p.lines.s_nom_opt + dc_i = n.links[n.links.carrier == "DC"].index + n.links.loc[dc_i, "p_nom_min"] = n_p.links.loc[dc_i, "p_nom_opt"] + + for c in n_p.iterate_components(["Link", "Generator", "Store"]): + attr = "e" if c.name == "Store" else "p" + + # first, remove generators, links and stores that track + # CO2 or global EU values since these are already in n + n_p.mremove(c.name, c.df.index[c.df.lifetime == np.inf]) + + # remove assets whose build_year + lifetime < year + n_p.mremove(c.name, c.df.index[c.df.build_year + c.df.lifetime < year]) + + # remove assets if their optimized nominal capacity is lower than a threshold + # since CHP heat Link is proportional to CHP electric Link, make sure threshold is compatible + chp_heat = c.df.index[ + ( + c.df[attr + "_nom_extendable"] + & c.df.index.str.contains("urban central") + & c.df.index.str.contains("CHP") + & c.df.index.str.contains("heat") + ) + ] + + threshold = snakemake.config["existing_capacities"]["threshold_capacity"] + + if not chp_heat.empty: + threshold_chp_heat = ( + threshold + * c.df.efficiency[chp_heat.str.replace("heat", "electric")].values + * c.df.p_nom_ratio[chp_heat.str.replace("heat", "electric")].values + / c.df.efficiency[chp_heat].values + ) + n_p.mremove( + c.name, + chp_heat[c.df.loc[chp_heat, attr + "_nom_opt"] < threshold_chp_heat], + ) + + n_p.mremove( + c.name, + c.df.index[ + c.df[attr + "_nom_extendable"] + & ~c.df.index.isin(chp_heat) + & (c.df[attr + "_nom_opt"] < threshold) + ], + ) + + # copy over assets but fix their capacity + c.df[attr + "_nom"] = c.df[attr + "_nom_opt"] + c.df[attr + "_nom_extendable"] = False + + n.import_components_from_dataframe(c.df, c.name) + + # copy time-dependent + selection = n.component_attrs[c.name].type.str.contains( + "series" + ) & n.component_attrs[c.name].status.str.contains("Input") + for tattr in n.component_attrs[c.name].index[selection]: + n.import_series_from_dataframe(c.pnl[tattr], c.name, tattr) + + # deal with gas network + pipe_carrier = ["gas pipeline"] + if snakemake.config["sector"]["H2_retrofit"]: + # drop capacities of previous year to avoid duplicating + to_drop = n.links.carrier.isin(pipe_carrier) & (n.links.build_year != year) + n.mremove("Link", n.links.loc[to_drop].index) + + # subtract the already retrofitted from today's gas grid capacity + h2_retrofitted_fixed_i = n.links[ + (n.links.carrier == "H2 pipeline retrofitted") + & (n.links.build_year != year) + ].index + gas_pipes_i = n.links[n.links.carrier.isin(pipe_carrier)].index + CH4_per_H2 = 1 / snakemake.config["sector"]["H2_retrofit_capacity_per_CH4"] + fr = "H2 pipeline retrofitted" + to = "gas pipeline" + # today's pipe capacity + pipe_capacity = n.links.loc[gas_pipes_i, "p_nom"] + # already retrofitted capacity from gas -> H2 + already_retrofitted = ( + n.links.loc[h2_retrofitted_fixed_i, "p_nom"] + .rename(lambda x: x.split("-2")[0].replace(fr, to)) + .groupby(level=0) + .sum() + ) + remaining_capacity = ( + pipe_capacity + - CH4_per_H2 + * already_retrofitted.reindex(index=pipe_capacity.index).fillna(0) + ) + n.links.loc[gas_pipes_i, "p_nom"] = remaining_capacity + else: + new_pipes = n.links.carrier.isin(pipe_carrier) & ( + n.links.build_year == year + ) + n.links.loc[new_pipes, "p_nom"] = 0.0 + n.links.loc[new_pipes, "p_nom_min"] = 0.0 + + +# %% +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake( + "add_brownfield", + simpl="", + clusters="37", + opts="", + ll="v1.0", + sector_opts="168H-T-H-B-I-solar+p3-dist1", + planning_horizons=2030, + ) + + logging.basicConfig(level=snakemake.config["logging"]["level"]) + + update_config_with_sector_opts(snakemake.config, snakemake.wildcards.sector_opts) + + logger.info(f"Preparing brownfield from the file {snakemake.input.network_p}") + + year = int(snakemake.wildcards.planning_horizons) + + overrides = override_component_attrs(snakemake.input.overrides) + n = pypsa.Network(snakemake.input.network, override_component_attrs=overrides) + + add_build_year_to_new_assets(n, year) + + n_p = pypsa.Network(snakemake.input.network_p, override_component_attrs=overrides) + + add_brownfield(n, n_p, year) + + n.meta = dict(snakemake.config, **dict(wildcards=dict(snakemake.wildcards))) + n.export_to_netcdf(snakemake.output[0]) diff --git a/scripts/add_electricity.py b/scripts/add_electricity.py index 25d3acc8..b174fc25 100755 --- a/scripts/add_electricity.py +++ b/scripts/add_electricity.py @@ -1,8 +1,7 @@ -# SPDX-FileCopyrightText: : 2017-2022 The PyPSA-Eur Authors +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2017-2023 The PyPSA-Eur Authors # # SPDX-License-Identifier: MIT - -# coding: utf-8 """ Adds electrical generators and existing hydro storage units to a base network. @@ -13,7 +12,7 @@ Relevant Settings costs: year: - USD2013_to_EUR2013: + version: dicountrate: emission_prices: @@ -24,8 +23,8 @@ Relevant Settings conventional_carriers: co2limit: extendable_carriers: - include_renewable_capacities_from_OPSD: - estimate_renewable_capacities_from_capacity_stats: + estimate_renewable_capacities: + load: scaling_factor: @@ -40,20 +39,20 @@ Relevant Settings length_factor: .. seealso:: - Documentation of the configuration file ``config.yaml`` at :ref:`costs_cf`, + Documentation of the configuration file ``config/config.yaml`` at :ref:`costs_cf`, :ref:`electricity_cf`, :ref:`load_cf`, :ref:`renewable_cf`, :ref:`lines_cf` Inputs ------ -- ``data/costs.csv``: The database of cost assumptions for all included technologies for specific years from various sources; e.g. discount rate, lifetime, investment (CAPEX), fixed operation and maintenance (FOM), variable operation and maintenance (VOM), fuel costs, efficiency, carbon-dioxide intensity. +- ``resources/costs.csv``: The database of cost assumptions for all included technologies for specific years from various sources; e.g. discount rate, lifetime, investment (CAPEX), fixed operation and maintenance (FOM), variable operation and maintenance (VOM), fuel costs, efficiency, carbon-dioxide intensity. - ``data/bundle/hydro_capacities.csv``: Hydropower plant store/discharge power capacities, energy storage capacity, and average hourly inflow by country. - .. image:: ../img/hydrocapacities.png + .. image:: img/hydrocapacities.png :scale: 34 % - ``data/geth2015_hydro_capacities.csv``: alternative to capacities above; not currently used! -- ``resources/opsd_load.csv`` Hourly per-country load profiles. +- ``resources/load.csv`` Hourly per-country load profiles. - ``resources/regions_onshore.geojson``: confer :ref:`busregions` - ``resources/nuts3_shapes.geojson``: confer :ref:`shapes` - ``resources/powerplants.csv``: confer :ref:`powerplants` @@ -65,7 +64,7 @@ Outputs - ``networks/elec.nc``: - .. image:: ../img/elec.png + .. image:: img/elec.png :scale: 33 % Description @@ -84,94 +83,115 @@ It further adds extendable ``generators`` with **zero** capacity for """ import logging -from _helpers import configure_logging, update_p_nom_max +from itertools import product -import pypsa -import pandas as pd -import numpy as np -import xarray as xr import geopandas as gpd +import numpy as np +import pandas as pd import powerplantmatching as pm +import pypsa +import scipy.sparse as sparse +import xarray as xr +from _helpers import configure_logging, update_p_nom_max from powerplantmatching.export import map_country_bus - -from vresutils.costdata import annuity -from vresutils import transfer as vtransfer +from shapely.prepared import prep idx = pd.IndexSlice logger = logging.getLogger(__name__) -def normed(s): return s/s.sum() +def normed(s): + return s / s.sum() + + +def calculate_annuity(n, r): + """ + Calculate the annuity factor for an asset with lifetime n years and. + + discount rate of r, e.g. annuity(20, 0.05) * 20 = 1.6 + """ + if isinstance(r, pd.Series): + return pd.Series(1 / n, index=r.index).where( + r == 0, r / (1.0 - 1.0 / (1.0 + r) ** n) + ) + elif r > 0: + return r / (1.0 - 1.0 / (1.0 + r) ** n) + else: + return 1 / n def _add_missing_carriers_from_costs(n, costs, carriers): missing_carriers = pd.Index(carriers).difference(n.carriers.index) - if missing_carriers.empty: return + if missing_carriers.empty: + return - emissions_cols = costs.columns.to_series()\ - .loc[lambda s: s.str.endswith('_emissions')].values - suptechs = missing_carriers.str.split('-').str[0] - emissions = costs.loc[suptechs, emissions_cols].fillna(0.) + emissions_cols = ( + costs.columns.to_series().loc[lambda s: s.str.endswith("_emissions")].values + ) + suptechs = missing_carriers.str.split("-").str[0] + emissions = costs.loc[suptechs, emissions_cols].fillna(0.0) emissions.index = missing_carriers - n.import_components_from_dataframe(emissions, 'Carrier') + n.import_components_from_dataframe(emissions, "Carrier") -def load_costs(tech_costs, config, elec_config, Nyears=1.): - +def load_costs(tech_costs, config, elec_config, Nyears=1.0): # set all asset costs and other parameters - costs = pd.read_csv(tech_costs, index_col=list(range(3))).sort_index() + costs = pd.read_csv(tech_costs, index_col=[0, 1]).sort_index() - # correct units to MW and EUR - costs.loc[costs.unit.str.contains("/kW"),"value"] *= 1e3 - costs.loc[costs.unit.str.contains("USD"),"value"] *= config['USD2013_to_EUR2013'] + # correct units to MW + costs.loc[costs.unit.str.contains("/kW"), "value"] *= 1e3 + costs.unit = costs.unit.str.replace("/kW", "/MW") - costs = (costs.loc[idx[:,config['year'],:], "value"] - .unstack(level=2).groupby("technology").sum(min_count=1)) + fill_values = config["fill_values"] + costs = costs.value.unstack().fillna(fill_values) - costs = costs.fillna({"CO2 intensity" : 0, - "FOM" : 0, - "VOM" : 0, - "discount rate" : config['discountrate'], - "efficiency" : 1, - "fuel" : 0, - "investment" : 0, - "lifetime" : 25}) + costs["capital_cost"] = ( + ( + calculate_annuity(costs["lifetime"], costs["discount rate"]) + + costs["FOM"] / 100.0 + ) + * costs["investment"] + * Nyears + ) - costs["capital_cost"] = ((annuity(costs["lifetime"], costs["discount rate"]) + - costs["FOM"]/100.) * - costs["investment"] * Nyears) + costs.at["OCGT", "fuel"] = costs.at["gas", "fuel"] + costs.at["CCGT", "fuel"] = costs.at["gas", "fuel"] - costs.at['OCGT', 'fuel'] = costs.at['gas', 'fuel'] - costs.at['CCGT', 'fuel'] = costs.at['gas', 'fuel'] - - costs['marginal_cost'] = costs['VOM'] + costs['fuel'] / costs['efficiency'] + costs["marginal_cost"] = costs["VOM"] + costs["fuel"] / costs["efficiency"] costs = costs.rename(columns={"CO2 intensity": "co2_emissions"}) - costs.at['OCGT', 'co2_emissions'] = costs.at['gas', 'co2_emissions'] - costs.at['CCGT', 'co2_emissions'] = costs.at['gas', 'co2_emissions'] + costs.at["OCGT", "co2_emissions"] = costs.at["gas", "co2_emissions"] + costs.at["CCGT", "co2_emissions"] = costs.at["gas", "co2_emissions"] - costs.at['solar', 'capital_cost'] = 0.5*(costs.at['solar-rooftop', 'capital_cost'] + - costs.at['solar-utility', 'capital_cost']) + costs.at["solar", "capital_cost"] = ( + config["rooftop_share"] * costs.at["solar-rooftop", "capital_cost"] + + (1 - config["rooftop_share"]) * costs.at["solar-utility", "capital_cost"] + ) - def costs_for_storage(store, link1, link2=None, max_hours=1.): - capital_cost = link1['capital_cost'] + max_hours * store['capital_cost'] + def costs_for_storage(store, link1, link2=None, max_hours=1.0): + capital_cost = link1["capital_cost"] + max_hours * store["capital_cost"] if link2 is not None: - capital_cost += link2['capital_cost'] - return pd.Series(dict(capital_cost=capital_cost, - marginal_cost=0., - co2_emissions=0.)) + capital_cost += link2["capital_cost"] + return pd.Series( + dict(capital_cost=capital_cost, marginal_cost=0.0, co2_emissions=0.0) + ) - max_hours = elec_config['max_hours'] - costs.loc["battery"] = \ - costs_for_storage(costs.loc["battery storage"], costs.loc["battery inverter"], - max_hours=max_hours['battery']) - costs.loc["H2"] = \ - costs_for_storage(costs.loc["hydrogen storage"], costs.loc["fuel cell"], - costs.loc["electrolysis"], max_hours=max_hours['H2']) + max_hours = elec_config["max_hours"] + costs.loc["battery"] = costs_for_storage( + costs.loc["battery storage"], + costs.loc["battery inverter"], + max_hours=max_hours["battery"], + ) + costs.loc["H2"] = costs_for_storage( + costs.loc["hydrogen storage underground"], + costs.loc["fuel cell"], + costs.loc["electrolysis"], + max_hours=max_hours["H2"], + ) - for attr in ('marginal_cost', 'capital_cost'): + for attr in ("marginal_cost", "capital_cost"): overwrites = config.get(attr) if overwrites is not None: overwrites = pd.Series(overwrites) @@ -181,26 +201,45 @@ def load_costs(tech_costs, config, elec_config, Nyears=1.): def load_powerplants(ppl_fn): - carrier_dict = {'ocgt': 'OCGT', 'ccgt': 'CCGT', 'bioenergy': 'biomass', - 'ccgt, thermal': 'CCGT', 'hard coal': 'coal'} - return (pd.read_csv(ppl_fn, index_col=0, dtype={'bus': 'str'}) - .powerplant.to_pypsa_names() - .rename(columns=str.lower).drop(columns=['efficiency']) - .replace({'carrier': carrier_dict})) + carrier_dict = { + "ocgt": "OCGT", + "ccgt": "CCGT", + "bioenergy": "biomass", + "ccgt, thermal": "CCGT", + "hard coal": "coal", + } + return ( + pd.read_csv(ppl_fn, index_col=0, dtype={"bus": "str"}) + .powerplant.to_pypsa_names() + .rename(columns=str.lower) + .replace({"carrier": carrier_dict}) + ) -def attach_load(n, regions, load, nuts3_shapes, countries, scaling=1.): +def shapes_to_shapes(orig, dest): + """ + Adopted from vresutils.transfer.Shapes2Shapes() + """ + orig_prepped = list(map(prep, orig)) + transfer = sparse.lil_matrix((len(dest), len(orig)), dtype=float) - substation_lv_i = n.buses.index[n.buses['substation_lv']] - regions = (gpd.read_file(regions).set_index('name') - .reindex(substation_lv_i)) - opsd_load = (pd.read_csv(load, index_col=0, parse_dates=True) - .filter(items=countries)) + for i, j in product(range(len(dest)), range(len(orig))): + if orig_prepped[j].intersects(dest[i]): + area = orig[j].intersection(dest[i]).area + transfer[i, j] = area / dest[i].area + + return transfer + + +def attach_load(n, regions, load, nuts3_shapes, countries, scaling=1.0): + substation_lv_i = n.buses.index[n.buses["substation_lv"]] + regions = gpd.read_file(regions).set_index("name").reindex(substation_lv_i) + opsd_load = pd.read_csv(load, index_col=0, parse_dates=True).filter(items=countries) logger.info(f"Load data scaled with scalling factor {scaling}.") opsd_load *= scaling - nuts3 = gpd.read_file(nuts3_shapes).set_index('index') + nuts3 = gpd.read_file(nuts3_shapes).set_index("index") def upsample(cntry, group): l = opsd_load[cntry] @@ -208,343 +247,458 @@ def attach_load(n, regions, load, nuts3_shapes, countries, scaling=1.): return pd.DataFrame({group.index[0]: l}) else: nuts3_cntry = nuts3.loc[nuts3.country == cntry] - transfer = vtransfer.Shapes2Shapes(group, nuts3_cntry.geometry, - normed=False).T.tocsr() - gdp_n = pd.Series(transfer.dot(nuts3_cntry['gdp'].fillna(1.).values), - index=group.index) - pop_n = pd.Series(transfer.dot(nuts3_cntry['pop'].fillna(1.).values), - index=group.index) + transfer = shapes_to_shapes(group, nuts3_cntry.geometry).T.tocsr() + gdp_n = pd.Series( + transfer.dot(nuts3_cntry["gdp"].fillna(1.0).values), index=group.index + ) + pop_n = pd.Series( + transfer.dot(nuts3_cntry["pop"].fillna(1.0).values), index=group.index + ) # relative factors 0.6 and 0.4 have been determined from a linear # regression on the country to continent load data factors = normed(0.6 * normed(gdp_n) + 0.4 * normed(pop_n)) - return pd.DataFrame(factors.values * l.values[:,np.newaxis], - index=l.index, columns=factors.index) + return pd.DataFrame( + factors.values * l.values[:, np.newaxis], + index=l.index, + columns=factors.index, + ) - load = pd.concat([upsample(cntry, group) for cntry, group - in regions.geometry.groupby(regions.country)], axis=1) + load = pd.concat( + [ + upsample(cntry, group) + for cntry, group in regions.geometry.groupby(regions.country) + ], + axis=1, + ) n.madd("Load", substation_lv_i, bus=substation_lv_i, p_set=load) -def update_transmission_costs(n, costs, length_factor=1.0, simple_hvdc_costs=False): +def update_transmission_costs(n, costs, length_factor=1.0): # TODO: line length factor of lines is applied to lines and links. # Separate the function to distinguish. - n.lines['capital_cost'] = (n.lines['length'] * length_factor * - costs.at['HVAC overhead', 'capital_cost']) + n.lines["capital_cost"] = ( + n.lines["length"] * length_factor * costs.at["HVAC overhead", "capital_cost"] + ) - if n.links.empty: return + if n.links.empty: + return - dc_b = n.links.carrier == 'DC' + dc_b = n.links.carrier == "DC" # If there are no dc links, then the 'underwater_fraction' column # may be missing. Therefore we have to return here. - if n.links.loc[dc_b].empty: return + if n.links.loc[dc_b].empty: + return - if simple_hvdc_costs: - costs = (n.links.loc[dc_b, 'length'] * length_factor * - costs.at['HVDC overhead', 'capital_cost']) - else: - costs = (n.links.loc[dc_b, 'length'] * length_factor * - ((1. - n.links.loc[dc_b, 'underwater_fraction']) * - costs.at['HVDC overhead', 'capital_cost'] + - n.links.loc[dc_b, 'underwater_fraction'] * - costs.at['HVDC submarine', 'capital_cost']) + - costs.at['HVDC inverter pair', 'capital_cost']) - n.links.loc[dc_b, 'capital_cost'] = costs + costs = ( + n.links.loc[dc_b, "length"] + * length_factor + * ( + (1.0 - n.links.loc[dc_b, "underwater_fraction"]) + * costs.at["HVDC overhead", "capital_cost"] + + n.links.loc[dc_b, "underwater_fraction"] + * costs.at["HVDC submarine", "capital_cost"] + ) + + costs.at["HVDC inverter pair", "capital_cost"] + ) + n.links.loc[dc_b, "capital_cost"] = costs -def attach_wind_and_solar(n, costs, input_profiles, technologies, extendable_carriers, line_length_factor=1): +def attach_wind_and_solar( + n, costs, input_profiles, technologies, extendable_carriers, line_length_factor=1 +): # TODO: rename tech -> carrier, technologies -> carriers + _add_missing_carriers_from_costs(n, costs, technologies) for tech in technologies: - if tech == 'hydro': continue + if tech == "hydro": + continue - n.add("Carrier", name=tech) - with xr.open_dataset(getattr(input_profiles, 'profile_' + tech)) as ds: - if ds.indexes['bus'].empty: continue + with xr.open_dataset(getattr(input_profiles, "profile_" + tech)) as ds: + if ds.indexes["bus"].empty: + continue - suptech = tech.split('-', 2)[0] - if suptech == 'offwind': - underwater_fraction = ds['underwater_fraction'].to_pandas() - connection_cost = (line_length_factor * - ds['average_distance'].to_pandas() * - (underwater_fraction * - costs.at[tech + '-connection-submarine', 'capital_cost'] + - (1. - underwater_fraction) * - costs.at[tech + '-connection-underground', 'capital_cost'])) - capital_cost = (costs.at['offwind', 'capital_cost'] + - costs.at[tech + '-station', 'capital_cost'] + - connection_cost) - logger.info("Added connection cost of {:0.0f}-{:0.0f} Eur/MW/a to {}" - .format(connection_cost.min(), connection_cost.max(), tech)) + suptech = tech.split("-", 2)[0] + if suptech == "offwind": + underwater_fraction = ds["underwater_fraction"].to_pandas() + connection_cost = ( + line_length_factor + * ds["average_distance"].to_pandas() + * ( + underwater_fraction + * costs.at[tech + "-connection-submarine", "capital_cost"] + + (1.0 - underwater_fraction) + * costs.at[tech + "-connection-underground", "capital_cost"] + ) + ) + capital_cost = ( + costs.at["offwind", "capital_cost"] + + costs.at[tech + "-station", "capital_cost"] + + connection_cost + ) + logger.info( + "Added connection cost of {:0.0f}-{:0.0f} Eur/MW/a to {}".format( + connection_cost.min(), connection_cost.max(), tech + ) + ) else: - capital_cost = costs.at[tech, 'capital_cost'] + capital_cost = costs.at[tech, "capital_cost"] - n.madd("Generator", ds.indexes['bus'], ' ' + tech, - bus=ds.indexes['bus'], - carrier=tech, - p_nom_extendable=tech in extendable_carriers['Generator'], - p_nom_max=ds['p_nom_max'].to_pandas(), - weight=ds['weight'].to_pandas(), - marginal_cost=costs.at[suptech, 'marginal_cost'], - capital_cost=capital_cost, - efficiency=costs.at[suptech, 'efficiency'], - p_max_pu=ds['profile'].transpose('time', 'bus').to_pandas()) + n.madd( + "Generator", + ds.indexes["bus"], + " " + tech, + bus=ds.indexes["bus"], + carrier=tech, + p_nom_extendable=tech in extendable_carriers["Generator"], + p_nom_max=ds["p_nom_max"].to_pandas(), + weight=ds["weight"].to_pandas(), + marginal_cost=costs.at[suptech, "marginal_cost"], + capital_cost=capital_cost, + efficiency=costs.at[suptech, "efficiency"], + p_max_pu=ds["profile"].transpose("time", "bus").to_pandas(), + ) -def attach_conventional_generators(n, costs, ppl, carriers, extendable_carriers): - +def attach_conventional_generators( + n, + costs, + ppl, + conventional_carriers, + extendable_carriers, + conventional_config, + conventional_inputs, +): + carriers = set(conventional_carriers) | set(extendable_carriers["Generator"]) _add_missing_carriers_from_costs(n, costs, carriers) - ppl = (ppl.query('carrier in @carriers').join(costs, on='carrier') - .rename(index=lambda s: 'C' + str(s))) + ppl = ( + ppl.query("carrier in @carriers") + .join(costs, on="carrier", rsuffix="_r") + .rename(index=lambda s: "C" + str(s)) + ) + ppl["efficiency"] = ppl.efficiency.fillna(ppl.efficiency_r) + ppl["marginal_cost"] = ( + ppl.carrier.map(costs.VOM) + ppl.carrier.map(costs.fuel) / ppl.efficiency + ) - logger.info('Adding {} generators with capacities [MW] \n{}' - .format(len(ppl), ppl.groupby('carrier').p_nom.sum())) + logger.info( + "Adding {} generators with capacities [GW] \n{}".format( + len(ppl), ppl.groupby("carrier").p_nom.sum().div(1e3).round(2) + ) + ) - n.madd("Generator", ppl.index, - carrier=ppl.carrier, - bus=ppl.bus, - p_nom=ppl.p_nom, - p_nom_min=ppl.p_nom, - p_nom_extendable=ppl.carrier.isin(extendable_carriers['Generator']), - efficiency=ppl.efficiency, - marginal_cost=ppl.marginal_cost, - capital_cost=ppl.capital_cost) + n.madd( + "Generator", + ppl.index, + carrier=ppl.carrier, + bus=ppl.bus, + p_nom_min=ppl.p_nom.where(ppl.carrier.isin(conventional_carriers), 0), + p_nom=ppl.p_nom.where(ppl.carrier.isin(conventional_carriers), 0), + p_nom_extendable=ppl.carrier.isin(extendable_carriers["Generator"]), + efficiency=ppl.efficiency, + marginal_cost=ppl.marginal_cost, + capital_cost=ppl.capital_cost, + build_year=ppl.datein.fillna(0).astype(int), + lifetime=(ppl.dateout - ppl.datein).fillna(np.inf), + ) - logger.warning(f'Capital costs for conventional generators put to 0 EUR/MW.') + for carrier in conventional_config: + # Generators with technology affected + idx = n.generators.query("carrier == @carrier").index + + for attr in list(set(conventional_config[carrier]) & set(n.generators)): + values = conventional_config[carrier][attr] + + if f"conventional_{carrier}_{attr}" in conventional_inputs: + # Values affecting generators of technology k country-specific + # First map generator buses to countries; then map countries to p_max_pu + values = pd.read_csv( + snakemake.input[f"conventional_{carrier}_{attr}"], index_col=0 + ).iloc[:, 0] + bus_values = n.buses.country.map(values) + n.generators[attr].update( + n.generators.loc[idx].bus.map(bus_values).dropna() + ) + else: + # Single value affecting all generators of technology k indiscriminantely of country + n.generators.loc[idx, attr] = values def attach_hydro(n, costs, ppl, profile_hydro, hydro_capacities, carriers, **config): - _add_missing_carriers_from_costs(n, costs, carriers) - ppl = ppl.query('carrier == "hydro"').reset_index(drop=True)\ - .rename(index=lambda s: str(s) + ' hydro') + ppl = ( + ppl.query('carrier == "hydro"') + .reset_index(drop=True) + .rename(index=lambda s: str(s) + " hydro") + ) ror = ppl.query('technology == "Run-Of-River"') phs = ppl.query('technology == "Pumped Storage"') hydro = ppl.query('technology == "Reservoir"') - country = ppl['bus'].map(n.buses.country).rename("country") + country = ppl["bus"].map(n.buses.country).rename("country") inflow_idx = ror.index.union(hydro.index) if not inflow_idx.empty: - dist_key = ppl.loc[inflow_idx, 'p_nom'].groupby(country).transform(normed) + dist_key = ppl.loc[inflow_idx, "p_nom"].groupby(country).transform(normed) with xr.open_dataarray(profile_hydro) as inflow: inflow_countries = pd.Index(country[inflow_idx]) - missing_c = (inflow_countries.unique() - .difference(inflow.indexes['countries'])) - assert missing_c.empty, (f"'{profile_hydro}' is missing " - f"inflow time-series for at least one country: {', '.join(missing_c)}") + missing_c = inflow_countries.unique().difference( + inflow.indexes["countries"] + ) + assert missing_c.empty, ( + f"'{profile_hydro}' is missing " + f"inflow time-series for at least one country: {', '.join(missing_c)}" + ) - inflow_t = (inflow.sel(countries=inflow_countries) - .rename({'countries': 'name'}) - .assign_coords(name=inflow_idx) - .transpose('time', 'name') - .to_pandas() - .multiply(dist_key, axis=1)) + inflow_t = ( + inflow.sel(countries=inflow_countries) + .rename({"countries": "name"}) + .assign_coords(name=inflow_idx) + .transpose("time", "name") + .to_pandas() + .multiply(dist_key, axis=1) + ) - if 'ror' in carriers and not ror.empty: - n.madd("Generator", ror.index, - carrier='ror', - bus=ror['bus'], - p_nom=ror['p_nom'], - efficiency=costs.at['ror', 'efficiency'], - capital_cost=costs.at['ror', 'capital_cost'], - weight=ror['p_nom'], - p_max_pu=(inflow_t[ror.index] - .divide(ror['p_nom'], axis=1) - .where(lambda df: df<=1., other=1.))) + if "ror" in carriers and not ror.empty: + n.madd( + "Generator", + ror.index, + carrier="ror", + bus=ror["bus"], + p_nom=ror["p_nom"], + efficiency=costs.at["ror", "efficiency"], + capital_cost=costs.at["ror", "capital_cost"], + weight=ror["p_nom"], + p_max_pu=( + inflow_t[ror.index] + .divide(ror["p_nom"], axis=1) + .where(lambda df: df <= 1.0, other=1.0) + ), + ) - if 'PHS' in carriers and not phs.empty: + if "PHS" in carriers and not phs.empty: # fill missing max hours to config value and # assume no natural inflow due to lack of data - max_hours = config.get('PHS_max_hours', 6) - phs = phs.replace({'max_hours': {0: max_hours}}) - n.madd('StorageUnit', phs.index, - carrier='PHS', - bus=phs['bus'], - p_nom=phs['p_nom'], - capital_cost=costs.at['PHS', 'capital_cost'], - max_hours=phs['max_hours'], - efficiency_store=np.sqrt(costs.at['PHS','efficiency']), - efficiency_dispatch=np.sqrt(costs.at['PHS','efficiency']), - cyclic_state_of_charge=True) + max_hours = config.get("PHS_max_hours", 6) + phs = phs.replace({"max_hours": {0: max_hours}}) + n.madd( + "StorageUnit", + phs.index, + carrier="PHS", + bus=phs["bus"], + p_nom=phs["p_nom"], + capital_cost=costs.at["PHS", "capital_cost"], + max_hours=phs["max_hours"], + efficiency_store=np.sqrt(costs.at["PHS", "efficiency"]), + efficiency_dispatch=np.sqrt(costs.at["PHS", "efficiency"]), + cyclic_state_of_charge=True, + ) - if 'hydro' in carriers and not hydro.empty: - hydro_max_hours = config.get('hydro_max_hours') + if "hydro" in carriers and not hydro.empty: + hydro_max_hours = config.get("hydro_max_hours") assert hydro_max_hours is not None, "No path for hydro capacities given." - hydro_stats = pd.read_csv(hydro_capacities, - comment="#", na_values='-', index_col=0) + hydro_stats = pd.read_csv( + hydro_capacities, comment="#", na_values="-", index_col=0 + ) e_target = hydro_stats["E_store[TWh]"].clip(lower=0.2) * 1e6 - e_installed = hydro.eval('p_nom * max_hours').groupby(hydro.country).sum() + e_installed = hydro.eval("p_nom * max_hours").groupby(hydro.country).sum() e_missing = e_target - e_installed - missing_mh_i = hydro.query('max_hours == 0').index + missing_mh_i = hydro.query("max_hours.isnull()").index - if hydro_max_hours == 'energy_capacity_totals_by_country': + if hydro_max_hours == "energy_capacity_totals_by_country": # watch out some p_nom values like IE's are totally underrepresented - max_hours_country = e_missing / \ - hydro.loc[missing_mh_i].groupby('country').p_nom.sum() + max_hours_country = ( + e_missing / hydro.loc[missing_mh_i].groupby("country").p_nom.sum() + ) - elif hydro_max_hours == 'estimate_by_large_installations': - max_hours_country = hydro_stats['E_store[TWh]'] * 1e3 / \ - hydro_stats['p_nom_discharge[GW]'] + elif hydro_max_hours == "estimate_by_large_installations": + max_hours_country = ( + hydro_stats["E_store[TWh]"] * 1e3 / hydro_stats["p_nom_discharge[GW]"] + ) - missing_countries = (pd.Index(hydro['country'].unique()) - .difference(max_hours_country.dropna().index)) + max_hours_country.clip(0, inplace=True) + + missing_countries = pd.Index(hydro["country"].unique()).difference( + max_hours_country.dropna().index + ) if not missing_countries.empty: - logger.warning("Assuming max_hours=6 for hydro reservoirs in the countries: {}" - .format(", ".join(missing_countries))) - hydro_max_hours = hydro.max_hours.where(hydro.max_hours > 0, - hydro.country.map(max_hours_country)).fillna(6) + logger.warning( + "Assuming max_hours=6 for hydro reservoirs in the countries: {}".format( + ", ".join(missing_countries) + ) + ) + hydro_max_hours = hydro.max_hours.where( + hydro.max_hours > 0, hydro.country.map(max_hours_country) + ).fillna(6) - n.madd('StorageUnit', hydro.index, carrier='hydro', - bus=hydro['bus'], - p_nom=hydro['p_nom'], - max_hours=hydro_max_hours, - capital_cost=costs.at['hydro', 'capital_cost'], - marginal_cost=costs.at['hydro', 'marginal_cost'], - p_max_pu=1., # dispatch - p_min_pu=0., # store - efficiency_dispatch=costs.at['hydro', 'efficiency'], - efficiency_store=0., - cyclic_state_of_charge=True, - inflow=inflow_t.loc[:, hydro.index]) + n.madd( + "StorageUnit", + hydro.index, + carrier="hydro", + bus=hydro["bus"], + p_nom=hydro["p_nom"], + max_hours=hydro_max_hours, + capital_cost=costs.at["hydro", "capital_cost"], + marginal_cost=costs.at["hydro", "marginal_cost"], + p_max_pu=1.0, # dispatch + p_min_pu=0.0, # store + efficiency_dispatch=costs.at["hydro", "efficiency"], + efficiency_store=0.0, + cyclic_state_of_charge=True, + inflow=inflow_t.loc[:, hydro.index], + ) def attach_extendable_generators(n, costs, ppl, carriers): - + logger.warning( + "The function `attach_extendable_generators` is deprecated in v0.5.0." + ) _add_missing_carriers_from_costs(n, costs, carriers) for tech in carriers: - if tech.startswith('OCGT'): - ocgt = ppl.query("carrier in ['OCGT', 'CCGT']").groupby('bus', as_index=False).first() - n.madd('Generator', ocgt.index, - suffix=' OCGT', - bus=ocgt['bus'], - carrier=tech, - p_nom_extendable=True, - p_nom=0., - capital_cost=costs.at['OCGT', 'capital_cost'], - marginal_cost=costs.at['OCGT', 'marginal_cost'], - efficiency=costs.at['OCGT', 'efficiency']) - - elif tech.startswith('CCGT'): - ccgt = ppl.query("carrier in ['OCGT', 'CCGT']").groupby('bus', as_index=False).first() - n.madd('Generator', ccgt.index, - suffix=' CCGT', - bus=ccgt['bus'], - carrier=tech, - p_nom_extendable=True, - p_nom=0., - capital_cost=costs.at['CCGT', 'capital_cost'], - marginal_cost=costs.at['CCGT', 'marginal_cost'], - efficiency=costs.at['CCGT', 'efficiency']) - - elif tech.startswith('nuclear'): - nuclear = ppl.query("carrier == 'nuclear'").groupby('bus', as_index=False).first() - n.madd('Generator', nuclear.index, - suffix=' nuclear', - bus=nuclear['bus'], + if tech.startswith("OCGT"): + ocgt = ( + ppl.query("carrier in ['OCGT', 'CCGT']") + .groupby("bus", as_index=False) + .first() + ) + n.madd( + "Generator", + ocgt.index, + suffix=" OCGT", + bus=ocgt["bus"], carrier=tech, p_nom_extendable=True, - p_nom=0., - capital_cost=costs.at['nuclear', 'capital_cost'], - marginal_cost=costs.at['nuclear', 'marginal_cost'], - efficiency=costs.at['nuclear', 'efficiency']) + p_nom=0.0, + capital_cost=costs.at["OCGT", "capital_cost"], + marginal_cost=costs.at["OCGT", "marginal_cost"], + efficiency=costs.at["OCGT", "efficiency"], + ) + + elif tech.startswith("CCGT"): + ccgt = ( + ppl.query("carrier in ['OCGT', 'CCGT']") + .groupby("bus", as_index=False) + .first() + ) + n.madd( + "Generator", + ccgt.index, + suffix=" CCGT", + bus=ccgt["bus"], + carrier=tech, + p_nom_extendable=True, + p_nom=0.0, + capital_cost=costs.at["CCGT", "capital_cost"], + marginal_cost=costs.at["CCGT", "marginal_cost"], + efficiency=costs.at["CCGT", "efficiency"], + ) + + elif tech.startswith("nuclear"): + nuclear = ( + ppl.query("carrier == 'nuclear'").groupby("bus", as_index=False).first() + ) + n.madd( + "Generator", + nuclear.index, + suffix=" nuclear", + bus=nuclear["bus"], + carrier=tech, + p_nom_extendable=True, + p_nom=0.0, + capital_cost=costs.at["nuclear", "capital_cost"], + marginal_cost=costs.at["nuclear", "marginal_cost"], + efficiency=costs.at["nuclear", "efficiency"], + ) else: - raise NotImplementedError(f"Adding extendable generators for carrier " - "'{tech}' is not implemented, yet. " - "Only OCGT, CCGT and nuclear are allowed at the moment.") + raise NotImplementedError( + "Adding extendable generators for carrier " + "'{tech}' is not implemented, yet. " + "Only OCGT, CCGT and nuclear are allowed at the moment." + ) +def attach_OPSD_renewables(n, tech_map): + tech_string = ", ".join(sum(tech_map.values(), [])) + logger.info(f"Using OPSD renewable capacities for carriers {tech_string}.") -def attach_OPSD_renewables(n, techs): + df = pm.data.OPSD_VRE().powerplant.convert_country_to_alpha2() + technology_b = ~df.Technology.isin(["Onshore", "Offshore"]) + df["Fueltype"] = df.Fueltype.where(technology_b, df.Technology).replace( + {"Solar": "PV"} + ) + df = df.query("Fueltype in @tech_map").powerplant.convert_country_to_alpha2() - available = ['DE', 'FR', 'PL', 'CH', 'DK', 'CZ', 'SE', 'GB'] - tech_map = {'Onshore': 'onwind', 'Offshore': 'offwind', 'Solar': 'solar'} - countries = set(available) & set(n.buses.country) - tech_map = {k: v for k, v in tech_map.items() if v in techs} - - if not tech_map: - return - - logger.info(f'Using OPSD renewable capacities in {", ".join(countries)} ' - f'for technologies {", ".join(tech_map.values())}.') - - df = pd.concat([pm.data.OPSD_VRE_country(c) for c in countries]) - technology_b = ~df.Technology.isin(['Onshore', 'Offshore']) - df['Fueltype'] = df.Fueltype.where(technology_b, df.Technology) - df = df.query('Fueltype in @tech_map').powerplant.convert_country_to_alpha2() - - for fueltype, carrier_like in tech_map.items(): - gens = n.generators[lambda df: df.carrier.str.contains(carrier_like)] + for fueltype, carriers in tech_map.items(): + gens = n.generators[lambda df: df.carrier.isin(carriers)] buses = n.buses.loc[gens.bus.unique()] - gens_per_bus = gens.groupby('bus').p_nom.count() + gens_per_bus = gens.groupby("bus").p_nom.count() - caps = map_country_bus(df.query('Fueltype == @fueltype'), buses) - caps = caps.groupby(['bus']).Capacity.sum() + caps = map_country_bus(df.query("Fueltype == @fueltype"), buses) + caps = caps.groupby(["bus"]).Capacity.sum() caps = caps / gens_per_bus.reindex(caps.index, fill_value=1) n.generators.p_nom.update(gens.bus.map(caps).dropna()) n.generators.p_nom_min.update(gens.bus.map(caps).dropna()) - def estimate_renewable_capacities(n, config): - - params = config["electricity"]["estimate_renewable_capacities"] - - if not params: - return - - year = params["year"] - tech_map = params["technology_mapping"] - tech_keys = list(tech_map.keys()) + year = config["electricity"]["estimate_renewable_capacities"]["year"] + tech_map = config["electricity"]["estimate_renewable_capacities"][ + "technology_mapping" + ] countries = config["countries"] - expansion_limit = params["expansion_limit"] + expansion_limit = config["electricity"]["estimate_renewable_capacities"][ + "expansion_limit" + ] - if len(countries) == 0: return - if len(tech_map) == 0: return + if not len(countries) or not len(tech_map): + return capacities = pm.data.IRENASTAT().powerplant.convert_country_to_alpha2() - capacities = capacities.query("Year == @year and Technology in @tech_keys and Country in @countries") + capacities = capacities.query( + "Year == @year and Technology in @tech_map and Country in @countries" + ) capacities = capacities.groupby(["Technology", "Country"]).Capacity.sum() - if "capacities" in params: - names = ['Technology', 'Country'] - ds = pd.DataFrame(params['capacities']).unstack().rename_axis(names) - capacities.update(ds) - - logger.info(f"Heuristics applied to distribute renewable capacities [MW] " - f"{capacities.groupby('Country').sum()}") + logger.info( + f"Heuristics applied to distribute renewable capacities [GW]: " + f"\n{capacities.groupby('Technology').sum().div(1e3).round(2)}" + ) for ppm_technology, techs in tech_map.items(): - tech_capacities = capacities.loc[ppm_technology].reindex(countries, fill_value=0.) - tech_i = n.generators.query('carrier in @techs').index - if n.generators.p_nom[tech_i].sum() == 0: - # if no capacities exist, take potentials - base = n.generators_t.p_max_pu.mean() * n.generators.p_nom_max - else: - # if capacities exist, scale them - base = n.generators.p_nom - n.generators.loc[tech_i, 'p_nom'] = ( - base[tech_i] - .groupby(n.generators.bus.map(n.buses.country)) - .transform(lambda s: normed(s) * tech_capacities.at[s.name]) - .where(lambda s: s>0.1, 0.) # only capacities above 100kW - ) - n.generators.loc[tech_i, 'p_nom_min'] = n.generators.loc[tech_i, 'p_nom'] + tech_i = n.generators.query("carrier in @techs").index + stats = capacities.loc[ppm_technology].reindex(countries, fill_value=0.0) + country = n.generators.bus[tech_i].map(n.buses.country) + existent = n.generators.p_nom[tech_i].groupby(country).sum() + missing = stats - existent + dist = n.generators_t.p_max_pu.mean() * n.generators.p_nom_max + + n.generators.loc[tech_i, "p_nom"] += ( + dist[tech_i] + .groupby(country) + .transform(lambda s: normed(s) * missing[s.name]) + .where(lambda s: s > 0.1, 0.0) # only capacities above 100kW + ) + n.generators.loc[tech_i, "p_nom_min"] = n.generators.loc[tech_i, "p_nom"] + if expansion_limit: assert np.isscalar(expansion_limit) - logger.info(f"Reducing capacity expansion limit to {expansion_limit*100:.2f}% of installed capacity.") - n.generators.loc[tech_i, 'p_nom_max'] = float(expansion_limit) * n.generators.loc[tech_i, 'p_nom_min'] + logger.info( + f"Reducing capacity expansion limit to {expansion_limit*100:.2f}% of installed capacity." + ) + n.generators.loc[tech_i, "p_nom_max"] = ( + expansion_limit * n.generators.loc[tech_i, "p_nom_min"] + ) def attach_line_rating(n, rating, s_max_pu, correction_factor, max_voltage_difference, max_line_rating): # TODO: Only considers overhead lines @@ -562,46 +716,148 @@ def attach_line_rating(n, rating, s_max_pu, correction_factor, max_voltage_diffe def add_nice_carrier_names(n, config): carrier_i = n.carriers.index - nice_names = (pd.Series(config['plotting']['nice_names']) - .reindex(carrier_i).fillna(carrier_i.to_series().str.title())) - n.carriers['nice_name'] = nice_names - colors = pd.Series(config['plotting']['tech_colors']).reindex(carrier_i) + nice_names = ( + pd.Series(config["plotting"]["nice_names"]) + .reindex(carrier_i) + .fillna(carrier_i.to_series().str.title()) + ) + n.carriers["nice_name"] = nice_names + colors = pd.Series(config["plotting"]["tech_colors"]).reindex(carrier_i) if colors.isna().any(): missing_i = list(colors.index[colors.isna()]) - logger.warning(f'tech_colors for carriers {missing_i} not defined in config.') - n.carriers['color'] = colors + logger.warning(f"tech_colors for carriers {missing_i} not defined in config.") + n.carriers["color"] = colors + if __name__ == "__main__": - if 'snakemake' not in globals(): + if "snakemake" not in globals(): from _helpers import mock_snakemake - snakemake = mock_snakemake('add_electricity') + + snakemake = mock_snakemake("add_electricity") configure_logging(snakemake) n = pypsa.Network(snakemake.input.base_network) - Nyears = n.snapshot_weightings.objective.sum() / 8760. + Nyears = n.snapshot_weightings.objective.sum() / 8760.0 - costs = load_costs(snakemake.input.tech_costs, snakemake.config['costs'], snakemake.config['electricity'], Nyears) + costs = load_costs( + snakemake.input.tech_costs, + snakemake.config["costs"], + snakemake.config["electricity"], + Nyears, + ) ppl = load_powerplants(snakemake.input.powerplants) - attach_load(n, snakemake.input.regions, snakemake.input.load, snakemake.input.nuts3_shapes, - snakemake.config['countries'], snakemake.config['load']['scaling_factor']) + if "renewable_carriers" in snakemake.config["electricity"]: + renewable_carriers = set(snakemake.config["electricity"]["renewable_carriers"]) + else: + logger.warning( + "Missing key `renewable_carriers` under config entry `electricity`. " + "In future versions, this will raise an error. " + "Falling back to carriers listed under `renewable`." + ) + renewable_carriers = snakemake.config["renewable"] - update_transmission_costs(n, costs, snakemake.config['lines']['length_factor']) + extendable_carriers = snakemake.config["electricity"]["extendable_carriers"] + if not (set(renewable_carriers) & set(extendable_carriers["Generator"])): + logger.warning( + "No renewables found in config entry `extendable_carriers`. " + "In future versions, these have to be explicitly listed. " + "Falling back to all renewables." + ) - extendable_carriers = snakemake.config['electricity']['extendable_carriers'] - carriers = snakemake.config['electricity']['conventional_carriers'] - attach_conventional_generators(n, costs, ppl, carriers, extendable_carriers) + conventional_carriers = snakemake.config["electricity"]["conventional_carriers"] - carriers = snakemake.config['renewable'] - attach_wind_and_solar(n, costs, snakemake.input, carriers, extendable_carriers, snakemake.config['lines']['length_factor']) + attach_load( + n, + snakemake.input.regions, + snakemake.input.load, + snakemake.input.nuts3_shapes, + snakemake.config["countries"], + snakemake.config["load"]["scaling_factor"], + ) - if 'hydro' in snakemake.config['renewable']: - carriers = snakemake.config['renewable']['hydro'].pop('carriers', []) - attach_hydro(n, costs, ppl, snakemake.input.profile_hydro, snakemake.input.hydro_capacities, - carriers, **snakemake.config['renewable']['hydro']) + update_transmission_costs(n, costs, snakemake.config["lines"]["length_factor"]) - techs = snakemake.config['electricity'].get('renewable_capacities_from_OPSD', []) - attach_OPSD_renewables(n, techs) + conventional_inputs = { + k: v for k, v in snakemake.input.items() if k.startswith("conventional_") + } + attach_conventional_generators( + n, + costs, + ppl, + conventional_carriers, + extendable_carriers, + snakemake.config.get("conventional", {}), + conventional_inputs, + ) + + attach_wind_and_solar( + n, + costs, + snakemake.input, + renewable_carriers, + extendable_carriers, + snakemake.config["lines"]["length_factor"], + ) + + if "hydro" in renewable_carriers: + conf = snakemake.config["renewable"]["hydro"] + attach_hydro( + n, + costs, + ppl, + snakemake.input.profile_hydro, + snakemake.input.hydro_capacities, + conf.pop("carriers", []), + **conf, + ) + + if "estimate_renewable_capacities" not in snakemake.config["electricity"]: + logger.warning( + "Missing key `estimate_renewable_capacities` under config entry `electricity`. " + "In future versions, this will raise an error. " + "Falling back to whether ``estimate_renewable_capacities_from_capacity_stats`` is in the config." + ) + if ( + "estimate_renewable_capacities_from_capacity_stats" + in snakemake.config["electricity"] + ): + estimate_renewable_caps = { + "enable": True, + **snakemake.config["electricity"][ + "estimate_renewable_capacities_from_capacity_stats" + ], + } + else: + estimate_renewable_caps = {"enable": False} + else: + estimate_renewable_caps = snakemake.config["electricity"][ + "estimate_renewable_capacities" + ] + if "enable" not in estimate_renewable_caps: + logger.warning( + "Missing key `enable` under config entry `estimate_renewable_capacities`. " + "In future versions, this will raise an error. Falling back to False." + ) + estimate_renewable_caps = {"enable": False} + if "from_opsd" not in estimate_renewable_caps: + logger.warning( + "Missing key `from_opsd` under config entry `estimate_renewable_capacities`. " + "In future versions, this will raise an error. " + "Falling back to whether `renewable_capacities_from_opsd` is non-empty." + ) + from_opsd = bool( + snakemake.config["electricity"].get("renewable_capacities_from_opsd", False) + ) + estimate_renewable_caps["from_opsd"] = from_opsd + + if estimate_renewable_caps["enable"]: + if estimate_renewable_caps["from_opsd"]: + tech_map = snakemake.config["electricity"]["estimate_renewable_capacities"][ + "technology_mapping" + ] + attach_OPSD_renewables(n, tech_map) + estimate_renewable_capacities(n, snakemake.config) estimate_renewable_capacities(n, snakemake.config) @@ -626,4 +882,5 @@ if __name__ == "__main__": add_nice_carrier_names(n, snakemake.config) + n.meta = snakemake.config n.export_to_netcdf(snakemake.output[0]) diff --git a/scripts/add_existing_baseyear.py b/scripts/add_existing_baseyear.py new file mode 100644 index 00000000..5bc0960d --- /dev/null +++ b/scripts/add_existing_baseyear.py @@ -0,0 +1,670 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2020-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Adds existing power and heat generation capacities for initial planning +horizon. +""" + +import logging + +logger = logging.getLogger(__name__) + +import pandas as pd + +idx = pd.IndexSlice + +from types import SimpleNamespace + +import country_converter as coco +import numpy as np +import pypsa +import xarray as xr +from _helpers import override_component_attrs, update_config_with_sector_opts +from prepare_sector_network import cluster_heat_buses, define_spatial, prepare_costs + +cc = coco.CountryConverter() + +spatial = SimpleNamespace() + + +def add_build_year_to_new_assets(n, baseyear): + """ + Parameters + ---------- + n : pypsa.Network + baseyear : int + year in which optimized assets are built + """ + # Give assets with lifetimes and no build year the build year baseyear + for c in n.iterate_components(["Link", "Generator", "Store"]): + assets = c.df.index[(c.df.lifetime != np.inf) & (c.df.build_year == 0)] + c.df.loc[assets, "build_year"] = baseyear + + # add -baseyear to name + rename = pd.Series(c.df.index, c.df.index) + rename[assets] += "-" + str(baseyear) + c.df.rename(index=rename, inplace=True) + + # rename time-dependent + selection = n.component_attrs[c.name].type.str.contains( + "series" + ) & n.component_attrs[c.name].status.str.contains("Input") + for attr in n.component_attrs[c.name].index[selection]: + c.pnl[attr].rename(columns=rename, inplace=True) + + +def add_existing_renewables(df_agg): + """ + Append existing renewables to the df_agg pd.DataFrame with the conventional + power plants. + """ + carriers = {"solar": "solar", "onwind": "onwind", "offwind": "offwind-ac"} + + for tech in ["solar", "onwind", "offwind"]: + carrier = carriers[tech] + + df = pd.read_csv(snakemake.input[f"existing_{tech}"], index_col=0).fillna(0.0) + df.columns = df.columns.astype(int) + df.index = cc.convert(df.index, to="iso2") + + # calculate yearly differences + df.insert(loc=0, value=0.0, column="1999") + df = df.diff(axis=1).drop("1999", axis=1).clip(lower=0) + + # distribute capacities among nodes according to capacity factor + # weighting with nodal_fraction + elec_buses = n.buses.index[n.buses.carrier == "AC"].union( + n.buses.index[n.buses.carrier == "DC"] + ) + nodal_fraction = pd.Series(0.0, elec_buses) + + for country in n.buses.loc[elec_buses, "country"].unique(): + gens = n.generators.index[ + (n.generators.index.str[:2] == country) + & (n.generators.carrier == carrier) + ] + cfs = n.generators_t.p_max_pu[gens].mean() + cfs_key = cfs / cfs.sum() + nodal_fraction.loc[n.generators.loc[gens, "bus"]] = cfs_key.values + + nodal_df = df.loc[n.buses.loc[elec_buses, "country"]] + nodal_df.index = elec_buses + nodal_df = nodal_df.multiply(nodal_fraction, axis=0) + + for year in nodal_df.columns: + for node in nodal_df.index: + name = f"{node}-{tech}-{year}" + capacity = nodal_df.loc[node, year] + if capacity > 0.0: + df_agg.at[name, "Fueltype"] = tech + df_agg.at[name, "Capacity"] = capacity + df_agg.at[name, "DateIn"] = year + df_agg.at[name, "cluster_bus"] = node + + +def add_power_capacities_installed_before_baseyear(n, grouping_years, costs, baseyear): + """ + Parameters + ---------- + n : pypsa.Network + grouping_years : + intervals to group existing capacities + costs : + to read lifetime to estimate YearDecomissioning + baseyear : int + """ + logger.debug( + f"Adding power capacities installed before {baseyear} from powerplants.csv" + ) + + df_agg = pd.read_csv(snakemake.input.powerplants, index_col=0) + + rename_fuel = { + "Hard Coal": "coal", + "Lignite": "lignite", + "Nuclear": "nuclear", + "Oil": "oil", + "OCGT": "OCGT", + "CCGT": "CCGT", + "Natural Gas": "gas", + "Bioenergy": "urban central solid biomass CHP", + } + + fueltype_to_drop = [ + "Hydro", + "Wind", + "Solar", + "Geothermal", + "Waste", + "Other", + "CCGT, Thermal", + ] + + technology_to_drop = ["Pv", "Storage Technologies"] + + # drop unused fueltyps and technologies + df_agg.drop(df_agg.index[df_agg.Fueltype.isin(fueltype_to_drop)], inplace=True) + df_agg.drop(df_agg.index[df_agg.Technology.isin(technology_to_drop)], inplace=True) + df_agg.Fueltype = df_agg.Fueltype.map(rename_fuel) + + # Intermediate fix for DateIn & DateOut + # Fill missing DateIn + biomass_i = df_agg.loc[df_agg.Fueltype == "urban central solid biomass CHP"].index + mean = df_agg.loc[biomass_i, "DateIn"].mean() + df_agg.loc[biomass_i, "DateIn"] = df_agg.loc[biomass_i, "DateIn"].fillna(int(mean)) + # Fill missing DateOut + dateout = ( + df_agg.loc[biomass_i, "DateIn"] + + snakemake.config["costs"]["fill_values"]["lifetime"] + ) + df_agg.loc[biomass_i, "DateOut"] = df_agg.loc[biomass_i, "DateOut"].fillna(dateout) + + # drop assets which are already phased out / decommissioned + phased_out = df_agg[df_agg["DateOut"] < baseyear].index + df_agg.drop(phased_out, inplace=True) + + # calculate remaining lifetime before phase-out (+1 because assuming + # phase out date at the end of the year) + df_agg["lifetime"] = df_agg.DateOut - df_agg.DateIn + 1 + + # assign clustered bus + busmap_s = pd.read_csv(snakemake.input.busmap_s, index_col=0).squeeze() + busmap = pd.read_csv(snakemake.input.busmap, index_col=0).squeeze() + + inv_busmap = {} + for k, v in busmap.items(): + inv_busmap[v] = inv_busmap.get(v, []) + [k] + + clustermaps = busmap_s.map(busmap) + clustermaps.index = clustermaps.index.astype(int) + + df_agg["cluster_bus"] = df_agg.bus.map(clustermaps) + + # include renewables in df_agg + add_existing_renewables(df_agg) + + df_agg["grouping_year"] = np.take( + grouping_years, np.digitize(df_agg.DateIn, grouping_years, right=True) + ) + + df = df_agg.pivot_table( + index=["grouping_year", "Fueltype"], + columns="cluster_bus", + values="Capacity", + aggfunc="sum", + ) + + lifetime = df_agg.pivot_table( + index=["grouping_year", "Fueltype"], + columns="cluster_bus", + values="lifetime", + aggfunc="mean", # currently taken mean for clustering lifetimes + ) + + carrier = { + "OCGT": "gas", + "CCGT": "gas", + "coal": "coal", + "oil": "oil", + "lignite": "lignite", + "nuclear": "uranium", + "urban central solid biomass CHP": "biomass", + } + + for grouping_year, generator in df.index: + # capacity is the capacity in MW at each node for this + capacity = df.loc[grouping_year, generator] + capacity = capacity[~capacity.isna()] + capacity = capacity[ + capacity > snakemake.config["existing_capacities"]["threshold_capacity"] + ] + suffix = "-ac" if generator == "offwind" else "" + name_suffix = f" {generator}{suffix}-{grouping_year}" + asset_i = capacity.index + name_suffix + if generator in ["solar", "onwind", "offwind"]: + # to consider electricity grid connection costs or a split between + # solar utility and rooftop as well, rather take cost assumptions + # from existing network than from the cost database + capital_cost = n.generators.loc[ + n.generators.carrier == generator + suffix, "capital_cost" + ].mean() + marginal_cost = n.generators.loc[ + n.generators.carrier == generator + suffix, "marginal_cost" + ].mean() + # check if assets are already in network (e.g. for 2020) + already_build = n.generators.index.intersection(asset_i) + new_build = asset_i.difference(n.generators.index) + + # this is for the year 2020 + if not already_build.empty: + n.generators.loc[already_build, "p_nom_min"] = capacity.loc[ + already_build.str.replace(name_suffix, "") + ].values + new_capacity = capacity.loc[new_build.str.replace(name_suffix, "")] + + if "m" in snakemake.wildcards.clusters: + for ind in new_capacity.index: + # existing capacities are split evenly among regions in every country + inv_ind = [i for i in inv_busmap[ind]] + + # for offshore the splitting only includes coastal regions + inv_ind = [ + i for i in inv_ind if (i + name_suffix) in n.generators.index + ] + + p_max_pu = n.generators_t.p_max_pu[ + [i + name_suffix for i in inv_ind] + ] + p_max_pu.columns = [i + name_suffix for i in inv_ind] + + n.madd( + "Generator", + [i + name_suffix for i in inv_ind], + bus=ind, + carrier=generator, + p_nom=new_capacity[ind] + / len(inv_ind), # split among regions in a country + marginal_cost=marginal_cost, + capital_cost=capital_cost, + efficiency=costs.at[generator, "efficiency"], + p_max_pu=p_max_pu, + build_year=grouping_year, + lifetime=costs.at[generator, "lifetime"], + ) + + else: + p_max_pu = n.generators_t.p_max_pu[ + capacity.index + f" {generator}{suffix}-{baseyear}" + ] + + if not new_build.empty: + n.madd( + "Generator", + new_capacity.index, + suffix=" " + name_suffix, + bus=new_capacity.index, + carrier=generator, + p_nom=new_capacity, + marginal_cost=marginal_cost, + capital_cost=capital_cost, + efficiency=costs.at[generator, "efficiency"], + p_max_pu=p_max_pu.rename(columns=n.generators.bus), + build_year=grouping_year, + lifetime=costs.at[generator, "lifetime"], + ) + + else: + bus0 = vars(spatial)[carrier[generator]].nodes + if "EU" not in vars(spatial)[carrier[generator]].locations: + bus0 = bus0.intersection(capacity.index + " gas") + + already_build = n.links.index.intersection(asset_i) + new_build = asset_i.difference(n.links.index) + lifetime_assets = lifetime.loc[grouping_year, generator].dropna() + + # this is for the year 2020 + if not already_build.empty: + n.links.loc[already_build, "p_nom_min"] = capacity.loc[ + already_build.str.replace(name_suffix, "") + ].values + + if not new_build.empty: + new_capacity = capacity.loc[new_build.str.replace(name_suffix, "")] + + if generator != "urban central solid biomass CHP": + n.madd( + "Link", + new_capacity.index, + suffix=name_suffix, + bus0=bus0, + bus1=new_capacity.index, + bus2="co2 atmosphere", + carrier=generator, + marginal_cost=costs.at[generator, "efficiency"] + * costs.at[generator, "VOM"], # NB: VOM is per MWel + capital_cost=costs.at[generator, "efficiency"] + * costs.at[generator, "fixed"], # NB: fixed cost is per MWel + p_nom=new_capacity / costs.at[generator, "efficiency"], + efficiency=costs.at[generator, "efficiency"], + efficiency2=costs.at[carrier[generator], "CO2 intensity"], + build_year=grouping_year, + lifetime=lifetime_assets.loc[new_capacity.index], + ) + else: + key = "central solid biomass CHP" + n.madd( + "Link", + new_capacity.index, + suffix=name_suffix, + bus0=spatial.biomass.df.loc[new_capacity.index]["nodes"].values, + bus1=new_capacity.index, + bus2=new_capacity.index + " urban central heat", + carrier=generator, + p_nom=new_capacity / costs.at[key, "efficiency"], + capital_cost=costs.at[key, "fixed"] + * costs.at[key, "efficiency"], + marginal_cost=costs.at[key, "VOM"], + efficiency=costs.at[key, "efficiency"], + build_year=grouping_year, + efficiency2=costs.at[key, "efficiency-heat"], + lifetime=lifetime_assets.loc[new_capacity.index], + ) + # check if existing capacities are larger than technical potential + existing_large = n.generators[ + n.generators["p_nom_min"] > n.generators["p_nom_max"] + ].index + if len(existing_large): + logger.warning( + f"Existing capacities larger than technical potential for {existing_large},\ + adjust technical potential to existing capacities" + ) + n.generators.loc[existing_large, "p_nom_max"] = n.generators.loc[ + existing_large, "p_nom_min" + ] + + +def add_heating_capacities_installed_before_baseyear( + n, + baseyear, + grouping_years, + ashp_cop, + gshp_cop, + time_dep_hp_cop, + costs, + default_lifetime, +): + """ + Parameters + ---------- + n : pypsa.Network + baseyear : last year covered in the existing capacities database + grouping_years : intervals to group existing capacities + linear decommissioning of heating capacities from 2020 to 2045 is + currently assumed heating capacities split between residential and + services proportional to heating load in both 50% capacities + in rural busess 50% in urban buses + """ + logger.debug(f"Adding heating capacities installed before {baseyear}") + + # Add existing heating capacities, data comes from the study + # "Mapping and analyses of the current and future (2020 - 2030) + # heating/cooling fuel deployment (fossil/renewables) " + # https://ec.europa.eu/energy/studies/mapping-and-analyses-current-and-future-2020-2030-heatingcooling-fuel-deployment_en?redir=1 + # file: "WP2_DataAnnex_1_BuildingTechs_ForPublication_201603.xls" -> "existing_heating_raw.csv". + # TODO start from original file + + # retrieve existing heating capacities + techs = [ + "gas boiler", + "oil boiler", + "resistive heater", + "air heat pump", + "ground heat pump", + ] + df = pd.read_csv(snakemake.input.existing_heating, index_col=0, header=0) + + # data for Albania, Montenegro and Macedonia not included in database + df.loc["Albania"] = np.nan + df.loc["Montenegro"] = np.nan + df.loc["Macedonia"] = np.nan + + df.fillna(0.0, inplace=True) + + # convert GW to MW + df *= 1e3 + + df.index = cc.convert(df.index, to="iso2") + + # coal and oil boilers are assimilated to oil boilers + df["oil boiler"] = df["oil boiler"] + df["coal boiler"] + df.drop(["coal boiler"], axis=1, inplace=True) + + # distribute technologies to nodes by population + pop_layout = pd.read_csv(snakemake.input.clustered_pop_layout, index_col=0) + + nodal_df = df.loc[pop_layout.ct] + nodal_df.index = pop_layout.index + nodal_df = nodal_df.multiply(pop_layout.fraction, axis=0) + + # split existing capacities between residential and services + # proportional to energy demand + ratio_residential = pd.Series( + [ + ( + n.loads_t.p_set.sum()[f"{node} residential rural heat"] + / ( + n.loads_t.p_set.sum()[f"{node} residential rural heat"] + + n.loads_t.p_set.sum()[f"{node} services rural heat"] + ) + ) + for node in nodal_df.index + ], + index=nodal_df.index, + ) + + for tech in techs: + nodal_df["residential " + tech] = nodal_df[tech] * ratio_residential + nodal_df["services " + tech] = nodal_df[tech] * (1 - ratio_residential) + + names = [ + "residential rural", + "services rural", + "residential urban decentral", + "services urban decentral", + "urban central", + ] + + nodes = {} + p_nom = {} + for name in names: + name_type = "central" if name == "urban central" else "decentral" + nodes[name] = pd.Index( + [ + n.buses.at[index, "location"] + for index in n.buses.index[ + n.buses.index.str.contains(name) + & n.buses.index.str.contains("heat") + ] + ] + ) + heat_pump_type = "air" if "urban" in name else "ground" + heat_type = "residential" if "residential" in name else "services" + + if name == "urban central": + p_nom[name] = nodal_df["air heat pump"][nodes[name]] + else: + p_nom[name] = nodal_df[f"{heat_type} {heat_pump_type} heat pump"][ + nodes[name] + ] + + # Add heat pumps + costs_name = f"decentral {heat_pump_type}-sourced heat pump" + + cop = {"air": ashp_cop, "ground": gshp_cop} + + if time_dep_hp_cop: + efficiency = cop[heat_pump_type][nodes[name]] + else: + efficiency = costs.at[costs_name, "efficiency"] + + for i, grouping_year in enumerate(grouping_years): + if int(grouping_year) + default_lifetime <= int(baseyear): + continue + + # installation is assumed to be linear for the past 25 years (default lifetime) + ratio = (int(grouping_year) - int(grouping_years[i - 1])) / default_lifetime + + n.madd( + "Link", + nodes[name], + suffix=f" {name} {heat_pump_type} heat pump-{grouping_year}", + bus0=nodes[name], + bus1=nodes[name] + " " + name + " heat", + carrier=f"{name} {heat_pump_type} heat pump", + efficiency=efficiency, + capital_cost=costs.at[costs_name, "efficiency"] + * costs.at[costs_name, "fixed"], + p_nom=p_nom[name] * ratio / costs.at[costs_name, "efficiency"], + build_year=int(grouping_year), + lifetime=costs.at[costs_name, "lifetime"], + ) + + # add resistive heater, gas boilers and oil boilers + # (50% capacities to rural buses, 50% to urban buses) + n.madd( + "Link", + nodes[name], + suffix=f" {name} resistive heater-{grouping_year}", + bus0=nodes[name], + bus1=nodes[name] + " " + name + " heat", + carrier=name + " resistive heater", + efficiency=costs.at[name_type + " resistive heater", "efficiency"], + capital_cost=costs.at[name_type + " resistive heater", "efficiency"] + * costs.at[name_type + " resistive heater", "fixed"], + p_nom=0.5 + * nodal_df[f"{heat_type} resistive heater"][nodes[name]] + * ratio + / costs.at[name_type + " resistive heater", "efficiency"], + build_year=int(grouping_year), + lifetime=costs.at[costs_name, "lifetime"], + ) + + n.madd( + "Link", + nodes[name], + suffix=f" {name} gas boiler-{grouping_year}", + bus0=spatial.gas.nodes, + bus1=nodes[name] + " " + name + " heat", + bus2="co2 atmosphere", + carrier=name + " gas boiler", + efficiency=costs.at[name_type + " gas boiler", "efficiency"], + efficiency2=costs.at["gas", "CO2 intensity"], + capital_cost=costs.at[name_type + " gas boiler", "efficiency"] + * costs.at[name_type + " gas boiler", "fixed"], + p_nom=0.5 + * nodal_df[f"{heat_type} gas boiler"][nodes[name]] + * ratio + / costs.at[name_type + " gas boiler", "efficiency"], + build_year=int(grouping_year), + lifetime=costs.at[name_type + " gas boiler", "lifetime"], + ) + + n.madd( + "Link", + nodes[name], + suffix=f" {name} oil boiler-{grouping_year}", + bus0=spatial.oil.nodes, + bus1=nodes[name] + " " + name + " heat", + bus2="co2 atmosphere", + carrier=name + " oil boiler", + efficiency=costs.at["decentral oil boiler", "efficiency"], + efficiency2=costs.at["oil", "CO2 intensity"], + capital_cost=costs.at["decentral oil boiler", "efficiency"] + * costs.at["decentral oil boiler", "fixed"], + p_nom=0.5 + * nodal_df[f"{heat_type} oil boiler"][nodes[name]] + * ratio + / costs.at["decentral oil boiler", "efficiency"], + build_year=int(grouping_year), + lifetime=costs.at[name_type + " gas boiler", "lifetime"], + ) + + # delete links with p_nom=nan corresponding to extra nodes in country + n.mremove( + "Link", + [ + index + for index in n.links.index.to_list() + if str(grouping_year) in index and np.isnan(n.links.p_nom[index]) + ], + ) + + # delete links with capacities below threshold + threshold = snakemake.config["existing_capacities"]["threshold_capacity"] + n.mremove( + "Link", + [ + index + for index in n.links.index.to_list() + if str(grouping_year) in index and n.links.p_nom[index] < threshold + ], + ) + + +# %% +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake( + "add_existing_baseyear", + simpl="", + clusters="45", + ll="v1.0", + opts="", + sector_opts="8760H-T-H-B-I-A-solar+p3-dist1", + planning_horizons=2020, + ) + + logging.basicConfig(level=snakemake.config["logging"]["level"]) + + update_config_with_sector_opts(snakemake.config, snakemake.wildcards.sector_opts) + + options = snakemake.config["sector"] + opts = snakemake.wildcards.sector_opts.split("-") + + baseyear = snakemake.config["scenario"]["planning_horizons"][0] + + overrides = override_component_attrs(snakemake.input.overrides) + n = pypsa.Network(snakemake.input.network, override_component_attrs=overrides) + # define spatial resolution of carriers + spatial = define_spatial(n.buses[n.buses.carrier == "AC"].index, options) + add_build_year_to_new_assets(n, baseyear) + + Nyears = n.snapshot_weightings.generators.sum() / 8760.0 + costs = prepare_costs( + snakemake.input.costs, + snakemake.config["costs"], + Nyears, + ) + + grouping_years_power = snakemake.config["existing_capacities"][ + "grouping_years_power" + ] + grouping_years_heat = snakemake.config["existing_capacities"]["grouping_years_heat"] + add_power_capacities_installed_before_baseyear( + n, grouping_years_power, costs, baseyear + ) + + if "H" in opts: + time_dep_hp_cop = options["time_dep_hp_cop"] + ashp_cop = ( + xr.open_dataarray(snakemake.input.cop_air_total) + .to_pandas() + .reindex(index=n.snapshots) + ) + gshp_cop = ( + xr.open_dataarray(snakemake.input.cop_soil_total) + .to_pandas() + .reindex(index=n.snapshots) + ) + default_lifetime = snakemake.config["costs"]["fill_values"]["lifetime"] + add_heating_capacities_installed_before_baseyear( + n, + baseyear, + grouping_years_heat, + ashp_cop, + gshp_cop, + time_dep_hp_cop, + costs, + default_lifetime, + ) + + if options.get("cluster_heat_buses", False): + cluster_heat_buses(n) + + n.meta = dict(snakemake.config, **dict(wildcards=dict(snakemake.wildcards))) + + n.export_to_netcdf(snakemake.output[0]) diff --git a/scripts/add_extra_components.py b/scripts/add_extra_components.py index d65fa15d..020370e5 100644 --- a/scripts/add_extra_components.py +++ b/scripts/add_extra_components.py @@ -1,4 +1,5 @@ -# SPDX-FileCopyrightText: : 2017-2020 The PyPSA-Eur Authors +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2017-2023 The PyPSA-Eur Authors # # SPDX-License-Identifier: MIT @@ -13,7 +14,7 @@ Relevant Settings costs: year: - USD2013_to_EUR2013: + version: dicountrate: emission_prices: @@ -26,13 +27,13 @@ Relevant Settings Store: .. seealso:: - Documentation of the configuration file ``config.yaml`` at :ref:`costs_cf`, + Documentation of the configuration file ``config/config.yaml`` at :ref:`costs_cf`, :ref:`electricity_cf` Inputs ------ -- ``data/costs.csv``: The database of cost assumptions for all included technologies for specific years from various sources; e.g. discount rate, lifetime, investment (CAPEX), fixed operation and maintenance (FOM), variable operation and maintenance (VOM), fuel costs, efficiency, carbon-dioxide intensity. +- ``resources/costs.csv``: The database of cost assumptions for all included technologies for specific years from various sources; e.g. discount rate, lifetime, investment (CAPEX), fixed operation and maintenance (FOM), variable operation and maintenance (VOM), fuel costs, efficiency, carbon-dioxide intensity. Outputs ------- @@ -43,21 +44,23 @@ Outputs Description ----------- -The rule :mod:`add_extra_components` attaches additional extendable components to the clustered and simplified network. These can be configured in the ``config.yaml`` at ``electricity: extendable_carriers:``. It processes ``networks/elec_s{simpl}_{clusters}.nc`` to build ``networks/elec_s{simpl}_{clusters}_ec.nc``, which in contrast to the former (depending on the configuration) contain with **zero** initial capacity +The rule :mod:`add_extra_components` attaches additional extendable components to the clustered and simplified network. These can be configured in the ``config/config.yaml`` at ``electricity: extendable_carriers:``. It processes ``networks/elec_s{simpl}_{clusters}.nc`` to build ``networks/elec_s{simpl}_{clusters}_ec.nc``, which in contrast to the former (depending on the configuration) contain with **zero** initial capacity - ``StorageUnits`` of carrier 'H2' and/or 'battery'. If this option is chosen, every bus is given an extendable ``StorageUnit`` of the corresponding carrier. The energy and power capacities are linked through a parameter that specifies the energy capacity as maximum hours at full dispatch power and is configured in ``electricity: max_hours:``. This linkage leads to one investment variable per storage unit. The default ``max_hours`` lead to long-term hydrogen and short-term battery storage units. - ``Stores`` of carrier 'H2' and/or 'battery' in combination with ``Links``. If this option is chosen, the script adds extra buses with corresponding carrier where energy ``Stores`` are attached and which are connected to the corresponding power buses via two links, one each for charging and discharging. This leads to three investment variables for the energy capacity, charging and discharging capacity of the storage unit. """ import logging -from _helpers import configure_logging -import pypsa -import pandas as pd import numpy as np - -from add_electricity import (load_costs, add_nice_carrier_names, - _add_missing_carriers_from_costs) +import pandas as pd +import pypsa +from _helpers import configure_logging +from add_electricity import ( + _add_missing_carriers_from_costs, + add_nice_carrier_names, + load_costs, +) idx = pd.IndexSlice @@ -65,8 +68,8 @@ logger = logging.getLogger(__name__) def attach_storageunits(n, costs, elec_opts): - carriers = elec_opts['extendable_carriers']['StorageUnit'] - max_hours = elec_opts['max_hours'] + carriers = elec_opts["extendable_carriers"]["StorageUnit"] + max_hours = elec_opts["max_hours"] _add_missing_carriers_from_costs(n, costs, carriers) @@ -76,128 +79,168 @@ def attach_storageunits(n, costs, elec_opts): lookup_dispatch = {"H2": "fuel cell", "battery": "battery inverter"} for carrier in carriers: - n.madd("StorageUnit", buses_i, ' ' + carrier, - bus=buses_i, - carrier=carrier, - p_nom_extendable=True, - capital_cost=costs.at[carrier, 'capital_cost'], - marginal_cost=costs.at[carrier, 'marginal_cost'], - efficiency_store=costs.at[lookup_store[carrier], 'efficiency'], - efficiency_dispatch=costs.at[lookup_dispatch[carrier], 'efficiency'], - max_hours=max_hours[carrier], - cyclic_state_of_charge=True) + roundtrip_correction = 0.5 if carrier == "battery" else 1 + + n.madd( + "StorageUnit", + buses_i, + " " + carrier, + bus=buses_i, + carrier=carrier, + p_nom_extendable=True, + capital_cost=costs.at[carrier, "capital_cost"], + marginal_cost=costs.at[carrier, "marginal_cost"], + efficiency_store=costs.at[lookup_store[carrier], "efficiency"] + ** roundtrip_correction, + efficiency_dispatch=costs.at[lookup_dispatch[carrier], "efficiency"] + ** roundtrip_correction, + max_hours=max_hours[carrier], + cyclic_state_of_charge=True, + ) def attach_stores(n, costs, elec_opts): - carriers = elec_opts['extendable_carriers']['Store'] + carriers = elec_opts["extendable_carriers"]["Store"] _add_missing_carriers_from_costs(n, costs, carriers) buses_i = n.buses.index - bus_sub_dict = {k: n.buses[k].values for k in ['x', 'y', 'country']} + bus_sub_dict = {k: n.buses[k].values for k in ["x", "y", "country"]} - if 'H2' in carriers: + if "H2" in carriers: h2_buses_i = n.madd("Bus", buses_i + " H2", carrier="H2", **bus_sub_dict) - n.madd("Store", h2_buses_i, - bus=h2_buses_i, - carrier='H2', - e_nom_extendable=True, - e_cyclic=True, - capital_cost=costs.at["hydrogen storage", "capital_cost"]) + n.madd( + "Store", + h2_buses_i, + bus=h2_buses_i, + carrier="H2", + e_nom_extendable=True, + e_cyclic=True, + capital_cost=costs.at["hydrogen storage underground", "capital_cost"], + ) - n.madd("Link", h2_buses_i + " Electrolysis", - bus0=buses_i, - bus1=h2_buses_i, - carrier='H2 electrolysis', - p_nom_extendable=True, - efficiency=costs.at["electrolysis", "efficiency"], - capital_cost=costs.at["electrolysis", "capital_cost"], - marginal_cost=costs.at["electrolysis", "marginal_cost"]) + n.madd( + "Link", + h2_buses_i + " Electrolysis", + bus0=buses_i, + bus1=h2_buses_i, + carrier="H2 electrolysis", + p_nom_extendable=True, + efficiency=costs.at["electrolysis", "efficiency"], + capital_cost=costs.at["electrolysis", "capital_cost"], + marginal_cost=costs.at["electrolysis", "marginal_cost"], + ) - n.madd("Link", h2_buses_i + " Fuel Cell", - bus0=h2_buses_i, - bus1=buses_i, - carrier='H2 fuel cell', - p_nom_extendable=True, - efficiency=costs.at["fuel cell", "efficiency"], - #NB: fixed cost is per MWel - capital_cost=costs.at["fuel cell", "capital_cost"] * costs.at["fuel cell", "efficiency"], - marginal_cost=costs.at["fuel cell", "marginal_cost"]) + n.madd( + "Link", + h2_buses_i + " Fuel Cell", + bus0=h2_buses_i, + bus1=buses_i, + carrier="H2 fuel cell", + p_nom_extendable=True, + efficiency=costs.at["fuel cell", "efficiency"], + # NB: fixed cost is per MWel + capital_cost=costs.at["fuel cell", "capital_cost"] + * costs.at["fuel cell", "efficiency"], + marginal_cost=costs.at["fuel cell", "marginal_cost"], + ) - if 'battery' in carriers: - b_buses_i = n.madd("Bus", buses_i + " battery", carrier="battery", **bus_sub_dict) + if "battery" in carriers: + b_buses_i = n.madd( + "Bus", buses_i + " battery", carrier="battery", **bus_sub_dict + ) - n.madd("Store", b_buses_i, - bus=b_buses_i, - carrier='battery', - e_cyclic=True, - e_nom_extendable=True, - capital_cost=costs.at['battery storage', 'capital_cost'], - marginal_cost=costs.at["battery", "marginal_cost"]) + n.madd( + "Store", + b_buses_i, + bus=b_buses_i, + carrier="battery", + e_cyclic=True, + e_nom_extendable=True, + capital_cost=costs.at["battery storage", "capital_cost"], + marginal_cost=costs.at["battery", "marginal_cost"], + ) - n.madd("Link", b_buses_i + " charger", - bus0=buses_i, - bus1=b_buses_i, - carrier='battery charger', - efficiency=costs.at['battery inverter', 'efficiency'], - capital_cost=costs.at['battery inverter', 'capital_cost'], - p_nom_extendable=True, - marginal_cost=costs.at["battery inverter", "marginal_cost"]) + n.madd( + "Link", + b_buses_i + " charger", + bus0=buses_i, + bus1=b_buses_i, + carrier="battery charger", + # the efficiencies are "round trip efficiencies" + efficiency=costs.at["battery inverter", "efficiency"] ** 0.5, + capital_cost=costs.at["battery inverter", "capital_cost"], + p_nom_extendable=True, + marginal_cost=costs.at["battery inverter", "marginal_cost"], + ) - n.madd("Link", b_buses_i + " discharger", - bus0=b_buses_i, - bus1=buses_i, - carrier='battery discharger', - efficiency=costs.at['battery inverter','efficiency'], - p_nom_extendable=True, - marginal_cost=costs.at["battery inverter", "marginal_cost"]) + n.madd( + "Link", + b_buses_i + " discharger", + bus0=b_buses_i, + bus1=buses_i, + carrier="battery discharger", + efficiency=costs.at["battery inverter", "efficiency"] ** 0.5, + p_nom_extendable=True, + marginal_cost=costs.at["battery inverter", "marginal_cost"], + ) def attach_hydrogen_pipelines(n, costs, elec_opts): - ext_carriers = elec_opts['extendable_carriers'] - as_stores = ext_carriers.get('Store', []) + ext_carriers = elec_opts["extendable_carriers"] + as_stores = ext_carriers.get("Store", []) - if 'H2 pipeline' not in ext_carriers.get('Link',[]): return + if "H2 pipeline" not in ext_carriers.get("Link", []): + return - assert 'H2' in as_stores, ("Attaching hydrogen pipelines requires hydrogen " - "storage to be modelled as Store-Link-Bus combination. See " - "`config.yaml` at `electricity: extendable_carriers: Store:`.") + assert "H2" in as_stores, ( + "Attaching hydrogen pipelines requires hydrogen " + "storage to be modelled as Store-Link-Bus combination. See " + "`config.yaml` at `electricity: extendable_carriers: Store:`." + ) # determine bus pairs - attrs = ["bus0","bus1","length"] - candidates = pd.concat([n.lines[attrs], n.links.query('carrier=="DC"')[attrs]])\ - .reset_index(drop=True) + attrs = ["bus0", "bus1", "length"] + candidates = pd.concat( + [n.lines[attrs], n.links.query('carrier=="DC"')[attrs]] + ).reset_index(drop=True) # remove bus pair duplicates regardless of order of bus0 and bus1 - h2_links = candidates[~pd.DataFrame(np.sort(candidates[['bus0', 'bus1']])).duplicated()] + h2_links = candidates[ + ~pd.DataFrame(np.sort(candidates[["bus0", "bus1"]])).duplicated() + ] h2_links.index = h2_links.apply(lambda c: f"H2 pipeline {c.bus0}-{c.bus1}", axis=1) # add pipelines - n.madd("Link", - h2_links.index, - bus0=h2_links.bus0.values + " H2", - bus1=h2_links.bus1.values + " H2", - p_min_pu=-1, - p_nom_extendable=True, - length=h2_links.length.values, - capital_cost=costs.at['H2 pipeline','capital_cost']*h2_links.length, - efficiency=costs.at['H2 pipeline','efficiency'], - carrier="H2 pipeline") + n.madd( + "Link", + h2_links.index, + bus0=h2_links.bus0.values + " H2", + bus1=h2_links.bus1.values + " H2", + p_min_pu=-1, + p_nom_extendable=True, + length=h2_links.length.values, + capital_cost=costs.at["H2 pipeline", "capital_cost"] * h2_links.length, + efficiency=costs.at["H2 pipeline", "efficiency"], + carrier="H2 pipeline", + ) if __name__ == "__main__": - if 'snakemake' not in globals(): + if "snakemake" not in globals(): from _helpers import mock_snakemake - snakemake = mock_snakemake('add_extra_components', network='elec', - simpl='', clusters=40) + + snakemake = mock_snakemake("add_extra_components", simpl="", clusters=5) configure_logging(snakemake) n = pypsa.Network(snakemake.input.network) - elec_config = snakemake.config['electricity'] - - Nyears = n.snapshot_weightings.objective.sum() / 8760. - costs = load_costs(snakemake.input.tech_costs, snakemake.config['costs'], elec_config, Nyears) + elec_config = snakemake.config["electricity"] + + Nyears = n.snapshot_weightings.objective.sum() / 8760.0 + costs = load_costs( + snakemake.input.tech_costs, snakemake.config["costs"], elec_config, Nyears + ) attach_storageunits(n, costs, elec_config) attach_stores(n, costs, elec_config) @@ -205,4 +248,5 @@ if __name__ == "__main__": add_nice_carrier_names(n, snakemake.config) + n.meta = dict(snakemake.config, **dict(wildcards=dict(snakemake.wildcards))) n.export_to_netcdf(snakemake.output[0]) diff --git a/scripts/base_network.py b/scripts/base_network.py index 50ec8e53..53b4dca3 100644 --- a/scripts/base_network.py +++ b/scripts/base_network.py @@ -1,10 +1,14 @@ -# SPDX-FileCopyrightText: : 2017-2020 The PyPSA-Eur Authors +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2017-2023 The PyPSA-Eur Authors # # SPDX-License-Identifier: MIT # coding: utf-8 """ -Creates the network topology from a `ENTSO-E map extract `_ (March 2022) as a PyPSA network. +Creates the network topology from a `ENTSO-E map extract. + +`_ (March 2022) as a PyPSA +network. Relevant Settings ----------------- @@ -34,7 +38,7 @@ Relevant Settings type: .. seealso:: - Documentation of the configuration file ``config.yaml`` at + Documentation of the configuration file ``config/config.yaml`` at :ref:`snapshots_cf`, :ref:`toplevel_cf`, :ref:`electricity_cf`, :ref:`load_cf`, :ref:`lines_cf`, :ref:`links_cf`, :ref:`transformers_cf` @@ -54,30 +58,29 @@ Outputs - ``networks/base.nc`` - .. image:: ../img/base.png + .. image:: img/base.png :scale: 33 % Description ----------- - """ import logging -from _helpers import configure_logging - -import pypsa -import yaml -import pandas as pd -import geopandas as gpd -import numpy as np -import networkx as nx - -from scipy import spatial -from scipy.sparse import csgraph from itertools import product -from shapely.geometry import Point, LineString -import shapely, shapely.prepared, shapely.wkt +import geopandas as gpd +import networkx as nx +import numpy as np +import pandas as pd +import pypsa +import shapely +import shapely.prepared +import shapely.wkt +import yaml +from _helpers import configure_logging +from scipy import spatial +from scipy.sparse import csgraph +from shapely.geometry import LineString, Point logger = logging.getLogger(__name__) @@ -97,48 +100,73 @@ def _get_country(df): def _find_closest_links(links, new_links, distance_upper_bound=1.5): - treecoords = np.asarray([np.asarray(shapely.wkt.loads(s).coords)[[0, -1]].flatten() - for s in links.geometry]) - querycoords = np.vstack([new_links[['x1', 'y1', 'x2', 'y2']], - new_links[['x2', 'y2', 'x1', 'y1']]]) + treecoords = np.asarray( + [ + np.asarray(shapely.wkt.loads(s).coords)[[0, -1]].flatten() + for s in links.geometry + ] + ) + querycoords = np.vstack( + [new_links[["x1", "y1", "x2", "y2"]], new_links[["x2", "y2", "x1", "y1"]]] + ) tree = spatial.KDTree(treecoords) dist, ind = tree.query(querycoords, distance_upper_bound=distance_upper_bound) found_b = ind < len(links) - found_i = np.arange(len(new_links)*2)[found_b] % len(new_links) - return pd.DataFrame(dict(D=dist[found_b], - i=links.index[ind[found_b] % len(links)]), - index=new_links.index[found_i]).sort_values(by='D')\ - [lambda ds: ~ds.index.duplicated(keep='first')]\ - .sort_index()['i'] + found_i = np.arange(len(new_links) * 2)[found_b] % len(new_links) + return ( + pd.DataFrame( + dict(D=dist[found_b], i=links.index[ind[found_b] % len(links)]), + index=new_links.index[found_i], + ) + .sort_values(by="D")[lambda ds: ~ds.index.duplicated(keep="first")] + .sort_index()["i"] + ) def _load_buses_from_eg(eg_buses, europe_shape, config_elec): - buses = (pd.read_csv(eg_buses, quotechar="'", - true_values=['t'], false_values=['f'], - dtype=dict(bus_id="str")) - .set_index("bus_id") - .drop(['station_id'], axis=1) - .rename(columns=dict(voltage='v_nom'))) + buses = ( + pd.read_csv( + eg_buses, + quotechar="'", + true_values=["t"], + false_values=["f"], + dtype=dict(bus_id="str"), + ) + .set_index("bus_id") + .drop(["station_id"], axis=1) + .rename(columns=dict(voltage="v_nom")) + ) - buses['carrier'] = buses.pop('dc').map({True: 'DC', False: 'AC'}) - buses['under_construction'] = buses['under_construction'].fillna(False).astype(bool) + buses["carrier"] = buses.pop("dc").map({True: "DC", False: "AC"}) + buses["under_construction"] = buses["under_construction"].fillna(False).astype(bool) # remove all buses outside of all countries including exclusive economic zones (offshore) - europe_shape = gpd.read_file(europe_shape).loc[0, 'geometry'] + europe_shape = gpd.read_file(europe_shape).loc[0, "geometry"] europe_shape_prepped = shapely.prepared.prep(europe_shape) - buses_in_europe_b = buses[['x', 'y']].apply(lambda p: europe_shape_prepped.contains(Point(p)), axis=1) + buses_in_europe_b = buses[["x", "y"]].apply( + lambda p: europe_shape_prepped.contains(Point(p)), axis=1 + ) - buses_with_v_nom_to_keep_b = buses.v_nom.isin(config_elec['voltages']) | buses.v_nom.isnull() - logger.info("Removing buses with voltages {}".format(pd.Index(buses.v_nom.unique()).dropna().difference(config_elec['voltages']))) + buses_with_v_nom_to_keep_b = ( + buses.v_nom.isin(config_elec["voltages"]) | buses.v_nom.isnull() + ) + logger.info( + "Removing buses with voltages {}".format( + pd.Index(buses.v_nom.unique()).dropna().difference(config_elec["voltages"]) + ) + ) return pd.DataFrame(buses.loc[buses_in_europe_b & buses_with_v_nom_to_keep_b]) def _load_transformers_from_eg(buses, eg_transformers): - transformers = (pd.read_csv(eg_transformers, quotechar="'", - true_values=['t'], false_values=['f'], - dtype=dict(transformer_id='str', bus0='str', bus1='str')) - .set_index('transformer_id')) + transformers = pd.read_csv( + eg_transformers, + quotechar="'", + true_values=["t"], + false_values=["f"], + dtype=dict(transformer_id="str", bus0="str", bus1="str"), + ).set_index("transformer_id") transformers = _remove_dangling_branches(transformers, buses) @@ -146,33 +174,40 @@ def _load_transformers_from_eg(buses, eg_transformers): def _load_converters_from_eg(buses, eg_converters): - converters = (pd.read_csv(eg_converters, quotechar="'", - true_values=['t'], false_values=['f'], - dtype=dict(converter_id='str', bus0='str', bus1='str')) - .set_index('converter_id')) + converters = pd.read_csv( + eg_converters, + quotechar="'", + true_values=["t"], + false_values=["f"], + dtype=dict(converter_id="str", bus0="str", bus1="str"), + ).set_index("converter_id") converters = _remove_dangling_branches(converters, buses) - converters['carrier'] = 'B2B' + converters["carrier"] = "B2B" return converters def _load_links_from_eg(buses, eg_links): - links = (pd.read_csv(eg_links, quotechar="'", true_values=['t'], false_values=['f'], - dtype=dict(link_id='str', bus0='str', bus1='str', under_construction="bool")) - .set_index('link_id')) + links = pd.read_csv( + eg_links, + quotechar="'", + true_values=["t"], + false_values=["f"], + dtype=dict(link_id="str", bus0="str", bus1="str", under_construction="bool"), + ).set_index("link_id") - links['length'] /= 1e3 + links["length"] /= 1e3 # Skagerrak Link is connected to 132kV bus which is removed in _load_buses_from_eg. # Connect to neighboring 380kV bus - links.loc[links.bus1=='6396', 'bus1'] = '6398' + links.loc[links.bus1 == "6396", "bus1"] = "6398" links = _remove_dangling_branches(links, buses) # Add DC line parameters - links['carrier'] = 'DC' + links["carrier"] = "DC" return links @@ -181,15 +216,21 @@ def _add_links_from_tyndp(buses, links, links_tyndp, europe_shape): links_tyndp = pd.read_csv(links_tyndp) # remove all links from list which lie outside all of the desired countries - europe_shape = gpd.read_file(europe_shape).loc[0, 'geometry'] + europe_shape = gpd.read_file(europe_shape).loc[0, "geometry"] europe_shape_prepped = shapely.prepared.prep(europe_shape) - x1y1_in_europe_b = links_tyndp[['x1', 'y1']].apply(lambda p: europe_shape_prepped.contains(Point(p)), axis=1) - x2y2_in_europe_b = links_tyndp[['x2', 'y2']].apply(lambda p: europe_shape_prepped.contains(Point(p)), axis=1) + x1y1_in_europe_b = links_tyndp[["x1", "y1"]].apply( + lambda p: europe_shape_prepped.contains(Point(p)), axis=1 + ) + x2y2_in_europe_b = links_tyndp[["x2", "y2"]].apply( + lambda p: europe_shape_prepped.contains(Point(p)), axis=1 + ) is_within_covered_countries_b = x1y1_in_europe_b & x2y2_in_europe_b if not is_within_covered_countries_b.all(): - logger.info("TYNDP links outside of the covered area (skipping): " + - ", ".join(links_tyndp.loc[~ is_within_covered_countries_b, "Name"])) + logger.info( + "TYNDP links outside of the covered area (skipping): " + + ", ".join(links_tyndp.loc[~is_within_covered_countries_b, "Name"]) + ) links_tyndp = links_tyndp.loc[is_within_covered_countries_b] if links_tyndp.empty: @@ -197,25 +238,32 @@ def _add_links_from_tyndp(buses, links, links_tyndp, europe_shape): has_replaces_b = links_tyndp.replaces.notnull() oids = dict(Bus=_get_oid(buses), Link=_get_oid(links)) - keep_b = dict(Bus=pd.Series(True, index=buses.index), - Link=pd.Series(True, index=links.index)) - for reps in links_tyndp.loc[has_replaces_b, 'replaces']: - for comps in reps.split(':'): - oids_to_remove = comps.split('.') + keep_b = dict( + Bus=pd.Series(True, index=buses.index), Link=pd.Series(True, index=links.index) + ) + for reps in links_tyndp.loc[has_replaces_b, "replaces"]: + for comps in reps.split(":"): + oids_to_remove = comps.split(".") c = oids_to_remove.pop(0) keep_b[c] &= ~oids[c].isin(oids_to_remove) - buses = buses.loc[keep_b['Bus']] - links = links.loc[keep_b['Link']] + buses = buses.loc[keep_b["Bus"]] + links = links.loc[keep_b["Link"]] - links_tyndp["j"] = _find_closest_links(links, links_tyndp, distance_upper_bound=0.20) + links_tyndp["j"] = _find_closest_links( + links, links_tyndp, distance_upper_bound=0.20 + ) # Corresponds approximately to 20km tolerances if links_tyndp["j"].notnull().any(): - logger.info("TYNDP links already in the dataset (skipping): " + ", ".join(links_tyndp.loc[links_tyndp["j"].notnull(), "Name"])) + logger.info( + "TYNDP links already in the dataset (skipping): " + + ", ".join(links_tyndp.loc[links_tyndp["j"].notnull(), "Name"]) + ) links_tyndp = links_tyndp.loc[links_tyndp["j"].isnull()] - if links_tyndp.empty: return buses, links + if links_tyndp.empty: + return buses, links - tree = spatial.KDTree(buses[['x', 'y']]) + tree = spatial.KDTree(buses[["x", "y"]]) _, ind0 = tree.query(links_tyndp[["x1", "y1"]]) ind0_b = ind0 < len(buses) links_tyndp.loc[ind0_b, "bus0"] = buses.index[ind0[ind0_b]] @@ -224,24 +272,42 @@ def _add_links_from_tyndp(buses, links, links_tyndp, europe_shape): ind1_b = ind1 < len(buses) links_tyndp.loc[ind1_b, "bus1"] = buses.index[ind1[ind1_b]] - links_tyndp_located_b = links_tyndp["bus0"].notnull() & links_tyndp["bus1"].notnull() + links_tyndp_located_b = ( + links_tyndp["bus0"].notnull() & links_tyndp["bus1"].notnull() + ) if not links_tyndp_located_b.all(): - logger.warning("Did not find connected buses for TYNDP links (skipping): " + ", ".join(links_tyndp.loc[~links_tyndp_located_b, "Name"])) + logger.warning( + "Did not find connected buses for TYNDP links (skipping): " + + ", ".join(links_tyndp.loc[~links_tyndp_located_b, "Name"]) + ) links_tyndp = links_tyndp.loc[links_tyndp_located_b] logger.info("Adding the following TYNDP links: " + ", ".join(links_tyndp["Name"])) links_tyndp = links_tyndp[["bus0", "bus1"]].assign( - carrier='DC', + carrier="DC", p_nom=links_tyndp["Power (MW)"], - length=links_tyndp["Length (given) (km)"].fillna(links_tyndp["Length (distance*1.2) (km)"]), + length=links_tyndp["Length (given) (km)"].fillna( + links_tyndp["Length (distance*1.2) (km)"] + ), under_construction=True, underground=False, - geometry=(links_tyndp[["x1", "y1", "x2", "y2"]] - .apply(lambda s: str(LineString([[s.x1, s.y1], [s.x2, s.y2]])), axis=1)), - tags=('"name"=>"' + links_tyndp["Name"] + '", ' + - '"ref"=>"' + links_tyndp["Ref"] + '", ' + - '"status"=>"' + links_tyndp["status"] + '"') + geometry=( + links_tyndp[["x1", "y1", "x2", "y2"]].apply( + lambda s: str(LineString([[s.x1, s.y1], [s.x2, s.y2]])), axis=1 + ) + ), + tags=( + '"name"=>"' + + links_tyndp["Name"] + + '", ' + + '"ref"=>"' + + links_tyndp["Ref"] + + '", ' + + '"status"=>"' + + links_tyndp["status"] + + '"' + ), ) links_tyndp.index = "T" + links_tyndp.index.astype(str) @@ -252,13 +318,25 @@ def _add_links_from_tyndp(buses, links, links_tyndp, europe_shape): def _load_lines_from_eg(buses, eg_lines): - lines = (pd.read_csv(eg_lines, quotechar="'", true_values=['t'], false_values=['f'], - dtype=dict(line_id='str', bus0='str', bus1='str', - underground="bool", under_construction="bool")) - .set_index('line_id') - .rename(columns=dict(voltage='v_nom', circuits='num_parallel'))) + lines = ( + pd.read_csv( + eg_lines, + quotechar="'", + true_values=["t"], + false_values=["f"], + dtype=dict( + line_id="str", + bus0="str", + bus1="str", + underground="bool", + under_construction="bool", + ), + ) + .set_index("line_id") + .rename(columns=dict(voltage="v_nom", circuits="num_parallel")) + ) - lines['length'] /= 1e3 + lines["length"] /= 1e3 lines = _remove_dangling_branches(lines, buses) @@ -269,18 +347,20 @@ def _apply_parameter_corrections(n, parameter_corrections): with open(parameter_corrections) as f: corrections = yaml.safe_load(f) - if corrections is None: return + if corrections is None: + return for component, attrs in corrections.items(): df = n.df(component) oid = _get_oid(df) - if attrs is None: continue + if attrs is None: + continue for attr, repls in attrs.items(): for i, r in repls.items(): - if i == 'oid': + if i == "oid": r = oid.map(repls["oid"]).dropna() - elif i == 'index': + elif i == "index": r = pd.Series(repls["index"]) else: raise NotImplementedError() @@ -289,78 +369,87 @@ def _apply_parameter_corrections(n, parameter_corrections): def _set_electrical_parameters_lines(lines, config): - v_noms = config['electricity']['voltages'] - linetypes = config['lines']['types'] + v_noms = config["electricity"]["voltages"] + linetypes = config["lines"]["types"] for v_nom in v_noms: - lines.loc[lines["v_nom"] == v_nom, 'type'] = linetypes[v_nom] + lines.loc[lines["v_nom"] == v_nom, "type"] = linetypes[v_nom] - lines['s_max_pu'] = config['lines']['s_max_pu'] + lines["s_max_pu"] = config["lines"]["s_max_pu"] return lines def _set_lines_s_nom_from_linetypes(n): - n.lines['s_nom'] = ( - np.sqrt(3) * n.lines['type'].map(n.line_types.i_nom) * - n.lines['v_nom'] * n.lines.num_parallel + n.lines["s_nom"] = ( + np.sqrt(3) + * n.lines["type"].map(n.line_types.i_nom) + * n.lines["v_nom"] + * n.lines.num_parallel ) def _set_electrical_parameters_links(links, config, links_p_nom): - if links.empty: return links + if links.empty: + return links - p_max_pu = config['links'].get('p_max_pu', 1.) - links['p_max_pu'] = p_max_pu - links['p_min_pu'] = -p_max_pu + p_max_pu = config["links"].get("p_max_pu", 1.0) + links["p_max_pu"] = p_max_pu + links["p_min_pu"] = -p_max_pu links_p_nom = pd.read_csv(links_p_nom) # filter links that are not in operation anymore - removed_b = links_p_nom.Remarks.str.contains('Shut down|Replaced', na=False) + removed_b = links_p_nom.Remarks.str.contains("Shut down|Replaced", na=False) links_p_nom = links_p_nom[~removed_b] # find closest link for all links in links_p_nom - links_p_nom['j'] = _find_closest_links(links, links_p_nom) + links_p_nom["j"] = _find_closest_links(links, links_p_nom) - links_p_nom = links_p_nom.groupby(['j'],as_index=False).agg({'Power (MW)': 'sum'}) + links_p_nom = links_p_nom.groupby(["j"], as_index=False).agg({"Power (MW)": "sum"}) p_nom = links_p_nom.dropna(subset=["j"]).set_index("j")["Power (MW)"] # Don't update p_nom if it's already set - p_nom_unset = p_nom.drop(links.index[links.p_nom.notnull()], errors='ignore') if "p_nom" in links else p_nom + p_nom_unset = ( + p_nom.drop(links.index[links.p_nom.notnull()], errors="ignore") + if "p_nom" in links + else p_nom + ) links.loc[p_nom_unset.index, "p_nom"] = p_nom_unset return links def _set_electrical_parameters_converters(converters, config): - p_max_pu = config['links'].get('p_max_pu', 1.) - converters['p_max_pu'] = p_max_pu - converters['p_min_pu'] = -p_max_pu + p_max_pu = config["links"].get("p_max_pu", 1.0) + converters["p_max_pu"] = p_max_pu + converters["p_min_pu"] = -p_max_pu - converters['p_nom'] = 2000 + converters["p_nom"] = 2000 # Converters are combined with links - converters['under_construction'] = False - converters['underground'] = False + converters["under_construction"] = False + converters["underground"] = False return converters def _set_electrical_parameters_transformers(transformers, config): - config = config['transformers'] + config = config["transformers"] ## Add transformer parameters - transformers["x"] = config.get('x', 0.1) - transformers["s_nom"] = config.get('s_nom', 2000) - transformers['type'] = config.get('type', '') + transformers["x"] = config.get("x", 0.1) + transformers["s_nom"] = config.get("s_nom", 2000) + transformers["type"] = config.get("type", "") return transformers def _remove_dangling_branches(branches, buses): - return pd.DataFrame(branches.loc[branches.bus0.isin(buses.index) & branches.bus1.isin(buses.index)]) + return pd.DataFrame( + branches.loc[branches.bus0.isin(buses.index) & branches.bus1.isin(buses.index)] + ) def _remove_unconnected_components(network): @@ -370,44 +459,62 @@ def _remove_unconnected_components(network): component_sizes = component.value_counts() components_to_remove = component_sizes.iloc[1:] - logger.info("Removing {} unconnected network components with less than {} buses. In total {} buses." - .format(len(components_to_remove), components_to_remove.max(), components_to_remove.sum())) + logger.info( + "Removing {} unconnected network components with less than {} buses. In total {} buses.".format( + len(components_to_remove), + components_to_remove.max(), + components_to_remove.sum(), + ) + ) return network[component == component_sizes.index[0]] def _set_countries_and_substations(n, config, country_shapes, offshore_shapes): - buses = n.buses def buses_in_shape(shape): shape = shapely.prepared.prep(shape) return pd.Series( - np.fromiter((shape.contains(Point(x, y)) - for x, y in buses.loc[:,["x", "y"]].values), - dtype=bool, count=len(buses)), - index=buses.index + np.fromiter( + ( + shape.contains(Point(x, y)) + for x, y in buses.loc[:, ["x", "y"]].values + ), + dtype=bool, + count=len(buses), + ), + index=buses.index, ) - countries = config['countries'] - country_shapes = gpd.read_file(country_shapes).set_index('name')['geometry'] - offshore_shapes = gpd.read_file(offshore_shapes).set_index('name')['geometry'] - substation_b = buses['symbol'].str.contains('substation|converter station', case=False) + countries = config["countries"] + country_shapes = gpd.read_file(country_shapes).set_index("name")["geometry"] + # reindexing necessary for supporting empty geo-dataframes + offshore_shapes = gpd.read_file(offshore_shapes) + offshore_shapes = offshore_shapes.reindex(columns=["name", "geometry"]).set_index( + "name" + )["geometry"] + substation_b = buses["symbol"].str.contains( + "substation|converter station", case=False + ) def prefer_voltage(x, which): index = x.index if len(index) == 1: return pd.Series(index, index) - key = (x.index[0] - if x['v_nom'].isnull().all() - else getattr(x['v_nom'], 'idx' + which)()) + key = ( + x.index[0] + if x["v_nom"].isnull().all() + else getattr(x["v_nom"], "idx" + which)() + ) return pd.Series(key, index) - gb = buses.loc[substation_b].groupby(['x', 'y'], as_index=False, - group_keys=False, sort=False) - bus_map_low = gb.apply(prefer_voltage, 'min') + gb = buses.loc[substation_b].groupby( + ["x", "y"], as_index=False, group_keys=False, sort=False + ) + bus_map_low = gb.apply(prefer_voltage, "min") lv_b = (bus_map_low == bus_map_low.index).reindex(buses.index, fill_value=False) - bus_map_high = gb.apply(prefer_voltage, 'max') + bus_map_high = gb.apply(prefer_voltage, "max") hv_b = (bus_map_high == bus_map_high.index).reindex(buses.index, fill_value=False) onshore_b = pd.Series(False, buses.index) @@ -418,47 +525,66 @@ def _set_countries_and_substations(n, config, country_shapes, offshore_shapes): onshore_country_b = buses_in_shape(onshore_shape) onshore_b |= onshore_country_b - buses.loc[onshore_country_b, 'country'] = country + buses.loc[onshore_country_b, "country"] = country - if country not in offshore_shapes.index: continue + if country not in offshore_shapes.index: + continue offshore_country_b = buses_in_shape(offshore_shapes[country]) offshore_b |= offshore_country_b - buses.loc[offshore_country_b, 'country'] = country + buses.loc[offshore_country_b, "country"] = country # Only accept buses as low-voltage substations (where load is attached), if # they have at least one connection which is not under_construction has_connections_b = pd.Series(False, index=buses.index) - for b, df in product(('bus0', 'bus1'), (n.lines, n.links)): - has_connections_b |= ~ df.groupby(b).under_construction.min() + for b, df in product(("bus0", "bus1"), (n.lines, n.links)): + has_connections_b |= ~df.groupby(b).under_construction.min() - buses['substation_lv'] = lv_b & onshore_b & (~ buses['under_construction']) & has_connections_b - buses['substation_off'] = (offshore_b | (hv_b & onshore_b)) & (~ buses['under_construction']) + buses["substation_lv"] = ( + lv_b & onshore_b & (~buses["under_construction"]) & has_connections_b + ) + buses["substation_off"] = (offshore_b | (hv_b & onshore_b)) & ( + ~buses["under_construction"] + ) c_nan_b = buses.country.isnull() if c_nan_b.sum() > 0: c_tag = _get_country(buses.loc[c_nan_b]) c_tag.loc[~c_tag.isin(countries)] = np.nan - n.buses.loc[c_nan_b, 'country'] = c_tag + n.buses.loc[c_nan_b, "country"] = c_tag c_tag_nan_b = n.buses.country.isnull() # Nearest country in path length defines country of still homeless buses # Work-around until commit 705119 lands in pypsa release - n.transformers['length'] = 0. - graph = n.graph(weight='length') - n.transformers.drop('length', axis=1, inplace=True) + n.transformers["length"] = 0.0 + graph = n.graph(weight="length") + n.transformers.drop("length", axis=1, inplace=True) for b in n.buses.index[c_tag_nan_b]: - df = (pd.DataFrame(dict(pathlength=nx.single_source_dijkstra_path_length(graph, b, cutoff=200))) - .join(n.buses.country).dropna()) - assert not df.empty, "No buses with defined country within 200km of bus `{}`".format(b) - n.buses.at[b, 'country'] = df.loc[df.pathlength.idxmin(), 'country'] + df = ( + pd.DataFrame( + dict( + pathlength=nx.single_source_dijkstra_path_length( + graph, b, cutoff=200 + ) + ) + ) + .join(n.buses.country) + .dropna() + ) + assert ( + not df.empty + ), "No buses with defined country within 200km of bus `{}`".format(b) + n.buses.at[b, "country"] = df.loc[df.pathlength.idxmin(), "country"] - logger.warning("{} buses are not in any country or offshore shape," - " {} have been assigned from the tag of the entsoe map," - " the rest from the next bus in terms of pathlength." - .format(c_nan_b.sum(), c_nan_b.sum() - c_tag_nan_b.sum())) + logger.warning( + "{} buses are not in any country or offshore shape," + " {} have been assigned from the tag of the entsoe map," + " the rest from the next bus in terms of pathlength.".format( + c_nan_b.sum(), c_nan_b.sum() - c_tag_nan_b.sum() + ) + ) return buses @@ -467,11 +593,13 @@ def _replace_b2b_converter_at_country_border_by_link(n): # Affects only the B2B converter in Lithuania at the Polish border at the moment buscntry = n.buses.country linkcntry = n.links.bus0.map(buscntry) - converters_i = n.links.index[(n.links.carrier == 'B2B') & (linkcntry == n.links.bus1.map(buscntry))] + converters_i = n.links.index[ + (n.links.carrier == "B2B") & (linkcntry == n.links.bus1.map(buscntry)) + ] def findforeignbus(G, i): cntry = linkcntry.at[i] - for busattr in ('bus0', 'bus1'): + for busattr in ("bus0", "bus1"): b0 = n.links.at[i, busattr] for b1 in G[b0]: if buscntry[b1] != cntry: @@ -484,67 +612,92 @@ def _replace_b2b_converter_at_country_border_by_link(n): if busattr is not None: comp, line = next(iter(G[b0][b1])) if comp != "Line": - logger.warning("Unable to replace B2B `{}` expected a Line, but found a {}" - .format(i, comp)) + logger.warning( + "Unable to replace B2B `{}` expected a Line, but found a {}".format( + i, comp + ) + ) continue n.links.at[i, busattr] = b1 - n.links.at[i, 'p_nom'] = min(n.links.at[i, 'p_nom'], n.lines.at[line, 's_nom']) - n.links.at[i, 'carrier'] = 'DC' - n.links.at[i, 'underwater_fraction'] = 0. - n.links.at[i, 'length'] = n.lines.at[line, 'length'] + n.links.at[i, "p_nom"] = min( + n.links.at[i, "p_nom"], n.lines.at[line, "s_nom"] + ) + n.links.at[i, "carrier"] = "DC" + n.links.at[i, "underwater_fraction"] = 0.0 + n.links.at[i, "length"] = n.lines.at[line, "length"] n.remove("Line", line) n.remove("Bus", b0) - logger.info("Replacing B2B converter `{}` together with bus `{}` and line `{}` by an HVDC tie-line {}-{}" - .format(i, b0, line, linkcntry.at[i], buscntry.at[b1])) + logger.info( + "Replacing B2B converter `{}` together with bus `{}` and line `{}` by an HVDC tie-line {}-{}".format( + i, b0, line, linkcntry.at[i], buscntry.at[b1] + ) + ) def _set_links_underwater_fraction(n, offshore_shapes): - if n.links.empty: return + if n.links.empty: + return - if not hasattr(n.links, 'geometry'): - n.links['underwater_fraction'] = 0. + if not hasattr(n.links, "geometry"): + n.links["underwater_fraction"] = 0.0 else: offshore_shape = gpd.read_file(offshore_shapes).unary_union links = gpd.GeoSeries(n.links.geometry.dropna().map(shapely.wkt.loads)) - n.links['underwater_fraction'] = links.intersection(offshore_shape).length / links.length + n.links["underwater_fraction"] = ( + links.intersection(offshore_shape).length / links.length + ) def _adjust_capacities_of_under_construction_branches(n, config): - lines_mode = config['lines'].get('under_construction', 'undef') - if lines_mode == 'zero': - n.lines.loc[n.lines.under_construction, 'num_parallel'] = 0. - n.lines.loc[n.lines.under_construction, 's_nom'] = 0. - elif lines_mode == 'remove': + lines_mode = config["lines"].get("under_construction", "undef") + if lines_mode == "zero": + n.lines.loc[n.lines.under_construction, "num_parallel"] = 0.0 + n.lines.loc[n.lines.under_construction, "s_nom"] = 0.0 + elif lines_mode == "remove": n.mremove("Line", n.lines.index[n.lines.under_construction]) - elif lines_mode != 'keep': - logger.warning("Unrecognized configuration for `lines: under_construction` = `{}`. Keeping under construction lines.") + elif lines_mode != "keep": + logger.warning( + "Unrecognized configuration for `lines: under_construction` = `{}`. Keeping under construction lines." + ) - links_mode = config['links'].get('under_construction', 'undef') - if links_mode == 'zero': - n.links.loc[n.links.under_construction, "p_nom"] = 0. - elif links_mode == 'remove': + links_mode = config["links"].get("under_construction", "undef") + if links_mode == "zero": + n.links.loc[n.links.under_construction, "p_nom"] = 0.0 + elif links_mode == "remove": n.mremove("Link", n.links.index[n.links.under_construction]) - elif links_mode != 'keep': - logger.warning("Unrecognized configuration for `links: under_construction` = `{}`. Keeping under construction links.") + elif links_mode != "keep": + logger.warning( + "Unrecognized configuration for `links: under_construction` = `{}`. Keeping under construction links." + ) - if lines_mode == 'remove' or links_mode == 'remove': + if lines_mode == "remove" or links_mode == "remove": # We might need to remove further unconnected components n = _remove_unconnected_components(n) return n -def base_network(eg_buses, eg_converters, eg_transformers, eg_lines, eg_links, - links_p_nom, links_tyndp, europe_shape, country_shapes, offshore_shapes, - parameter_corrections, config): - - buses = _load_buses_from_eg(eg_buses, europe_shape, config['electricity']) +def base_network( + eg_buses, + eg_converters, + eg_transformers, + eg_lines, + eg_links, + links_p_nom, + links_tyndp, + europe_shape, + country_shapes, + offshore_shapes, + parameter_corrections, + config, +): + buses = _load_buses_from_eg(eg_buses, europe_shape, config["electricity"]) links = _load_links_from_eg(buses, eg_links) - if config['links'].get('include_tyndp'): + if config["links"].get("include_tyndp"): buses, links = _add_links_from_tyndp(buses, links, links_tyndp, europe_shape) converters = _load_converters_from_eg(buses, eg_converters) @@ -558,9 +711,9 @@ def base_network(eg_buses, eg_converters, eg_transformers, eg_lines, eg_links, converters = _set_electrical_parameters_converters(converters, config) n = pypsa.Network() - n.name = 'PyPSA-Eur' + n.name = "PyPSA-Eur" - n.set_snapshots(pd.date_range(freq='h', **config['snapshots'])) + n.set_snapshots(pd.date_range(freq="h", **config["snapshots"])) n.import_components_from_dataframe(buses, "Bus") n.import_components_from_dataframe(lines, "Line") @@ -584,14 +737,28 @@ def base_network(eg_buses, eg_converters, eg_transformers, eg_lines, eg_links, return n + if __name__ == "__main__": - if 'snakemake' not in globals(): + if "snakemake" not in globals(): from _helpers import mock_snakemake - snakemake = mock_snakemake('base_network') + + snakemake = mock_snakemake("base_network") configure_logging(snakemake) - n = base_network(snakemake.input.eg_buses, snakemake.input.eg_converters, snakemake.input.eg_transformers, snakemake.input.eg_lines, snakemake.input.eg_links, - snakemake.input.links_p_nom, snakemake.input.links_tyndp, snakemake.input.europe_shape, snakemake.input.country_shapes, snakemake.input.offshore_shapes, - snakemake.input.parameter_corrections, snakemake.config) + n = base_network( + snakemake.input.eg_buses, + snakemake.input.eg_converters, + snakemake.input.eg_transformers, + snakemake.input.eg_lines, + snakemake.input.eg_links, + snakemake.input.links_p_nom, + snakemake.input.links_tyndp, + snakemake.input.europe_shape, + snakemake.input.country_shapes, + snakemake.input.offshore_shapes, + snakemake.input.parameter_corrections, + snakemake.config, + ) + n.meta = snakemake.config n.export_to_netcdf(snakemake.output[0]) diff --git a/scripts/build_ammonia_production.py b/scripts/build_ammonia_production.py new file mode 100644 index 00000000..d78d627e --- /dev/null +++ b/scripts/build_ammonia_production.py @@ -0,0 +1,41 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2020-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Build historical annual ammonia production per country in ktonNH3/a. +""" + +import country_converter as coco +import pandas as pd + +cc = coco.CountryConverter() + + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake("build_ammonia_production") + + ammonia = pd.read_excel( + snakemake.input.usgs, + sheet_name="T12", + skiprows=5, + header=0, + index_col=0, + skipfooter=19, + ) + + ammonia.index = cc.convert(ammonia.index, to="iso2") + + years = [str(i) for i in range(2013, 2018)] + countries = ammonia.index.intersection(snakemake.config["countries"]) + ammonia = ammonia.loc[countries, years].astype(float) + + # convert from ktonN to ktonNH3 + 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 new file mode 100644 index 00000000..21d0e623 --- /dev/null +++ b/scripts/build_biomass_potentials.py @@ -0,0 +1,237 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2021-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Compute biogas and solid biomass potentials for each clustered model region +using data from JRC ENSPRESO. +""" + +import geopandas as gpd +import pandas as pd + + +def build_nuts_population_data(year=2013): + pop = pd.read_csv( + snakemake.input.nuts3_population, + sep=r"\,| \t|\t", + engine="python", + na_values=[":"], + index_col=1, + )[str(year)] + + # only countries + pop.drop("EU28", inplace=True) + + # mapping from Cantons to NUTS3 + cantons = pd.read_csv(snakemake.input.swiss_cantons) + cantons = cantons.set_index(cantons.HASC.str[3:]).NUTS + cantons = cantons.str.pad(5, side="right", fillchar="0") + + # get population by NUTS3 + swiss = pd.read_excel( + snakemake.input.swiss_population, skiprows=3, index_col=0 + ).loc["Residents in 1000"] + swiss = swiss.rename(cantons).filter(like="CH") + + # aggregate also to higher order NUTS levels + swiss = [swiss.groupby(swiss.index.str[:i]).sum() for i in range(2, 6)] + + # merge Europe + Switzerland + pop = pd.concat([pop, pd.concat(swiss)]).to_frame("total") + + # add missing manually + pop["AL"] = 2893 + pop["BA"] = 3871 + pop["RS"] = 7210 + + pop["ct"] = pop.index.str[:2] + + return pop + + +def enspreso_biomass_potentials(year=2020, scenario="ENS_Low"): + """ + Loads the JRC ENSPRESO biomass potentials. + + Parameters + ---------- + year : int + The year for which potentials are to be taken. + Can be {2010, 2020, 2030, 2040, 2050}. + scenario : str + The scenario. Can be {"ENS_Low", "ENS_Med", "ENS_High"}. + + Returns + ------- + pd.DataFrame + Biomass potentials for given year and scenario + in TWh/a by commodity and NUTS2 region. + """ + glossary = pd.read_excel( + str(snakemake.input.enspreso_biomass), + sheet_name="Glossary", + usecols="B:D", + skiprows=1, + index_col=0, + ) + + df = pd.read_excel( + str(snakemake.input.enspreso_biomass), + sheet_name="ENER - NUTS2 BioCom E", + usecols="A:H", + ) + + df["group"] = df["E-Comm"].map(glossary.group) + df["commodity"] = df["E-Comm"].map(glossary.description) + + to_rename = { + "NUTS2 Potential available by Bio Commodity": "potential", + "NUST2": "NUTS2", + } + df.rename(columns=to_rename, inplace=True) + + # fill up with NUTS0 if NUTS2 is not given + df.NUTS2 = df.apply(lambda x: x.NUTS0 if x.NUTS2 == "-" else x.NUTS2, axis=1) + + # convert PJ to TWh + df.potential /= 3.6 + df.Unit = "TWh/a" + + dff = df.query("Year == @year and Scenario == @scenario") + + bio = dff.groupby(["NUTS2", "commodity"]).potential.sum().unstack() + + # currently Serbia and Kosovo not split, so aggregate + bio.loc["RS"] += bio.loc["XK"] + bio.drop("XK", inplace=True) + + return bio + + +def disaggregate_nuts0(bio): + """ + Some commodities are only given on NUTS0 level. These are disaggregated + here using the NUTS2 population as distribution key. + + Parameters + ---------- + bio : pd.DataFrame + from enspreso_biomass_potentials() + + Returns + ------- + pd.DataFrame + """ + pop = build_nuts_population_data() + + # get population in nuts2 + pop_nuts2 = pop.loc[pop.index.str.len() == 4] + by_country = pop_nuts2.total.groupby(pop_nuts2.ct).sum() + pop_nuts2["fraction"] = pop_nuts2.total / pop_nuts2.ct.map(by_country) + + # distribute nuts0 data to nuts2 by population + bio_nodal = bio.loc[pop_nuts2.ct] + bio_nodal.index = pop_nuts2.index + bio_nodal = bio_nodal.mul(pop_nuts2.fraction, axis=0) + + # update inplace + bio.update(bio_nodal) + + return bio + + +def build_nuts2_shapes(): + """ + - load NUTS2 geometries + - add RS, AL, BA country shapes (not covered in NUTS 2013) + - consistently name ME, MK + """ + nuts2 = gpd.GeoDataFrame( + gpd.read_file(snakemake.input.nuts2).set_index("id").geometry + ) + + countries = gpd.read_file(snakemake.input.country_shapes).set_index("name") + missing_iso2 = countries.index.intersection(["AL", "RS", "BA"]) + missing = countries.loc[missing_iso2] + + nuts2.rename(index={"ME00": "ME", "MK00": "MK"}, inplace=True) + + return pd.concat([nuts2, missing]) + + +def area(gdf): + """ + Returns area of GeoDataFrame geometries in square kilometers. + """ + return gdf.to_crs(epsg=3035).area.div(1e6) + + +def convert_nuts2_to_regions(bio_nuts2, regions): + """ + Converts biomass potentials given in NUTS2 to PyPSA-Eur regions based on + the overlay of both GeoDataFrames in proportion to the area. + + Parameters + ---------- + bio_nuts2 : gpd.GeoDataFrame + JRC ENSPRESO biomass potentials indexed by NUTS2 shapes. + regions : gpd.GeoDataFrame + PyPSA-Eur clustered onshore regions + + Returns + ------- + gpd.GeoDataFrame + """ + # calculate area of nuts2 regions + bio_nuts2["area_nuts2"] = area(bio_nuts2) + + overlay = gpd.overlay(regions, bio_nuts2, keep_geom_type=True) + + # calculate share of nuts2 area inside region + overlay["share"] = area(overlay) / overlay["area_nuts2"] + + # multiply all nuts2-level values with share of nuts2 inside region + adjust_cols = overlay.columns.difference( + {"name", "area_nuts2", "geometry", "share"} + ) + overlay[adjust_cols] = overlay[adjust_cols].multiply(overlay["share"], axis=0) + + bio_regions = overlay.dissolve("name", aggfunc="sum") + + bio_regions.drop(["area_nuts2", "share"], axis=1, inplace=True) + + return bio_regions + + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake("build_biomass_potentials", simpl="", clusters="5") + + config = snakemake.config["biomass"] + year = config["year"] + scenario = config["scenario"] + + enspreso = enspreso_biomass_potentials(year, scenario) + + enspreso = disaggregate_nuts0(enspreso) + + nuts2 = build_nuts2_shapes() + + df_nuts2 = gpd.GeoDataFrame(nuts2.geometry).join(enspreso) + + regions = gpd.read_file(snakemake.input.regions_onshore) + + df = convert_nuts2_to_regions(df_nuts2, regions) + + df.to_csv(snakemake.output.biomass_potentials_all) + + grouper = {v: k for k, vv in config["classes"].items() for v in vv} + df = df.groupby(grouper, axis=1).sum() + + df *= 1e6 # TWh/a to MWh/a + df.index.name = "MWh/a" + + df.to_csv(snakemake.output.biomass_potentials) diff --git a/scripts/build_biomass_transport_costs.py b/scripts/build_biomass_transport_costs.py new file mode 100644 index 00000000..9271b600 --- /dev/null +++ b/scripts/build_biomass_transport_costs.py @@ -0,0 +1,83 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2020-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Reads biomass transport costs for different countries of the JRC report. + + "The JRC-EU-TIMES model. + Bioenergy potentials + for EU and neighbouring countries." + (2015) + +converts them from units 'EUR per km/ton' -> 'EUR/ (km MWh)' + +assuming as an approximation energy content of wood pellets + +@author: bw0928 +""" + +import pandas as pd +import tabula as tbl + +ENERGY_CONTENT = 4.8 # unit MWh/t (wood pellets) + + +def get_countries(): + pandas_options = dict(skiprows=range(6), header=None, index_col=0) + + return tbl.read_pdf( + str(snakemake.input.transport_cost_data), + pages="145", + multiple_tables=False, + pandas_options=pandas_options, + )[0].index + + +def get_cost_per_tkm(page, countries): + pandas_options = dict( + skiprows=range(6), + header=0, + sep=" |,", + engine="python", + index_col=False, + ) + + sc = tbl.read_pdf( + str(snakemake.input.transport_cost_data), + pages=page, + multiple_tables=False, + pandas_options=pandas_options, + )[0] + sc.index = countries + sc.columns = sc.columns.str.replace("€", "EUR") + + return sc + + +def build_biomass_transport_costs(): + countries = get_countries() + + sc1 = get_cost_per_tkm(146, countries) + sc2 = get_cost_per_tkm(147, countries) + + # take mean of both supply chains + to_concat = [sc1["EUR/km/ton"], sc2["EUR/km/ton"]] + transport_costs = pd.concat(to_concat, axis=1).mean(axis=1) + + # convert tonnes to MWh + transport_costs /= ENERGY_CONTENT + transport_costs.name = "EUR/km/MWh" + + # rename country names + to_rename = {"UK": "GB", "XK": "KO", "EL": "GR"} + transport_costs.rename(to_rename, inplace=True) + + # add missing Norway with data from Sweden + transport_costs["NO"] = transport_costs["SE"] + + transport_costs.to_csv(snakemake.output[0]) + + +if __name__ == "__main__": + build_biomass_transport_costs() diff --git a/scripts/build_bus_regions.py b/scripts/build_bus_regions.py index d91d0575..6dc3b5a4 100644 --- a/scripts/build_bus_regions.py +++ b/scripts/build_bus_regions.py @@ -1,9 +1,10 @@ -# SPDX-FileCopyrightText: : 2017-2020 The PyPSA-Eur Authors +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2017-2023 The PyPSA-Eur Authors # # SPDX-License-Identifier: MIT - """ -Creates Voronoi shapes for each bus representing both onshore and offshore regions. +Creates Voronoi shapes for each bus representing both onshore and offshore +regions. Relevant Settings ----------------- @@ -13,7 +14,7 @@ Relevant Settings countries: .. seealso:: - Documentation of the configuration file ``config.yaml`` at + Documentation of the configuration file ``config/config.yaml`` at :ref:`toplevel_cf` Inputs @@ -28,51 +29,104 @@ Outputs - ``resources/regions_onshore.geojson``: - .. image:: ../img/regions_onshore.png + .. image:: img/regions_onshore.png :scale: 33 % - ``resources/regions_offshore.geojson``: - .. image:: ../img/regions_offshore.png + .. image:: img/regions_offshore.png :scale: 33 % Description ----------- - """ import logging -from _helpers import configure_logging -import pypsa -import os -import pandas as pd import geopandas as gpd - -from vresutils.graph import voronoi_partition_pts +import numpy as np +import pandas as pd +import pypsa +from _helpers import REGION_COLS, configure_logging +from scipy.spatial import Voronoi +from shapely.geometry import Polygon logger = logging.getLogger(__name__) -def save_to_geojson(s, fn): - if os.path.exists(fn): - os.unlink(fn) - schema = {**gpd.io.file.infer_schema(s), 'geometry': 'Unknown'} - s.to_file(fn, driver='GeoJSON', schema=schema) +def voronoi_partition_pts(points, outline): + """ + Compute the polygons of a voronoi partition of `points` within the polygon + `outline`. Taken from + https://github.com/FRESNA/vresutils/blob/master/vresutils/graph.py. + + Attributes + ---------- + points : Nx2 - ndarray[dtype=float] + outline : Polygon + Returns + ------- + polygons : N - ndarray[dtype=Polygon|MultiPolygon] + """ + points = np.asarray(points) + + if len(points) == 1: + polygons = [outline] + else: + xmin, ymin = np.amin(points, axis=0) + xmax, ymax = np.amax(points, axis=0) + xspan = xmax - xmin + yspan = ymax - ymin + + # to avoid any network positions outside all Voronoi cells, append + # the corners of a rectangle framing these points + vor = Voronoi( + np.vstack( + ( + points, + [ + [xmin - 3.0 * xspan, ymin - 3.0 * yspan], + [xmin - 3.0 * xspan, ymax + 3.0 * yspan], + [xmax + 3.0 * xspan, ymin - 3.0 * yspan], + [xmax + 3.0 * xspan, ymax + 3.0 * yspan], + ], + ) + ) + ) + + polygons = [] + for i in range(len(points)): + poly = Polygon(vor.vertices[vor.regions[vor.point_region[i]]]) + + if not poly.is_valid: + poly = poly.buffer(0) + + with np.errstate(invalid="ignore"): + poly = poly.intersection(outline) + + polygons.append(poly) + + return polygons if __name__ == "__main__": - if 'snakemake' not in globals(): + if "snakemake" not in globals(): from _helpers import mock_snakemake - snakemake = mock_snakemake('build_bus_regions') + + snakemake = mock_snakemake("build_bus_regions") configure_logging(snakemake) - countries = snakemake.config['countries'] + countries = snakemake.config["countries"] n = pypsa.Network(snakemake.input.base_network) - country_shapes = gpd.read_file(snakemake.input.country_shapes).set_index('name')['geometry'] - offshore_shapes = gpd.read_file(snakemake.input.offshore_shapes).set_index('name')['geometry'] + country_shapes = gpd.read_file(snakemake.input.country_shapes).set_index("name")[ + "geometry" + ] + offshore_shapes = gpd.read_file(snakemake.input.offshore_shapes) + offshore_shapes = offshore_shapes.reindex(columns=REGION_COLS).set_index("name")[ + "geometry" + ] onshore_regions = [] offshore_regions = [] @@ -82,27 +136,42 @@ if __name__ == "__main__": onshore_shape = country_shapes[country] onshore_locs = n.buses.loc[c_b & n.buses.substation_lv, ["x", "y"]] - onshore_regions.append(gpd.GeoDataFrame({ - 'name': onshore_locs.index, - 'x': onshore_locs['x'], - 'y': onshore_locs['y'], - 'geometry': voronoi_partition_pts(onshore_locs.values, onshore_shape), - 'country': country - })) + onshore_regions.append( + gpd.GeoDataFrame( + { + "name": onshore_locs.index, + "x": onshore_locs["x"], + "y": onshore_locs["y"], + "geometry": voronoi_partition_pts( + onshore_locs.values, onshore_shape + ), + "country": country, + } + ) + ) - if country not in offshore_shapes.index: continue + if country not in offshore_shapes.index: + continue offshore_shape = offshore_shapes[country] offshore_locs = n.buses.loc[c_b & n.buses.substation_off, ["x", "y"]] - offshore_regions_c = gpd.GeoDataFrame({ - 'name': offshore_locs.index, - 'x': offshore_locs['x'], - 'y': offshore_locs['y'], - 'geometry': voronoi_partition_pts(offshore_locs.values, offshore_shape), - 'country': country - }) + offshore_regions_c = gpd.GeoDataFrame( + { + "name": offshore_locs.index, + "x": offshore_locs["x"], + "y": offshore_locs["y"], + "geometry": voronoi_partition_pts(offshore_locs.values, offshore_shape), + "country": country, + } + ) offshore_regions_c = offshore_regions_c.loc[offshore_regions_c.area > 1e-2] offshore_regions.append(offshore_regions_c) - save_to_geojson(pd.concat(onshore_regions, ignore_index=True), snakemake.output.regions_onshore) - - save_to_geojson(pd.concat(offshore_regions, ignore_index=True), snakemake.output.regions_offshore) + pd.concat(onshore_regions, ignore_index=True).to_file( + snakemake.output.regions_onshore + ) + if offshore_regions: + pd.concat(offshore_regions, ignore_index=True).to_file( + snakemake.output.regions_offshore + ) + else: + offshore_shapes.to_frame().to_file(snakemake.output.regions_offshore) diff --git a/scripts/build_clustered_population_layouts.py b/scripts/build_clustered_population_layouts.py new file mode 100644 index 00000000..083f3de4 --- /dev/null +++ b/scripts/build_clustered_population_layouts.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2020-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Build population layouts for all clustered model regions as total as well as +split by urban and rural population. +""" + +import atlite +import geopandas as gpd +import pandas as pd +import xarray as xr + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake( + "build_clustered_population_layouts", + simpl="", + clusters=48, + ) + + cutout = atlite.Cutout(snakemake.input.cutout) + + clustered_regions = ( + gpd.read_file(snakemake.input.regions_onshore) + .set_index("name") + .buffer(0) + .squeeze() + ) + + I = cutout.indicatormatrix(clustered_regions) + + pop = {} + for item in ["total", "urban", "rural"]: + pop_layout = xr.open_dataarray(snakemake.input[f"pop_layout_{item}"]) + pop[item] = I.dot(pop_layout.stack(spatial=("y", "x"))) + + pop = pd.DataFrame(pop, index=clustered_regions.index) + + pop["ct"] = pop.index.str[:2] + country_population = pop.total.groupby(pop.ct).sum() + pop["fraction"] = pop.total / pop.ct.map(country_population) + + pop.to_csv(snakemake.output.clustered_pop_layout) diff --git a/scripts/build_cop_profiles.py b/scripts/build_cop_profiles.py new file mode 100644 index 00000000..5d36cd5b --- /dev/null +++ b/scripts/build_cop_profiles.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2020-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Build coefficient of performance (COP) time series for air- or ground-sourced +heat pumps. + +The COP is a function of the temperature difference between source and +sink. + +The quadratic regression used is based on Staffell et al. (2012) +https://doi.org/10.1039/C2EE22653G. +""" + +import xarray as xr + + +def coefficient_of_performance(delta_T, source="air"): + if source == "air": + return 6.81 - 0.121 * delta_T + 0.000630 * delta_T**2 + elif source == "soil": + return 8.77 - 0.150 * delta_T + 0.000734 * delta_T**2 + else: + raise NotImplementedError("'source' must be one of ['air', 'soil']") + + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake( + "build_cop_profiles", + simpl="", + clusters=48, + ) + + for area in ["total", "urban", "rural"]: + for source in ["air", "soil"]: + source_T = xr.open_dataarray(snakemake.input[f"temp_{source}_{area}"]) + + delta_T = snakemake.config["sector"]["heat_pump_sink_T"] - source_T + + cop = coefficient_of_performance(delta_T, source) + + cop.to_netcdf(snakemake.output[f"cop_{source}_{area}"]) diff --git a/scripts/build_cutout.py b/scripts/build_cutout.py index 59230434..365797d2 100644 --- a/scripts/build_cutout.py +++ b/scripts/build_cutout.py @@ -1,7 +1,7 @@ -# SPDX-FileCopyrightText: : 2017-2021 The PyPSA-Eur Authors +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2017-2023 The PyPSA-Eur Authors # # SPDX-License-Identifier: MIT - """ Create cutouts with `atlite `_. @@ -25,7 +25,7 @@ Relevant Settings {cutout}: .. seealso:: - Documentation of the configuration file ``config.yaml`` at + Documentation of the configuration file ``config/config.yaml`` at :ref:`atlite_cf` Inputs @@ -77,54 +77,53 @@ Outputs wnd100m time, y, x ms**-1 Wind speeds at 100 meters (regardless of direction) =================== ========== ========== ========================================================= - .. image:: ../img/era5.png + .. image:: img/era5.png :scale: 40 % A **SARAH-2 cutout** can be used to amend the fields ``temperature``, ``influx_toa``, ``influx_direct``, ``albedo``, ``influx_diffuse`` of ERA5 using satellite-based radiation observations. - .. image:: ../img/sarah.png + .. image:: img/sarah.png :scale: 40 % Description ----------- - """ import logging + import atlite import geopandas as gpd import pandas as pd from _helpers import configure_logging - logger = logging.getLogger(__name__) if __name__ == "__main__": - if 'snakemake' not in globals(): + if "snakemake" not in globals(): from _helpers import mock_snakemake - snakemake = mock_snakemake('build_cutout', cutout='europe-2013-era5-tutorial') + + snakemake = mock_snakemake("build_cutout", cutout="europe-2013-era5") configure_logging(snakemake) - cutout_params = snakemake.config['atlite']['cutouts'][snakemake.wildcards.cutout] + cutout_params = snakemake.config["atlite"]["cutouts"][snakemake.wildcards.cutout] - snapshots = pd.date_range(freq='h', **snakemake.config['snapshots']) + snapshots = pd.date_range(freq="h", **snakemake.config["snapshots"]) time = [snapshots[0], snapshots[-1]] - cutout_params['time'] = slice(*cutout_params.get('time', time)) + cutout_params["time"] = slice(*cutout_params.get("time", time)) - if {'x', 'y', 'bounds'}.isdisjoint(cutout_params): + if {"x", "y", "bounds"}.isdisjoint(cutout_params): # Determine the bounds from bus regions with a buffer of two grid cells onshore = gpd.read_file(snakemake.input.regions_onshore) offshore = gpd.read_file(snakemake.input.regions_offshore) - regions = onshore.append(offshore) - d = max(cutout_params.get('dx', 0.25), cutout_params.get('dy', 0.25))*2 - cutout_params['bounds'] = regions.total_bounds + [-d, -d, d, d] - elif {'x', 'y'}.issubset(cutout_params): - cutout_params['x'] = slice(*cutout_params['x']) - cutout_params['y'] = slice(*cutout_params['y']) - + regions = pd.concat([onshore, offshore]) + d = max(cutout_params.get("dx", 0.25), cutout_params.get("dy", 0.25)) * 2 + cutout_params["bounds"] = regions.total_bounds + [-d, -d, d, d] + elif {"x", "y"}.issubset(cutout_params): + cutout_params["x"] = slice(*cutout_params["x"]) + cutout_params["y"] = slice(*cutout_params["y"]) logging.info(f"Preparing cutout with parameters {cutout_params}.") - features = cutout_params.pop('features', None) + features = cutout_params.pop("features", None) cutout = atlite.Cutout(snakemake.output[0], **cutout_params) cutout.prepare(features=features) diff --git a/scripts/build_electricity_demand.py b/scripts/build_electricity_demand.py new file mode 100755 index 00000000..b86b4a5f --- /dev/null +++ b/scripts/build_electricity_demand.py @@ -0,0 +1,308 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2020 @JanFrederickUnnewehr, The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +This rule downloads the load data from `Open Power System Data Time series. + +`_. For all countries in +the network, the per country load timeseries with suffix +``_load_actual_entsoe_transparency`` are extracted from the dataset. After +filling small gaps linearly and large gaps by copying time-slice of a given +period, the load data is exported to a ``.csv`` file. + +Relevant Settings +----------------- + +.. code:: yaml + + snapshots: + + load: + interpolate_limit: + time_shift_for_large_gaps: + manual_adjustments: + + +.. seealso:: + Documentation of the configuration file ``config/config.yaml`` at + :ref:`load_cf` + +Inputs +------ + +- ``data/load_raw.csv``: + +Outputs +------- + +- ``resources/load.csv``: +""" + +import logging + +logger = logging.getLogger(__name__) +import dateutil +import numpy as np +import pandas as pd +from _helpers import configure_logging +from pandas import Timedelta as Delta + + +def load_timeseries(fn, years, countries, powerstatistics=True): + """ + Read load data from OPSD time-series package version 2020-10-06. + + Parameters + ---------- + years : None or slice() + Years for which to read load data (defaults to + slice("2018","2019")) + fn : str + File name or url location (file format .csv) + countries : listlike + Countries for which to read load data. + powerstatistics: bool + Whether the electricity consumption data of the ENTSOE power + statistics (if true) or of the ENTSOE transparency map (if false) + should be parsed. + + Returns + ------- + load : pd.DataFrame + Load time-series with UTC timestamps x ISO-2 countries + """ + logger.info(f"Retrieving load data from '{fn}'.") + + pattern = "power_statistics" if powerstatistics else "transparency" + pattern = f"_load_actual_entsoe_{pattern}" + + def rename(s): + return s[: -len(pattern)] + + def date_parser(x): + return dateutil.parser.parse(x, ignoretz=True) + + return ( + pd.read_csv(fn, index_col=0, parse_dates=[0], date_parser=date_parser) + .filter(like=pattern) + .rename(columns=rename) + .dropna(how="all", axis=0) + .rename(columns={"GB_UKM": "GB"}) + .filter(items=countries) + .loc[years] + ) + + +def consecutive_nans(ds): + return ( + ds.isnull() + .astype(int) + .groupby(ds.notnull().astype(int).cumsum()[ds.isnull()]) + .transform("sum") + .fillna(0) + ) + + +def fill_large_gaps(ds, shift): + """ + Fill up large gaps with load data from the previous week. + + This function fills gaps ragning from 3 to 168 hours (one week). + """ + shift = Delta(shift) + nhours = shift / np.timedelta64(1, "h") + if (consecutive_nans(ds) > nhours).any(): + logger.warning( + "There exist gaps larger then the time shift used for " + "copying time slices." + ) + time_shift = pd.Series(ds.values, ds.index + shift) + return ds.where(ds.notnull(), time_shift.reindex_like(ds)) + + +def nan_statistics(df): + def max_consecutive_nans(ds): + return ( + ds.isnull() + .astype(int) + .groupby(ds.notnull().astype(int).cumsum()) + .sum() + .max() + ) + + consecutive = df.apply(max_consecutive_nans) + total = df.isnull().sum() + max_total_per_month = df.isnull().resample("m").sum().max() + return pd.concat( + [total, consecutive, max_total_per_month], + keys=["total", "consecutive", "max_total_per_month"], + axis=1, + ) + + +def copy_timeslice(load, cntry, start, stop, delta, fn_load=None): + start = pd.Timestamp(start) + stop = pd.Timestamp(stop) + if start in load.index and stop in load.index: + if start - delta in load.index and stop - delta in load.index and cntry in load: + load.loc[start:stop, cntry] = load.loc[ + start - delta : stop - delta, cntry + ].values + elif fn_load is not None: + duration = pd.date_range(freq="h", start=start - delta, end=stop - delta) + load_raw = load_timeseries(fn_load, duration, [cntry], powerstatistics) + load.loc[start:stop, cntry] = load_raw.loc[ + start - delta : stop - delta, cntry + ].values + + +def manual_adjustment(load, fn_load, powerstatistics): + """ + Adjust gaps manual for load data from OPSD time-series package. + + 1. For the ENTSOE power statistics load data (if powerstatistics is True) + + Kosovo (KV) and Albania (AL) do not exist in the data set. Kosovo gets the + same load curve as Serbia and Albania the same as Macdedonia, both scaled + by the corresponding ratio of total energy consumptions reported by + IEA Data browser [0] for the year 2013. + + 2. For the ENTSOE transparency load data (if powerstatistics is False) + + Albania (AL) and Macedonia (MK) do not exist in the data set. Both get the + same load curve as Montenegro, scaled by the corresponding ratio of total energy + consumptions reported by IEA Data browser [0] for the year 2016. + + [0] https://www.iea.org/data-and-statistics?country=WORLD&fuel=Electricity%20and%20heat&indicator=TotElecCons + + + Parameters + ---------- + load : pd.DataFrame + Load time-series with UTC timestamps x ISO-2 countries + powerstatistics: bool + Whether argument load comprises the electricity consumption data of + the ENTSOE power statistics or of the ENTSOE transparency map + load_fn: str + File name or url location (file format .csv) + + Returns + ------- + load : pd.DataFrame + Manual adjusted and interpolated load time-series with UTC + timestamps x ISO-2 countries + """ + if powerstatistics: + if "MK" in load.columns: + if "AL" not in load.columns or load.AL.isnull().values.all(): + load["AL"] = load["MK"] * (4.1 / 7.4) + if "RS" in load.columns: + if "KV" not in load.columns or load.KV.isnull().values.all(): + load["KV"] = load["RS"] * (4.8 / 27.0) + + copy_timeslice( + load, "GR", "2015-08-11 21:00", "2015-08-15 20:00", Delta(weeks=1) + ) + copy_timeslice( + load, "AT", "2018-12-31 22:00", "2019-01-01 22:00", Delta(days=2) + ) + copy_timeslice( + load, "CH", "2010-01-19 07:00", "2010-01-19 22:00", Delta(days=1) + ) + copy_timeslice( + load, "CH", "2010-03-28 00:00", "2010-03-28 21:00", Delta(days=1) + ) + # is a WE, so take WE before + copy_timeslice( + load, "CH", "2010-10-08 13:00", "2010-10-10 21:00", Delta(weeks=1) + ) + copy_timeslice( + load, "CH", "2010-11-04 04:00", "2010-11-04 22:00", Delta(days=1) + ) + copy_timeslice( + load, "NO", "2010-12-09 11:00", "2010-12-09 18:00", Delta(days=1) + ) + # whole january missing + copy_timeslice( + load, + "GB", + "2010-01-01 00:00", + "2010-01-31 23:00", + Delta(days=-365), + fn_load, + ) + # 1.1. at midnight gets special treatment + copy_timeslice( + load, + "IE", + "2016-01-01 00:00", + "2016-01-01 01:00", + Delta(days=-366), + fn_load, + ) + copy_timeslice( + load, + "PT", + "2016-01-01 00:00", + "2016-01-01 01:00", + Delta(days=-366), + fn_load, + ) + copy_timeslice( + load, + "GB", + "2016-01-01 00:00", + "2016-01-01 01:00", + Delta(days=-366), + fn_load, + ) + + else: + if "ME" in load: + if "AL" not in load and "AL" in countries: + load["AL"] = load.ME * (5.7 / 2.9) + if "MK" not in load and "MK" in countries: + load["MK"] = load.ME * (6.7 / 2.9) + copy_timeslice( + load, "BG", "2018-10-27 21:00", "2018-10-28 22:00", Delta(weeks=1) + ) + + return load + + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake("build_electricity_demand") + + configure_logging(snakemake) + + powerstatistics = snakemake.config["load"]["power_statistics"] + interpolate_limit = snakemake.config["load"]["interpolate_limit"] + countries = snakemake.config["countries"] + snapshots = pd.date_range(freq="h", **snakemake.config["snapshots"]) + years = slice(snapshots[0], snapshots[-1]) + time_shift = snakemake.config["load"]["time_shift_for_large_gaps"] + + load = load_timeseries(snakemake.input[0], years, countries, powerstatistics) + + if snakemake.config["load"]["manual_adjustments"]: + load = manual_adjustment(load, snakemake.input[0], powerstatistics) + + logger.info(f"Linearly interpolate gaps of size {interpolate_limit} and less.") + load = load.interpolate(method="linear", limit=interpolate_limit) + + logger.info( + "Filling larger gaps by copying time-slices of period " f"'{time_shift}'." + ) + load = load.apply(fill_large_gaps, shift=time_shift) + + assert not load.isna().any().any(), ( + "Load data contains nans. Adjust the parameters " + "`time_shift_for_large_gaps` or modify the `manual_adjustment` function " + "for implementing the needed load data modifications." + ) + + load.to_csv(snakemake.output[0]) diff --git a/scripts/build_energy_totals.py b/scripts/build_energy_totals.py new file mode 100644 index 00000000..45fc960f --- /dev/null +++ b/scripts/build_energy_totals.py @@ -0,0 +1,769 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2020-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Build total energy demands per country using JRC IDEES, eurostat, and EEA data. +""" + +import logging + +logger = logging.getLogger(__name__) + +import multiprocessing as mp +from functools import partial + +import country_converter as coco +import geopandas as gpd +import numpy as np +import pandas as pd +from _helpers import mute_print +from tqdm import tqdm + +cc = coco.CountryConverter() + +idx = pd.IndexSlice + + +def cartesian(s1, s2): + """ + Cartesian product of two pd.Series. + """ + return pd.DataFrame(np.outer(s1, s2), index=s1.index, columns=s2.index) + + +def reverse(dictionary): + """ + Reverses a keys and values of a dictionary. + """ + return {v: k for k, v in dictionary.items()} + + +eurostat_codes = { + "EU28": "EU", + "EA19": "EA", + "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", + "Netherlands": "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", + "Kosovo\n(UNSCR 1244/99)": "KO", # 2017 version + # 2016 version + "Kosovo\n(under United Nations Security Council Resolution 1244/99)": "KO", + "Moldova": "MO", + "Ukraine": "UK", + "Switzerland": "CH", +} + + +idees_rename = {"GR": "EL", "GB": "UK"} + +eu28 = cc.EU28as("ISO2").ISO2.tolist() + +eu28_eea = eu28.copy() +eu28_eea.remove("GB") +eu28_eea.append("UK") + + +to_ipcc = { + "electricity": "1.A.1.a - Public Electricity and Heat Production", + "residential non-elec": "1.A.4.b - Residential", + "services non-elec": "1.A.4.a - Commercial/Institutional", + "rail non-elec": "1.A.3.c - Railways", + "road non-elec": "1.A.3.b - Road Transportation", + "domestic navigation": "1.A.3.d - Domestic Navigation", + "international navigation": "1.D.1.b - International Navigation", + "domestic aviation": "1.A.3.a - Domestic Aviation", + "international aviation": "1.D.1.a - International Aviation", + "total energy": "1 - Energy", + "industrial processes": "2 - Industrial Processes and Product Use", + "agriculture": "3 - Agriculture", + "agriculture, forestry and fishing": "1.A.4.c - Agriculture/Forestry/Fishing", + "LULUCF": "4 - Land Use, Land-Use Change and Forestry", + "waste management": "5 - Waste management", + "other": "6 - Other Sector", + "indirect": "ind_CO2 - Indirect CO2", + "total wL": "Total (with LULUCF)", + "total woL": "Total (without LULUCF)", +} + + +def build_eurostat(input_eurostat, countries, report_year, year): + """ + Return multi-index for all countries' energy data in TWh/a. + """ + filenames = { + 2016: f"/{year}-Energy-Balances-June2016edition.xlsx", + 2017: f"/{year}-ENERGY-BALANCES-June2017edition.xlsx", + } + + with mute_print(): + dfs = pd.read_excel( + input_eurostat + filenames[report_year], + sheet_name=None, + skiprows=1, + index_col=list(range(4)), + ) + + # sorted_index necessary for slicing + lookup = eurostat_codes + labelled_dfs = { + lookup[df.columns[0]]: df + for df in dfs.values() + if lookup[df.columns[0]] in countries + } + df = pd.concat(labelled_dfs, sort=True).sort_index() + + # drop non-numeric and country columns + non_numeric_cols = df.columns[df.dtypes != float] + country_cols = df.columns.intersection(lookup.keys()) + to_drop = non_numeric_cols.union(country_cols) + df.drop(to_drop, axis=1, inplace=True) + + # convert ktoe/a to TWh/a + df *= 11.63 / 1e3 + + return df + + +def build_swiss(year): + """ + Return a pd.Series of Swiss energy data in TWh/a. + """ + fn = snakemake.input.swiss + + df = pd.read_csv(fn, index_col=[0, 1]).loc["CH", str(year)] + + # convert PJ/a to TWh/a + df /= 3.6 + + return df + + +def idees_per_country(ct, year, base_dir): + ct_totals = {} + + ct_idees = idees_rename.get(ct, ct) + fn_residential = f"{base_dir}/JRC-IDEES-2015_Residential_{ct_idees}.xlsx" + fn_tertiary = f"{base_dir}/JRC-IDEES-2015_Tertiary_{ct_idees}.xlsx" + fn_transport = f"{base_dir}/JRC-IDEES-2015_Transport_{ct_idees}.xlsx" + + # residential + + df = pd.read_excel(fn_residential, "RES_hh_fec", index_col=0)[year] + + ct_totals["total residential space"] = df["Space heating"] + + rows = ["Advanced electric heating", "Conventional electric heating"] + ct_totals["electricity residential space"] = df[rows].sum() + + ct_totals["total residential water"] = df.at["Water heating"] + + assert df.index[23] == "Electricity" + ct_totals["electricity residential water"] = df[23] + + ct_totals["total residential cooking"] = df["Cooking"] + + assert df.index[30] == "Electricity" + ct_totals["electricity residential cooking"] = df[30] + + df = pd.read_excel(fn_residential, "RES_summary", index_col=0)[year] + + row = "Energy consumption by fuel - Eurostat structure (ktoe)" + ct_totals["total residential"] = df[row] + + assert df.index[47] == "Electricity" + ct_totals["electricity residential"] = df[47] + + assert df.index[46] == "Derived heat" + ct_totals["derived heat residential"] = df[46] + + assert df.index[50] == "Thermal uses" + ct_totals["thermal uses residential"] = df[50] + + # services + + df = pd.read_excel(fn_tertiary, "SER_hh_fec", index_col=0)[year] + + ct_totals["total services space"] = df["Space heating"] + + rows = ["Advanced electric heating", "Conventional electric heating"] + ct_totals["electricity services space"] = df[rows].sum() + + ct_totals["total services water"] = df["Hot water"] + + assert df.index[24] == "Electricity" + ct_totals["electricity services water"] = df[24] + + ct_totals["total services cooking"] = df["Catering"] + + assert df.index[31] == "Electricity" + ct_totals["electricity services cooking"] = df[31] + + df = pd.read_excel(fn_tertiary, "SER_summary", index_col=0)[year] + + row = "Energy consumption by fuel - Eurostat structure (ktoe)" + ct_totals["total services"] = df[row] + + assert df.index[50] == "Electricity" + ct_totals["electricity services"] = df[50] + + assert df.index[49] == "Derived heat" + ct_totals["derived heat services"] = df[49] + + assert df.index[53] == "Thermal uses" + ct_totals["thermal uses services"] = df[53] + + # agriculture, forestry and fishing + + start = "Detailed split of energy consumption (ktoe)" + end = "Market shares of energy uses (%)" + + df = pd.read_excel(fn_tertiary, "AGR_fec", index_col=0).loc[start:end, year] + + rows = [ + "Lighting", + "Ventilation", + "Specific electricity uses", + "Pumping devices (electric)", + ] + ct_totals["total agriculture electricity"] = df[rows].sum() + + rows = ["Specific heat uses", "Low enthalpy heat"] + ct_totals["total agriculture heat"] = df[rows].sum() + + rows = [ + "Motor drives", + "Farming machine drives (diesel oil incl. biofuels)", + "Pumping devices (diesel oil incl. biofuels)", + ] + ct_totals["total agriculture machinery"] = df[rows].sum() + + row = "Agriculture, forestry and fishing" + ct_totals["total agriculture"] = df[row] + + # transport + + df = pd.read_excel(fn_transport, "TrRoad_ene", index_col=0)[year] + + ct_totals["total road"] = df["by fuel (EUROSTAT DATA)"] + + ct_totals["electricity road"] = df["Electricity"] + + ct_totals["total two-wheel"] = df["Powered 2-wheelers (Gasoline)"] + + assert df.index[19] == "Passenger cars" + ct_totals["total passenger cars"] = df[19] + + assert df.index[30] == "Battery electric vehicles" + ct_totals["electricity passenger cars"] = df[30] + + assert df.index[31] == "Motor coaches, buses and trolley buses" + ct_totals["total other road passenger"] = df[31] + + assert df.index[39] == "Battery electric vehicles" + ct_totals["electricity other road passenger"] = df[39] + + assert df.index[41] == "Light duty vehicles" + ct_totals["total light duty road freight"] = df[41] + + assert df.index[49] == "Battery electric vehicles" + ct_totals["electricity light duty road freight"] = df[49] + + row = "Heavy duty vehicles (Diesel oil incl. biofuels)" + ct_totals["total heavy duty road freight"] = df[row] + + assert df.index[61] == "Passenger cars" + ct_totals["passenger car efficiency"] = df[61] + + df = pd.read_excel(fn_transport, "TrRail_ene", index_col=0)[year] + + ct_totals["total rail"] = df["by fuel (EUROSTAT DATA)"] + + ct_totals["electricity rail"] = df["Electricity"] + + assert df.index[15] == "Passenger transport" + ct_totals["total rail passenger"] = df[15] + + assert df.index[16] == "Metro and tram, urban light rail" + assert df.index[19] == "Electric" + assert df.index[20] == "High speed passenger trains" + ct_totals["electricity rail passenger"] = df[[16, 19, 20]].sum() + + assert df.index[21] == "Freight transport" + ct_totals["total rail freight"] = df[21] + + assert df.index[23] == "Electric" + ct_totals["electricity rail freight"] = df[23] + + df = pd.read_excel(fn_transport, "TrAvia_ene", index_col=0)[year] + + assert df.index[6] == "Passenger transport" + ct_totals["total aviation passenger"] = df[6] + + assert df.index[10] == "Freight transport" + ct_totals["total aviation freight"] = df[10] + + assert df.index[7] == "Domestic" + ct_totals["total domestic aviation passenger"] = df[7] + + assert df.index[8] == "International - Intra-EU" + assert df.index[9] == "International - Extra-EU" + ct_totals["total international aviation passenger"] = df[[8, 9]].sum() + + assert df.index[11] == "Domestic and International - Intra-EU" + ct_totals["total domestic aviation freight"] = df[11] + + assert df.index[12] == "International - Extra-EU" + ct_totals["total international aviation freight"] = df[12] + + ct_totals["total domestic aviation"] = ( + ct_totals["total domestic aviation freight"] + + ct_totals["total domestic aviation passenger"] + ) + + ct_totals["total international aviation"] = ( + ct_totals["total international aviation freight"] + + ct_totals["total international aviation passenger"] + ) + + df = pd.read_excel(fn_transport, "TrNavi_ene", index_col=0)[year] + + # coastal and inland + ct_totals["total domestic navigation"] = df["by fuel (EUROSTAT DATA)"] + + df = pd.read_excel(fn_transport, "TrRoad_act", index_col=0)[year] + + assert df.index[85] == "Passenger cars" + ct_totals["passenger cars"] = df[85] + + return pd.Series(ct_totals, name=ct) + + +def build_idees(countries, year): + nprocesses = snakemake.threads + disable_progress = snakemake.config["run"].get("disable_progressbar", False) + + func = partial(idees_per_country, year=year, base_dir=snakemake.input.idees) + tqdm_kwargs = dict( + ascii=False, + unit=" country", + total=len(countries), + desc="Build from IDEES database", + disable=disable_progress, + ) + with mute_print(): + with mp.Pool(processes=nprocesses) as pool: + totals_list = list(tqdm(pool.imap(func, countries), **tqdm_kwargs)) + + totals = pd.concat(totals_list, axis=1) + + # convert ktoe to TWh + exclude = totals.index.str.fullmatch("passenger cars") + totals.loc[~exclude] *= 11.63 / 1e3 + + # convert TWh/100km to kWh/km + totals.loc["passenger car efficiency"] *= 10 + + # district heating share + district_heat = totals.loc[ + ["derived heat residential", "derived heat services"] + ].sum() + total_heat = totals.loc[["thermal uses residential", "thermal uses services"]].sum() + totals.loc["district heat share"] = district_heat.div(total_heat) + + return totals.T + + +def build_energy_totals(countries, eurostat, swiss, idees): + eurostat_fuels = {"electricity": "Electricity", "total": "Total all products"} + + to_drop = ["passenger cars", "passenger car efficiency"] + df = idees.reindex(countries).drop(to_drop, axis=1) + + eurostat_countries = eurostat.index.levels[0] + in_eurostat = df.index.intersection(eurostat_countries) + + # add international navigation + + slicer = idx[in_eurostat, :, "Bunkers", :] + fill_values = eurostat.loc[slicer, "Total all products"].groupby(level=0).sum() + df.loc[in_eurostat, "total international navigation"] = fill_values + + # add swiss energy data + + df.loc["CH"] = swiss + + # get values for missing countries based on Eurostat EnergyBalances + # divide cooking/space/water according to averages in EU28 + + missing = df.index[df["total residential"].isna()] + to_fill = missing.intersection(eurostat_countries) + uses = ["space", "cooking", "water"] + + for sector in ["residential", "services", "road", "rail"]: + eurostat_sector = sector.capitalize() + + # fuel use + + for fuel in ["electricity", "total"]: + slicer = idx[to_fill, :, :, eurostat_sector] + fill_values = ( + eurostat.loc[slicer, eurostat_fuels[fuel]].groupby(level=0).sum() + ) + df.loc[to_fill, f"{fuel} {sector}"] = fill_values + + for sector in ["residential", "services"]: + # electric use + + for use in uses: + fuel_use = df[f"electricity {sector} {use}"] + fuel = df[f"electricity {sector}"] + avg = fuel_use.div(fuel).mean() + logger.debug( + f"{sector}: average fraction of electricity for {use} is {avg:.3f}" + ) + df.loc[to_fill, f"electricity {sector} {use}"] = ( + avg * df.loc[to_fill, f"electricity {sector}"] + ) + + # non-electric use + + for use in uses: + nonelectric_use = ( + df[f"total {sector} {use}"] - df[f"electricity {sector} {use}"] + ) + nonelectric = df[f"total {sector}"] - df[f"electricity {sector}"] + avg = nonelectric_use.div(nonelectric).mean() + logger.debug( + f"{sector}: average fraction of non-electric for {use} is {avg:.3f}" + ) + electric_use = df.loc[to_fill, f"electricity {sector} {use}"] + nonelectric = ( + df.loc[to_fill, f"total {sector}"] + - df.loc[to_fill, f"electricity {sector}"] + ) + df.loc[to_fill, f"total {sector} {use}"] = electric_use + avg * nonelectric + + # Fix Norway space and water heating fractions + # http://www.ssb.no/en/energi-og-industri/statistikker/husenergi/hvert-3-aar/2014-07-14 + # The main heating source for about 73 per cent of the households is based on electricity + # => 26% is non-electric + + if "NO" in df: + elec_fraction = 0.73 + + no_norway = df.drop("NO") + + for sector in ["residential", "services"]: + # assume non-electric is heating + nonelectric = ( + df.loc["NO", f"total {sector}"] - df.loc["NO", f"electricity {sector}"] + ) + total_heating = nonelectric / (1 - elec_fraction) + + for use in uses: + nonelectric_use = ( + no_norway[f"total {sector} {use}"] + - no_norway[f"electricity {sector} {use}"] + ) + nonelectric = ( + no_norway[f"total {sector}"] - no_norway[f"electricity {sector}"] + ) + fraction = nonelectric_use.div(nonelectric).mean() + df.loc["NO", f"total {sector} {use}"] = total_heating * fraction + df.loc["NO", f"electricity {sector} {use}"] = ( + total_heating * fraction * elec_fraction + ) + + # Missing aviation + + slicer = idx[to_fill, :, :, "Domestic aviation"] + fill_values = eurostat.loc[slicer, "Total all products"].groupby(level=0).sum() + df.loc[to_fill, "total domestic aviation"] = fill_values + + slicer = idx[to_fill, :, :, "International aviation"] + fill_values = eurostat.loc[slicer, "Total all products"].groupby(level=0).sum() + df.loc[to_fill, "total international aviation"] = fill_values + + # missing domestic navigation + + slicer = idx[to_fill, :, :, "Domestic Navigation"] + fill_values = eurostat.loc[slicer, "Total all products"].groupby(level=0).sum() + df.loc[to_fill, "total domestic navigation"] = fill_values + + # split road traffic for non-IDEES + missing = df.index[df["total passenger cars"].isna()] + for fuel in ["total", "electricity"]: + selection = [ + f"{fuel} passenger cars", + f"{fuel} other road passenger", + f"{fuel} light duty road freight", + ] + if fuel == "total": + selection.extend([f"{fuel} two-wheel", f"{fuel} heavy duty road freight"]) + road = df[selection].sum() + road_fraction = road / road.sum() + fill_values = cartesian(df.loc[missing, f"{fuel} road"], road_fraction) + df.loc[missing, road_fraction.index] = fill_values + + # split rail traffic for non-IDEES + missing = df.index[df["total rail passenger"].isna()] + for fuel in ["total", "electricity"]: + selection = [f"{fuel} rail passenger", f"{fuel} rail freight"] + rail = df[selection].sum() + rail_fraction = rail / rail.sum() + fill_values = cartesian(df.loc[missing, f"{fuel} rail"], rail_fraction) + df.loc[missing, rail_fraction.index] = fill_values + + # split aviation traffic for non-IDEES + missing = df.index[df["total domestic aviation passenger"].isna()] + for destination in ["domestic", "international"]: + selection = [ + f"total {destination} aviation passenger", + f"total {destination} aviation freight", + ] + aviation = df[selection].sum() + aviation_fraction = aviation / aviation.sum() + fill_values = cartesian( + df.loc[missing, f"total {destination} aviation"], aviation_fraction + ) + df.loc[missing, aviation_fraction.index] = fill_values + + for purpose in ["passenger", "freight"]: + attrs = [ + f"total domestic aviation {purpose}", + f"total international aviation {purpose}", + ] + df.loc[missing, f"total aviation {purpose}"] = df.loc[missing, attrs].sum( + axis=1 + ) + + if "BA" in df.index: + # fill missing data for BA (services and road energy data) + # proportional to RS with ratio of total residential demand + missing = df.loc["BA"] == 0.0 + ratio = df.at["BA", "total residential"] / df.at["RS", "total residential"] + df.loc["BA", missing] = ratio * df.loc["RS", missing] + + # Missing district heating share + dh_share = pd.read_csv( + snakemake.input.district_heat_share, index_col=0, usecols=[0, 1] + ) + # make conservative assumption and take minimum from both data sets + df["district heat share"] = pd.concat( + [df["district heat share"], dh_share.reindex(index=df.index) / 100], axis=1 + ).min(axis=1) + + return df + + +def build_eea_co2(input_co2, year=1990, emissions_scope="CO2"): + # https://www.eea.europa.eu/data-and-maps/data/national-emissions-reported-to-the-unfccc-and-to-the-eu-greenhouse-gas-monitoring-mechanism-16 + # downloaded 201228 (modified by EEA last on 201221) + df = pd.read_csv(input_co2, encoding="latin-1", low_memory=False) + + df.replace(dict(Year="1985-1987"), 1986, inplace=True) + df.Year = df.Year.astype(int) + index_col = ["Country_code", "Pollutant_name", "Year", "Sector_name"] + df = df.set_index(index_col).sort_index() + + emissions_scope = emissions_scope + + cts = ["CH", "EUA", "NO"] + eu28_eea + + slicer = idx[cts, emissions_scope, year, to_ipcc.values()] + emissions = ( + df.loc[slicer, "emissions"] + .unstack("Sector_name") + .rename(columns=reverse(to_ipcc)) + .droplevel([1, 2]) + ) + + emissions.rename(index={"EUA": "EU28", "UK": "GB"}, inplace=True) + + to_subtract = [ + "electricity", + "services non-elec", + "residential non-elec", + "road non-elec", + "rail non-elec", + "domestic aviation", + "international aviation", + "domestic navigation", + "international navigation", + "agriculture, forestry and fishing", + ] + emissions["industrial non-elec"] = emissions["total energy"] - emissions[ + to_subtract + ].sum(axis=1) + + emissions["agriculture"] += emissions["agriculture, forestry and fishing"] + + to_drop = [ + "total energy", + "total wL", + "total woL", + "agriculture, forestry and fishing", + ] + emissions.drop(columns=to_drop, inplace=True) + + # convert from Gg to Mt + return emissions / 1e3 + + +def build_eurostat_co2(input_eurostat, countries, report_year, year=1990): + eurostat = build_eurostat(input_eurostat, countries, report_year, year) + + specific_emissions = pd.Series(index=eurostat.columns, dtype=float) + + # emissions in tCO2_equiv per MWh_th + specific_emissions["Solid fuels"] = 0.36 # Approximates coal + specific_emissions["Oil (total)"] = 0.285 # Average of distillate and residue + specific_emissions["Gas"] = 0.2 # For natural gas + + # oil values from https://www.eia.gov/tools/faqs/faq.cfm?id=74&t=11 + # Distillate oil (No. 2) 0.276 + # Residual oil (No. 6) 0.298 + # https://www.eia.gov/electricity/annual/html/epa_a_03.html + + return eurostat.multiply(specific_emissions).sum(axis=1) + + +def build_co2_totals(countries, eea_co2, eurostat_co2): + co2 = eea_co2.reindex(countries) + + for ct in pd.Index(countries).intersection(["BA", "RS", "AL", "ME", "MK"]): + mappings = { + "electricity": ( + ct, + "+", + "Conventional Thermal Power Stations", + "of which From Coal", + ), + "residential non-elec": (ct, "+", "+", "Residential"), + "services non-elec": (ct, "+", "+", "Services"), + "road non-elec": (ct, "+", "+", "Road"), + "rail non-elec": (ct, "+", "+", "Rail"), + "domestic navigation": (ct, "+", "+", "Domestic Navigation"), + "international navigation": (ct, "-", "Bunkers"), + "domestic aviation": (ct, "+", "+", "Domestic aviation"), + "international aviation": (ct, "+", "+", "International aviation"), + # does not include industrial process emissions or fuel processing/refining + "industrial non-elec": (ct, "+", "Industry"), + # does not include non-energy emissions + "agriculture": (eurostat_co2.index.get_level_values(0) == ct) + & eurostat_co2.index.isin(["Agriculture / Forestry", "Fishing"], level=3), + } + + for i, mi in mappings.items(): + co2.at[ct, i] = eurostat_co2.loc[mi].sum() + + return co2 + + +def build_transport_data(countries, population, idees): + transport_data = pd.DataFrame(index=countries) + + # collect number of cars + + transport_data["number cars"] = idees["passenger cars"] + + # CH from http://ec.europa.eu/eurostat/statistics-explained/index.php/Passenger_cars_in_the_EU#Luxembourg_has_the_highest_number_of_passenger_cars_per_inhabitant + if "CH" in countries: + transport_data.at["CH", "number cars"] = 4.136e6 + + missing = transport_data.index[transport_data["number cars"].isna()] + if not missing.empty: + logger.info( + f"Missing data on cars from:\n{list(missing)}\nFilling gaps with averaged data." + ) + + cars_pp = transport_data["number cars"] / population + transport_data.loc[missing, "number cars"] = cars_pp.mean() * population + + # collect average fuel efficiency in kWh/km + + transport_data["average fuel efficiency"] = idees["passenger car efficiency"] + + missing = transport_data.index[transport_data["average fuel efficiency"].isna()] + if not missing.empty: + logger.info( + f"Missing data on fuel efficiency from:\n{list(missing)}\nFilling gapswith averaged data." + ) + + fill_values = transport_data["average fuel efficiency"].mean() + transport_data.loc[missing, "average fuel efficiency"] = fill_values + + return transport_data + + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake("build_energy_totals") + + logging.basicConfig(level=snakemake.config["logging"]["level"]) + + config = snakemake.config["energy"] + + nuts3 = gpd.read_file(snakemake.input.nuts3_shapes).set_index("index") + population = nuts3["pop"].groupby(nuts3.country).sum() + + countries = snakemake.config["countries"] + idees_countries = pd.Index(countries).intersection(eu28) + + data_year = config["energy_totals_year"] + report_year = snakemake.config["energy"]["eurostat_report_year"] + input_eurostat = snakemake.input.eurostat + eurostat = build_eurostat(input_eurostat, countries, report_year, data_year) + swiss = build_swiss(data_year) + idees = build_idees(idees_countries, data_year) + + energy = build_energy_totals(countries, eurostat, swiss, idees) + energy.to_csv(snakemake.output.energy_name) + + base_year_emissions = config["base_emissions_year"] + emissions_scope = snakemake.config["energy"]["emissions"] + eea_co2 = build_eea_co2(snakemake.input.co2, base_year_emissions, emissions_scope) + eurostat_co2 = build_eurostat_co2( + input_eurostat, countries, report_year, base_year_emissions + ) + + co2 = build_co2_totals(countries, eea_co2, eurostat_co2) + co2.to_csv(snakemake.output.co2_name) + + transport = build_transport_data(countries, population, idees) + transport.to_csv(snakemake.output.transport_name) diff --git a/scripts/build_gas_input_locations.py b/scripts/build_gas_input_locations.py new file mode 100644 index 00000000..a3b945ab --- /dev/null +++ b/scripts/build_gas_input_locations.py @@ -0,0 +1,124 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2021-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Build import locations for fossil gas from entry-points, LNG terminals and +production sites with data from SciGRID_gas and Global Energy Monitor. +""" + +import logging + +logger = logging.getLogger(__name__) + +import geopandas as gpd +import pandas as pd +from cluster_gas_network import load_bus_regions + + +def read_scigrid_gas(fn): + df = gpd.read_file(fn) + df = pd.concat([df, df.param.apply(pd.Series)], axis=1) + df.drop(["param", "uncertainty", "method"], axis=1, inplace=True) + return df + + +def build_gem_lng_data(lng_fn): + df = pd.read_excel(lng_fn[0], sheet_name="LNG terminals - data") + df = df.set_index("ComboID") + + remove_status = ["Cancelled"] + remove_country = ["Cyprus", "Turkey"] + remove_terminal = ["Puerto de la Luz LNG Terminal", "Gran Canaria LNG Terminal"] + + df = df.query( + "Status != 'Cancelled' \ + & Country != @remove_country \ + & TerminalName != @remove_terminal \ + & CapacityInMtpa != '--'" + ) + + geometry = gpd.points_from_xy(df["Longitude"], df["Latitude"]) + return gpd.GeoDataFrame(df, geometry=geometry, crs="EPSG:4326") + + +def build_gas_input_locations(lng_fn, entry_fn, prod_fn, countries): + # LNG terminals + lng = build_gem_lng_data(lng_fn) + + # Entry points from outside the model scope + entry = read_scigrid_gas(entry_fn) + entry["from_country"] = entry.from_country.str.rstrip() + entry = entry.loc[ + ~(entry.from_country.isin(countries) & entry.to_country.isin(countries)) + & ~entry.name.str.contains("Tegelen") # only take non-EU entries + | (entry.from_country == "NO") # malformed datapoint # entries from NO to GB + ] + + # production sites inside the model scope + prod = read_scigrid_gas(prod_fn) + prod = prod.loc[ + (prod.geometry.y > 35) & (prod.geometry.x < 30) & (prod.country_code != "DE") + ] + + mcm_per_day_to_mw = 437.5 # MCM/day to MWh/h + mtpa_to_mw = 1649.224 # mtpa to MWh/h + lng["p_nom"] = lng["CapacityInMtpa"] * mtpa_to_mw + entry["p_nom"] = entry["max_cap_from_to_M_m3_per_d"] * mcm_per_day_to_mw + prod["p_nom"] = prod["max_supply_M_m3_per_d"] * mcm_per_day_to_mw + + lng["type"] = "lng" + entry["type"] = "pipeline" + prod["type"] = "production" + + sel = ["geometry", "p_nom", "type"] + + return pd.concat([prod[sel], entry[sel], lng[sel]], ignore_index=True) + + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake( + "build_gas_input_locations", + simpl="", + clusters="37", + ) + + logging.basicConfig(level=snakemake.config["logging"]["level"]) + + regions = load_bus_regions( + snakemake.input.regions_onshore, snakemake.input.regions_offshore + ) + + # add a buffer to eastern countries because some + # entry points are still in Russian or Ukrainian territory. + buffer = 9000 # meters + eastern_countries = ["FI", "EE", "LT", "LV", "PL", "SK", "HU", "RO"] + add_buffer_b = regions.index.str[:2].isin(eastern_countries) + regions.loc[add_buffer_b] = ( + regions[add_buffer_b].to_crs(3035).buffer(buffer).to_crs(4326) + ) + + countries = regions.index.str[:2].unique().str.replace("GB", "UK") + + gas_input_locations = build_gas_input_locations( + snakemake.input.lng, + snakemake.input.entry, + snakemake.input.production, + countries, + ) + + gas_input_nodes = gpd.sjoin(gas_input_locations, regions, how="left") + + gas_input_nodes.rename(columns={"index_right": "bus"}, inplace=True) + + gas_input_nodes.to_file(snakemake.output.gas_input_nodes, driver="GeoJSON") + + gas_input_nodes_s = ( + gas_input_nodes.groupby(["bus", "type"])["p_nom"].sum().unstack() + ) + gas_input_nodes_s.columns.name = "p_nom" + + gas_input_nodes_s.to_csv(snakemake.output.gas_input_nodes_simplified) diff --git a/scripts/build_gas_network.py b/scripts/build_gas_network.py new file mode 100644 index 00000000..23f58caa --- /dev/null +++ b/scripts/build_gas_network.py @@ -0,0 +1,156 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2020-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Preprocess gas network based on data from bthe SciGRID_gas project +(https://www.gas.scigrid.de/). +""" + +import logging + +logger = logging.getLogger(__name__) + +import geopandas as gpd +import pandas as pd +from pypsa.geo import haversine_pts +from shapely.geometry import Point + + +def diameter_to_capacity(pipe_diameter_mm): + """ + Calculate pipe capacity in MW based on diameter in mm. + + 20 inch (500 mm) 50 bar -> 1.5 GW CH4 pipe capacity (LHV) 24 inch + (600 mm) 50 bar -> 5 GW CH4 pipe capacity (LHV) 36 inch (900 + mm) 50 bar -> 11.25 GW CH4 pipe capacity (LHV) 48 inch (1200 mm) 80 + bar -> 21.7 GW CH4 pipe capacity (LHV) + + Based on p.15 of + https://gasforclimate2050.eu/wp-content/uploads/2020/07/2020_European-Hydrogen-Backbone_Report.pdf + """ + # slopes definitions + m0 = (1500 - 0) / (500 - 0) + m1 = (5000 - 1500) / (600 - 500) + m2 = (11250 - 5000) / (900 - 600) + m3 = (21700 - 11250) / (1200 - 900) + + # intercept + a0 = 0 + a1 = -16000 + a2 = -7500 + a3 = -20100 + + if pipe_diameter_mm < 500: + return a0 + m0 * pipe_diameter_mm + elif pipe_diameter_mm < 600: + return a1 + m1 * pipe_diameter_mm + elif pipe_diameter_mm < 900: + return a2 + m2 * pipe_diameter_mm + else: + return a3 + m3 * pipe_diameter_mm + + +def load_dataset(fn): + df = gpd.read_file(fn) + param = df.param.apply(pd.Series) + method = df.method.apply(pd.Series)[["diameter_mm", "max_cap_M_m3_per_d"]] + method.columns = method.columns + "_method" + df = pd.concat([df, param, method], axis=1) + to_drop = ["param", "uncertainty", "method", "tags"] + to_drop = df.columns.intersection(to_drop) + df.drop(to_drop, axis=1, inplace=True) + return df + + +def prepare_dataset( + df, + length_factor=1.5, + correction_threshold_length=4, + correction_threshold_p_nom=8, + bidirectional_below=10, +): + # extract start and end from LineString + df["point0"] = df.geometry.apply(lambda x: Point(x.coords[0])) + df["point1"] = df.geometry.apply(lambda x: Point(x.coords[-1])) + + conversion_factor = 437.5 # MCM/day to MWh/h + df["p_nom"] = df.max_cap_M_m3_per_d * conversion_factor + + # for inferred diameters, assume 500 mm rather than 900 mm (more conservative) + df.loc[df.diameter_mm_method != "raw", "diameter_mm"] = 500.0 + + keep = [ + "name", + "diameter_mm", + "is_H_gas", + "is_bothDirection", + "length_km", + "p_nom", + "max_pressure_bar", + "start_year", + "point0", + "point1", + "geometry", + ] + to_rename = { + "is_bothDirection": "bidirectional", + "is_H_gas": "H_gas", + "start_year": "build_year", + "length_km": "length", + } + df = df[keep].rename(columns=to_rename) + + df.bidirectional = df.bidirectional.astype(bool) + df.H_gas = df.H_gas.astype(bool) + + # short lines below 10 km are assumed to be bidirectional + short_lines = df["length"] < bidirectional_below + df.loc[short_lines, "bidirectional"] = True + + # correct all capacities that deviate correction_threshold factor + # to diameter-based capacities, unless they are NordStream pipelines + # also all capacities below 0.5 GW are now diameter-based capacities + df["p_nom_diameter"] = df.diameter_mm.apply(diameter_to_capacity) + ratio = df.p_nom / df.p_nom_diameter + not_nordstream = df.max_pressure_bar < 220 + df.p_nom.update( + df.p_nom_diameter.where( + (df.p_nom <= 500) + | ((ratio > correction_threshold_p_nom) & not_nordstream) + | ((ratio < 1 / correction_threshold_p_nom) & not_nordstream) + ) + ) + + # lines which have way too discrepant line lengths + # get assigned haversine length * length factor + df["length_haversine"] = df.apply( + lambda p: length_factor + * haversine_pts([p.point0.x, p.point0.y], [p.point1.x, p.point1.y]), + axis=1, + ) + ratio = df.eval("length / length_haversine") + df["length"].update( + df.length_haversine.where( + (df["length"] < 20) + | (ratio > correction_threshold_length) + | (ratio < 1 / correction_threshold_length) + ) + ) + + return df + + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake("build_gas_network") + + logging.basicConfig(level=snakemake.config["logging"]["level"]) + + gas_network = load_dataset(snakemake.input.gas_network) + + gas_network = prepare_dataset(gas_network) + + gas_network.to_csv(snakemake.output.cleaned_gas_network) diff --git a/scripts/build_heat_demand.py b/scripts/build_heat_demand.py new file mode 100644 index 00000000..56ceb4b7 --- /dev/null +++ b/scripts/build_heat_demand.py @@ -0,0 +1,54 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2020-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Build heat demand time series using heating degree day (HDD) approximation. +""" + +import atlite +import geopandas as gpd +import numpy as np +import pandas as pd +import xarray as xr +from dask.distributed import Client, LocalCluster + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake( + "build_heat_demands", + simpl="", + clusters=48, + ) + + nprocesses = int(snakemake.threads) + cluster = LocalCluster(n_workers=nprocesses, threads_per_worker=1) + client = Client(cluster, asynchronous=True) + + time = pd.date_range(freq="h", **snakemake.config["snapshots"]) + cutout = atlite.Cutout(snakemake.input.cutout).sel(time=time) + + clustered_regions = ( + gpd.read_file(snakemake.input.regions_onshore) + .set_index("name") + .buffer(0) + .squeeze() + ) + + I = cutout.indicatormatrix(clustered_regions) + + pop_layout = xr.open_dataarray(snakemake.input.pop_layout) + + stacked_pop = pop_layout.stack(spatial=("y", "x")) + M = I.T.dot(np.diag(I.dot(stacked_pop))) + + heat_demand = cutout.heat_demand( + matrix=M.T, + index=clustered_regions.index, + dask_kwargs=dict(scheduler=client), + show_progress=False, + ) + + heat_demand.to_netcdf(snakemake.output.heat_demand) diff --git a/scripts/build_hydro_profile.py b/scripts/build_hydro_profile.py index 74efc2ef..0e8cfa27 100644 --- a/scripts/build_hydro_profile.py +++ b/scripts/build_hydro_profile.py @@ -1,9 +1,9 @@ #!/usr/bin/env python +# -*- coding: utf-8 -*- -# SPDX-FileCopyrightText: : 2017-2020 The PyPSA-Eur Authors +# SPDX-FileCopyrightText: : 2017-2023 The PyPSA-Eur Authors # # SPDX-License-Identifier: MIT - """ Build hydroelectric inflow time-series for each country. @@ -20,7 +20,7 @@ Relevant Settings clip_min_inflow: .. seealso:: - Documentation of the configuration file ``config.yaml`` at + Documentation of the configuration file ``config/config.yaml`` at :ref:`toplevel_cf`, :ref:`renewable_cf` Inputs @@ -28,7 +28,7 @@ Inputs - ``data/bundle/EIA_hydro_generation_2000_2014.csv``: Hydroelectricity net generation per country and year (`EIA `_) - .. image:: ../img/hydrogeneration.png + .. image:: img/hydrogeneration.png :scale: 33 % - ``resources/country_shapes.geojson``: confer :ref:`shapes` @@ -46,10 +46,10 @@ Outputs e.g. due to river inflow in hydro reservoir. =================== ================ ========================================================= - .. image:: ../img/inflow-ts.png + .. image:: img/inflow-ts.png :scale: 33 % - .. image:: ../img/inflow-box.png + .. image:: img/inflow-box.png :scale: 33 % Description @@ -60,36 +60,98 @@ Description """ import logging -from _helpers import configure_logging import atlite +import country_converter as coco import geopandas as gpd -from vresutils import hydro as vhydro +import pandas as pd +from _helpers import configure_logging + +cc = coco.CountryConverter() + + +def get_eia_annual_hydro_generation(fn, countries): + # in billion kWh/a = TWh/a + df = pd.read_csv(fn, skiprows=2, index_col=1, na_values=[" ", "--"]).iloc[1:, 1:] + df.index = df.index.str.strip() + + former_countries = { + "Former Czechoslovakia": dict( + countries=["Czech Republic", "Slovakia"], start=1980, end=1992 + ), + "Former Serbia and Montenegro": dict( + countries=["Serbia", "Montenegro"], start=1992, end=2005 + ), + "Former Yugoslavia": dict( + countries=[ + "Slovenia", + "Croatia", + "Bosnia and Herzegovina", + "Serbia", + "Montenegro", + "North Macedonia", + ], + start=1980, + end=1991, + ), + } + + for k, v in former_countries.items(): + period = [str(i) for i in range(v["start"], v["end"] + 1)] + ratio = df.loc[v["countries"]].T.dropna().sum() + ratio /= ratio.sum() + for country in v["countries"]: + df.loc[country, period] = df.loc[k, period] * ratio[country] + + baltic_states = ["Latvia", "Estonia", "Lithuania"] + df.loc[baltic_states] = ( + df.loc[baltic_states].T.fillna(df.loc[baltic_states].mean(axis=1)).T + ) + + df.loc["Germany"] = df.filter(like="Germany", axis=0).sum() + df.loc["Serbia"] += df.loc["Kosovo"].fillna(0.0) + df = df.loc[~df.index.str.contains("Former")] + df.drop(["Europe", "Germany, West", "Germany, East", "Kosovo"], inplace=True) + + df.index = cc.convert(df.index, to="iso2") + df.index.name = "countries" + + df = df.T[countries] * 1e6 # in MWh/a + + return df + logger = logging.getLogger(__name__) if __name__ == "__main__": - if 'snakemake' not in globals(): + if "snakemake" not in globals(): from _helpers import mock_snakemake - snakemake = mock_snakemake('build_hydro_profile') + + snakemake = mock_snakemake("build_hydro_profile") configure_logging(snakemake) - config_hydro = snakemake.config['renewable']['hydro'] + config_hydro = snakemake.config["renewable"]["hydro"] cutout = atlite.Cutout(snakemake.input.cutout) - countries = snakemake.config['countries'] - country_shapes = (gpd.read_file(snakemake.input.country_shapes) - .set_index('name')['geometry'].reindex(countries)) - country_shapes.index.name = 'countries' + countries = snakemake.config["countries"] + country_shapes = ( + gpd.read_file(snakemake.input.country_shapes) + .set_index("name")["geometry"] + .reindex(countries) + ) + country_shapes.index.name = "countries" - eia_stats = vhydro.get_eia_annual_hydro_generation( - snakemake.input.eia_hydro_generation).reindex(columns=countries) - inflow = cutout.runoff(shapes=country_shapes, - smooth=True, - lower_threshold_quantile=True, - normalize_using_yearly=eia_stats) + fn = snakemake.input.eia_hydro_generation + eia_stats = get_eia_annual_hydro_generation(fn, countries) - if 'clip_min_inflow' in config_hydro: - inflow = inflow.where(inflow > config_hydro['clip_min_inflow'], 0) + inflow = cutout.runoff( + shapes=country_shapes, + smooth=True, + lower_threshold_quantile=True, + normalize_using_yearly=eia_stats, + ) + + if "clip_min_inflow" in config_hydro: + inflow = inflow.where(inflow > config_hydro["clip_min_inflow"], 0) inflow.to_netcdf(snakemake.output[0]) diff --git a/scripts/build_industrial_distribution_key.py b/scripts/build_industrial_distribution_key.py new file mode 100644 index 00000000..69daf64d --- /dev/null +++ b/scripts/build_industrial_distribution_key.py @@ -0,0 +1,154 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2020-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Build spatial distribution of industries from Hotmaps database. +""" + +import logging + +logger = logging.getLogger(__name__) + +import uuid +from itertools import product + +import geopandas as gpd +import pandas as pd +from packaging.version import Version, parse + + +def locate_missing_industrial_sites(df): + """ + Locate industrial sites without valid locations based on city and + countries. + + Should only be used if the model's spatial resolution is coarser + than individual cities. + """ + try: + from geopy.extra.rate_limiter import RateLimiter + from geopy.geocoders import Nominatim + except: + raise ModuleNotFoundError( + "Optional dependency 'geopy' not found." + "Install via 'conda install -c conda-forge geopy'" + "or set 'industry: hotmaps_locate_missing: false'." + ) + + locator = Nominatim(user_agent=str(uuid.uuid4())) + geocode = RateLimiter(locator.geocode, min_delay_seconds=2) + + def locate_missing(s): + if pd.isna(s.City) or s.City == "CONFIDENTIAL": + return None + + loc = geocode([s.City, s.Country], geometry="wkt") + if loc is not None: + logger.debug(f"Found:\t{loc}\nFor:\t{s['City']}, {s['Country']}\n") + return f"POINT({loc.longitude} {loc.latitude})" + else: + return None + + missing = df.index[df.geom.isna()] + df.loc[missing, "coordinates"] = df.loc[missing].apply(locate_missing, axis=1) + + # report stats + num_still_missing = df.coordinates.isna().sum() + num_found = len(missing) - num_still_missing + share_missing = len(missing) / len(df) * 100 + share_still_missing = num_still_missing / len(df) * 100 + logger.warning( + f"Found {num_found} missing locations. \nShare of missing locations reduced from {share_missing:.2f}% to {share_still_missing:.2f}%." + ) + + return df + + +def prepare_hotmaps_database(regions): + """ + Load hotmaps database of industrial sites and map onto bus regions. + """ + df = pd.read_csv(snakemake.input.hotmaps_industrial_database, sep=";", index_col=0) + + df[["srid", "coordinates"]] = df.geom.str.split(";", expand=True) + + if snakemake.config["industry"].get("hotmaps_locate_missing", False): + df = locate_missing_industrial_sites(df) + + # remove those sites without valid locations + df.drop(df.index[df.coordinates.isna()], inplace=True) + + df["coordinates"] = gpd.GeoSeries.from_wkt(df["coordinates"]) + + gdf = gpd.GeoDataFrame(df, geometry="coordinates", crs="EPSG:4326") + + kws = ( + dict(op="within") + if parse(gpd.__version__) < Version("0.10") + else dict(predicate="within") + ) + gdf = gpd.sjoin(gdf, regions, how="inner", **kws) + + gdf.rename(columns={"index_right": "bus"}, inplace=True) + gdf["country"] = gdf.bus.str[:2] + + return gdf + + +def build_nodal_distribution_key(hotmaps, regions, countries): + """ + Build nodal distribution keys for each sector. + """ + sectors = hotmaps.Subsector.unique() + + keys = pd.DataFrame(index=regions.index, columns=sectors, dtype=float) + + pop = pd.read_csv(snakemake.input.clustered_pop_layout, index_col=0) + pop["country"] = pop.index.str[:2] + ct_total = pop.total.groupby(pop["country"]).sum() + keys["population"] = pop.total / pop.country.map(ct_total) + + for sector, country in product(sectors, countries): + regions_ct = regions.index[regions.index.str.contains(country)] + + facilities = hotmaps.query("country == @country and Subsector == @sector") + + if not facilities.empty: + emissions = facilities["Emissions_ETS_2014"] + if emissions.sum() == 0: + key = pd.Series(1 / len(facilities), facilities.index) + else: + # BEWARE: this is a strong assumption + emissions = emissions.fillna(emissions.mean()) + key = emissions / emissions.sum() + key = key.groupby(facilities.bus).sum().reindex(regions_ct, fill_value=0.0) + else: + key = keys.loc[regions_ct, "population"] + + keys.loc[regions_ct, sector] = key + + return keys + + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake( + "build_industrial_distribution_key", + simpl="", + clusters=48, + ) + + logging.basicConfig(level=snakemake.config["logging"]["level"]) + + countries = snakemake.config["countries"] + + regions = gpd.read_file(snakemake.input.regions_onshore).set_index("name") + + hotmaps = prepare_hotmaps_database(regions) + + keys = build_nodal_distribution_key(hotmaps, regions, countries) + + keys.to_csv(snakemake.output.industrial_distribution_key) 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..703997b1 --- /dev/null +++ b/scripts/build_industrial_energy_demand_per_country_today.py @@ -0,0 +1,199 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2020-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Build industrial energy demand per country. +""" + +import multiprocessing as mp +from functools import partial + +import country_converter as coco +import pandas as pd +from tqdm import tqdm + +cc = coco.CountryConverter() + +ktoe_to_twh = 0.011630 + +# name in JRC-IDEES Energy Balances +sector_sheets = { + "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 Products": "all", + "Solid Fuels": "solid", + "Total petroleum products (without biofuels)": "liquid", + "Gases": "gas", + "Nuclear heat": "heat", + "Derived heat": "heat", + "Biomass and Renewable wastes": "biomass", + "Wastes (non-renewable)": "waste", + "Electricity": "electricity", +} + +eu28 = cc.EU28as("ISO2").ISO2.tolist() + +jrc_names = {"GR": "EL", "GB": "UK"} + + +def industrial_energy_demand_per_country(country, year, jrc_dir): + jrc_country = jrc_names.get(country, country) + fn = f"{jrc_dir}/JRC-IDEES-2015_EnergyBalance_{jrc_country}.xlsx" + + sheets = list(sector_sheets.values()) + df_dict = pd.read_excel(fn, sheet_name=sheets, index_col=0) + + def get_subsector_data(sheet): + df = df_dict[sheet][year].groupby(fuels).sum() + + df["ammonia"] = 0.0 + + df["other"] = df["all"] - df.loc[df.index != "all"].sum() + + return df + + df = pd.concat( + {sub: get_subsector_data(sheet) for sub, sheet in sector_sheets.items()}, axis=1 + ) + + sel = ["Mining and quarrying", "Construction", "Non-specified"] + df["Other Industrial Sectors"] = df[sel].sum(axis=1) + df["Basic chemicals"] += df["Basic chemicals feedstock"] + + df.drop(columns=sel + ["Basic chemicals feedstock"], index="all", inplace=True) + + df *= ktoe_to_twh + + return df + + +def add_ammonia_energy_demand(demand): + # MtNH3/a + fn = snakemake.input.ammonia_production + ammonia = pd.read_csv(fn, index_col=0)[str(year)] / 1e3 + + def get_ammonia_by_fuel(x): + fuels = { + "gas": config["MWh_CH4_per_tNH3_SMR"], + "electricity": config["MWh_elec_per_tNH3_SMR"], + } + + return pd.Series({k: x * v for k, v in fuels.items()}) + + ammonia_by_fuel = ammonia.apply(get_ammonia_by_fuel).T + ammonia_by_fuel = ammonia_by_fuel.unstack().reindex( + index=demand.index, fill_value=0.0 + ) + + ammonia = pd.DataFrame({"ammonia": ammonia * config["MWh_NH3_per_tNH3"]}).T + + demand["Ammonia"] = ammonia.unstack().reindex(index=demand.index, fill_value=0.0) + + demand["Basic chemicals (without ammonia)"] = ( + demand["Basic chemicals"] - ammonia_by_fuel + ) + + demand["Basic chemicals (without ammonia)"].clip(lower=0, inplace=True) + + demand.drop(columns="Basic chemicals", inplace=True) + + return demand + + +def add_non_eu28_industrial_energy_demand(countries, demand): + non_eu28 = countries.difference(eu28) + if non_eu28.empty: + return demand + # output in MtMaterial/a + fn = snakemake.input.industrial_production_per_country + production = pd.read_csv(fn, index_col=0) / 1e3 + + # recombine HVC, Chlorine and Methanol to Basic chemicals (without ammonia) + chemicals = ["HVC", "Chlorine", "Methanol"] + production["Basic chemicals (without ammonia)"] = production[chemicals].sum(axis=1) + production.drop(columns=chemicals, inplace=True) + + eu28_production = production.loc[countries.intersection(eu28)].sum() + eu28_energy = demand.groupby(level=1).sum() + eu28_averages = eu28_energy / eu28_production + + demand_non_eu28 = pd.concat( + {k: v * eu28_averages for k, v in production.loc[non_eu28].iterrows()} + ) + + return pd.concat([demand, demand_non_eu28]) + + +def industrial_energy_demand(countries, year): + nprocesses = snakemake.threads + disable_progress = snakemake.config["run"].get("disable_progressbar", False) + func = partial( + industrial_energy_demand_per_country, year=year, jrc_dir=snakemake.input.jrc + ) + tqdm_kwargs = dict( + ascii=False, + unit=" country", + total=len(countries), + desc="Build industrial energy demand", + disable=disable_progress, + ) + with mp.Pool(processes=nprocesses) as pool: + demand_l = list(tqdm(pool.imap(func, countries), **tqdm_kwargs)) + + demand = pd.concat(demand_l, keys=countries) + + return demand + + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake("build_industrial_energy_demand_per_country_today") + + config = snakemake.config["industry"] + year = config.get("reference_year", 2015) + countries = pd.Index(snakemake.config["countries"]) + + demand = industrial_energy_demand(countries.intersection(eu28), year) + + demand = add_ammonia_energy_demand(demand) + + demand = add_non_eu28_industrial_energy_demand(countries, demand) + + # for format compatibility + demand = demand.stack(dropna=False).unstack(level=[0, 2]) + + # style and annotation + demand.index.name = "TWh/a" + demand.sort_index(axis=1, inplace=True) + + fn = snakemake.output.industrial_energy_demand_per_country_today + demand.to_csv(fn) 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..55c10c5d --- /dev/null +++ b/scripts/build_industrial_energy_demand_per_node.py @@ -0,0 +1,52 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2020-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Build industrial energy demand per model region. +""" + +import pandas as pd + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake( + "build_industrial_energy_demand_per_node", + simpl="", + clusters=48, + planning_horizons=2030, + ) + + # import EU ratios df as csv + fn = snakemake.input.industry_sector_ratios + industry_sector_ratios = pd.read_csv(fn, index_col=0) + + # material demand per node and industry (kton/a) + fn = snakemake.input.industrial_production_per_node + nodal_production = pd.read_csv(fn, index_col=0) + + # energy demand today to get current electricity + fn = snakemake.input.industrial_energy_demand_per_node_today + nodal_today = pd.read_csv(fn, index_col=0) + + # final energy consumption per node and industry (TWh/a) + nodal_df = nodal_production.dot(industry_sector_ratios.T) + + # convert GWh to TWh and ktCO2 to MtCO2 + nodal_df *= 0.001 + + 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)" + + fn = snakemake.output.industrial_energy_demand_per_node + nodal_df.to_csv(fn, 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..d845e704 --- /dev/null +++ b/scripts/build_industrial_energy_demand_per_node_today.py @@ -0,0 +1,79 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2020-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Build industrial energy demand per model region. +""" + +from itertools import product + +import numpy as np +import pandas as pd + +# 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", +} + + +def build_nodal_industrial_energy_demand(): + fn = snakemake.input.industrial_energy_demand_per_country_today + industrial_demand = pd.read_csv(fn, header=[0, 1], index_col=0) + + fn = snakemake.input.industrial_distribution_key + keys = pd.read_csv(fn, index_col=0) + keys["country"] = keys.index.str[:2] + + nodal_demand = pd.DataFrame( + 0.0, dtype=float, index=keys.index, columns=industrial_demand.index + ) + + countries = keys.country.unique() + sectors = industrial_demand.columns.levels[1] + + for country, sector in product(countries, sectors): + buses = keys.index[keys.country == country] + mapping = sector_mapping.get(sector, "population") + + key = keys.loc[buses, mapping] + demand = industrial_demand[country, sector] + + outer = pd.DataFrame( + np.outer(key, demand), index=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__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake( + "build_industrial_energy_demand_per_node_today", + simpl="", + clusters=48, + ) + + build_nodal_industrial_energy_demand() diff --git a/scripts/build_industrial_production_per_country.py b/scripts/build_industrial_production_per_country.py new file mode 100644 index 00000000..437806b3 --- /dev/null +++ b/scripts/build_industrial_production_per_country.py @@ -0,0 +1,296 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2020-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Build industrial production per country. +""" + +import logging +from functools import partial + +logger = logging.getLogger(__name__) + +import multiprocessing as mp + +import country_converter as coco +import numpy as np +import pandas as pd +from _helpers import mute_print +from tqdm import tqdm + +cc = coco.CountryConverter() + +tj_to_ktoe = 0.0238845 +ktoe_to_twh = 0.01163 + +sub_sheet_name_dict = { + "Iron and steel": "ISI", + "Chemicals Industry": "CHI", + "Non-metallic mineral products": "NMM", + "Pulp, paper and printing": "PPA", + "Food, beverages and tobacco": "FBT", + "Non Ferrous Metals": "NFM", + "Transport Equipment": "TRE", + "Machinery Equipment": "MAE", + "Textiles and leather": "TEL", + "Wood and wood products": "WWP", + "Other Industrial Sectors": "OIS", +} + +eu28 = cc.EU28as("ISO2").ISO2.values + +jrc_names = {"GR": "EL", "GB": "UK"} + +sect2sub = { + "Iron and steel": ["Electric arc", "Integrated steelworks"], + "Chemicals Industry": [ + "Basic chemicals", + "Other chemicals", + "Pharmaceutical products etc.", + ], + "Non-metallic mineral products": [ + "Cement", + "Ceramics & other NMM", + "Glass production", + ], + "Pulp, paper and printing": [ + "Pulp production", + "Paper production", + "Printing and media reproduction", + ], + "Food, beverages and tobacco": ["Food, beverages and tobacco"], + "Non Ferrous Metals": [ + "Alumina production", + "Aluminium - primary production", + "Aluminium - secondary production", + "Other non-ferrous metals", + ], + "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"], +} + +sub2sect = {v: k for k, vv in sect2sub.items() for v in vv} + +fields = { + "Electric arc": "Electric arc", + "Integrated steelworks": "Integrated steelworks", + "Basic chemicals": "Basic chemicals (kt ethylene eq.)", + "Other chemicals": "Other chemicals (kt ethylene eq.)", + "Pharmaceutical products etc.": "Pharmaceutical products etc. (kt ethylene eq.)", + "Cement": "Cement (kt)", + "Ceramics & other NMM": "Ceramics & other NMM (kt bricks eq.)", + "Glass production": "Glass production (kt)", + "Pulp production": "Pulp production (kt)", + "Paper production": "Paper production (kt)", + "Printing and media reproduction": "Printing and media reproduction (kt paper eq.)", + "Food, beverages and tobacco": "Physical output (index)", + "Alumina production": "Alumina production (kt)", + "Aluminium - primary production": "Aluminium - primary production", + "Aluminium - secondary production": "Aluminium - secondary production", + "Other non-ferrous metals": "Other non-ferrous metals (kt lead eq.)", + "Transport Equipment": "Physical output (index)", + "Machinery Equipment": "Physical output (index)", + "Textiles and leather": "Physical output (index)", + "Wood and wood products": "Physical output (index)", + "Other Industrial Sectors": "Physical output (index)", +} + +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", +} + +eb_sectors = { + "Iron & steel industry": "Iron and steel", + "Chemical and Petrochemical industry": "Chemicals Industry", + "Non-ferrous metal industry": "Non-metallic mineral products", + "Paper, Pulp and Print": "Pulp, paper and printing", + "Food and Tabacco": "Food, beverages and tobacco", + "Non-metallic Minerals (Glass, pottery & building mat. Industry)": "Non Ferrous Metals", + "Transport Equipment": "Transport Equipment", + "Machinery": "Machinery Equipment", + "Textile and Leather": "Textiles and leather", + "Wood and Wood Products": "Wood and wood products", + "Non-specified (Industry)": "Other Industrial Sectors", +} + +# TODO: this should go in a csv in `data` +# 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 +e_switzerland = pd.Series( + { + "Iron and steel": 7889.0, + "Chemicals Industry": 26871.0, + "Non-metallic mineral products": 15513.0 + 3820.0, + "Pulp, paper and printing": 12004.0, + "Food, beverages and tobacco": 17728.0, + "Non Ferrous Metals": 3037.0, + "Transport Equipment": 14993.0, + "Machinery Equipment": 4724.0, + "Textiles and leather": 1742.0, + "Wood and wood products": 0.0, + "Other Industrial Sectors": 10825.0, + "current electricity": 53760.0, + } +) + + +def find_physical_output(df): + start = np.where(df.index.str.contains("Physical output", na=""))[0][0] + empty_row = np.where(df.index.isnull())[0] + end = empty_row[np.argmax(empty_row > start)] + return slice(start, end) + + +def get_energy_ratio(country, eurostat_dir, jrc_dir, year): + if country == "CH": + e_country = e_switzerland * tj_to_ktoe + else: + # estimate physical output, energy consumption in the sector and country + fn = f"{eurostat_dir}/{eb_names[country]}.XLSX" + with mute_print(): + df = pd.read_excel( + fn, sheet_name="2016", index_col=2, header=0, skiprows=1 + ).squeeze("columns") + e_country = df.loc[eb_sectors.keys(), "Total all products"].rename(eb_sectors) + + fn = f"{jrc_dir}/JRC-IDEES-2015_Industry_EU28.xlsx" + + with mute_print(): + df = pd.read_excel(fn, sheet_name="Ind_Summary", index_col=0, header=0).squeeze( + "columns" + ) + + assert df.index[48] == "by sector" + year_i = df.columns.get_loc(year) + e_eu28 = df.iloc[49:76, year_i] + e_eu28.index = e_eu28.index.str.lstrip() + + e_ratio = e_country / e_eu28 + + return pd.Series({k: e_ratio[v] for k, v in sub2sect.items()}) + + +def industry_production_per_country(country, year, eurostat_dir, jrc_dir): + def get_sector_data(sector, country): + jrc_country = jrc_names.get(country, country) + fn = f"{jrc_dir}/JRC-IDEES-2015_Industry_{jrc_country}.xlsx" + sheet = sub_sheet_name_dict[sector] + with mute_print(): + df = pd.read_excel(fn, sheet_name=sheet, index_col=0, header=0).squeeze( + "columns" + ) + + year_i = df.columns.get_loc(year) + df = df.iloc[find_physical_output(df), year_i] + + df = df.loc[map(fields.get, sect2sub[sector])] + df.index = sect2sub[sector] + + return df + + ct = "EU28" if country not in eu28 else country + demand = pd.concat([get_sector_data(s, ct) for s in sect2sub]) + + if country not in eu28: + demand *= get_energy_ratio(country, eurostat_dir, jrc_dir, year) + + demand.name = country + + return demand + + +def industry_production(countries, year, eurostat_dir, jrc_dir): + nprocesses = snakemake.threads + disable_progress = snakemake.config["run"].get("disable_progressbar", False) + + func = partial( + industry_production_per_country, + year=year, + eurostat_dir=eurostat_dir, + jrc_dir=jrc_dir, + ) + tqdm_kwargs = dict( + ascii=False, + unit=" country", + total=len(countries), + desc="Build industry production", + disable=disable_progress, + ) + with mp.Pool(processes=nprocesses) as pool: + demand_l = list(tqdm(pool.imap(func, countries), **tqdm_kwargs)) + + demand = pd.concat(demand_l, axis=1).T + + demand.index.name = "kton/a" + + return demand + + +def separate_basic_chemicals(demand, year): + """ + Separate basic chemicals into ammonia, chlorine, methanol and HVC. + """ + ammonia = pd.read_csv(snakemake.input.ammonia_production, index_col=0) + + there = ammonia.index.intersection(demand.index) + missing = demand.index.symmetric_difference(there) + + logger.info(f"Following countries have no ammonia demand: {missing.tolist()}") + + demand["Ammonia"] = 0.0 + + demand.loc[there, "Ammonia"] = ammonia.loc[there, str(year)] + + demand["Basic chemicals"] -= demand["Ammonia"] + + # EE, HR and LT got negative demand through subtraction - poor data + demand["Basic chemicals"].clip(lower=0.0, inplace=True) + + # assume HVC, methanol, chlorine production proportional to non-ammonia basic chemicals + distribution_key = demand["Basic chemicals"] / demand["Basic chemicals"].sum() + demand["HVC"] = config["HVC_production_today"] * 1e3 * distribution_key + demand["Chlorine"] = config["chlorine_production_today"] * 1e3 * distribution_key + demand["Methanol"] = config["methanol_production_today"] * 1e3 * distribution_key + + demand.drop(columns=["Basic chemicals"], inplace=True) + + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake("build_industrial_production_per_country") + + logging.basicConfig(level=snakemake.config["logging"]["level"]) + + countries = snakemake.config["countries"] + + year = snakemake.config["industry"]["reference_year"] + + config = snakemake.config["industry"] + + jrc_dir = snakemake.input.jrc + eurostat_dir = snakemake.input.eurostat + + demand = industry_production(countries, year, eurostat_dir, jrc_dir) + + separate_basic_chemicals(demand, year) + + fn = snakemake.output.industrial_production_per_country + demand.to_csv(fn, 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..6c445608 --- /dev/null +++ b/scripts/build_industrial_production_per_country_tomorrow.py @@ -0,0 +1,74 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2020-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Build future industrial production per country. +""" + +import pandas as pd +from prepare_sector_network import get + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake("build_industrial_production_per_country_tomorrow") + + config = snakemake.config["industry"] + + investment_year = int(snakemake.wildcards.planning_horizons) + + fn = snakemake.input.industrial_production_per_country + production = pd.read_csv(fn, index_col=0) + + keys = ["Integrated steelworks", "Electric arc"] + total_steel = production[keys].sum(axis=1) + + st_primary_fraction = get(config["St_primary_fraction"], investment_year) + dri_fraction = get(config["DRI_fraction"], investment_year) + int_steel = production["Integrated steelworks"].sum() + fraction_persistent_primary = st_primary_fraction * total_steel.sum() / int_steel + + dri = ( + dri_fraction * fraction_persistent_primary * production["Integrated steelworks"] + ) + production.insert(2, "DRI + Electric arc", dri) + + not_dri = 1 - dri_fraction + production["Integrated steelworks"] = ( + not_dri * fraction_persistent_primary * production["Integrated steelworks"] + ) + production["Electric arc"] = ( + total_steel + - production["DRI + Electric arc"] + - production["Integrated steelworks"] + ) + + keys = ["Aluminium - primary production", "Aluminium - secondary production"] + total_aluminium = production[keys].sum(axis=1) + + key_pri = "Aluminium - primary production" + key_sec = "Aluminium - secondary production" + + al_primary_fraction = get(config["Al_primary_fraction"], investment_year) + fraction_persistent_primary = ( + al_primary_fraction * total_aluminium.sum() / production[key_pri].sum() + ) + + production[key_pri] = fraction_persistent_primary * production[key_pri] + production[key_sec] = total_aluminium - production[key_pri] + + production["HVC (mechanical recycling)"] = ( + get(config["HVC_mechanical_recycling_fraction"], investment_year) + * production["HVC"] + ) + production["HVC (chemical recycling)"] = ( + get(config["HVC_chemical_recycling_fraction"], investment_year) + * production["HVC"] + ) + + production["HVC"] *= get(config["HVC_primary_fraction"], investment_year) + + fn = snakemake.output.industrial_production_per_country_tomorrow + production.to_csv(fn, 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..7b69948a --- /dev/null +++ b/scripts/build_industrial_production_per_node.py @@ -0,0 +1,76 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2020-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Build industrial production per model region. +""" + +from itertools import product + +import pandas as pd + +# 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", + "HVC": "Chemical industry", + "HVC (mechanical recycling)": "Chemical industry", + "HVC (chemical recycling)": "Chemical industry", + "Methanol": "Chemical industry", + "Chlorine": "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", +} + + +def build_nodal_industrial_production(): + fn = snakemake.input.industrial_production_per_country_tomorrow + industrial_production = pd.read_csv(fn, index_col=0) + + fn = snakemake.input.industrial_distribution_key + keys = pd.read_csv(fn, index_col=0) + keys["country"] = keys.index.str[:2] + + nodal_production = pd.DataFrame( + index=keys.index, columns=industrial_production.columns, dtype=float + ) + + countries = keys.country.unique() + sectors = industrial_production.columns + + for country, sector in product(countries, sectors): + buses = keys.index[keys.country == country] + mapping = sector_mapping.get(sector, "population") + + key = keys.loc[buses, mapping] + nodal_production.loc[buses, sector] = ( + industrial_production.at[country, sector] * key + ) + + nodal_production.to_csv(snakemake.output.industrial_production_per_node) + + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake( + "build_industrial_production_per_node", + simpl="", + clusters=48, + ) + + build_nodal_industrial_production() diff --git a/scripts/build_industry_sector_ratios.py b/scripts/build_industry_sector_ratios.py new file mode 100644 index 00000000..54f2cfdc --- /dev/null +++ b/scripts/build_industry_sector_ratios.py @@ -0,0 +1,1491 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2020-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Build specific energy consumption by carrier and industries. +""" + +import pandas as pd +from _helpers import mute_print + +# GWh/ktoe OR MWh/toe +toe_to_MWh = 11.630 + +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", +] + +sheet_names = { + "Iron and steel": "ISI", + "Chemicals Industry": "CHI", + "Non-metallic mineral products": "NMM", + "Pulp, paper and printing": "PPA", + "Food, beverages and tobacco": "FBT", + "Non Ferrous Metals": "NFM", + "Transport Equipment": "TRE", + "Machinery Equipment": "MAE", + "Textiles and leather": "TEL", + "Wood and wood products": "WWP", + "Other Industrial Sectors": "OIS", +} + + +index = [ + "elec", + "coal", + "coke", + "biomass", + "methane", + "hydrogen", + "heat", + "naphtha", + "ammonia", + "process emission", + "process emission from feedstock", +] + + +def load_idees_data(sector, country="EU28"): + suffixes = {"out": "", "fec": "_fec", "ued": "_ued", "emi": "_emi"} + sheets = {k: sheet_names[sector] + v for k, v in suffixes.items()} + + def usecols(x): + return isinstance(x, str) or x == year + + with mute_print(): + idees = pd.read_excel( + f"{snakemake.input.idees}/JRC-IDEES-2015_Industry_{country}.xlsx", + sheet_name=list(sheets.values()), + index_col=0, + header=0, + usecols=usecols, + ) + + for k, v in sheets.items(): + idees[k] = idees.pop(v).squeeze() + + return idees + + +def iron_and_steel(): + # There are two different approaches to produce iron and steel: + # i.e., integrated steelworks and electric arc. + # Electric arc approach has higher efficiency and relies more on electricity. + # We assume that integrated steelworks will be replaced by electric arc entirely. + + sector = "Iron and steel" + idees = load_idees_data(sector) + + df = pd.DataFrame(index=index) + + ## Electric arc + + sector = "Electric arc" + + df[sector] = 0.0 + + s_fec = idees["fec"][51:57] + assert s_fec.index[0] == sector + + sel = ["Lighting", "Air compressors", "Motor drives", "Fans and pumps"] + df.at["elec", sector] += s_fec[sel].sum() + + df.at["heat", sector] += s_fec["Low enthalpy heat"] + + subsector = "Steel: Smelters" + s_fec = idees["fec"][61:67] + s_ued = idees["ued"][61:67] + assert s_fec.index[0] == subsector + assert s_ued.index[0] == subsector + + # efficiency changes due to transforming all the smelters into methane + key = "Natural gas (incl. biogas)" + eff_met = s_ued[key] / s_fec[key] + + df.at["methane", sector] += s_ued[subsector] / eff_met + + subsector = "Steel: Electric arc" + s_fec = idees["fec"][67:68] + assert s_fec.index[0] == subsector + + df.at["elec", sector] += s_fec[subsector] + + subsector = "Steel: Furnaces, Refining and Rolling" + s_fec = idees["fec"][68:75] + s_ued = idees["ued"][68:75] + assert s_fec.index[0] == subsector + assert s_ued.index[0] == subsector + + key = "Steel: Furnaces, Refining and Rolling - Electric" + eff = s_ued[key] / s_fec[key] + + # assume fully electrified, other processes scaled by used energy + df.at["elec", sector] += s_ued[subsector] / eff + + subsector = "Steel: Products finishing" + s_fec = idees["fec"][75:92] + s_ued = idees["ued"][75:92] + assert s_fec.index[0] == subsector + assert s_ued.index[0] == subsector + + key = "Steel: Products finishing - Electric" + eff = s_ued[key] / s_fec[key] + + # assume fully electrified + df.at["elec", sector] += s_ued[subsector] / eff + + # Process emissions (per physical output) + + s_emi = idees["emi"][51:93] + assert s_emi.index[0] == sector + + s_out = idees["out"][7:8] + assert s_out.index[0] == sector + + # tCO2/t material + df.loc["process emission", sector] += s_emi["Process emissions"] / s_out[sector] + + # final energy consumption MWh/t material + sel = ["elec", "heat", "methane"] + df.loc[sel, sector] = df.loc[sel, sector] * toe_to_MWh / s_out[sector] + + ## DRI + Electric arc + # For primary route: DRI with H2 + EAF + + sector = "DRI + Electric arc" + + df[sector] = df["Electric arc"] + + # add H2 consumption for DRI at 1.7 MWh H2 /ton steel + df.at["hydrogen", sector] = config["H2_DRI"] + + # add electricity consumption in DRI shaft (0.322 MWh/tSl) + df.at["elec", sector] += config["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[sector] = 0.0 + + s_fec = idees["fec"][3:9] + assert s_fec.index[0] == sector + + sel = ["Lighting", "Air compressors", "Motor drives", "Fans and pumps"] + df.loc["elec", sector] += s_fec[sel].sum() + + df.loc["heat", sector] += s_fec["Low enthalpy heat"] + + subsector = "Steel: Sinter/Pellet making" + + s_fec = idees["fec"][13:19] + s_ued = idees["ued"][13:19] + assert s_fec.index[0] == subsector + assert s_ued.index[0] == subsector + + df.loc["elec", sector] += s_fec["Electricity"] + + sel = ["Natural gas (incl. biogas)", "Residual fuel oil"] + df.loc["methane", sector] += s_fec[sel].sum() + + df.loc["coal", sector] += s_fec["Solids"] + + subsector = "Steel: Blast /Basic oxygen furnace" + + s_fec = idees["fec"][19:25] + s_ued = idees["ued"][19:25] + assert s_fec.index[0] == subsector + assert s_ued.index[0] == subsector + + sel = ["Natural gas (incl. biogas)", "Residual fuel oil"] + df.loc["methane", sector] += s_fec[sel].sum() + + df.loc["coal", sector] += s_fec["Solids"] + + df.loc["coke", sector] = s_fec["Coke"] + + subsector = "Steel: Furnaces, Refining and Rolling" + + s_fec = idees["fec"][25:32] + s_ued = idees["ued"][25:32] + assert s_fec.index[0] == subsector + assert s_ued.index[0] == subsector + + key = "Steel: Furnaces, Refining and Rolling - Electric" + eff = s_ued[key] / s_fec[key] + + # assume fully electrified, other processes scaled by used energy + df.loc["elec", sector] += s_ued[subsector] / eff + + subsector = "Steel: Products finishing" + + s_fec = idees["fec"][32:49] + s_ued = idees["ued"][32:49] + assert s_fec.index[0] == subsector + assert s_ued.index[0] == subsector + + key = "Steel: Products finishing - Electric" + eff = s_ued[key] / s_fec[key] + + # assume fully electrified + df.loc["elec", sector] += s_ued[subsector] / eff + + # Process emissions (per physical output) + + s_emi = idees["emi"][3:50] + assert s_emi.index[0] == sector + + s_out = idees["out"][6:7] + assert s_out.index[0] == sector + + # tCO2/t material + df.loc["process emission", sector] = s_emi["Process emissions"] / s_out[sector] + + # final energy consumption MWh/t material + sel = ["elec", "heat", "methane", "coke", "coal"] + df.loc[sel, sector] = df.loc[sel, sector] * toe_to_MWh / s_out[sector] + + return df + + +def chemicals_industry(): + sector = "Chemicals Industry" + idees = load_idees_data(sector) + + df = pd.DataFrame(index=index) + + # Basic chemicals + + sector = "Basic chemicals" + + df[sector] = 0.0 + + s_fec = idees["fec"][3:9] + assert s_fec.index[0] == sector + + sel = ["Lighting", "Air compressors", "Motor drives", "Fans and pumps"] + df.loc["elec", sector] += s_fec[sel].sum() + + df.loc["heat", sector] += s_fec["Low enthalpy heat"] + + subsector = "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 Naphtha + + s_fec = idees["fec"][13:22] + assert s_fec.index[0] == subsector + + df.loc["naphtha", sector] += s_fec["Naphtha"] + + df.loc["methane", sector] += s_fec["Natural gas"] + + # LPG and other feedstock materials are assimilated to naphtha + # since they will be produced through Fischer-Tropsh process + sel = [ + "Solids", + "Refinery gas", + "LPG", + "Diesel oil", + "Residual fuel oil", + "Other liquids", + ] + df.loc["naphtha", sector] += s_fec[sel].sum() + + subsector = "Chemicals: Steam processing" + # All the final energy consumption in the steam processing is + # converted to methane, since we need >1000 C temperatures here. + # The current efficiency of methane is assumed in the conversion. + + s_fec = idees["fec"][22:33] + s_ued = idees["ued"][22:33] + assert s_fec.index[0] == subsector + assert s_ued.index[0] == subsector + + # efficiency of natural gas + eff_ch4 = s_ued["Natural gas (incl. biogas)"] / s_fec["Natural gas (incl. biogas)"] + + # replace all fec by methane + df.loc["methane", sector] += s_ued[subsector] / eff_ch4 + + subsector = "Chemicals: Furnaces" + + s_fec = idees["fec"][33:41] + s_ued = idees["ued"][33:41] + assert s_fec.index[0] == subsector + assert s_ued.index[0] == subsector + + # efficiency of electrification + key = "Chemicals: Furnaces - Electric" + eff_elec = s_ued[key] / s_fec[key] + + # assume fully electrified + df.loc["elec", sector] += s_ued[subsector] / eff_elec + + subsector = "Chemicals: Process cooling" + + s_fec = idees["fec"][41:55] + s_ued = idees["ued"][41:55] + assert s_fec.index[0] == subsector + assert s_ued.index[0] == subsector + + key = "Chemicals: Process cooling - Electric" + eff_elec = s_ued[key] / s_fec[key] + + # assume fully electrified + df.loc["elec", sector] += s_ued[subsector] / eff_elec + + subsector = "Chemicals: Generic electric process" + + s_fec = idees["fec"][55:56] + assert s_fec.index[0] == subsector + + df.loc["elec", sector] += s_fec[subsector] + + # Process emissions + + # Correct everything by subtracting 2015's ammonia demand and + # putting in ammonia demand for H2 and electricity separately + + s_emi = idees["emi"][3:57] + assert s_emi.index[0] == sector + + # convert from MtHVC/a to ktHVC/a + s_out = config["HVC_production_today"] * 1e3 + + # tCO2/t material + df.loc["process emission", sector] += ( + s_emi["Process emissions"] + - config["petrochemical_process_emissions"] * 1e3 + - config["NH3_process_emissions"] * 1e3 + ) / s_out + + # emissions originating from feedstock, could be non-fossil origin + # tCO2/t material + df.loc["process emission from feedstock", sector] += ( + config["petrochemical_process_emissions"] * 1e3 + ) / s_out + + # convert from ktoe/a to GWh/a + sources = ["elec", "biomass", "methane", "hydrogen", "heat", "naphtha"] + df.loc[sources, sector] *= toe_to_MWh + + # subtract ammonia energy demand (in ktNH3/a) + ammonia = pd.read_csv(snakemake.input.ammonia_production, index_col=0) + ammonia_total = ammonia.loc[ammonia.index.intersection(eu28), str(year)].sum() + df.loc["methane", sector] -= ammonia_total * config["MWh_CH4_per_tNH3_SMR"] + df.loc["elec", sector] -= ammonia_total * config["MWh_elec_per_tNH3_SMR"] + + # subtract chlorine demand + chlorine_total = config["chlorine_production_today"] + df.loc["hydrogen", sector] -= chlorine_total * config["MWh_H2_per_tCl"] + df.loc["elec", sector] -= chlorine_total * config["MWh_elec_per_tCl"] + + # subtract methanol demand + methanol_total = config["methanol_production_today"] + df.loc["methane", sector] -= methanol_total * config["MWh_CH4_per_tMeOH"] + df.loc["elec", sector] -= methanol_total * config["MWh_elec_per_tMeOH"] + + # MWh/t material + df.loc[sources, sector] = df.loc[sources, sector] / s_out + + df.rename(columns={sector: "HVC"}, inplace=True) + + # HVC mechanical recycling + + sector = "HVC (mechanical recycling)" + df[sector] = 0.0 + df.loc["elec", sector] = config["MWh_elec_per_tHVC_mechanical_recycling"] + + # HVC chemical recycling + + sector = "HVC (chemical recycling)" + df[sector] = 0.0 + df.loc["elec", sector] = config["MWh_elec_per_tHVC_chemical_recycling"] + + # Ammonia + + sector = "Ammonia" + df[sector] = 0.0 + if snakemake.config["sector"].get("ammonia", False): + df.loc["ammonia", sector] = config["MWh_NH3_per_tNH3"] + else: + df.loc["hydrogen", sector] = config["MWh_H2_per_tNH3_electrolysis"] + df.loc["elec", sector] = config["MWh_elec_per_tNH3_electrolysis"] + + # Chlorine + + sector = "Chlorine" + df[sector] = 0.0 + df.loc["hydrogen", sector] = config["MWh_H2_per_tCl"] + df.loc["elec", sector] = config["MWh_elec_per_tCl"] + + # Methanol + + sector = "Methanol" + df[sector] = 0.0 + df.loc["methane", sector] = config["MWh_CH4_per_tMeOH"] + df.loc["elec", sector] = config["MWh_elec_per_tMeOH"] + + # Other chemicals + + sector = "Other chemicals" + + df[sector] = 0.0 + + s_fec = idees["fec"][58:64] + assert s_fec.index[0] == sector + + sel = ["Lighting", "Air compressors", "Motor drives", "Fans and pumps"] + df.loc["elec", sector] += s_fec[sel].sum() + + df.loc["heat", sector] += s_fec["Low enthalpy heat"] + + subsector = "Chemicals: High enthalpy heat processing" + + s_fec = idees["fec"][68:81] + s_ued = idees["ued"][68:81] + assert s_fec.index[0] == subsector + assert s_ued.index[0] == subsector + + key = "High enthalpy heat processing - Electric (microwave)" + eff_elec = s_ued[key] / s_fec[key] + + # assume fully electrified + df.loc["elec", sector] += s_ued[subsector] / eff_elec + + subsector = "Chemicals: Furnaces" + + s_fec = idees["fec"][81:89] + s_ued = idees["ued"][81:89] + assert s_fec.index[0] == subsector + assert s_ued.index[0] == subsector + + key = "Chemicals: Furnaces - Electric" + eff_elec = s_ued[key] / s_fec[key] + + # assume fully electrified + df.loc["elec", sector] += s_ued[subsector] / eff_elec + + subsector = "Chemicals: Process cooling" + + s_fec = idees["fec"][89:103] + s_ued = idees["ued"][89:103] + assert s_fec.index[0] == subsector + assert s_ued.index[0] == subsector + + key = "Chemicals: Process cooling - Electric" + eff = s_ued[key] / s_fec[key] + + # assume fully electrified + df.loc["elec", sector] += s_ued[subsector] / eff + + subsector = "Chemicals: Generic electric process" + + s_fec = idees["fec"][103:104] + assert s_fec.index[0] == subsector + + df.loc["elec", sector] += s_fec[subsector] + + # Process emissions + + s_emi = idees["emi"][58:105] + s_out = idees["out"][9:10] + assert s_emi.index[0] == sector + assert sector in str(s_out.index) + + # tCO2/t material + df.loc["process emission", sector] += s_emi["Process emissions"] / s_out.values + + # MWh/t material + sources = ["elec", "biomass", "methane", "hydrogen", "heat", "naphtha"] + df.loc[sources, sector] = df.loc[sources, sector] * toe_to_MWh / s_out.values + + # Pharmaceutical products + + sector = "Pharmaceutical products etc." + + df[sector] = 0.0 + + s_fec = idees["fec"][106:112] + assert s_fec.index[0] == sector + + sel = ["Lighting", "Air compressors", "Motor drives", "Fans and pumps"] + df.loc["elec", sector] += s_fec[sel].sum() + + df.loc["heat", sector] += s_fec["Low enthalpy heat"] + + subsector = "Chemicals: High enthalpy heat processing" + + s_fec = idees["fec"][116:129] + s_ued = idees["ued"][116:129] + assert s_fec.index[0] == subsector + assert s_ued.index[0] == subsector + + key = "High enthalpy heat processing - Electric (microwave)" + eff_elec = s_ued[key] / s_fec[key] + + # assume fully electrified + df.loc["elec", sector] += s_ued[subsector] / eff_elec + + subsector = "Chemicals: Furnaces" + + s_fec = idees["fec"][129:137] + s_ued = idees["ued"][129:137] + assert s_fec.index[0] == subsector + assert s_ued.index[0] == subsector + + key = "Chemicals: Furnaces - Electric" + eff = s_ued[key] / s_fec[key] + + # assume fully electrified + df.loc["elec", sector] += s_ued[subsector] / eff + + subsector = "Chemicals: Process cooling" + + s_fec = idees["fec"][137:151] + s_ued = idees["ued"][137:151] + assert s_fec.index[0] == subsector + assert s_ued.index[0] == subsector + + key = "Chemicals: Process cooling - Electric" + eff_elec = s_ued[key] / s_fec[key] + + # assume fully electrified + df.loc["elec", sector] += s_ued[subsector] / eff_elec + + subsector = "Chemicals: Generic electric process" + + s_fec = idees["fec"][151:152] + s_out = idees["out"][10:11] + assert s_fec.index[0] == subsector + assert sector in str(s_out.index) + + df.loc["elec", sector] += s_fec[subsector] + + # tCO2/t material + df.loc["process emission", sector] += 0.0 + + # MWh/t material + sources = ["elec", "biomass", "methane", "hydrogen", "heat", "naphtha"] + df.loc[sources, sector] = df.loc[sources, sector] * toe_to_MWh / s_out.values + + return df + + +def nonmetalic_mineral_products(): + # This includes cement, ceramic and glass production. + # This includes process emissions related to the fabrication of clinker. + + sector = "Non-metallic mineral products" + idees = load_idees_data(sector) + + df = pd.DataFrame(index=index) + + # Cement + + # This sector has process-emissions. + # Includes three subcategories: + # (a) Grinding, milling of raw material, + # (b) Pre-heating and pre-calcination, + # (c) clinker production (kilns), + # (d) Grinding, packaging. + # (b)+(c) represent 94% of fec. So (a) is joined to (b) and (d) is joined to (c). + # Temperatures above 1400C are required for processing limestone and sand into clinker. + # Everything (except current electricity and heat consumption and existing biomass) + # is transformed into methane for high T. + + sector = "Cement" + + df[sector] = 0.0 + + s_fec = idees["fec"][3:25] + s_ued = idees["ued"][3:25] + assert s_fec.index[0] == sector + assert s_ued.index[0] == sector + + sel = ["Lighting", "Air compressors", "Motor drives", "Fans and pumps"] + df.loc["elec", sector] += s_fec[sel].sum() + + df.loc["heat", sector] += s_fec["Low enthalpy heat"] + + # 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"] + ) + + subsector = "Cement: Clinker production (kilns)" + + s_fec = idees["fec"][34:43] + s_ued = idees["ued"][34:43] + assert s_fec.index[0] == subsector + assert s_ued.index[0] == subsector + + 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"] + + # Process emissions + + # come from calcination of limestone to chemically reactive calcium oxide (lime). + # Calcium carbonate -> lime + CO2 + # CaCO3 -> CaO + CO2 + + s_emi = idees["emi"][3:44] + assert s_emi.index[0] == sector + + s_out = idees["out"][7:8] + assert sector in str(s_out.index) + + # tCO2/t material + df.loc["process emission", sector] += s_emi["Process emissions"] / s_out.values + + # MWh/t material + sources = ["elec", "biomass", "methane", "hydrogen", "heat", "naphtha"] + df.loc[sources, sector] = df.loc[sources, sector] * toe_to_MWh / s_out.values + + # Ceramics & other NMM + + # This sector has process emissions. + # Includes four subcategories: + # (a) Mixing of raw material, + # (b) Drying and sintering of raw material, + # (c) Primary production process, + # (d) Product finishing. + # (b) represents 65% of fec and (a) 4%. So (a) is joined to (b). + # Everything is electrified + + sector = "Ceramics & other NMM" + + df[sector] = 0.0 + + s_fec = idees["fec"][45:94] + s_ued = idees["ued"][45:94] + assert s_fec.index[0] == sector + assert s_ued.index[0] == sector + + sel = ["Lighting", "Air compressors", "Motor drives", "Fans and pumps"] + df.loc["elec", sector] += s_fec[sel].sum() + + df.loc["heat", sector] += s_fec["Low enthalpy heat"] + + # Efficiency changes due to electrification + key = "Ceramics: Microwave drying and sintering" + eff_elec = s_ued[key] / s_fec[key] + + sel = [ + "Ceramics: Mixing of raw material", + "Ceramics: Drying and sintering of raw material", + ] + df.loc["elec", sector] += s_ued[sel].sum() / eff_elec + + key = "Ceramics: Electric kiln" + eff_elec = s_ued[key] / s_fec[key] + + df.loc["elec", sector] += s_ued["Ceramics: Primary production process"] / eff_elec + + key = "Ceramics: Electric furnace" + eff_elec = s_ued[key] / s_fec[key] + + df.loc["elec", sector] += s_ued["Ceramics: Product finishing"] / eff_elec + + s_emi = idees["emi"][45:94] + assert s_emi.index[0] == sector + + s_out = idees["out"][8:9] + assert sector in str(s_out.index) + + # tCO2/t material + df.loc["process emission", sector] += s_emi["Process emissions"] / s_out.values + + # MWh/t material + sources = ["elec", "biomass", "methane", "hydrogen", "heat", "naphtha"] + df.loc[sources, sector] = df.loc[sources, sector] * toe_to_MWh / s_out.values + + # Glass production + + # This sector has process emissions. + # Includes four subcategories: + # (a) Melting tank + # (b) Forming + # (c) Annealing + # (d) Finishing processes. + # (a) represents 73%. (b), (d) are joined to (c). + # Everything is electrified. + + sector = "Glass production" + + df[sector] = 0.0 + + s_fec = idees["fec"][95:123] + s_ued = idees["ued"][95:123] + assert s_fec.index[0] == sector + assert s_ued.index[0] == sector + + sel = ["Lighting", "Air compressors", "Motor drives", "Fans and pumps"] + df.loc["elec", sector] += s_fec[sel].sum() + + df.loc["heat", sector] += s_fec["Low enthalpy heat"] + + # Efficiency changes due to electrification + key = "Glass: Electric melting tank" + eff_elec = s_ued[key] / s_fec[key] + + df.loc["elec", sector] += s_ued["Glass: Melting tank"] / eff_elec + + key = "Glass: Annealing - electric" + eff_elec = s_ued[key] / s_fec[key] + + sel = ["Glass: Forming", "Glass: Annealing", "Glass: Finishing processes"] + df.loc["elec", sector] += s_ued[sel].sum() / eff_elec + + s_emi = idees["emi"][95:124] + assert s_emi.index[0] == sector + + s_out = idees["out"][9:10] + assert sector in str(s_out.index) + + # tCO2/t material + df.loc["process emission", sector] += s_emi["Process emissions"] / s_out.values + + # MWh/t material + sources = ["elec", "biomass", "methane", "hydrogen", "heat", "naphtha"] + df.loc[sources, sector] = df.loc[sources, sector] * toe_to_MWh / s_out.values + + return df + + +def pulp_paper_printing(): + # Pulp, paper and printing can be completely electrified. + # There are no process emissions associated to this sector. + + sector = "Pulp, paper and printing" + idees = load_idees_data(sector) + + df = pd.DataFrame(index=index) + + # Pulp production + + # Includes three subcategories: + # (a) Wood preparation, grinding; + # (b) Pulping; + # (c) Cleaning. + # + # (b) Pulping is either biomass or electric; left like this (dominated by biomass). + # (a) Wood preparation, grinding and (c) Cleaning represent only 10% of their current + # energy consumption is assumed to be electrified without any change in efficiency + + sector = "Pulp production" + + df[sector] = 0.0 + + s_fec = idees["fec"][3:28] + s_ued = idees["ued"][3:28] + assert s_fec.index[0] == sector + assert s_ued.index[0] == sector + + sel = ["Lighting", "Air compressors", "Motor drives", "Fans and pumps"] + df.loc["elec", sector] += s_fec[sel].sum() + + df.loc["heat", sector] += s_fec["Low enthalpy heat"] + + # Industry-specific + sel = [ + "Pulp: Wood preparation, grinding", + "Pulp: Cleaning", + "Pulp: Pulping electric", + ] + df.loc["elec", sector] += s_fec[sel].sum() + + # 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 = idees["out"][8:9] + assert sector in str(s_out.index) + + # MWh/t material + sources = ["elec", "biomass", "methane", "hydrogen", "heat", "naphtha"] + df.loc[sources, sector] = ( + df.loc[sources, sector] * toe_to_MWh / s_out["Pulp production (kt)"] + ) + + # Paper production + + # Includes three subcategories: + # (a) Stock preparation; + # (b) Paper machine; + # (c) Product finishing. + # + # (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. + + sector = "Paper production" + + df[sector] = 0.0 + + s_fec = idees["fec"][29:78] + s_ued = idees["ued"][29:78] + assert s_fec.index[0] == sector + assert s_ued.index[0] == sector + + sel = ["Lighting", "Air compressors", "Motor drives", "Fans and pumps"] + df.loc["elec", sector] += s_fec[sel].sum() + + df.loc["heat", sector] += s_fec["Low enthalpy heat"] + + # Industry-specific + df.loc["elec", sector] += s_fec["Paper: Stock preparation"] + + # 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 = idees["fec"][53:64] + s_ued = idees["ued"][53:64] + assert s_fec.index[0] == "Paper: Paper machine - Steam use" + assert s_ued.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 = idees["fec"][66:77] + s_ued = idees["ued"][66:77] + assert s_fec.index[0] == "Paper: Product finishing - Steam use" + assert s_ued.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 + + s_out = idees["out"][9:10] + assert sector in str(s_out.index) + + # MWh/t material + sources = ["elec", "biomass", "methane", "hydrogen", "heat", "naphtha"] + df.loc[sources, sector] = df.loc[sources, sector] * toe_to_MWh / s_out.values + + # Printing and media reproduction + + # (a) Printing and publishing is assumed to be + # electrified without any change in efficiency. + + sector = "Printing and media reproduction" + + df[sector] = 0.0 + + s_fec = idees["fec"][79:90] + s_ued = idees["ued"][79:90] + assert s_fec.index[0] == sector + assert s_ued.index[0] == sector + + sel = ["Lighting", "Air compressors", "Motor drives", "Fans and pumps"] + df.loc["elec", sector] += s_fec[sel].sum() + df.loc["elec", sector] += s_ued[sel].sum() + + df.loc["heat", sector] += s_fec["Low enthalpy heat"] + df.loc["heat", sector] += s_ued["Low enthalpy heat"] + + # Industry-specific + df.loc["elec", sector] += s_fec["Printing and publishing"] + df.loc["elec", sector] += s_ued["Printing and publishing"] + + s_out = idees["out"][10:11] + assert sector in str(s_out.index) + + # MWh/t material + sources = ["elec", "biomass", "methane", "hydrogen", "heat", "naphtha"] + df.loc[sources, sector] = df.loc[sources, sector] * toe_to_MWh / s_out.values + + return df + + +def food_beverages_tobacco(): + # Food, beverages and tobaco can be completely electrified. + # There are no process emissions associated to this sector. + + sector = "Food, beverages and tobacco" + idees = load_idees_data(sector) + + df = pd.DataFrame(index=index) + + df[sector] = 0.0 + + s_fec = idees["fec"][3:78] + s_ued = idees["ued"][3:78] + assert s_fec.index[0] == sector + assert s_ued.index[0] == sector + + sel = ["Lighting", "Air compressors", "Motor drives", "Fans and pumps"] + df.loc["elec", sector] += s_fec[sel].sum() + + df.loc["heat", sector] += s_fec["Low enthalpy heat"] + + # Efficiency changes due to electrification + + key = "Food: Direct Heat - Electric" + eff_elec = s_ued[key] / s_fec[key] + df.loc["elec", sector] += s_ued["Food: Oven (direct heat)"] / eff_elec + + key = "Food: Process Heat - Electric" + eff_elec = s_ued[key] / s_fec[key] + df.loc["elec", sector] += s_ued["Food: Specific process heat"] / eff_elec + + key = "Food: Electric drying" + eff_elec = s_ued[key] / s_fec[key] + df.loc["elec", sector] += s_ued["Food: Drying"] / eff_elec + + key = "Food: Electric cooling" + eff_elec = s_ued[key] / s_fec[key] + df.loc["elec", sector] += ( + s_ued["Food: Process cooling and refrigeration"] / eff_elec + ) + + # 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"] + + s_out = idees["out"][3:4] + assert "Physical output" in str(s_out.index) + + # MWh/t material + sources = ["elec", "biomass", "methane", "hydrogen", "heat", "naphtha"] + df.loc[sources, sector] = ( + df.loc[sources, sector] * toe_to_MWh / s_out["Physical output (index)"] + ) + + return df + + +def non_ferrous_metals(): + sector = "Non Ferrous Metals" + idees = load_idees_data(sector) + + df = pd.DataFrame(index=index) + + # Alumina + + # High enthalpy heat is converted to methane. + # Process heat at T>500C is required here. + # Refining is electrified. + # There are no process emissions associated to Alumina manufacturing. + + sector = "Alumina production" + + df[sector] = 0.0 + + s_fec = idees["fec"][3:31] + s_ued = idees["ued"][3:31] + assert s_fec.index[0] == sector + assert s_ued.index[0] == sector + + sel = ["Lighting", "Air compressors", "Motor drives", "Fans and pumps"] + df.loc["elec", sector] += s_fec[sel].sum() + + df.loc["heat", sector] += s_fec["Low enthalpy heat"] + + # High-enthalpy heat is transformed into methane + + s_fec = idees["fec"][13:24] + s_ued = idees["ued"][13:24] + assert s_fec.index[0] == "Alumina production: High enthalpy heat" + assert s_ued.index[0] == "Alumina production: High enthalpy heat" + + eff_met = s_ued["Natural gas (incl. biogas)"] / s_fec["Natural gas (incl. biogas)"] + df.loc["methane", sector] += ( + s_fec["Alumina production: High enthalpy heat"] / eff_met + ) + + # Efficiency changes due to electrification + + s_fec = idees["fec"][24:30] + s_ued = idees["ued"][24:30] + assert s_fec.index[0] == "Alumina production: Refining" + assert s_ued.index[0] == "Alumina production: Refining" + + eff_elec = s_ued["Electricity"] / s_fec["Electricity"] + df.loc["elec", sector] += s_ued["Alumina production: Refining"] / eff_elec + + s_out = idees["out"][9:10] + assert sector in str(s_out.index) + + # MWh/t material + sources = ["elec", "biomass", "methane", "hydrogen", "heat", "naphtha"] + df.loc[sources, sector] = ( + df.loc[sources, sector] * toe_to_MWh / s_out["Alumina production (kt)"] + ) + + # Aluminium primary route + + # Production through the primary route is divided into 50% remains + # as today and 50% is transformed into secondary route. + + sector = "Aluminium - primary production" + + df[sector] = 0.0 + + s_fec = idees["fec"][31:66] + s_ued = idees["ued"][31:66] + assert s_fec.index[0] == sector + assert s_ued.index[0] == sector + + sel = ["Lighting", "Air compressors", "Motor drives", "Fans and pumps"] + df.loc["elec", sector] += s_fec[sel].sum() + + df.loc["heat", sector] += s_fec["Low enthalpy heat"] + + # Add aluminium electrolysis (smelting + df.loc["elec", sector] += s_fec["Aluminium electrolysis (smelting)"] + + # Efficiency changes due to electrification + key = "Aluminium processing - Electric" + eff_elec = s_ued[key] / s_fec[key] + + key = "Aluminium processing (metallurgy e.g. cast house, reheating)" + df.loc["elec", sector] += s_ued[key] / eff_elec + + key = "Aluminium finishing - Electric" + eff_elec = s_ued[key] / s_fec[key] + df.loc["elec", sector] += s_ued["Aluminium finishing"] / eff_elec + + s_emi = idees["emi"][31:67] + assert s_emi.index[0] == sector + + s_out = idees["out"][11:12] + assert sector in str(s_out.index) + + # tCO2/t material + df.loc["process emission", sector] = ( + s_emi["Process emissions"] / s_out["Aluminium - primary production"] + ) + + # MWh/t material + sources = ["elec", "biomass", "methane", "hydrogen", "heat", "naphtha"] + df.loc[sources, sector] = ( + df.loc[sources, sector] * toe_to_MWh / s_out["Aluminium - primary production"] + ) + + # Aluminium secondary route + + # All is converted into secondary route fully electrified. + + sector = "Aluminium - secondary production" + + df[sector] = 0.0 + + s_fec = idees["fec"][68:109] + s_ued = idees["ued"][68:109] + assert s_fec.index[0] == sector + assert s_ued.index[0] == sector + + sel = ["Lighting", "Air compressors", "Motor drives", "Fans and pumps"] + df.loc["elec", sector] += s_fec[sel].sum() + + df.loc["heat", sector] += s_fec["Low enthalpy heat"] + + # Efficiency changes due to electrification + key = "Secondary aluminium - Electric" + eff_elec = s_ued[key] / s_fec[key] + key = "Secondary aluminium (incl. pre-treatment, remelting)" + df.loc["elec", sector] += s_ued[key] / eff_elec + + key = "Aluminium processing - Electric" + eff_elec = s_ued[key] / s_fec[key] + key = "Aluminium processing (metallurgy e.g. cast house, reheating)" + df.loc["elec", sector] += s_ued[key] / eff_elec + + key = "Aluminium finishing - Electric" + eff_elec = s_ued[key] / s_fec[key] + df.loc["elec", sector] += s_ued["Aluminium finishing"] / eff_elec + + s_out = idees["out"][12:13] + assert sector in str(s_out.index) + + # MWh/t material + sources = ["elec", "biomass", "methane", "hydrogen", "heat", "naphtha"] + df.loc[sources, sector] = ( + df.loc[sources, sector] * toe_to_MWh / s_out["Aluminium - secondary production"] + ) + + # Other non-ferrous metals + + sector = "Other non-ferrous metals" + + df[sector] = 0.0 + + s_fec = idees["fec"][110:152] + s_ued = idees["ued"][110:152] + assert s_fec.index[0] == sector + assert s_ued.index[0] == sector + + sel = ["Lighting", "Air compressors", "Motor drives", "Fans and pumps"] + df.loc["elec", sector] += s_fec[sel].sum() + + df.loc["heat", sector] += s_fec["Low enthalpy heat"] + + # Efficiency changes due to electrification + key = "Metal production - Electric" + eff_elec = s_ued[key] / s_fec[key] + df.loc["elec", sector] += s_ued["Other Metals: production"] / eff_elec + + key = "Metal processing - Electric" + eff_elec = s_ued[key] / s_fec[key] + key = "Metal processing (metallurgy e.g. cast house, reheating)" + df.loc["elec", sector] += s_ued[key] / eff_elec + + key = "Metal finishing - Electric" + eff_elec = s_ued[key] / s_fec[key] + df.loc["elec", sector] += s_ued["Metal finishing"] / eff_elec + + s_emi = idees["emi"][110:153] + assert s_emi.index[0] == sector + + s_out = idees["out"][13:14] + assert sector in str(s_out.index) + + # tCO2/t material + df.loc["process emission", sector] = ( + s_emi["Process emissions"] / s_out["Other non-ferrous metals (kt lead eq.)"] + ) + + # MWh/t material + sources = ["elec", "biomass", "methane", "hydrogen", "heat", "naphtha"] + df.loc[sources, sector] = ( + df.loc[sources, sector] + * toe_to_MWh + / s_out["Other non-ferrous metals (kt lead eq.)"] + ) + + return df + + +def transport_equipment(): + sector = "Transport Equipment" + idees = load_idees_data(sector) + + df = pd.DataFrame(index=index) + + df[sector] = 0.0 + + s_fec = idees["fec"][3:45] + s_ued = idees["ued"][3:45] + assert s_fec.index[0] == sector + assert s_ued.index[0] == sector + + sel = ["Lighting", "Air compressors", "Motor drives", "Fans and pumps"] + df.loc["elec", sector] += s_fec[sel].sum() + + df.loc["heat", sector] += s_fec["Low enthalpy heat"] + + # Efficiency changes due to electrification + key = "Trans. Eq.: Electric Foundries" + eff_elec = s_ued[key] / s_fec[key] + df.loc["elec", sector] += s_ued["Trans. Eq.: Foundries"] / eff_elec + + key = "Trans. Eq.: Electric connection" + eff_elec = s_ued[key] / s_fec[key] + df.loc["elec", sector] += s_ued["Trans. Eq.: Connection techniques"] / eff_elec + + key = "Trans. Eq.: Heat treatment - Electric" + eff_elec = s_ued[key] / s_fec[key] + df.loc["elec", sector] += s_ued["Trans. Eq.: Heat treatment"] / eff_elec + + df.loc["elec", sector] += s_fec["Trans. Eq.: General machinery"] + df.loc["elec", sector] += s_fec["Trans. Eq.: Product finishing"] + + # Steam processing is supplied with biomass + eff_biomass = s_ued["Biomass"] / s_fec["Biomass"] + df.loc["biomass", sector] += s_ued["Trans. Eq.: Steam processing"] / eff_biomass + + s_out = idees["out"][3:4] + assert "Physical output" in str(s_out.index) + + # MWh/t material + sources = ["elec", "biomass", "methane", "hydrogen", "heat", "naphtha"] + df.loc[sources, sector] = ( + df.loc[sources, sector] * toe_to_MWh / s_out["Physical output (index)"] + ) + + return df + + +def machinery_equipment(): + sector = "Machinery Equipment" + + idees = load_idees_data(sector) + + df = pd.DataFrame(index=index) + + df[sector] = 0.0 + + s_fec = idees["fec"][3:45] + s_ued = idees["ued"][3:45] + assert s_fec.index[0] == sector + assert s_ued.index[0] == sector + + sel = ["Lighting", "Air compressors", "Motor drives", "Fans and pumps"] + df.loc["elec", sector] += s_fec[sel].sum() + + df.loc["heat", sector] += s_fec["Low enthalpy heat"] + + # Efficiency changes due to electrification + key = "Mach. Eq.: Electric Foundries" + eff_elec = s_ued[key] / s_fec[key] + df.loc["elec", sector] += s_ued["Mach. Eq.: Foundries"] / eff_elec + + key = "Mach. Eq.: Electric connection" + eff_elec = s_ued[key] / s_fec[key] + df.loc["elec", sector] += s_ued["Mach. Eq.: Connection techniques"] / eff_elec + + key = "Mach. Eq.: Heat treatment - Electric" + eff_elec = s_ued[key] / s_fec[key] + + df.loc["elec", sector] += s_ued["Mach. Eq.: Heat treatment"] / eff_elec + + df.loc["elec", sector] += s_fec["Mach. Eq.: General machinery"] + df.loc["elec", sector] += s_fec["Mach. Eq.: Product finishing"] + + # Steam processing is supplied with biomass + eff_biomass = s_ued["Biomass"] / s_fec["Biomass"] + df.loc["biomass", sector] += s_ued["Mach. Eq.: Steam processing"] / eff_biomass + + s_out = idees["out"][3:4] + assert "Physical output" in str(s_out.index) + + # MWh/t material + sources = ["elec", "biomass", "methane", "hydrogen", "heat", "naphtha"] + df.loc[sources, sector] = ( + df.loc[sources, sector] * toe_to_MWh / s_out["Physical output (index)"] + ) + + return df + + +def textiles_and_leather(): + sector = "Textiles and leather" + + idees = load_idees_data(sector) + + df = pd.DataFrame(index=index) + + df[sector] = 0.0 + + s_fec = idees["fec"][3:57] + s_ued = idees["ued"][3:57] + assert s_fec.index[0] == sector + assert s_ued.index[0] == sector + + sel = ["Lighting", "Air compressors", "Motor drives", "Fans and pumps"] + df.loc["elec", sector] += s_fec[sel].sum() + + df.loc["heat", sector] += s_fec["Low enthalpy heat"] + + # Efficiency changes due to electrification + key = "Textiles: Electric drying" + eff_elec = s_ued[key] / s_fec[key] + df.loc["elec", sector] += s_ued["Textiles: Drying"] / eff_elec + + df.loc["elec", sector] += s_fec["Textiles: Electric general machinery"] + df.loc["elec", sector] += s_fec["Textiles: Finishing Electric"] + + # Steam processing is supplied with biomass + eff_biomass = s_ued[15:26]["Biomass"] / s_fec[15:26]["Biomass"] + df.loc["biomass", sector] += ( + s_ued["Textiles: Pretreatment with steam"] / eff_biomass + ) + df.loc["biomass", sector] += ( + s_ued["Textiles: Wet processing with steam"] / eff_biomass + ) + + s_out = idees["out"][3:4] + assert "Physical output" in str(s_out.index) + + # MWh/t material + sources = ["elec", "biomass", "methane", "hydrogen", "heat", "naphtha"] + df.loc[sources, sector] = ( + df.loc[sources, sector] * toe_to_MWh / s_out["Physical output (index)"] + ) + + return df + + +def wood_and_wood_products(): + sector = "Wood and wood products" + + idees = load_idees_data(sector) + + df = pd.DataFrame(index=index) + + df[sector] = 0.0 + + s_fec = idees["fec"][3:46] + s_ued = idees["ued"][3:46] + assert s_fec.index[0] == sector + assert s_ued.index[0] == sector + + sel = ["Lighting", "Air compressors", "Motor drives", "Fans and pumps"] + df.loc["elec", sector] += s_fec[sel].sum() + + df.loc["heat", sector] += s_fec["Low enthalpy heat"] + + # Efficiency changes due to electrification + key = "Wood: Electric drying" + eff_elec = s_ued[key] / s_fec[key] + df.loc["elec", sector] += s_ued["Wood: Drying"] / eff_elec + + df.loc["elec", sector] += s_fec["Wood: Electric mechanical processes"] + df.loc["elec", sector] += s_fec["Wood: Finishing Electric"] + + # Steam processing is supplied with biomass + eff_biomass = s_ued[15:25]["Biomass"] / s_fec[15:25]["Biomass"] + df.loc["biomass", sector] += ( + s_ued["Wood: Specific processes with steam"] / eff_biomass + ) + + s_out = idees["out"][3:4] + assert "Physical output" in str(s_out.index) + + # MWh/t material + sources = ["elec", "biomass", "methane", "hydrogen", "heat", "naphtha"] + df.loc[sources, sector] = ( + df.loc[sources, sector] * toe_to_MWh / s_out["Physical output (index)"] + ) + + return df + + +def other_industrial_sectors(): + sector = "Other Industrial Sectors" + + idees = load_idees_data(sector) + + df = pd.DataFrame(index=index) + + df[sector] = 0.0 + + s_fec = idees["fec"][3:67] + s_ued = idees["ued"][3:67] + assert s_fec.index[0] == sector + assert s_ued.index[0] == sector + + sel = ["Lighting", "Air compressors", "Motor drives", "Fans and pumps"] + df.loc["elec", sector] += s_fec[sel].sum() + + df.loc["heat", sector] += s_fec["Low enthalpy heat"] + + # Efficiency changes due to electrification + key = "Other Industrial sectors: Electric processing" + eff_elec = s_ued[key] / s_fec[key] + df.loc["elec", sector] += ( + s_ued["Other Industrial sectors: Process heating"] / eff_elec + ) + + key = "Other Industries: Electric drying" + eff_elec = s_ued[key] / s_fec[key] + df.loc["elec", sector] += s_ued["Other Industrial sectors: Drying"] / eff_elec + + key = "Other Industries: Electric cooling" + eff_elec = s_ued[key] / s_fec[key] + df.loc["elec", sector] += ( + s_ued["Other Industrial sectors: Process Cooling"] / eff_elec + ) + + # Diesel motors are electrified + key = "Other Industrial sectors: Diesel motors (incl. biofuels)" + df.loc["elec", sector] += s_fec[key] + key = "Other Industrial sectors: Electric machinery" + df.loc["elec", sector] += s_fec[key] + + # Steam processing is supplied with biomass + eff_biomass = s_ued[15:25]["Biomass"] / s_fec[15:25]["Biomass"] + df.loc["biomass", sector] += ( + s_ued["Other Industrial sectors: Steam processing"] / eff_biomass + ) + + s_out = idees["out"][3:4] + assert "Physical output" in str(s_out.index) + + # MWh/t material + sources = ["elec", "biomass", "methane", "hydrogen", "heat", "naphtha"] + df.loc[sources, sector] = ( + df.loc[sources, sector] * toe_to_MWh / s_out["Physical output (index)"] + ) + + return df + + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake("build_industry_sector_ratios") + + # TODO make config option + year = 2015 + + config = snakemake.config["industry"] + + df = pd.concat( + [ + iron_and_steel(), + chemicals_industry(), + nonmetalic_mineral_products(), + pulp_paper_printing(), + food_beverages_tobacco(), + non_ferrous_metals(), + transport_equipment(), + machinery_equipment(), + textiles_and_leather(), + wood_and_wood_products(), + other_industrial_sectors(), + ], + axis=1, + ) + + df.index.name = "MWh/tMaterial" + df.to_csv(snakemake.output.industry_sector_ratios) diff --git a/scripts/build_load_data.py b/scripts/build_load_data.py deleted file mode 100755 index 10921782..00000000 --- a/scripts/build_load_data.py +++ /dev/null @@ -1,224 +0,0 @@ -# SPDX-FileCopyrightText: : 2020 @JanFrederickUnnewehr, The PyPSA-Eur Authors -# -# SPDX-License-Identifier: MIT - -""" - -This rule downloads the load data from `Open Power System Data Time series `_. For all countries in the network, the per country load timeseries with suffix ``_load_actual_entsoe_transparency`` are extracted from the dataset. After filling small gaps linearly and large gaps by copying time-slice of a given period, the load data is exported to a ``.csv`` file. - -Relevant Settings ------------------ - -.. code:: yaml - - snapshots: - - load: - interpolate_limit: - time_shift_for_large_gaps: - manual_adjustments: - - -.. seealso:: - Documentation of the configuration file ``config.yaml`` at - :ref:`load_cf` - -Inputs ------- - - -Outputs -------- - -- ``resource/time_series_60min_singleindex_filtered.csv``: - - -""" - -import logging -logger = logging.getLogger(__name__) -from _helpers import configure_logging - -import pandas as pd -import numpy as np -import dateutil -from pandas import Timedelta as Delta - - -def load_timeseries(fn, years, countries, powerstatistics=True): - """ - Read load data from OPSD time-series package version 2020-10-06. - - Parameters - ---------- - years : None or slice() - Years for which to read load data (defaults to - slice("2018","2019")) - fn : str - File name or url location (file format .csv) - countries : listlike - Countries for which to read load data. - powerstatistics: bool - Whether the electricity consumption data of the ENTSOE power - statistics (if true) or of the ENTSOE transparency map (if false) - should be parsed. - - Returns - ------- - load : pd.DataFrame - Load time-series with UTC timestamps x ISO-2 countries - """ - logger.info(f"Retrieving load data from '{fn}'.") - - pattern = 'power_statistics' if powerstatistics else 'transparency' - pattern = f'_load_actual_entsoe_{pattern}' - rename = lambda s: s[:-len(pattern)] - date_parser = lambda x: dateutil.parser.parse(x, ignoretz=True) - return (pd.read_csv(fn, index_col=0, parse_dates=[0], date_parser=date_parser) - .filter(like=pattern) - .rename(columns=rename) - .dropna(how="all", axis=0) - .rename(columns={'GB_UKM' : 'GB'}) - .filter(items=countries) - .loc[years]) - - -def consecutive_nans(ds): - return (ds.isnull().astype(int) - .groupby(ds.notnull().astype(int).cumsum()[ds.isnull()]) - .transform('sum').fillna(0)) - - -def fill_large_gaps(ds, shift): - """ - Fill up large gaps with load data from the previous week. - - This function fills gaps ragning from 3 to 168 hours (one week). - """ - shift = Delta(shift) - nhours = shift / np.timedelta64(1, 'h') - if (consecutive_nans(ds) > nhours).any(): - logger.warning('There exist gaps larger then the time shift used for ' - 'copying time slices.') - time_shift = pd.Series(ds.values, ds.index + shift) - return ds.where(ds.notnull(), time_shift.reindex_like(ds)) - - -def nan_statistics(df): - def max_consecutive_nans(ds): - return (ds.isnull().astype(int) - .groupby(ds.notnull().astype(int).cumsum()) - .sum().max()) - consecutive = df.apply(max_consecutive_nans) - total = df.isnull().sum() - max_total_per_month = df.isnull().resample('m').sum().max() - return pd.concat([total, consecutive, max_total_per_month], - keys=['total', 'consecutive', 'max_total_per_month'], axis=1) - - -def copy_timeslice(load, cntry, start, stop, delta): - start = pd.Timestamp(start) - stop = pd.Timestamp(stop) - if start-delta in load.index and stop in load.index and cntry in load: - load.loc[start:stop, cntry] = load.loc[start-delta:stop-delta, cntry].values - - -def manual_adjustment(load, powerstatistics): - """ - Adjust gaps manual for load data from OPSD time-series package. - - 1. For the ENTSOE power statistics load data (if powerstatistics is True) - - Kosovo (KV) and Albania (AL) do not exist in the data set. Kosovo gets the - same load curve as Serbia and Albania the same as Macdedonia, both scaled - by the corresponding ratio of total energy consumptions reported by - IEA Data browser [0] for the year 2013. - - 2. For the ENTSOE transparency load data (if powerstatistics is False) - - Albania (AL) and Macedonia (MK) do not exist in the data set. Both get the - same load curve as Montenegro, scaled by the corresponding ratio of total energy - consumptions reported by IEA Data browser [0] for the year 2016. - - [0] https://www.iea.org/data-and-statistics?country=WORLD&fuel=Electricity%20and%20heat&indicator=TotElecCons - - - Parameters - ---------- - load : pd.DataFrame - Load time-series with UTC timestamps x ISO-2 countries - powerstatistics: bool - Whether argument load comprises the electricity consumption data of - the ENTSOE power statistics or of the ENTSOE transparency map - - Returns - ------- - load : pd.DataFrame - Manual adjusted and interpolated load time-series with UTC - timestamps x ISO-2 countries - """ - - if powerstatistics: - if 'MK' in load.columns: - if 'AL' not in load.columns or load.AL.isnull().values.all(): - load['AL'] = load['MK'] * (4.1 / 7.4) - if 'RS' in load.columns: - if 'KV' not in load.columns or load.KV.isnull().values.all(): - load['KV'] = load['RS'] * (4.8 / 27.) - - copy_timeslice(load, 'GR', '2015-08-11 21:00', '2015-08-15 20:00', Delta(weeks=1)) - copy_timeslice(load, 'AT', '2018-12-31 22:00', '2019-01-01 22:00', Delta(days=2)) - copy_timeslice(load, 'CH', '2010-01-19 07:00', '2010-01-19 22:00', Delta(days=1)) - copy_timeslice(load, 'CH', '2010-03-28 00:00', '2010-03-28 21:00', Delta(days=1)) - # is a WE, so take WE before - copy_timeslice(load, 'CH', '2010-10-08 13:00', '2010-10-10 21:00', Delta(weeks=1)) - copy_timeslice(load, 'CH', '2010-11-04 04:00', '2010-11-04 22:00', Delta(days=1)) - copy_timeslice(load, 'NO', '2010-12-09 11:00', '2010-12-09 18:00', Delta(days=1)) - # whole january missing - copy_timeslice(load, 'GB', '2009-12-31 23:00', '2010-01-31 23:00', Delta(days=-364)) - - else: - if 'ME' in load: - if 'AL' not in load and 'AL' in countries: - load['AL'] = load.ME * (5.7/2.9) - if 'MK' not in load and 'MK' in countries: - load['MK'] = load.ME * (6.7/2.9) - copy_timeslice(load, 'BG', '2018-10-27 21:00', '2018-10-28 22:00', Delta(weeks=1)) - - return load - - -if __name__ == "__main__": - - if 'snakemake' not in globals(): - from _helpers import mock_snakemake - snakemake = mock_snakemake('build_load_data') - - configure_logging(snakemake) - - powerstatistics = snakemake.config['load']['power_statistics'] - interpolate_limit = snakemake.config['load']['interpolate_limit'] - countries = snakemake.config['countries'] - snapshots = pd.date_range(freq='h', **snakemake.config['snapshots']) - years = slice(snapshots[0], snapshots[-1]) - time_shift = snakemake.config['load']['time_shift_for_large_gaps'] - - load = load_timeseries(snakemake.input[0], years, countries, powerstatistics) - - if snakemake.config['load']['manual_adjustments']: - load = manual_adjustment(load, powerstatistics) - - logger.info(f"Linearly interpolate gaps of size {interpolate_limit} and less.") - load = load.interpolate(method='linear', limit=interpolate_limit) - - logger.info("Filling larger gaps by copying time-slices of period " - f"'{time_shift}'.") - load = load.apply(fill_large_gaps, shift=time_shift) - - assert not load.isna().any().any(), ( - 'Load data contains nans. Adjust the parameters ' - '`time_shift_for_large_gaps` or modify the `manual_adjustment` function ' - 'for implementing the needed load data modifications.') - - load.to_csv(snakemake.output[0]) - diff --git a/scripts/build_natura_raster.py b/scripts/build_natura_raster.py index 71d2c45e..3cd62fd9 100644 --- a/scripts/build_natura_raster.py +++ b/scripts/build_natura_raster.py @@ -1,9 +1,12 @@ -# SPDX-FileCopyrightText: : 2017-2020 The PyPSA-Eur Authors +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2017-2023 The PyPSA-Eur Authors # # SPDX-License-Identifier: MIT - """ -Rasters the vector data of the `Natura 2000 `_ natural protection areas onto all cutout regions. +Rasters the vector data of the `Natura 2000. + +`_ natural protection areas onto all +cutout regions. Relevant Settings ----------------- @@ -15,7 +18,7 @@ Relevant Settings cutout: .. seealso:: - Documentation of the configuration file ``config.yaml`` at + Documentation of the configuration file ``config/config.yaml`` at :ref:`renewable_cf` Inputs @@ -23,7 +26,7 @@ Inputs - ``data/bundle/natura/Natura2000_end2015.shp``: `Natura 2000 `_ natural protection areas. - .. image:: ../img/natura.png + .. image:: img/natura.png :scale: 33 % Outputs @@ -31,20 +34,19 @@ Outputs - ``resources/natura.tiff``: Rasterized version of `Natura 2000 `_ natural protection areas to reduce computation times. - .. image:: ../img/natura.png + .. image:: img/natura.png :scale: 33 % Description ----------- - """ import logging -from _helpers import configure_logging, retrieve_snakemake_keys import atlite import geopandas as gpd import rasterio as rio +from _helpers import configure_logging from rasterio.features import geometry_mask from rasterio.warp import transform_bounds @@ -56,11 +58,11 @@ def determine_cutout_xXyY(cutout_name): assert cutout.crs.to_epsg() == 4326 x, X, y, Y = cutout.extent dx, dy = cutout.dx, cutout.dy - return [x - dx/2., X + dx/2., y - dy/2., Y + dy/2.] + return [x - dx / 2.0, X + dx / 2.0, y - dy / 2.0, Y + dy / 2.0] def get_transform_and_shape(bounds, res): - left, bottom = [(b // res)* res for b in bounds[:2]] + left, bottom = [(b // res) * res for b in bounds[:2]] right, top = [(b // res + 1) * res for b in bounds[2:]] shape = int((top - bottom) // res), int((right - left) / res) transform = rio.Affine(res, 0, left, 0, -res, top) @@ -68,25 +70,32 @@ def get_transform_and_shape(bounds, res): if __name__ == "__main__": - if 'snakemake' not in globals(): + if "snakemake" not in globals(): from _helpers import mock_snakemake - snakemake = mock_snakemake('build_natura_raster') + + snakemake = mock_snakemake("build_natura_raster") configure_logging(snakemake) - paths, config, wildcards, logs, out = retrieve_snakemake_keys(snakemake) - - cutouts = paths.cutouts + cutouts = snakemake.input.cutouts xs, Xs, ys, Ys = zip(*(determine_cutout_xXyY(cutout) for cutout in cutouts)) bounds = transform_bounds(4326, 3035, min(xs), min(ys), max(Xs), max(Ys)) transform, out_shape = get_transform_and_shape(bounds, res=100) # adjusted boundaries - shapes = gpd.read_file(paths.natura).to_crs(3035) - raster = ~geometry_mask(shapes.geometry, out_shape[::-1], transform) + shapes = gpd.read_file(snakemake.input.natura).to_crs(3035) + raster = ~geometry_mask(shapes.geometry, out_shape, transform) raster = raster.astype(rio.uint8) - with rio.open(out[0], 'w', driver='GTiff', dtype=rio.uint8, - count=1, transform=transform, crs=3035, compress='lzw', - width=raster.shape[1], height=raster.shape[0]) as dst: + with rio.open( + snakemake.output[0], + "w", + driver="GTiff", + dtype=rio.uint8, + count=1, + transform=transform, + crs=3035, + compress="lzw", + width=raster.shape[1], + height=raster.shape[0], + ) as dst: dst.write(raster, indexes=1) - diff --git a/scripts/build_population_layouts.py b/scripts/build_population_layouts.py new file mode 100644 index 00000000..e864d925 --- /dev/null +++ b/scripts/build_population_layouts.py @@ -0,0 +1,112 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2020-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Build mapping between cutout grid cells and population (total, urban, rural). +""" + +import logging + +logger = logging.getLogger(__name__) + + +import atlite +import geopandas as gpd +import numpy as np +import pandas as pd +import xarray as xr + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake("build_population_layouts") + + logging.basicConfig(level=snakemake.config["logging"]["level"]) + + cutout = atlite.Cutout(snakemake.input.cutout) + + grid_cells = cutout.grid.geometry + + # nuts3 has columns country, gdp, pop, geometry + # population is given in dimensions of 1e3=k + nuts3 = gpd.read_file(snakemake.input.nuts3_shapes).set_index("index") + + # Indicator matrix NUTS3 -> grid cells + I = atlite.cutout.compute_indicatormatrix(nuts3.geometry, grid_cells) + + # Indicator matrix grid_cells -> NUTS3; inprinciple Iinv*I is identity + # but imprecisions mean not perfect + Iinv = cutout.indicatormatrix(nuts3.geometry) + + countries = np.sort(nuts3.country.unique()) + + urban_fraction = ( + pd.read_csv( + snakemake.input.urban_percent, header=None, index_col=0, names=["fraction"] + ).squeeze() + / 100.0 + ) + + # fill missing Balkans values + missing = ["AL", "ME", "MK"] + reference = ["RS", "BA"] + average = urban_fraction[reference].mean() + fill_values = pd.Series({ct: average for ct in missing}) + urban_fraction = pd.concat([urban_fraction, fill_values]) + + # population in each grid cell + pop_cells = pd.Series(I.dot(nuts3["pop"])) + + # in km^2 + cell_areas = grid_cells.to_crs(3035).area / 1e6 + + # pop per km^2 + density_cells = pop_cells / cell_areas + + # rural or urban population in grid cell + pop_rural = pd.Series(0.0, density_cells.index) + pop_urban = pd.Series(0.0, density_cells.index) + + for ct in countries: + logger.debug( + f"The urbanization rate for {ct} is {round(urban_fraction[ct]*100)}%" + ) + + indicator_nuts3_ct = nuts3.country.apply(lambda x: 1.0 if x == ct else 0.0) + + indicator_cells_ct = pd.Series(Iinv.T.dot(indicator_nuts3_ct)) + + density_cells_ct = indicator_cells_ct * density_cells + + pop_cells_ct = indicator_cells_ct * pop_cells + + # correct for imprecision of Iinv*I + pop_ct = nuts3.loc[nuts3.country == ct, "pop"].sum() + pop_cells_ct *= pop_ct / pop_cells_ct.sum() + + # The first low density grid cells to reach rural fraction are rural + asc_density_i = density_cells_ct.sort_values().index + asc_density_cumsum = pop_cells_ct[asc_density_i].cumsum() / pop_cells_ct.sum() + rural_fraction_ct = 1 - urban_fraction[ct] + pop_ct_rural_b = asc_density_cumsum < rural_fraction_ct + pop_ct_urban_b = ~pop_ct_rural_b + + pop_ct_rural_b[indicator_cells_ct == 0.0] = False + pop_ct_urban_b[indicator_cells_ct == 0.0] = False + + pop_rural += pop_cells_ct.where(pop_ct_rural_b, 0.0) + pop_urban += pop_cells_ct.where(pop_ct_urban_b, 0.0) + + pop_cells = {"total": pop_cells} + pop_cells["rural"] = pop_rural + pop_cells["urban"] = pop_urban + + for key, pop in pop_cells.items(): + ycoords = ("y", cutout.coords["y"].data) + xcoords = ("x", cutout.coords["x"].data) + values = pop.values.reshape(cutout.shape) + layout = xr.DataArray(values, [ycoords, xcoords]) + + layout.to_netcdf(snakemake.output[f"pop_layout_{key}"]) diff --git a/scripts/build_population_weighted_energy_totals.py b/scripts/build_population_weighted_energy_totals.py new file mode 100644 index 00000000..879e3b9b --- /dev/null +++ b/scripts/build_population_weighted_energy_totals.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2020-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Distribute country-level energy demands by population. +""" + +import pandas as pd + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake( + "build_population_weighted_energy_totals", + simpl="", + clusters=48, + ) + + pop_layout = pd.read_csv(snakemake.input.clustered_pop_layout, index_col=0) + + energy_totals = pd.read_csv(snakemake.input.energy_totals, index_col=0) + + nodal_energy_totals = energy_totals.loc[pop_layout.ct].fillna(0.0) + nodal_energy_totals.index = pop_layout.index + nodal_energy_totals = nodal_energy_totals.multiply(pop_layout.fraction, axis=0) + + nodal_energy_totals.to_csv(snakemake.output[0]) diff --git a/scripts/build_powerplants.py b/scripts/build_powerplants.py index 1e2f0abb..13215798 100755 --- a/scripts/build_powerplants.py +++ b/scripts/build_powerplants.py @@ -1,10 +1,15 @@ -# SPDX-FileCopyrightText: : 2017-2020 The PyPSA-Eur Authors +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2017-2023 The PyPSA-Eur Authors # # SPDX-License-Identifier: MIT # coding: utf-8 """ -Retrieves conventional powerplant capacities and locations from `powerplantmatching `_, assigns these to buses and creates a ``.csv`` file. It is possible to amend the powerplant database with custom entries provided in ``data/custom_powerplants.csv``. +Retrieves conventional powerplant capacities and locations from +`powerplantmatching `_, assigns +these to buses and creates a ``.csv`` file. It is possible to amend the +powerplant database with custom entries provided in +``data/custom_powerplants.csv``. Relevant Settings ----------------- @@ -16,7 +21,7 @@ Relevant Settings custom_powerplants: .. seealso:: - Documentation of the configuration file ``config.yaml`` at + Documentation of the configuration file ``config/config.yaml`` at :ref:`electricity` Inputs @@ -30,7 +35,7 @@ Outputs - ``resource/powerplants.csv``: A list of conventional power plants (i.e. neither wind nor solar) with fields for name, fuel type, technology, country, capacity in MW, duration, commissioning year, retrofit year, latitude, longitude, and dam information as documented in the `powerplantmatching README `_; additionally it includes information on the closest substation/bus in ``networks/base.nc``. - .. image:: ../img/powerplantmatching.png + .. image:: img/powerplantmatching.png :scale: 30 % **Source:** `powerplantmatching on GitHub `_ @@ -68,19 +73,15 @@ The configuration options ``electricity: powerplants_filter`` and ``electricity: powerplants_filter: Country not in ['Germany'] and YearCommissioned <= 2015 custom_powerplants: YearCommissioned <= 2015 - """ import logging -from _helpers import configure_logging -import pypsa -import powerplantmatching as pm import pandas as pd -import numpy as np - +import powerplantmatching as pm +import pypsa +from _helpers import configure_logging from powerplantmatching.export import map_country_bus -from scipy.spatial import cKDTree as KDTree logger = logging.getLogger(__name__) @@ -88,10 +89,22 @@ logger = logging.getLogger(__name__) def add_custom_powerplants(ppl, custom_powerplants, custom_ppl_query=False): if not custom_ppl_query: return ppl - add_ppls = pd.read_csv(custom_powerplants, index_col=0, dtype={'bus': 'str'}) + add_ppls = pd.read_csv(custom_powerplants, index_col=0, dtype={"bus": "str"}) if isinstance(custom_ppl_query, str): add_ppls.query(custom_ppl_query, inplace=True) - return pd.concat([ppl, add_ppls], sort=False, ignore_index=True, verify_integrity=True) + return pd.concat( + [ppl, add_ppls], sort=False, ignore_index=True, verify_integrity=True + ) + + +def replace_natural_gas_technology(df): + mapping = {"Steam Turbine": "OCGT", "Combustion Engine": "OCGT"} + tech = df.Technology.replace(mapping).fillna("OCGT") + return df.Technology.where(df.Fueltype != "Natural Gas", tech) + + +def replace_natural_gas_fueltype(df): + return df.Fueltype.where(df.Fueltype != "Natural Gas", df.Technology) def replace_natural_gas_by_technology(df): @@ -99,49 +112,59 @@ def replace_natural_gas_by_technology(df): if __name__ == "__main__": - if 'snakemake' not in globals(): + if "snakemake" not in globals(): from _helpers import mock_snakemake - snakemake = mock_snakemake('build_powerplants') + + snakemake = mock_snakemake("build_powerplants") configure_logging(snakemake) n = pypsa.Network(snakemake.input.base_network) - countries = n.buses.country.unique() + countries = snakemake.config["countries"] - - ppl = (pm.powerplants(from_url=True) - .powerplant.fill_missing_decommissioning_years() - .powerplant.convert_country_to_alpha2() - .query('Fueltype not in ["Solar", "Wind"] and Country in @countries') - .replace({'Technology': {'Steam Turbine': 'OCGT', "Combustion Engine": "OCGT"}}) - .assign(Fueltype=replace_natural_gas_by_technology)) + ppl = ( + pm.powerplants(from_url=True) + .powerplant.fill_missing_decommissioning_years() + .powerplant.convert_country_to_alpha2() + .query('Fueltype not in ["Solar", "Wind"] and Country in @countries') + .assign(Technology=replace_natural_gas_technology) + .assign(Fueltype=replace_natural_gas_fueltype) + ) # Correct bioenergy for countries where possible opsd = pm.data.OPSD_VRE().powerplant.convert_country_to_alpha2() opsd = opsd.query('Country in @countries and Fueltype == "Bioenergy"') - opsd['Name'] = "Biomass" + " " + pd.RangeIndex(len(opsd)).astype(str) + opsd["Name"] = "Biomass" available_countries = opsd.Country.unique() - ppl = ppl.query('not (Country in @available_countries and Fueltype == "Bioenergy")') + ppl = ppl.query('not (Country in @available_countries and Fueltype == "Bioenergy")') ppl = pd.concat([ppl, opsd]) - - ppl_query = snakemake.config['electricity']['powerplants_filter'] + + ppl_query = snakemake.config["electricity"]["powerplants_filter"] if isinstance(ppl_query, str): ppl.query(ppl_query, inplace=True) # add carriers from own powerplant files: - custom_ppl_query = snakemake.config['electricity']['custom_powerplants'] - ppl = add_custom_powerplants(ppl, snakemake.input.custom_powerplants, custom_ppl_query) + custom_ppl_query = snakemake.config["electricity"]["custom_powerplants"] + ppl = add_custom_powerplants( + ppl, snakemake.input.custom_powerplants, custom_ppl_query + ) - countries_wo_ppl = [c for c in countries if c not in ppl.Country.unique()] + countries_wo_ppl = set(countries) - set(ppl.Country.unique()) if countries_wo_ppl: logging.warning(f"No powerplants known in: {', '.join(countries_wo_ppl)}") - substations = n.buses.query('substation_lv') + substations = n.buses.query("substation_lv") ppl = map_country_bus(ppl, substations) bus_null_b = ppl["bus"].isnull() if bus_null_b.any(): - logging.warning(f"Couldn't find close bus for {bus_null_b.sum()} powerplants. " - "Removing them from the powerplants list.") + logging.warning( + f"Couldn't find close bus for {bus_null_b.sum()} powerplants. " + "Removing them from the powerplants list." + ) ppl = ppl[~bus_null_b] + # TODO: This has to fixed in PPM, some powerplants are still duplicated + cumcount = ppl.groupby(["bus", "Fueltype"]).cumcount() + 1 + ppl.Name = ppl.Name.where(cumcount == 1, ppl.Name + " " + cumcount.astype(str)) + ppl.reset_index(drop=True).to_csv(snakemake.output[0]) diff --git a/scripts/build_renewable_profiles.py b/scripts/build_renewable_profiles.py index 36845da5..c0288aee 100644 --- a/scripts/build_renewable_profiles.py +++ b/scripts/build_renewable_profiles.py @@ -1,15 +1,16 @@ #!/usr/bin/env python +# -*- coding: utf-8 -*- -# SPDX-FileCopyrightText: : 2017-2020 The PyPSA-Eur Authors +# SPDX-FileCopyrightText: : 2017-2023 The PyPSA-Eur Authors # # SPDX-License-Identifier: MIT - -"""Calculates for each network node the -(i) installable capacity (based on land-use), (ii) the available generation time -series (based on weather data), and (iii) the average distance from the node for -onshore wind, AC-connected offshore wind, DC-connected offshore wind and solar -PV generators. In addition for offshore wind it calculates the fraction of the -grid connection which is under water. +""" +Calculates for each network node the (i) installable capacity (based on land- +use), (ii) the available generation time series (based on weather data), and +(iii) the average distance from the node for onshore wind, AC-connected +offshore wind, DC-connected offshore wind and solar PV generators. In addition +for offshore wind it calculates the fraction of the grid connection which is +under water. .. note:: Hydroelectric profiles are built in script :mod:`build_hydro_profiles`. @@ -41,7 +42,7 @@ Relevant settings resource: .. seealso:: - Documentation of the configuration file ``config.yaml`` at + Documentation of the configuration file ``config/config.yaml`` at :ref:`snapshots_cf`, :ref:`atlite_cf`, :ref:`renewable_cf` Inputs @@ -49,12 +50,12 @@ Inputs - ``data/bundle/corine/g250_clc06_V18_5.tif``: `CORINE Land Cover (CLC) `_ inventory on `44 classes `_ of land use (e.g. forests, arable land, industrial, urban areas). - .. image:: ../img/corine.png + .. image:: img/corine.png :scale: 33 % - ``data/bundle/GEBCO_2014_2D.nc``: A `bathymetric `_ data set with a global terrain model for ocean and land at 15 arc-second intervals by the `General Bathymetric Chart of the Oceans (GEBCO) `_. - .. image:: ../img/gebco_2019_grid_image.jpg + .. image:: img/gebco_2019_grid_image.jpg :scale: 50 % **Source:** `GEBCO `_ @@ -93,31 +94,31 @@ Outputs - **profile** - .. image:: ../img/profile_ts.png + .. image:: img/profile_ts.png :scale: 33 % :align: center - **p_nom_max** - .. image:: ../img/p_nom_max_hist.png + .. image:: img/p_nom_max_hist.png :scale: 33 % :align: center - **potential** - .. image:: ../img/potential_heatmap.png + .. image:: img/potential_heatmap.png :scale: 33 % :align: center - **average_distance** - .. image:: ../img/distance_hist.png + .. image:: img/distance_hist.png :scale: 33 % :align: center - **underwater_fraction** - .. image:: ../img/underwater_hist.png + .. image:: img/underwater_hist.png :scale: 33 % :align: center @@ -138,7 +139,7 @@ cutout grid cell and each node using the `GLAES `_ library. This uses the CORINE land use data, Natura2000 nature reserves and GEBCO bathymetry data. -.. image:: ../img/eligibility.png +.. image:: img/eligibility.png :scale: 50 % :align: center @@ -147,19 +148,19 @@ installable potential in each grid cell is multiplied with the capacity factor at each grid cell. This is done since we assume more generators are installed at cells with a higher capacity factor. -.. image:: ../img/offwinddc-gridcell.png +.. image:: img/offwinddc-gridcell.png :scale: 50 % :align: center -.. image:: ../img/offwindac-gridcell.png +.. image:: img/offwindac-gridcell.png :scale: 50 % :align: center -.. image:: ../img/onwind-gridcell.png +.. image:: img/onwind-gridcell.png :scale: 50 % :align: center -.. image:: ../img/solar-gridcell.png +.. image:: img/solar-gridcell.png :scale: 50 % :align: center @@ -177,119 +178,146 @@ node (`p_nom_max`): ``simple`` and ``conservative``: - ``conservative`` assertains the nodal limit by increasing capacities proportional to the layout until the limit of an individual grid cell is reached. - """ -import progressbar as pgb -import geopandas as gpd -import xarray as xr -import numpy as np import functools -import atlite import logging -from pypsa.geo import haversine -from shapely.geometry import LineString import time +import atlite +import geopandas as gpd +import numpy as np +import xarray as xr from _helpers import configure_logging +from dask.distributed import Client, LocalCluster +from pypsa.geo import haversine +from shapely.geometry import LineString logger = logging.getLogger(__name__) -if __name__ == '__main__': - if 'snakemake' not in globals(): +if __name__ == "__main__": + if "snakemake" not in globals(): from _helpers import mock_snakemake - snakemake = mock_snakemake('build_renewable_profiles', technology='solar') - configure_logging(snakemake) - pgb.streams.wrap_stderr() - nprocesses = snakemake.config['atlite'].get('nprocesses') - noprogress = not snakemake.config['atlite'].get('show_progress', True) - config = snakemake.config['renewable'][snakemake.wildcards.technology] - resource = config['resource'] # pv panel config / wind turbine config - correction_factor = config.get('correction_factor', 1.) - capacity_per_sqkm = config['capacity_per_sqkm'] - p_nom_max_meth = config.get('potential', 'conservative') + snakemake = mock_snakemake("build_renewable_profiles", technology="solar") + configure_logging(snakemake) + + nprocesses = int(snakemake.threads) + noprogress = snakemake.config["run"].get("disable_progressbar", True) + config = snakemake.config["renewable"][snakemake.wildcards.technology] + resource = config["resource"] # pv panel config / wind turbine config + correction_factor = config.get("correction_factor", 1.0) + capacity_per_sqkm = config["capacity_per_sqkm"] + p_nom_max_meth = config.get("potential", "conservative") if isinstance(config.get("corine", {}), list): - config['corine'] = {'grid_codes': config['corine']} + config["corine"] = {"grid_codes": config["corine"]} - if correction_factor != 1.: - logger.info(f'correction_factor is set as {correction_factor}') + if correction_factor != 1.0: + logger.info(f"correction_factor is set as {correction_factor}") + cluster = LocalCluster(n_workers=nprocesses, threads_per_worker=1) + client = Client(cluster, asynchronous=True) - cutout = atlite.Cutout(snakemake.input['cutout']) - regions = gpd.read_file(snakemake.input.regions).set_index('name').rename_axis('bus') + cutout = atlite.Cutout(snakemake.input.cutout) + regions = gpd.read_file(snakemake.input.regions) + assert not regions.empty, ( + f"List of regions in {snakemake.input.regions} is empty, please " + "disable the corresponding renewable technology" + ) + # do not pull up, set_index does not work if geo dataframe is empty + regions = regions.set_index("name").rename_axis("bus") buses = regions.index - excluder = atlite.ExclusionContainer(crs=3035, res=100) + res = config.get("excluder_resolution", 100) + excluder = atlite.ExclusionContainer(crs=3035, res=res) - if config['natura']: + if config["natura"]: excluder.add_raster(snakemake.input.natura, nodata=0, allow_no_overlap=True) corine = config.get("corine", {}) if "grid_codes" in corine: codes = corine["grid_codes"] excluder.add_raster(snakemake.input.corine, codes=codes, invert=True, crs=3035) - if corine.get("distance", 0.) > 0.: + if corine.get("distance", 0.0) > 0.0: codes = corine["distance_grid_codes"] buffer = corine["distance"] - excluder.add_raster(snakemake.input.corine, codes=codes, buffer=buffer, crs=3035) + excluder.add_raster( + snakemake.input.corine, codes=codes, buffer=buffer, crs=3035 + ) - if "max_depth" in config: + if "ship_threshold" in config: + shipping_threshold = ( + config["ship_threshold"] * 8760 * 6 + ) # approximation because 6 years of data which is hourly collected + func = functools.partial(np.less, shipping_threshold) + excluder.add_raster( + snakemake.input.ship_density, codes=func, crs=4326, allow_no_overlap=True + ) + + if config.get("max_depth"): # lambda not supported for atlite + multiprocessing # use named function np.greater with partially frozen argument instead # and exclude areas where: -max_depth > grid cell depth - func = functools.partial(np.greater,-config['max_depth']) - excluder.add_raster(snakemake.input.gebco, codes=func, crs=4236, nodata=-1000) + func = functools.partial(np.greater, -config["max_depth"]) + excluder.add_raster(snakemake.input.gebco, codes=func, crs=4326, nodata=-1000) - if 'min_shore_distance' in config: - buffer = config['min_shore_distance'] + if "min_shore_distance" in config: + buffer = config["min_shore_distance"] excluder.add_geometry(snakemake.input.country_shapes, buffer=buffer) - if 'max_shore_distance' in config: - buffer = config['max_shore_distance'] - excluder.add_geometry(snakemake.input.country_shapes, buffer=buffer, invert=True) + if "max_shore_distance" in config: + buffer = config["max_shore_distance"] + excluder.add_geometry( + snakemake.input.country_shapes, buffer=buffer, invert=True + ) kwargs = dict(nprocesses=nprocesses, disable_progressbar=noprogress) if noprogress: - logger.info('Calculate landuse availabilities...') + logger.info("Calculate landuse availabilities...") start = time.time() availability = cutout.availabilitymatrix(regions, excluder, **kwargs) duration = time.time() - start - logger.info(f'Completed availability calculation ({duration:2.2f}s)') + logger.info(f"Completed availability calculation ({duration:2.2f}s)") else: availability = cutout.availabilitymatrix(regions, excluder, **kwargs) area = cutout.grid.to_crs(3035).area / 1e6 - area = xr.DataArray(area.values.reshape(cutout.shape), - [cutout.coords['y'], cutout.coords['x']]) + area = xr.DataArray( + area.values.reshape(cutout.shape), [cutout.coords["y"], cutout.coords["x"]] + ) - potential = capacity_per_sqkm * availability.sum('bus') * area - func = getattr(cutout, resource.pop('method')) - resource['dask_kwargs'] = {'num_workers': nprocesses} + potential = capacity_per_sqkm * availability.sum("bus") * area + func = getattr(cutout, resource.pop("method")) + resource["dask_kwargs"] = {"scheduler": client} capacity_factor = correction_factor * func(capacity_factor=True, **resource) layout = capacity_factor * area * capacity_per_sqkm - profile, capacities = func(matrix=availability.stack(spatial=['y','x']), - layout=layout, index=buses, - per_unit=True, return_capacity=True, **resource) + profile, capacities = func( + matrix=availability.stack(spatial=["y", "x"]), + layout=layout, + index=buses, + per_unit=True, + return_capacity=True, + **resource, + ) logger.info(f"Calculating maximal capacity per bus (method '{p_nom_max_meth}')") - if p_nom_max_meth == 'simple': + if p_nom_max_meth == "simple": p_nom_max = capacity_per_sqkm * availability @ area - elif p_nom_max_meth == 'conservative': - max_cap_factor = capacity_factor.where(availability!=0).max(['x', 'y']) + elif p_nom_max_meth == "conservative": + max_cap_factor = capacity_factor.where(availability != 0).max(["x", "y"]) p_nom_max = capacities / max_cap_factor else: - raise AssertionError('Config key `potential` should be one of "simple" ' - f'(default) or "conservative", not "{p_nom_max_meth}"') + raise AssertionError( + 'Config key `potential` should be one of "simple" ' + f'(default) or "conservative", not "{p_nom_max_meth}"' + ) + logger.info("Calculate average distances.") + layoutmatrix = (layout * availability).stack(spatial=["y", "x"]) - - logger.info('Calculate average distances.') - layoutmatrix = (layout * availability).stack(spatial=['y','x']) - - coords = cutout.grid[['x', 'y']] - bus_coords = regions[['x', 'y']] + coords = cutout.grid[["x", "y"]] + bus_coords = regions[["x", "y"]] average_distance = [] centre_of_mass = [] @@ -298,39 +326,46 @@ if __name__ == '__main__': nz_b = row != 0 row = row[nz_b] co = coords[nz_b] - distances = haversine(bus_coords.loc[bus], co) + distances = haversine(bus_coords.loc[bus], co) average_distance.append((distances * (row / row.sum())).sum()) centre_of_mass.append(co.values.T @ (row / row.sum())) average_distance = xr.DataArray(average_distance, [buses]) - centre_of_mass = xr.DataArray(centre_of_mass, [buses, ('spatial', ['x', 'y'])]) - - - ds = xr.merge([(correction_factor * profile).rename('profile'), - capacities.rename('weight'), - p_nom_max.rename('p_nom_max'), - potential.rename('potential'), - average_distance.rename('average_distance')]) + centre_of_mass = xr.DataArray(centre_of_mass, [buses, ("spatial", ["x", "y"])]) + ds = xr.merge( + [ + (correction_factor * profile).rename("profile"), + capacities.rename("weight"), + p_nom_max.rename("p_nom_max"), + potential.rename("potential"), + average_distance.rename("average_distance"), + ] + ) if snakemake.wildcards.technology.startswith("offwind"): - logger.info('Calculate underwater fraction of connections.') - offshore_shape = gpd.read_file(snakemake.input['offshore_shapes']).unary_union + logger.info("Calculate underwater fraction of connections.") + offshore_shape = gpd.read_file(snakemake.input["offshore_shapes"]).unary_union underwater_fraction = [] for bus in buses: p = centre_of_mass.sel(bus=bus).data - line = LineString([p, regions.loc[bus, ['x', 'y']]]) - frac = line.intersection(offshore_shape).length/line.length + line = LineString([p, regions.loc[bus, ["x", "y"]]]) + frac = line.intersection(offshore_shape).length / line.length underwater_fraction.append(frac) - ds['underwater_fraction'] = xr.DataArray(underwater_fraction, [buses]) + ds["underwater_fraction"] = xr.DataArray(underwater_fraction, [buses]) # select only buses with some capacity and minimal capacity factor - ds = ds.sel(bus=((ds['profile'].mean('time') > config.get('min_p_max_pu', 0.)) & - (ds['p_nom_max'] > config.get('min_p_nom_max', 0.)))) + ds = ds.sel( + bus=( + (ds["profile"].mean("time") > config.get("min_p_max_pu", 0.0)) + & (ds["p_nom_max"] > config.get("min_p_nom_max", 0.0)) + ) + ) - if 'clip_p_max_pu' in config: - min_p_max_pu = config['clip_p_max_pu'] - ds['profile'] = ds['profile'].where(ds['profile'] >= min_p_max_pu, 0) + if "clip_p_max_pu" in config: + min_p_max_pu = config["clip_p_max_pu"] + ds["profile"] = ds["profile"].where(ds["profile"] >= min_p_max_pu, 0) ds.to_netcdf(snakemake.output.profile) + client.shutdown() diff --git a/scripts/build_retro_cost.py b/scripts/build_retro_cost.py new file mode 100644 index 00000000..63ae0743 --- /dev/null +++ b/scripts/build_retro_cost.py @@ -0,0 +1,1091 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2020-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +This script calculates the space heating savings through better insulation of +the thermal envelope of a building and corresponding costs for different +building types in different countries. + +Methodology +----------- + +The energy savings calculations are based on the + + EN ISO 13790 / seasonal method https://www.iso.org/obp/ui/#iso:std:iso:13790:ed-2:v1:en: + + - calculations heavily oriented on the TABULAWebTool + http://webtool.building-typology.eu/ + http://www.episcope.eu/fileadmin/tabula/public/docs/report/TABULA_CommonCalculationMethod.pdf + which is following the EN ISO 13790 / seasonal method + + - building stock data: + mainly: hotmaps project https://gitlab.com/hotmaps/building-stock + missing: EU building observatory https://ec.europa.eu/energy/en/eu-buildings-database + + - building types with typical surfaces/ standard values: + - tabula https://episcope.eu/fileadmin/tabula/public/calc/tabula-calculator.xlsx + + +Basic Equations +--------------- + +The basic equations: + + The Energy needed for space heating E_space [W/m²] are calculated as the + sum of heat losses and heat gains: + + E_space = H_losses - H_gains + + Heat losses constitute from the losses through heat transmission (H_tr [W/m²K]) + (this includes heat transfer through building elements and thermal bridges) + and losses by ventilation (H_ve [W/m²K]): + + H_losses = (H_tr + H_ve) * F_red * (T_threshold - T_averaged_d_heat) * d_heat * 1/365 + + F_red : reduction factor, considering non-uniform heating [°C], p.16 chapter 2.6 [-] + T_threshold : heating temperature threshold, assumed 15 C + d_heat : Length of heating season, number of days with daily averaged temperature below T_threshold + T_averaged_d_heat : mean daily averaged temperature of the days within heating season d_heat + + Heat gains constitute from the gains by solar radiation (H_solar) and + internal heat gains (H_int) weighted by a gain utilisation factor nu: + + H_gains = nu * (H_solar + H_int) + +Structure +--------- + +The script has the following structure: + + (0) fixed parameters are set + (1) prepare data, bring to same format + (2) calculate space heat demand depending on additional insulation material + (3) calculate costs for corresponding additional insulation material + (4) get cost savings per retrofitting measures for each sector by weighting + with heated floor area +""" +import pandas as pd +import xarray as xr + +# (i) --- FIXED PARAMETER / STANDARD VALUES ----------------------------------- + +# thermal conductivity standard value +k = 0.035 +# strength 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.0]}, index=["Roof", "Wall", "Floor"]) + +# standard room height [m], used to calculate heat transfer by ventilation +h_room = 2.5 +# volume specific heat capacity air [Wh/m^3K] +c_p_air = 0.34 +# internal heat capacity per m² A_c_ref [Wh/(m^2K)] +c_m = 45 +# average thermal output of the internal heat sources per m^2 reference area [W/m^2] +phi_int = 3 +# constant parameter tau_H_0 [h] according to EN 13790 seasonal method +tau_H_0 = 30 +# constant parameter alpha_H_0 [-] according to EN 13790 seasonal method +alpha_H_0 = 0.8 + +# parameter for solar heat load during heating season ------------------------- +# tabular standard values table p.8 in documentation +external_shading = 0.6 # vertical orientation: fraction of window area shaded [-] +frame_area_fraction = 0.3 # fraction of frame area of window [-] +non_perpendicular = ( + 0.9 # reduction factor, considering radiation non perpendicular to the glazing[-] +) +solar_energy_transmittance = ( + 0.5 # solar energy transmiitance for radiation perpecidular to the glazing [-] +) +# solar global radiation [kWh/(m^2a)] +solar_global_radiation = pd.Series( + [246, 401, 246, 148], + index=["east", "south", "west", "north"], + name="solar_global_radiation [kWh/(m^2a)]", +) + +# threshold temperature for heating [Celsius] -------------------------------- +t_threshold = 15 + +# rename sectors +# rename residential sub sectors +rename_sectors = { + "Single family- Terraced houses": "SFH", + "Multifamily houses": "MFH", + "Appartment blocks": "AB", +} + + +# additional insulation thickness, determines maximum possible savings [m] +l_strength = ["0.07", "0.075", "0.08", "0.1", "0.15", "0.22", "0.24", "0.26"] + + +# (ii) --- FUNCTIONS ---------------------------------------------------------- + + +def get_average_temperature_during_heating_season(temperature, t_threshold=15): + """ + returns average temperature during heating season + input: + temperature : pd.Series(Index=time, values=temperature) + t_threshold : threshold temperature for heating degree days (HDD) + returns: + average temperature + """ + t_average_daily = temperature.resample("1D").mean() + return t_average_daily.loc[t_average_daily < t_threshold].mean() + + +def prepare_building_stock_data(): + """ + reads building stock data and cleans up the format, returns + -------- + u_values: pd.DataFrame current U-values + 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 ": "Window", + "Windows": "Window", + "Walls ": "Wall", + "Walls": "Wall", + "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], + encoding="ISO-8859-1", + ) + 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.intersection(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) + u_values_PL.component.replace({"Walls": "Wall", "Windows": "Window"}, inplace=True) + 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 == "Window") & (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", + ) + + u_values.subsector.replace(rename_sectors, inplace=True) + u_values.btype.replace(rename_sectors, inplace=True) + + # for missing weighting of surfaces of building types assume MFH + u_values["assumed_subsector"] = u_values.subsector + u_values.loc[ + ~u_values.subsector.isin(rename_sectors.values()), "assumed_subsector" + ] = "MFH" + + u_values.country_code.replace({"UK": "GB"}, inplace=True) + u_values.bage.replace({"Berfore 1945": "Before 1945"}, inplace=True) + u_values = u_values[~u_values.bage.isna()] + + u_values.set_index(["country_code", "subsector", "bage", "type"], inplace=True) + + # only take in config.yaml specified countries into account + countries = snakemake.config["countries"] + area_tot = area_tot.loc[countries] + + return u_values, country_iso_dic, countries, area_tot, area + + +def prepare_building_topology(u_values, same_building_topology=True): + """ + Reads in typical building topologies (e.g. average surface of building + elements) and typical losses through thermal bridging and air ventilation. + """ + data_tabula = pd.read_csv( + snakemake.input.data_tabula, + skiprows=lambda x: x in range(1, 11), + low_memory=False, + ).iloc[:2974] + + parameters = [ + "Code_Country", + # building type (SFH/MFH/AB) + "Code_BuildingSizeClass", + # time period of build year + "Year1_Building", + "Year2_Building", + # areas [m^2] + "A_C_Ref", # conditioned area, internal + "A_Roof_1", + "A_Roof_2", + "A_Wall_1", + "A_Wall_2", + "A_Floor_1", + "A_Floor_2", + "A_Window_1", + "A_Window_2", + # for air ventilation loses [1/h] + "n_air_use", + "n_air_infiltration", + # for losses due to thermal bridges, standard values [W/(m^2K)] + "delta_U_ThermalBridging", + # floor area related heat transfer coefficient by transmission [-] + "F_red_temp", + # refurbishment state [1: not refurbished, 2: moderate ,3: strong refurbishment] + "Number_BuildingVariant", + ] + + data_tabula = data_tabula[parameters] + + building_elements = ["Roof", "Wall", "Floor", "Window"] + + # get total area of building components + for element in building_elements: + elements = ["A_{}_1".format(element), "A_{}_2".format(element)] + data_tabula = pd.concat( + [ + data_tabula.drop(elements, axis=1), + data_tabula[elements].sum(axis=1).rename("A_{}".format(element)), + ], + axis=1, + ) + + # clean data + data_tabula = data_tabula.loc[ + pd.concat( + [ + data_tabula[col] != 0 + for col in ["A_Wall", "A_Floor", "A_Window", "A_Roof", "A_C_Ref"] + ], + axis=1, + ).all(axis=1) + ] + data_tabula = data_tabula[data_tabula.Number_BuildingVariant.isin([1, 2, 3])] + data_tabula = data_tabula[ + data_tabula.Code_BuildingSizeClass.isin(["AB", "SFH", "MFH", "TH"]) + ] + + # map tabula building periods to hotmaps building periods + def map_periods(build_year1, build_year2): + periods = { + (0, 1945): "Before 1945", + (1945, 1969): "1945 - 1969", + (1970, 1979): "1970 - 1979", + (1980, 1989): "1980 - 1989", + (1990, 1999): "1990 - 1999", + (2000, 2010): "2000 - 2010", + (2010, 10000): "Post 2010", + } + minimum = 1e5 + for key in periods: + diff = abs(build_year1 - key[0]) + abs(build_year2 - key[1]) + if diff < minimum: + minimum = diff + searched_period = periods[key] + return searched_period + + data_tabula["bage"] = data_tabula.apply( + lambda x: map_periods(x.Year1_Building, x.Year2_Building), axis=1 + ) + + # set new index + data_tabula = data_tabula.set_index( + ["Code_Country", "Code_BuildingSizeClass", "bage", "Number_BuildingVariant"] + ) + + # get typical building topology + area_cols = ["A_C_Ref", "A_Floor", "A_Roof", "A_Wall", "A_Window"] + typical_building = ( + data_tabula.groupby(level=[1, 2]) + .mean() + .rename(index={"TH": "SFH"}) + .groupby(level=[0, 1]) + .mean() + ) + + # drop duplicates + data_tabula = data_tabula[~data_tabula.index.duplicated(keep="first")] + + # fill missing values + hotmaps_data_i = ( + u_values.reset_index() + .set_index(["country_code", "assumed_subsector", "bage"]) + .index + ) + # missing countries in tabular + missing_ct = data_tabula.unstack().reindex(hotmaps_data_i.unique()) + # areas should stay constant for different retrofitting measures + cols_constant = [ + "Year1_Building", + "Year2_Building", + "A_C_Ref", + "A_Roof", + "A_Wall", + "A_Floor", + "A_Window", + ] + for col in cols_constant: + missing_ct[col] = missing_ct[col].combine_first( + missing_ct[col].groupby(level=[0, 1, 2]).mean() + ) + missing_ct = ( + missing_ct.unstack().unstack().fillna(missing_ct.unstack().unstack().mean()) + ) + data_tabula = missing_ct.stack(level=[-1, -2, -3], dropna=False) + + # sets for different countries same building topology which only depends on + # build year and subsector (MFH, SFH, AB) + if same_building_topology: + typical_building = ( + typical_building.reindex(data_tabula.droplevel(0).index) + ).set_index(data_tabula.index) + data_tabula.update(typical_building[area_cols]) + + # total buildings envelope surface [m^2] + data_tabula["A_envelope"] = data_tabula[ + ["A_{}".format(element) for element in building_elements] + ].sum(axis=1) + + return data_tabula + + +def prepare_cost_retro(country_iso_dic): + """ + 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.rename(lambda x: x.capitalize(), 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"]) + ) + + # 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 + ) + else: + cost_w = None + + 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) + else: + tax_w = None + + return cost_retro, window_assumptions, cost_w, tax_w + + +def prepare_temperature_data(): + """ + Returns the temperature dependent data for each country: + + d_heat : length of heating season pd.Series(index=countries) [days/year] + on those days, daily average temperature is below + threshold temperature t_threshold + temperature_factor : accumulated difference between internal and + external temperature pd.Series(index=countries) ([K]) * [days/year] + + temperature_factor = (t_threshold - temperature_average_d_heat) * d_heat * 1/365 + """ + temperature = xr.open_dataarray(snakemake.input.air_temperature).to_pandas() + d_heat = ( + temperature.groupby(temperature.columns.str[:2], axis=1) + .mean() + .resample("1D") + .mean() + < t_threshold + ).sum() + temperature_average_d_heat = ( + temperature.groupby(temperature.columns.str[:2], axis=1) + .mean() + .apply( + lambda x: get_average_temperature_during_heating_season(x, t_threshold=15) + ) + ) + # accumulated difference between internal and external temperature + # units ([K]-[K]) * [days/year] + temperature_factor = (t_threshold - temperature_average_d_heat) * d_heat * 1 / 365 + + return d_heat, temperature_factor + + +# 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["Window", "life_time"]) + ) + return window_cost + + +def calculate_costs(u_values, l, cost_retro, window_assumptions): + """ + 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.name[3], "cost_var"] + * 100 + * float(l) + * l_weight.loc[x.name[3]][0] + + cost_retro.loc[x.name[3], "cost_fix"] + ) + * x.A_element + / x.A_C_Ref + if x.name[3] != "Window" + else ( + window_cost(x["new_U_{}".format(l)], cost_retro, window_assumptions) + * x.A_element + / x.A_C_Ref + if x.value > window_limit(float(l), window_assumptions) + else 0 + ), + axis=1, + ) + + +def calculate_new_u(u_values, l, l_weight, window_assumptions, k=0.035): + """ + Calculate U-values after building retrofitting, depending on the old + U-values (u_values). This is for simple insulation measuers, adding an + additional layer of insulation. + + 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.name[3]])) + if x.name[3] != "Window" + 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 map_tabula_to_hotmaps(df_tabula, df_hotmaps, column_prefix): + """ + Maps tabula data to hotmaps data with wished column name prefix. + + Parameters + ---------- + df_tabula : pd.Series + tabula data with pd.MultiIndex + df_hotmaps : pd.DataFrame + dataframe with hotmaps pd.MultiIndex + column_prefix : string + column prefix to rename column names of df_tabula + + Returns + ------- + pd.DataFrame (index=df_hotmaps.index) + returns df_tabula with hotmaps index + """ + values = df_tabula.unstack().reindex( + df_hotmaps.rename( + index=lambda x: "MFH" if x not in rename_sectors.values() else x, level=1 + ).index + ) + values.columns = pd.MultiIndex.from_product([[column_prefix], values.columns]) + values.index = df_hotmaps.index + return values + + +def get_solar_gains_per_year(window_area): + """ + Returns solar heat gains during heating season in [kWh/a] depending on the + window area [m^2] of the building, assuming a equal distributed window + orientation (east, south, north, west) + """ + return sum( + external_shading + * frame_area_fraction + * non_perpendicular + * 0.25 + * window_area + * solar_global_radiation + ) + + +def map_to_lstrength(l_strength, df): + """ + Renames column names from a pandas dataframe to map tabula retrofitting + strengths [2 = moderate, 3 = ambitious] to l_strength. + """ + middle = len(l_strength) // 2 + map_to_l = pd.MultiIndex.from_arrays( + [middle * [2] + len(l_strength[middle:]) * [3], l_strength] + ) + l_strength_df = ( + df.stack(-2) + .reindex(map_to_l, axis=1, level=0) + .droplevel(0, axis=1) + .unstack() + .swaplevel(axis=1) + .dropna(axis=1) + ) + return pd.concat([df.drop([2, 3], axis=1, level=1), l_strength_df], axis=1) + + +def calculate_heat_losses(u_values, data_tabula, l_strength, temperature_factor): + """ + Calculates total annual heat losses Q_ht for different insulation + thicknesses (l_strength), depending on current insulation state (u_values), + standard building topologies and air ventilation from TABULA (data_tabula) + and the accumulated difference between internal and external temperature + during the heating season (temperature_factor). + + Total annual heat losses Q_ht constitute from losses by: + (1) transmission (H_tr_e) + (2) thermal bridges (H_tb) + (3) ventilation (H_ve) + weighted by a factor (F_red_temp) which is taken account for non-uniform heating + and the temperature factor of the heating season + + Q_ht [W/m^2] = (H_tr_e + H_tb + H_ve) [W/m^2K] * F_red_temp * temperature_factor [K] + + returns Q_ht as pd.DataFrame(index=['country_code', 'subsector', 'bage'], + columns=[current (1.) + retrofitted (l_strength)]) + """ + # (1) by transmission + # calculate new U values of building elements due to additional insulation + for l in l_strength: + u_values["new_U_{}".format(l)] = calculate_new_u( + u_values, l, l_weight, window_assumptions + ) + # surface area of building components [m^2] + area_element = ( + data_tabula[["A_{}".format(e) for e in u_values.index.levels[3]]] + .rename(columns=lambda x: x[2:]) + .stack() + .unstack(-2) + .stack() + ) + u_values["A_element"] = map_tabula_to_hotmaps( + area_element, u_values, "A_element" + ).xs(1, level=1, axis=1) + + # heat transfer H_tr_e [W/m^2K] through building element + # U_e * A_e / A_C_Ref + columns = ["value"] + ["new_U_{}".format(l) for l in l_strength] + heat_transfer = pd.concat( + [u_values[columns].mul(u_values.A_element, axis=0), u_values.A_element], axis=1 + ) + # get real subsector back in index + heat_transfer.index = u_values.index + heat_transfer = heat_transfer.groupby(level=[0, 1, 2]).sum() + + # rename columns of heat transfer H_tr_e [W/K] and envelope surface A_envelope [m^2] + heat_transfer.rename( + columns={ + "A_element": "A_envelope", + }, + inplace=True, + ) + + # map reference area + heat_transfer["A_C_Ref"] = map_tabula_to_hotmaps( + data_tabula.A_C_Ref, heat_transfer, "A_C_Ref" + ).xs(1.0, level=1, axis=1) + u_values["A_C_Ref"] = map_tabula_to_hotmaps( + data_tabula.A_C_Ref, u_values, "A_C_Ref" + ).xs(1.0, level=1, axis=1) + + # get heat transfer by transmission through building element [W/(m^2K)] + heat_transfer_perm2 = heat_transfer[columns].div(heat_transfer.A_C_Ref, axis=0) + heat_transfer_perm2.columns = pd.MultiIndex.from_product( + [["H_tr_e"], [1.0] + l_strength] + ) + + # (2) heat transfer by thermal bridges H_tb [W/(m^2K)] + # H_tb = delta_U [W/(m^2K)]* A_envelope [m^2] / A_C_Ref [m^2] + H_tb_tabula = ( + data_tabula.delta_U_ThermalBridging + * data_tabula.A_envelope + / data_tabula.A_C_Ref + ) + heat_transfer_perm2 = pd.concat( + [ + heat_transfer_perm2, + map_tabula_to_hotmaps(H_tb_tabula, heat_transfer_perm2, "H_tb"), + ], + axis=1, + ) + + # (3) by ventilation H_ve [W/(m²K)] + # = c_p_air [Wh/(m^3K)] * (n_air_use + n_air_infilitraion) [1/h] * h_room [m] + H_ve_tabula = ( + (data_tabula.n_air_infiltration + data_tabula.n_air_use) * c_p_air * h_room + ) + heat_transfer_perm2 = pd.concat( + [ + heat_transfer_perm2, + map_tabula_to_hotmaps(H_ve_tabula, heat_transfer_perm2, "H_ve"), + ], + axis=1, + ) + + # F_red_temp factor which is taken account for non-uniform heating e.g. + # lower heating/switch point during night times/weekends + # effect is significant for buildings with poor insulation + # for well insulated buildings/passive houses it has nearly no effect + # based on tabula values depending on the building type + F_red_temp = map_tabula_to_hotmaps( + data_tabula.F_red_temp, heat_transfer_perm2, "F_red_temp" + ) + # total heat transfer Q_ht [W/m^2] = + # (H_tr_e + H_tb + H_ve) [W/m^2K] * F_red_temp * temperature_factor [K] + # temperature_factor = (t_threshold - temperature_average_d_heat) * d_heat * 1/365 + heat_transfer_perm2 = map_to_lstrength(l_strength, heat_transfer_perm2) + F_red_temp = map_to_lstrength(l_strength, F_red_temp) + + Q_ht = ( + heat_transfer_perm2.groupby(level=1, axis=1) + .sum() + .mul(F_red_temp.droplevel(0, axis=1)) + .mul(temperature_factor.reindex(heat_transfer_perm2.index, level=0), axis=0) + ) + + return Q_ht, heat_transfer_perm2 + + +def calculate_heat_gains(data_tabula, heat_transfer_perm2, d_heat): + """ + Calculates heat gains Q_gain [W/m^2], which consititure from gains by: + + (1) solar radiation (2) internal heat gains + """ + # (1) by solar radiation H_solar [W/m^2] + # solar radiation [kWhm^2/a] / A_C_Ref [m^2] *1e3[1/k] / 8760 [a/h] + H_solar = ( + data_tabula.A_Window.apply(lambda x: get_solar_gains_per_year(x)) + / data_tabula.A_C_Ref + * 1e3 + / 8760 + ) + + Q_gain = map_tabula_to_hotmaps(H_solar, heat_transfer_perm2, "H_solar").xs( + 1.0, level=1, axis=1 + ) + + # (2) by internal H_int + # phi [W/m^2] * d_heat [d/a] * 1/365 [a/d] -> W/m^2 + Q_gain["H_int"] = (phi_int * d_heat * 1 / 365).reindex( + index=heat_transfer_perm2.index, level=0 + ) + + return Q_gain + + +def calculate_gain_utilisation_factor(heat_transfer_perm2, Q_ht, Q_gain): + """ + Calculates gain utilisation factor nu. + """ + # time constant of the building tau [h] = c_m [Wh/(m^2K)] * 1 /(H_tr_e+H_tb*H_ve) [m^2 K /W] + tau = c_m / heat_transfer_perm2.groupby(level=1, axis=1).sum() + alpha = alpha_H_0 + (tau / tau_H_0) + # heat balance ratio + gamma = (1 / Q_ht).mul(Q_gain.sum(axis=1), axis=0) + # gain utilisation factor + nu = (1 - gamma**alpha) / (1 - gamma ** (alpha + 1)) + + return nu + + +def calculate_space_heat_savings( + u_values, data_tabula, l_strength, temperature_factor, d_heat +): + """ + Calculates space heat savings (dE_space [per unit of unrefurbished state]) + through retrofitting of the thermal envelope by additional insulation + material (l_strength[m]) + """ + # heat losses Q_ht [W/m^2] + Q_ht, heat_transfer_perm2 = calculate_heat_losses( + u_values, data_tabula, l_strength, temperature_factor + ) + # heat gains Q_gain [W/m^2] + Q_gain = calculate_heat_gains(data_tabula, heat_transfer_perm2, d_heat) + + # calculate gain utilisation factor nu [dimensionless] + nu = calculate_gain_utilisation_factor(heat_transfer_perm2, Q_ht, Q_gain) + + # total space heating demand E_space + E_space = Q_ht - nu.mul(Q_gain.sum(axis=1), axis=0) + dE_space = E_space.div(E_space[1.0], axis=0).iloc[:, 1:] + dE_space.columns = pd.MultiIndex.from_product([["dE"], l_strength]) + + return dE_space + + +def calculate_retro_costs(u_values, l_strength, cost_retro): + """ + Returns costs of different retrofitting measures. + """ + costs = pd.concat( + [ + calculate_costs(u_values, l, cost_retro, window_assumptions).rename(l) + for l in l_strength + ], + axis=1, + ) + + # energy and costs per country, sector, subsector and year + cost_tot = costs.groupby(level=["country_code", "subsector", "bage"]).sum() + cost_tot.columns = pd.MultiIndex.from_product([["cost"], cost_tot.columns]) + + return cost_tot + + +def sample_dE_costs_area( + area, area_tot, costs, dE_space, countries, construction_index, tax_weighting +): + """ + Bring costs and energy savings together, fill area and costs per energy + savings for missing countries, weight costs, determine "moderate" and + "ambitious" retrofitting. + """ + sub_to_sector_dict = ( + area.reset_index() + .replace(rename_sectors) + .set_index("subsector")["sector"] + .to_dict() + ) + + area_reordered = ( + ( + area.rename(index=country_iso_dic, level=0) + .rename(index=rename_sectors, level=2) + .reset_index() + ) + .rename(columns={"country": "country_code"}) + .set_index(["country_code", "subsector", "bage"]) + ) + + cost_dE = ( + pd.concat([costs, dE_space], axis=1) + .mul(area_reordered.weight, axis=0) + .rename(sub_to_sector_dict, level=1) + .groupby(level=[0, 1]) + .sum() + ) + + # map missing countries + for ct in countries.difference(cost_dE.index.levels[0]): + averaged_data = ( + cost_dE.reindex(index=map_for_missings[ct], level=0) + .mean(level=1) + .set_index(pd.MultiIndex.from_product([[ct], cost_dE.index.levels[1]])) + ) + cost_dE = cost_dE.append(averaged_data) + + # 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() + cost_dE.cost = cost_dE.cost.mul(cost_w, level=0, axis=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() + cost_dE.cost = cost_dE.cost.mul(tax_w, level=0, axis=0) + + # drop not considered countries + cost_dE = cost_dE.reindex(countries, level=0) + # get share of residential and service floor area + sec_w = area_tot.value / area_tot.value.groupby(level=0).sum() + # get the total cost-energy-savings weight by sector area + tot = ( + cost_dE.mul(sec_w, axis=0) + .groupby(level="country_code") + .sum() + .set_index( + pd.MultiIndex.from_product( + [cost_dE.index.unique(level="country_code"), ["tot"]] + ) + ) + ) + cost_dE = cost_dE.append(tot).unstack().stack() + + summed_area = pd.DataFrame(area_tot.groupby("country").sum()).set_index( + pd.MultiIndex.from_product([area_tot.index.unique(level="country"), ["tot"]]) + ) + area_tot = area_tot.append(summed_area).unstack().stack() + + cost_per_saving = cost_dE["cost"] / ( + 1 - cost_dE["dE"] + ) # .diff(axis=1).dropna(axis=1) + + moderate_min = cost_per_saving.idxmin(axis=1) + moderate_dE_cost = pd.concat( + [cost_dE.loc[i].xs(moderate_min.loc[i], level=1) for i in moderate_min.index], + axis=1, + ).T + moderate_dE_cost.columns = pd.MultiIndex.from_product( + [moderate_dE_cost.columns, ["moderate"]] + ) + + ambitious_dE_cost = cost_dE.xs("0.26", level=1, axis=1) + ambitious_dE_cost.columns = pd.MultiIndex.from_product( + [ambitious_dE_cost.columns, ["ambitious"]] + ) + + cost_dE_new = pd.concat([moderate_dE_cost, ambitious_dE_cost], axis=1) + + return cost_dE_new, area_tot + + +# %% --- MAIN -------------------------------------------------------------- +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake( + "build_retro_cost", + simpl="", + clusters=48, + ll="v1.0", + sector_opts="Co2L0-168H-T-H-B-I-solar3-dist1", + ) + + # ******** config ********************************************************* + + 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 + + # 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"], + } + + # (1) prepare data ********************************************************** + + # building stock data ----------------------------------------------------- + # hotmaps u_values, heated floor areas per sector + u_values, country_iso_dic, countries, area_tot, area = prepare_building_stock_data() + # building topology, thermal bridges, ventilation losses + data_tabula = prepare_building_topology(u_values) + # costs for retrofitting ------------------------------------------------- + cost_retro, window_assumptions, cost_w, tax_w = prepare_cost_retro(country_iso_dic) + # temperature dependent parameters + d_heat, temperature_factor = prepare_temperature_data() + + # (2) space heat savings **************************************************** + dE_space = calculate_space_heat_savings( + u_values, data_tabula, l_strength, temperature_factor, d_heat + ) + + # (3) costs ***************************************************************** + costs = calculate_retro_costs(u_values, l_strength, cost_retro) + + # (4) cost-dE and area per sector ******************************************* + cost_dE, area_tot = sample_dE_costs_area( + area, area_tot, costs, dE_space, countries, construction_index, tax_weighting + ) + + # save ********************************************************************* + cost_dE.to_csv(snakemake.output.retro_cost) + area_tot.to_csv(snakemake.output.floor_area) diff --git a/scripts/build_salt_cavern_potentials.py b/scripts/build_salt_cavern_potentials.py new file mode 100644 index 00000000..956ed431 --- /dev/null +++ b/scripts/build_salt_cavern_potentials.py @@ -0,0 +1,93 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2020-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Build salt cavern potentials for hydrogen storage. + +Technical Potential of Salt Caverns for Hydrogen Storage in Europe CC-BY +4.0 +https://doi.org/10.20944/preprints201910.0187.v1 +https://doi.org/10.1016/j.ijhydene.2019.12.161 + +Figure 6. Distribution of potential salt cavern sites across Europe with their corresponding +energy densities (cavern storage potential divided by the volume). + +Figure 7. Total cavern storage potential in European countries +classified as onshore, offshore and within 50 km of shore. + +The regional distribution is taken from the map (Figure 6) and scaled to the +capacities from the bar chart split by nearshore (<50km from sea), +onshore (>50km from sea), offshore (Figure 7). +""" + + +import geopandas as gpd +import pandas as pd + + +def concat_gdf(gdf_list, crs="EPSG:4326"): + """ + Concatenate multiple geopandas dataframes with common coordinate reference + system (crs). + """ + return gpd.GeoDataFrame(pd.concat(gdf_list), crs=crs) + + +def load_bus_regions(onshore_path, offshore_path): + """ + Load pypsa-eur on- and offshore regions and concat. + """ + bus_regions_offshore = gpd.read_file(offshore_path) + bus_regions_onshore = gpd.read_file(onshore_path) + bus_regions = concat_gdf([bus_regions_offshore, bus_regions_onshore]) + bus_regions = bus_regions.dissolve(by="name", aggfunc="sum") + + return bus_regions + + +def area(gdf): + """ + Returns area of GeoDataFrame geometries in square kilometers. + """ + return gdf.to_crs(epsg=3035).area.div(1e6) + + +def salt_cavern_potential_by_region(caverns, regions): + # calculate area of caverns shapes + caverns["area_caverns"] = area(caverns) + + overlay = gpd.overlay(regions.reset_index(), caverns, keep_geom_type=True) + + # calculate share of cavern area inside region + overlay["share"] = area(overlay) / overlay["area_caverns"] + + overlay["e_nom"] = overlay.eval( + "capacity_per_area * share * area_caverns / 1000" + ) # TWh + + caverns_regions = ( + overlay.groupby(["name", "storage_type"]).e_nom.sum().unstack("storage_type") + ) + + return caverns_regions + + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake( + "build_salt_cavern_potentials", simpl="", clusters="37" + ) + + fn_onshore = snakemake.input.regions_onshore + fn_offshore = snakemake.input.regions_offshore + + regions = load_bus_regions(fn_onshore, fn_offshore) + + caverns = gpd.read_file(snakemake.input.salt_caverns) # GWh/sqkm + + caverns_regions = salt_cavern_potential_by_region(caverns, regions) + + caverns_regions.to_csv(snakemake.output.h2_cavern_potential) diff --git a/scripts/build_sequestration_potentials.py b/scripts/build_sequestration_potentials.py new file mode 100644 index 00000000..012effe8 --- /dev/null +++ b/scripts/build_sequestration_potentials.py @@ -0,0 +1,59 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Build regionalised geological sequestration potential for carbon dioxide using +data from `CO2Stop `_. +""" + +import geopandas as gpd +import pandas as pd + + +def area(gdf): + """ + Returns area of GeoDataFrame geometries in square kilometers. + """ + return gdf.to_crs(epsg=3035).area.div(1e6) + + +def allocate_sequestration_potential( + gdf, regions, attr="conservative estimate Mt", threshold=3 +): + gdf = gdf.loc[gdf[attr] > threshold, [attr, "geometry"]] + gdf["area_sqkm"] = area(gdf) + overlay = gpd.overlay(regions, gdf, keep_geom_type=True) + overlay["share"] = area(overlay) / overlay["area_sqkm"] + adjust_cols = overlay.columns.difference({"name", "area_sqkm", "geometry", "share"}) + overlay[adjust_cols] = overlay[adjust_cols].multiply(overlay["share"], axis=0) + gdf_regions = overlay.groupby("name").sum() + gdf_regions.drop(["area_sqkm", "share"], axis=1, inplace=True) + return gdf_regions.squeeze() + + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake( + "build_sequestration_potentials", simpl="", clusters="181" + ) + + cf = snakemake.config["sector"]["regional_co2_sequestration_potential"] + + gdf = gpd.read_file(snakemake.input.sequestration_potential[0]) + + regions = gpd.read_file(snakemake.input.regions_offshore) + if cf["include_onshore"]: + onregions = gpd.read_file(snakemake.input.regions_onshore) + regions = pd.concat([regions, onregions]).dissolve(by="name").reset_index() + + s = allocate_sequestration_potential( + gdf, regions, attr=cf["attribute"], threshold=cf["min_size"] + ) + + s = s.where(s > cf["min_size"]).dropna() + + s.to_csv(snakemake.output.sequestration_potential) diff --git a/scripts/build_shapes.py b/scripts/build_shapes.py index 22aed1fe..5561cfb2 100644 --- a/scripts/build_shapes.py +++ b/scripts/build_shapes.py @@ -1,9 +1,11 @@ -# SPDX-FileCopyrightText: : 2017-2020 The PyPSA-Eur Authors +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2017-2023 The PyPSA-Eur Authors # # SPDX-License-Identifier: MIT - """ -Creates GIS shape files of the countries, exclusive economic zones and `NUTS3 `_ areas. +Creates GIS shape files of the countries, exclusive economic zones and `NUTS3 < +https://en.wikipedia.org/wiki/Nomenclature_of_Territorial_Units_for_Statistics> +`_ areas. Relevant Settings ----------------- @@ -13,7 +15,7 @@ Relevant Settings countries: .. seealso:: - Documentation of the configuration file ``config.yaml`` at + Documentation of the configuration file ``config/config.yaml`` at :ref:`toplevel_cf` Inputs @@ -21,17 +23,17 @@ Inputs - ``data/bundle/naturalearth/ne_10m_admin_0_countries.shp``: World country shapes - .. image:: ../img/countries.png + .. image:: img/countries.png :scale: 33 % - ``data/bundle/eez/World_EEZ_v8_2014.shp``: World `exclusive economic zones `_ (EEZ) - .. image:: ../img/eez.png + .. image:: img/eez.png :scale: 33 % - ``data/bundle/NUTS_2013_60M_SH/data/NUTS_RG_60M_2013.shp``: Europe NUTS3 regions - .. image:: ../img/nuts3.png + .. image:: img/nuts3.png :scale: 33 % - ``data/bundle/nama_10r_3popgdp.tsv.gz``: Average annual population by NUTS3 region (`eurostat `__) @@ -44,43 +46,39 @@ Outputs - ``resources/country_shapes.geojson``: country shapes out of country selection - .. image:: ../img/country_shapes.png + .. image:: img/country_shapes.png :scale: 33 % - ``resources/offshore_shapes.geojson``: EEZ shapes out of country selection - .. image:: ../img/offshore_shapes.png + .. image:: img/offshore_shapes.png :scale: 33 % - ``resources/europe_shape.geojson``: Shape of Europe including countries and EEZ - .. image:: ../img/europe_shape.png + .. image:: img/europe_shape.png :scale: 33 % - ``resources/nuts3_shapes.geojson``: NUTS3 shapes out of country selection including population and GDP data. - .. image:: ../img/nuts3_shapes.png + .. image:: img/nuts3_shapes.png :scale: 33 % Description ----------- - """ import logging -from _helpers import configure_logging - -import os -import numpy as np -from operator import attrgetter from functools import reduce from itertools import takewhile +from operator import attrgetter -import pandas as pd import geopandas as gpd -from shapely.geometry import MultiPolygon, Polygon -from shapely.ops import unary_union +import numpy as np +import pandas as pd import pycountry as pyc +from _helpers import configure_logging +from shapely.geometry import MultiPolygon, Polygon logger = logging.getLogger(__name__) @@ -95,140 +93,189 @@ def _get_country(target, **keys): def _simplify_polys(polys, minarea=0.1, tolerance=0.01, filterremote=True): if isinstance(polys, MultiPolygon): - polys = sorted(polys.geoms, key=attrgetter('area'), reverse=True) + polys = sorted(polys.geoms, key=attrgetter("area"), reverse=True) mainpoly = polys[0] - mainlength = np.sqrt(mainpoly.area/(2.*np.pi)) + mainlength = np.sqrt(mainpoly.area / (2.0 * np.pi)) if mainpoly.area > minarea: - polys = MultiPolygon([p - for p in takewhile(lambda p: p.area > minarea, polys) - if not filterremote or (mainpoly.distance(p) < mainlength)]) + polys = MultiPolygon( + [ + p + for p in takewhile(lambda p: p.area > minarea, polys) + if not filterremote or (mainpoly.distance(p) < mainlength) + ] + ) else: polys = mainpoly return polys.simplify(tolerance=tolerance) def countries(naturalearth, country_list): - if 'RS' in country_list: country_list.append('KV') + if "RS" in country_list: + country_list.append("KV") df = gpd.read_file(naturalearth) # Names are a hassle in naturalearth, try several fields - fieldnames = (df[x].where(lambda s: s!='-99') for x in ('ISO_A2', 'WB_A2', 'ADM0_A3')) - df['name'] = reduce(lambda x,y: x.fillna(y), fieldnames, next(fieldnames)).str[0:2] + fieldnames = ( + df[x].where(lambda s: s != "-99") for x in ("ISO_A2", "WB_A2", "ADM0_A3") + ) + df["name"] = reduce(lambda x, y: x.fillna(y), fieldnames, next(fieldnames)).str[0:2] - df = df.loc[df.name.isin(country_list) & ((df['scalerank'] == 0) | (df['scalerank'] == 5))] - s = df.set_index('name')['geometry'].map(_simplify_polys) - if 'RS' in country_list: s['RS'] = s['RS'].union(s.pop('KV')) + df = df.loc[ + df.name.isin(country_list) & ((df["scalerank"] == 0) | (df["scalerank"] == 5)) + ] + s = df.set_index("name")["geometry"].map(_simplify_polys) + if "RS" in country_list: + s["RS"] = s["RS"].union(s.pop("KV")) + # cleanup shape union + s["RS"] = Polygon(s["RS"].exterior.coords) return s def eez(country_shapes, eez, country_list): df = gpd.read_file(eez) - df = df.loc[df['ISO_3digit'].isin([_get_country('alpha_3', alpha_2=c) for c in country_list])] - df['name'] = df['ISO_3digit'].map(lambda c: _get_country('alpha_2', alpha_3=c)) - s = df.set_index('name').geometry.map(lambda s: _simplify_polys(s, filterremote=False)) - s = gpd.GeoSeries({k:v for k,v in s.iteritems() if v.distance(country_shapes[k]) < 1e-3}) + df = df.loc[ + df["ISO_3digit"].isin( + [_get_country("alpha_3", alpha_2=c) for c in country_list] + ) + ] + df["name"] = df["ISO_3digit"].map(lambda c: _get_country("alpha_2", alpha_3=c)) + s = df.set_index("name").geometry.map( + lambda s: _simplify_polys(s, filterremote=False) + ) + s = gpd.GeoSeries( + {k: v for k, v in s.items() if v.distance(country_shapes[k]) < 1e-3} + ) + s = s.to_frame("geometry") s.index.name = "name" return s def country_cover(country_shapes, eez_shapes=None): - shapes = list(country_shapes) + shapes = country_shapes if eez_shapes is not None: - shapes += list(eez_shapes) - - europe_shape = unary_union(shapes) + shapes = pd.concat([shapes, eez_shapes]) + europe_shape = shapes.unary_union if isinstance(europe_shape, MultiPolygon): - europe_shape = max(europe_shape, key=attrgetter('area')) + europe_shape = max(europe_shape, key=attrgetter("area")) return Polygon(shell=europe_shape.exterior) def nuts3(country_shapes, nuts3, nuts3pop, nuts3gdp, ch_cantons, ch_popgdp): df = gpd.read_file(nuts3) - df = df.loc[df['STAT_LEVL_'] == 3] - df['geometry'] = df['geometry'].map(_simplify_polys) - df = df.rename(columns={'NUTS_ID': 'id'})[['id', 'geometry']].set_index('id') + df = df.loc[df["STAT_LEVL_"] == 3] + df["geometry"] = df["geometry"].map(_simplify_polys) + df = df.rename(columns={"NUTS_ID": "id"})[["id", "geometry"]].set_index("id") - pop = pd.read_table(nuts3pop, na_values=[':'], delimiter=' ?\t', engine='python') - pop = (pop - .set_index(pd.MultiIndex.from_tuples(pop.pop('unit,geo\\time').str.split(','))).loc['THS'] - .applymap(lambda x: pd.to_numeric(x, errors='coerce')) - .fillna(method='bfill', axis=1))['2014'] + pop = pd.read_table(nuts3pop, na_values=[":"], delimiter=" ?\t", engine="python") + pop = ( + pop.set_index( + pd.MultiIndex.from_tuples(pop.pop("unit,geo\\time").str.split(",")) + ) + .loc["THS"] + .applymap(lambda x: pd.to_numeric(x, errors="coerce")) + .fillna(method="bfill", axis=1) + )["2014"] - gdp = pd.read_table(nuts3gdp, na_values=[':'], delimiter=' ?\t', engine='python') - gdp = (gdp - .set_index(pd.MultiIndex.from_tuples(gdp.pop('unit,geo\\time').str.split(','))).loc['EUR_HAB'] - .applymap(lambda x: pd.to_numeric(x, errors='coerce')) - .fillna(method='bfill', axis=1))['2014'] + gdp = pd.read_table(nuts3gdp, na_values=[":"], delimiter=" ?\t", engine="python") + gdp = ( + gdp.set_index( + pd.MultiIndex.from_tuples(gdp.pop("unit,geo\\time").str.split(",")) + ) + .loc["EUR_HAB"] + .applymap(lambda x: pd.to_numeric(x, errors="coerce")) + .fillna(method="bfill", axis=1) + )["2014"] cantons = pd.read_csv(ch_cantons) - cantons = cantons.set_index(cantons['HASC'].str[3:])['NUTS'] - cantons = cantons.str.pad(5, side='right', fillchar='0') + cantons = cantons.set_index(cantons["HASC"].str[3:])["NUTS"] + cantons = cantons.str.pad(5, side="right", fillchar="0") swiss = pd.read_excel(ch_popgdp, skiprows=3, index_col=0) swiss.columns = swiss.columns.to_series().map(cantons) - swiss_pop = pd.to_numeric(swiss.loc['Residents in 1000', 'CH040':]) + swiss_pop = pd.to_numeric(swiss.loc["Residents in 1000", "CH040":]) pop = pd.concat([pop, swiss_pop]) - swiss_gdp = pd.to_numeric(swiss.loc['Gross domestic product per capita in Swiss francs', 'CH040':]) + swiss_gdp = pd.to_numeric( + swiss.loc["Gross domestic product per capita in Swiss francs", "CH040":] + ) gdp = pd.concat([gdp, swiss_gdp]) df = df.join(pd.DataFrame(dict(pop=pop, gdp=gdp))) - df['country'] = df.index.to_series().str[:2].replace(dict(UK='GB', EL='GR')) + df["country"] = df.index.to_series().str[:2].replace(dict(UK="GB", EL="GR")) - excludenuts = pd.Index(('FRA10', 'FRA20', 'FRA30', 'FRA40', 'FRA50', - 'PT200', 'PT300', - 'ES707', 'ES703', 'ES704','ES705', 'ES706', 'ES708', 'ES709', - 'FI2', 'FR9')) - excludecountry = pd.Index(('MT', 'TR', 'LI', 'IS', 'CY', 'KV')) + excludenuts = pd.Index( + ( + "FRA10", + "FRA20", + "FRA30", + "FRA40", + "FRA50", + "PT200", + "PT300", + "ES707", + "ES703", + "ES704", + "ES705", + "ES706", + "ES708", + "ES709", + "FI2", + "FR9", + ) + ) + excludecountry = pd.Index(("MT", "TR", "LI", "IS", "CY", "KV")) df = df.loc[df.index.difference(excludenuts)] df = df.loc[~df.country.isin(excludecountry)] manual = gpd.GeoDataFrame( - [['BA1', 'BA', 3871.], - ['RS1', 'RS', 7210.], - ['AL1', 'AL', 2893.]], - columns=['NUTS_ID', 'country', 'pop'] - ).set_index('NUTS_ID') - manual['geometry'] = manual['country'].map(country_shapes) + [["BA1", "BA", 3871.0], ["RS1", "RS", 7210.0], ["AL1", "AL", 2893.0]], + columns=["NUTS_ID", "country", "pop"], + geometry=gpd.GeoSeries(), + ) + manual["geometry"] = manual["country"].map(country_shapes) manual = manual.dropna() + manual = manual.set_index("NUTS_ID") + manual = manual.set_crs("ETRS89") df = pd.concat([df, manual], sort=False) - df.loc['ME000', 'pop'] = 650. + df.loc["ME000", "pop"] = 650.0 return df -def save_to_geojson(df, fn): - if os.path.exists(fn): - os.unlink(fn) - if not isinstance(df, gpd.GeoDataFrame): - df = gpd.GeoDataFrame(dict(geometry=df)) - df = df.reset_index() - schema = {**gpd.io.file.infer_schema(df), 'geometry': 'Unknown'} - df.to_file(fn, driver='GeoJSON', schema=schema) - - if __name__ == "__main__": - if 'snakemake' not in globals(): + if "snakemake" not in globals(): from _helpers import mock_snakemake - snakemake = mock_snakemake('build_shapes') + + snakemake = mock_snakemake("build_shapes") configure_logging(snakemake) - country_shapes = countries(snakemake.input.naturalearth, snakemake.config['countries']) - save_to_geojson(country_shapes, snakemake.output.country_shapes) + country_shapes = countries( + snakemake.input.naturalearth, snakemake.config["countries"] + ) + country_shapes.reset_index().to_file(snakemake.output.country_shapes) - offshore_shapes = eez(country_shapes, snakemake.input.eez, snakemake.config['countries']) - save_to_geojson(offshore_shapes, snakemake.output.offshore_shapes) + offshore_shapes = eez( + country_shapes, snakemake.input.eez, snakemake.config["countries"] + ) + offshore_shapes.reset_index().to_file(snakemake.output.offshore_shapes) - europe_shape = country_cover(country_shapes, offshore_shapes) - save_to_geojson(gpd.GeoSeries(europe_shape), snakemake.output.europe_shape) + europe_shape = gpd.GeoDataFrame( + geometry=[country_cover(country_shapes, offshore_shapes.geometry)] + ) + europe_shape.reset_index().to_file(snakemake.output.europe_shape) - nuts3_shapes = nuts3(country_shapes, snakemake.input.nuts3, snakemake.input.nuts3pop, - snakemake.input.nuts3gdp, snakemake.input.ch_cantons, snakemake.input.ch_popgdp) - - save_to_geojson(nuts3_shapes, snakemake.output.nuts3_shapes) + nuts3_shapes = nuts3( + country_shapes, + snakemake.input.nuts3, + snakemake.input.nuts3pop, + snakemake.input.nuts3gdp, + snakemake.input.ch_cantons, + snakemake.input.ch_popgdp, + ) + nuts3_shapes.reset_index().to_file(snakemake.output.nuts3_shapes) diff --git a/scripts/build_ship_raster.py b/scripts/build_ship_raster.py new file mode 100644 index 00000000..90e006b0 --- /dev/null +++ b/scripts/build_ship_raster.py @@ -0,0 +1,72 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2022 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Transforms the global ship density data from the `World Bank Data Catalogue. + +`_ +to the size of the considered cutout. The global ship density raster is later +used for the exclusion when calculating the offshore potentials. + +Relevant Settings +----------------- + +.. code:: yaml + + renewable: + {technology}: + cutout: + +.. seealso:: + Documentation of the configuration file ``config/config.yaml`` at + :ref:`renewable_cf` + +Inputs +------ + +- ``data/bundle/shipdensity/shipdensity_global.zip``: Global shipping traffic + density from `World Bank Data Catalogue + `_. + +Outputs +------- + +- ``resources/europe_shipdensity_raster.nc``: Reduced version of global shipping + traffic density from `World Bank Data Catalogue + `_ to reduce + computation time. + +Description +----------- +""" + +import logging +import os +import zipfile + +import rioxarray +from _helpers import configure_logging +from build_natura_raster import determine_cutout_xXyY + +logger = logging.getLogger(__name__) + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake("build_ship_raster") + configure_logging(snakemake) + + cutouts = snakemake.input.cutouts + xs, Xs, ys, Ys = zip(*(determine_cutout_xXyY(cutout) for cutout in cutouts)) + + with zipfile.ZipFile(snakemake.input.ship_density) as zip_f: + zip_f.extract("shipdensity_global.tif") + with rioxarray.open_rasterio("shipdensity_global.tif") as ship_density: + ship_density = ship_density.drop(["band"]).sel( + x=slice(min(xs), max(Xs)), y=slice(max(Ys), min(ys)) + ) + ship_density.rio.to_raster(snakemake.output[0]) + + os.remove("shipdensity_global.tif") diff --git a/scripts/build_shipping_demand.py b/scripts/build_shipping_demand.py new file mode 100644 index 00000000..8000c66c --- /dev/null +++ b/scripts/build_shipping_demand.py @@ -0,0 +1,61 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Build regional demand for international navigation based on outflow volume of +ports. +""" + +import json + +import geopandas as gpd +import pandas as pd + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake( + "build_shipping_demand_per_node", + simpl="", + clusters=48, + ) + + scope = gpd.read_file(snakemake.input.scope).geometry[0] + regions = gpd.read_file(snakemake.input.regions).set_index("name") + demand = pd.read_csv(snakemake.input.demand, index_col=0)[ + "total international navigation" + ] + + # read port data into GeoDataFrame + with open(snakemake.input.ports, "r", encoding="latin_1") as f: + ports = json.load(f) + ports = pd.json_normalize(ports, "features", sep="_") + coordinates = ports.geometry_coordinates + geometry = gpd.points_from_xy(coordinates.str[0], coordinates.str[1]) + ports = gpd.GeoDataFrame(ports, geometry=geometry, crs=4326) + + # filter global port data by European ports + european_ports = ports[ports.within(scope)] + + # assign ports to nearest region + p = european_ports.to_crs(3857) + r = regions.to_crs(3857) + outflows = ( + p.sjoin_nearest(r).groupby("index_right").properties_outflows.sum().div(1e3) + ) + + # calculate fraction of each country's port outflows + countries = outflows.index.str[:2] + outflows_per_country = outflows.groupby(countries).sum() + fraction = outflows / countries.map(outflows_per_country) + + # distribute per-country demands to nodes based on these fractions + nodal_demand = demand.loc[countries].fillna(0.0) + nodal_demand.index = fraction.index + nodal_demand = nodal_demand.multiply(fraction, axis=0) + nodal_demand = nodal_demand.reindex(regions.index, fill_value=0) + + # export nodal international navigation demands + nodal_demand.to_csv(snakemake.output[0]) diff --git a/scripts/build_solar_thermal_profiles.py b/scripts/build_solar_thermal_profiles.py new file mode 100644 index 00000000..f4eb1557 --- /dev/null +++ b/scripts/build_solar_thermal_profiles.py @@ -0,0 +1,61 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2020-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Build solar thermal collector time series. +""" + +import atlite +import geopandas as gpd +import numpy as np +import pandas as pd +import xarray as xr +from dask.distributed import Client, LocalCluster + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake( + "build_solar_thermal_profiles", + simpl="", + clusters=48, + ) + + nprocesses = int(snakemake.threads) + cluster = LocalCluster(n_workers=nprocesses, threads_per_worker=1) + client = Client(cluster, asynchronous=True) + + config = snakemake.config["solar_thermal"] + + time = pd.date_range(freq="h", **snakemake.config["snapshots"]) + cutout = atlite.Cutout(snakemake.input.cutout).sel(time=time) + + clustered_regions = ( + gpd.read_file(snakemake.input.regions_onshore) + .set_index("name") + .buffer(0) + .squeeze() + ) + + I = cutout.indicatormatrix(clustered_regions) + + pop_layout = xr.open_dataarray(snakemake.input.pop_layout) + + stacked_pop = pop_layout.stack(spatial=("y", "x")) + M = I.T.dot(np.diag(I.dot(stacked_pop))) + + nonzero_sum = M.sum(axis=0, keepdims=True) + nonzero_sum[nonzero_sum == 0.0] = 1.0 + M_tilde = M / nonzero_sum + + solar_thermal = cutout.solar_thermal( + **config, + matrix=M_tilde.T, + index=clustered_regions.index, + dask_kwargs=dict(scheduler=client), + show_progress=False + ) + + solar_thermal.to_netcdf(snakemake.output.solar_thermal) diff --git a/scripts/build_temperature_profiles.py b/scripts/build_temperature_profiles.py new file mode 100644 index 00000000..8f6d6c6c --- /dev/null +++ b/scripts/build_temperature_profiles.py @@ -0,0 +1,67 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2020-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Build time series for air and soil temperatures per clustered model region. +""" + +import atlite +import geopandas as gpd +import numpy as np +import pandas as pd +import xarray as xr +from dask.distributed import Client, LocalCluster + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake( + "build_temperature_profiles", + simpl="", + clusters=48, + ) + + nprocesses = int(snakemake.threads) + cluster = LocalCluster(n_workers=nprocesses, threads_per_worker=1) + client = Client(cluster, asynchronous=True) + + time = pd.date_range(freq="h", **snakemake.config["snapshots"]) + cutout = atlite.Cutout(snakemake.input.cutout).sel(time=time) + + clustered_regions = ( + gpd.read_file(snakemake.input.regions_onshore) + .set_index("name") + .buffer(0) + .squeeze() + ) + + I = cutout.indicatormatrix(clustered_regions) + + pop_layout = xr.open_dataarray(snakemake.input.pop_layout) + + stacked_pop = pop_layout.stack(spatial=("y", "x")) + M = I.T.dot(np.diag(I.dot(stacked_pop))) + + nonzero_sum = M.sum(axis=0, keepdims=True) + nonzero_sum[nonzero_sum == 0.0] = 1.0 + M_tilde = M / nonzero_sum + + temp_air = cutout.temperature( + matrix=M_tilde.T, + index=clustered_regions.index, + dask_kwargs=dict(scheduler=client), + show_progress=False, + ) + + temp_air.to_netcdf(snakemake.output.temp_air) + + temp_soil = cutout.soil_temperature( + matrix=M_tilde.T, + index=clustered_regions.index, + dask_kwargs=dict(scheduler=client), + show_progress=False, + ) + + temp_soil.to_netcdf(snakemake.output.temp_soil) diff --git a/scripts/build_transport_demand.py b/scripts/build_transport_demand.py new file mode 100644 index 00000000..6b8bd04f --- /dev/null +++ b/scripts/build_transport_demand.py @@ -0,0 +1,204 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2020-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Build land transport demand per clustered model region including efficiency +improvements due to drivetrain changes, time series for electric vehicle +availability and demand-side management constraints. +""" + +import numpy as np +import pandas as pd +import xarray as xr +from _helpers import generate_periodic_profiles + + +def build_nodal_transport_data(fn, pop_layout): + transport_data = pd.read_csv(fn, index_col=0) + + nodal_transport_data = transport_data.loc[pop_layout.ct].fillna(0.0) + nodal_transport_data.index = pop_layout.index + nodal_transport_data["number cars"] = ( + pop_layout["fraction"] * nodal_transport_data["number cars"] + ) + nodal_transport_data.loc[ + nodal_transport_data["average fuel efficiency"] == 0.0, + "average fuel efficiency", + ] = transport_data["average fuel efficiency"].mean() + + return nodal_transport_data + + +def build_transport_demand(traffic_fn, airtemp_fn, nodes, nodal_transport_data): + ## Get overall demand curve for all vehicles + + traffic = pd.read_csv(traffic_fn, skiprows=2, usecols=["count"]).squeeze("columns") + + transport_shape = generate_periodic_profiles( + dt_index=snapshots, + nodes=nodes, + weekly_profile=traffic.values, + ) + transport_shape = transport_shape / transport_shape.sum() + + # electric motors are more efficient, so alter transport demand + + plug_to_wheels_eta = options["bev_plug_to_wheel_efficiency"] + battery_to_wheels_eta = plug_to_wheels_eta * options["bev_charge_efficiency"] + + efficiency_gain = ( + nodal_transport_data["average fuel efficiency"] / battery_to_wheels_eta + ) + + # get heating demand for correction to demand time series + temperature = xr.open_dataarray(airtemp_fn).to_pandas() + + # correction factors for vehicle heating + dd_ICE = transport_degree_factor( + temperature, + options["transport_heating_deadband_lower"], + options["transport_heating_deadband_upper"], + options["ICE_lower_degree_factor"], + options["ICE_upper_degree_factor"], + ) + + dd_EV = transport_degree_factor( + temperature, + options["transport_heating_deadband_lower"], + options["transport_heating_deadband_upper"], + options["EV_lower_degree_factor"], + options["EV_upper_degree_factor"], + ) + + # divide out the heating/cooling demand from ICE totals + # and multiply back in the heating/cooling demand for EVs + ice_correction = (transport_shape * (1 + dd_ICE)).sum() / transport_shape.sum() + + energy_totals_transport = ( + pop_weighted_energy_totals["total road"] + + pop_weighted_energy_totals["total rail"] + - pop_weighted_energy_totals["electricity rail"] + ) + + transport = ( + (transport_shape.multiply(energy_totals_transport) * 1e6 * nyears) + .divide(efficiency_gain * ice_correction) + .multiply(1 + dd_EV) + ) + + return transport + + +def transport_degree_factor( + temperature, + deadband_lower=15, + deadband_upper=20, + lower_degree_factor=0.5, + upper_degree_factor=1.6, +): + """ + Work out how much energy demand in vehicles increases due to heating and + cooling. + + There is a deadband where there is no increase. Degree factors are % + increase in demand compared to no heating/cooling fuel consumption. + Returns per unit increase in demand for each place and time + """ + + dd = temperature.copy() + + dd[(temperature > deadband_lower) & (temperature < deadband_upper)] = 0.0 + + dT_lower = deadband_lower - temperature[temperature < deadband_lower] + dd[temperature < deadband_lower] = lower_degree_factor / 100 * dT_lower + + dT_upper = temperature[temperature > deadband_upper] - deadband_upper + dd[temperature > deadband_upper] = upper_degree_factor / 100 * dT_upper + + return dd + + +def bev_availability_profile(fn, snapshots, nodes, options): + """ + Derive plugged-in availability for passenger electric vehicles. + """ + traffic = pd.read_csv(fn, skiprows=2, usecols=["count"]).squeeze("columns") + + avail_max = options["bev_avail_max"] + avail_mean = options["bev_avail_mean"] + + avail = avail_max - (avail_max - avail_mean) * (traffic - traffic.min()) / ( + traffic.mean() - traffic.min() + ) + + avail_profile = generate_periodic_profiles( + dt_index=snapshots, + nodes=nodes, + weekly_profile=avail.values, + ) + + return avail_profile + + +def bev_dsm_profile(snapshots, nodes, options): + dsm_week = np.zeros((24 * 7,)) + + 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=snapshots, + nodes=nodes, + weekly_profile=dsm_week, + ) + + return dsm_profile + + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake( + "build_transport_demand", + simpl="", + clusters=48, + ) + + pop_layout = pd.read_csv(snakemake.input.clustered_pop_layout, index_col=0) + + nodes = pop_layout.index + + pop_weighted_energy_totals = pd.read_csv( + snakemake.input.pop_weighted_energy_totals, index_col=0 + ) + + options = snakemake.config["sector"] + + snapshots = pd.date_range(freq="h", **snakemake.config["snapshots"], tz="UTC") + + nyears = len(snapshots) / 8760 + + nodal_transport_data = build_nodal_transport_data( + snakemake.input.transport_data, pop_layout + ) + + transport_demand = build_transport_demand( + snakemake.input.traffic_data_KFZ, + snakemake.input.temp_air_total, + nodes, + nodal_transport_data, + ) + + avail_profile = bev_availability_profile( + snakemake.input.traffic_data_Pkw, snapshots, nodes, options + ) + + dsm_profile = bev_dsm_profile(snapshots, nodes, options) + + nodal_transport_data.to_csv(snakemake.output.transport_data) + transport_demand.to_csv(snakemake.output.transport_demand) + avail_profile.to_csv(snakemake.output.avail_profile) + dsm_profile.to_csv(snakemake.output.dsm_profile) diff --git a/scripts/cluster_gas_network.py b/scripts/cluster_gas_network.py new file mode 100755 index 00000000..e7554dff --- /dev/null +++ b/scripts/cluster_gas_network.py @@ -0,0 +1,129 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2020-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Cluster gas transmission network to clustered model regions. +""" + +import logging + +logger = logging.getLogger(__name__) + +import geopandas as gpd +import pandas as pd +from packaging.version import Version, parse +from pypsa.geo import haversine_pts +from shapely import wkt + + +def concat_gdf(gdf_list, crs="EPSG:4326"): + """ + Concatenate multiple geopandas dataframes with common coordinate reference + system (crs). + """ + return gpd.GeoDataFrame(pd.concat(gdf_list), crs=crs) + + +def load_bus_regions(onshore_path, offshore_path): + """ + Load pypsa-eur on- and offshore regions and concat. + """ + bus_regions_offshore = gpd.read_file(offshore_path) + bus_regions_onshore = gpd.read_file(onshore_path) + bus_regions = concat_gdf([bus_regions_offshore, bus_regions_onshore]) + bus_regions = bus_regions.dissolve(by="name", aggfunc="sum") + + return bus_regions + + +def build_clustered_gas_network(df, bus_regions, length_factor=1.25): + for i in [0, 1]: + gdf = gpd.GeoDataFrame(geometry=df[f"point{i}"], crs="EPSG:4326") + + kws = ( + dict(op="within") + if parse(gpd.__version__) < Version("0.10") + else dict(predicate="within") + ) + bus_mapping = gpd.sjoin(gdf, bus_regions, how="left", **kws).index_right + bus_mapping = bus_mapping.groupby(bus_mapping.index).first() + + df[f"bus{i}"] = bus_mapping + + df[f"point{i}"] = df[f"bus{i}"].map( + bus_regions.to_crs(3035).centroid.to_crs(4326) + ) + + # drop pipes where not both buses are inside regions + df = df.loc[~df.bus0.isna() & ~df.bus1.isna()] + + # drop pipes within the same region + df = df.loc[df.bus1 != df.bus0] + + # recalculate lengths as center to center * length factor + df["length"] = df.apply( + lambda p: length_factor + * haversine_pts([p.point0.x, p.point0.y], [p.point1.x, p.point1.y]), + axis=1, + ) + + # tidy and create new numbered index + df.drop(["point0", "point1"], axis=1, inplace=True) + df.reset_index(drop=True, inplace=True) + + return df + + +def reindex_pipes(df): + def make_index(x): + connector = " <-> " if x.bidirectional else " -> " + return "gas pipeline " + x.bus0 + connector + x.bus1 + + df.index = df.apply(make_index, axis=1) + + df["p_min_pu"] = df.bidirectional.apply(lambda bi: -1 if bi else 0) + df.drop("bidirectional", axis=1, inplace=True) + + df.sort_index(axis=1, inplace=True) + + +def aggregate_parallel_pipes(df): + strategies = { + "bus0": "first", + "bus1": "first", + "p_nom": "sum", + "p_nom_diameter": "sum", + "max_pressure_bar": "mean", + "build_year": "mean", + "diameter_mm": "mean", + "length": "mean", + "name": " ".join, + "p_min_pu": "min", + } + return df.groupby(df.index).agg(strategies) + + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake("cluster_gas_network", simpl="", clusters="37") + + logging.basicConfig(level=snakemake.config["logging"]["level"]) + + fn = snakemake.input.cleaned_gas_network + df = pd.read_csv(fn, index_col=0) + for col in ["point0", "point1"]: + df[col] = df[col].apply(wkt.loads) + + bus_regions = load_bus_regions( + snakemake.input.regions_onshore, snakemake.input.regions_offshore + ) + + gas_network = build_clustered_gas_network(df, bus_regions) + + reindex_pipes(gas_network) + gas_network = aggregate_parallel_pipes(gas_network) + + gas_network.to_csv(snakemake.output.clustered_gas_network) diff --git a/scripts/cluster_network.py b/scripts/cluster_network.py index 93a93b85..7572d3b3 100644 --- a/scripts/cluster_network.py +++ b/scripts/cluster_network.py @@ -1,21 +1,23 @@ -# SPDX-FileCopyrightText: : 2017-2020 The PyPSA-Eur Authors +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2017-2023 The PyPSA-Eur Authors # # SPDX-License-Identifier: MIT # coding: utf-8 """ -Creates networks clustered to ``{cluster}`` number of zones with aggregated buses, generators and transmission corridors. +Creates networks clustered to ``{cluster}`` number of zones with aggregated +buses, generators and transmission corridors. Relevant Settings ----------------- .. code:: yaml - focus_weights: + clustering: + cluster_network: + aggregation_strategies: - renewable: (keys) - {technology}: - potential: + focus_weights: solving: solver: @@ -25,7 +27,7 @@ Relevant Settings length_factor: .. seealso:: - Documentation of the configuration file ``config.yaml`` at + Documentation of the configuration file ``config/config.yaml`` at :ref:`toplevel_cf`, :ref:`renewable_cf`, :ref:`solving_cf`, :ref:`lines_cf` Inputs @@ -42,19 +44,19 @@ Outputs - ``resources/regions_onshore_elec_s{simpl}_{clusters}.geojson``: - .. image:: ../img/regions_onshore_elec_s_X.png + .. image:: img/regions_onshore_elec_s_X.png :scale: 33 % - ``resources/regions_offshore_elec_s{simpl}_{clusters}.geojson``: - .. image:: ../img/regions_offshore_elec_s_X.png + .. image:: img/regions_offshore_elec_s_X.png :scale: 33 % - ``resources/busmap_elec_s{simpl}_{clusters}.csv``: Mapping of buses from ``networks/elec_s{simpl}.nc`` to ``networks/elec_s{simpl}_{clusters}.nc``; - ``resources/linemap_elec_s{simpl}_{clusters}.csv``: Mapping of lines from ``networks/elec_s{simpl}.nc`` to ``networks/elec_s{simpl}_{clusters}.nc``; - ``networks/elec_s{simpl}_{clusters}.nc``: - .. image:: ../img/elec_s_X.png + .. image:: img/elec_s_X.png :scale: 40 % Description @@ -91,56 +93,55 @@ Description do not work reliably with multiple voltage levels and transformers. .. tip:: - The rule :mod:`cluster_all_networks` runs + The rule :mod:`cluster_networks` runs for all ``scenario`` s in the configuration file the rule :mod:`cluster_network`. Exemplary unsolved network clustered to 512 nodes: -.. image:: ../img/elec_s_512.png +.. image:: img/elec_s_512.png :scale: 40 % :align: center Exemplary unsolved network clustered to 256 nodes: -.. image:: ../img/elec_s_256.png +.. image:: img/elec_s_256.png :scale: 40 % :align: center Exemplary unsolved network clustered to 128 nodes: -.. image:: ../img/elec_s_128.png +.. image:: img/elec_s_128.png :scale: 40 % :align: center Exemplary unsolved network clustered to 37 nodes: -.. image:: ../img/elec_s_37.png +.. image:: img/elec_s_37.png :scale: 40 % :align: center - """ import logging -from _helpers import configure_logging, update_p_nom_max - -import pypsa -import os -import shapely - -import pandas as pd -import numpy as np -import geopandas as gpd -import pyomo.environ as po -import matplotlib.pyplot as plt -import seaborn as sns - +import warnings from functools import reduce -from pypsa.networkclustering import (busmap_by_kmeans, _make_consense, get_clustering_from_busmap) +import geopandas as gpd +import matplotlib.pyplot as plt +import numpy as np +import pandas as pd +import pyomo.environ as po +import pypsa +import seaborn as sns +from _helpers import configure_logging, get_aggregation_strategies, update_p_nom_max +from pypsa.networkclustering import ( + busmap_by_greedy_modularity, + busmap_by_hac, + busmap_by_kmeans, + get_clustering_from_busmap, +) -import warnings -warnings.filterwarnings(action='ignore', category=UserWarning) +warnings.filterwarnings(action="ignore", category=UserWarning) from add_electricity import load_costs @@ -149,19 +150,21 @@ idx = pd.IndexSlice logger = logging.getLogger(__name__) -def normed(x): return (x/x.sum()).fillna(0.) +def normed(x): + return (x / x.sum()).fillna(0.0) def weighting_for_country(n, x): - conv_carriers = {'OCGT','CCGT','PHS', 'hydro'} - gen = (n - .generators.loc[n.generators.carrier.isin(conv_carriers)] - .groupby('bus').p_nom.sum() - .reindex(n.buses.index, fill_value=0.) + - n - .storage_units.loc[n.storage_units.carrier.isin(conv_carriers)] - .groupby('bus').p_nom.sum() - .reindex(n.buses.index, fill_value=0.)) + conv_carriers = {"OCGT", "CCGT", "PHS", "hydro"} + gen = n.generators.loc[n.generators.carrier.isin(conv_carriers)].groupby( + "bus" + ).p_nom.sum().reindex(n.buses.index, fill_value=0.0) + n.storage_units.loc[ + n.storage_units.carrier.isin(conv_carriers) + ].groupby( + "bus" + ).p_nom.sum().reindex( + n.buses.index, fill_value=0.0 + ) load = n.loads_t.p_set.mean().groupby(n.loads.bus).sum() b_i = x.index @@ -169,150 +172,275 @@ def weighting_for_country(n, x): l = normed(load.reindex(b_i, fill_value=0)) w = g + l - return (w * (100. / w.max())).clip(lower=1.).astype(int) + return (w * (100.0 / w.max())).clip(lower=1.0).astype(int) + + +def get_feature_for_hac(n, buses_i=None, feature=None): + if buses_i is None: + buses_i = n.buses.index + + if feature is None: + feature = "solar+onwind-time" + + carriers = feature.split("-")[0].split("+") + if "offwind" in carriers: + carriers.remove("offwind") + carriers = np.append( + carriers, network.generators.carrier.filter(like="offwind").unique() + ) + + if feature.split("-")[1] == "cap": + feature_data = pd.DataFrame(index=buses_i, columns=carriers) + for carrier in carriers: + gen_i = n.generators.query("carrier == @carrier").index + attach = ( + n.generators_t.p_max_pu[gen_i] + .mean() + .rename(index=n.generators.loc[gen_i].bus) + ) + feature_data[carrier] = attach + + if feature.split("-")[1] == "time": + feature_data = pd.DataFrame(columns=buses_i) + for carrier in carriers: + gen_i = n.generators.query("carrier == @carrier").index + attach = n.generators_t.p_max_pu[gen_i].rename( + columns=n.generators.loc[gen_i].bus + ) + feature_data = pd.concat([feature_data, attach], axis=0)[buses_i] + + feature_data = feature_data.T + # timestamp raises error in sklearn >= v1.2: + feature_data.columns = feature_data.columns.astype(str) + + feature_data = feature_data.fillna(0) + + return feature_data def distribute_clusters(n, n_clusters, focus_weights=None, solver_name="cbc"): - """Determine the number of clusters per country""" + """ + Determine the number of clusters per country. + """ + L = ( + n.loads_t.p_set.mean() + .groupby(n.loads.bus) + .sum() + .groupby([n.buses.country, n.buses.sub_network]) + .sum() + .pipe(normed) + ) - L = (n.loads_t.p_set.mean() - .groupby(n.loads.bus).sum() - .groupby([n.buses.country, n.buses.sub_network]).sum() - .pipe(normed)) + N = n.buses.groupby(["country", "sub_network"]).size() - N = n.buses.groupby(['country', 'sub_network']).size() - - assert n_clusters >= len(N) and n_clusters <= N.sum(), \ - f"Number of clusters must be {len(N)} <= n_clusters <= {N.sum()} for this selection of countries." + assert ( + n_clusters >= len(N) and n_clusters <= N.sum() + ), f"Number of clusters must be {len(N)} <= n_clusters <= {N.sum()} for this selection of countries." if focus_weights is not None: - total_focus = sum(list(focus_weights.values())) - assert total_focus <= 1.0, "The sum of focus weights must be less than or equal to 1." + assert ( + total_focus <= 1.0 + ), "The sum of focus weights must be less than or equal to 1." for country, weight in focus_weights.items(): L[country] = weight / len(L[country]) - remainder = [c not in focus_weights.keys() for c in L.index.get_level_values('country')] + remainder = [ + c not in focus_weights.keys() for c in L.index.get_level_values("country") + ] L[remainder] = L.loc[remainder].pipe(normed) * (1 - total_focus) - logger.warning('Using custom focus weights for determining number of clusters.') + logger.warning("Using custom focus weights for determining number of clusters.") - assert np.isclose(L.sum(), 1.0, rtol=1e-3), f"Country weights L must sum up to 1.0 when distributing clusters. Is {L.sum()}." + assert np.isclose( + L.sum(), 1.0, rtol=1e-3 + ), f"Country weights L must sum up to 1.0 when distributing clusters. Is {L.sum()}." m = po.ConcreteModel() + def n_bounds(model, *n_id): return (1, N[n_id]) + m.n = po.Var(list(L.index), bounds=n_bounds, domain=po.Integers) m.tot = po.Constraint(expr=(po.summation(m.n) == n_clusters)) - m.objective = po.Objective(expr=sum((m.n[i] - L.loc[i]*n_clusters)**2 for i in L.index), - sense=po.minimize) + m.objective = po.Objective( + expr=sum((m.n[i] - L.loc[i] * n_clusters) ** 2 for i in L.index), + sense=po.minimize, + ) opt = po.SolverFactory(solver_name) - if not opt.has_capability('quadratic_objective'): - logger.warning(f'The configured solver `{solver_name}` does not support quadratic objectives. Falling back to `ipopt`.') - opt = po.SolverFactory('ipopt') + if not opt.has_capability("quadratic_objective"): + logger.warning( + f"The configured solver `{solver_name}` does not support quadratic objectives. Falling back to `ipopt`." + ) + opt = po.SolverFactory("ipopt") results = opt.solve(m) - assert results['Solver'][0]['Status'] == 'ok', f"Solver returned non-optimally: {results}" + assert ( + results["Solver"][0]["Status"] == "ok" + ), f"Solver returned non-optimally: {results}" return pd.Series(m.n.get_values(), index=L.index).round().astype(int) -def busmap_for_n_clusters(n, n_clusters, solver_name, focus_weights=None, algorithm="kmeans", **algorithm_kwds): +def busmap_for_n_clusters( + n, + n_clusters, + solver_name, + focus_weights=None, + algorithm="kmeans", + feature=None, + **algorithm_kwds, +): if algorithm == "kmeans": - algorithm_kwds.setdefault('n_init', 1000) - algorithm_kwds.setdefault('max_iter', 30000) - algorithm_kwds.setdefault('tol', 1e-6) - algorithm_kwds.setdefault('random_state', 0) + algorithm_kwds.setdefault("n_init", 1000) + algorithm_kwds.setdefault("max_iter", 30000) + algorithm_kwds.setdefault("tol", 1e-6) + algorithm_kwds.setdefault("random_state", 0) + + def fix_country_assignment_for_hac(n): + from scipy.sparse import csgraph + + # overwrite country of nodes that are disconnected from their country-topology + for country in n.buses.country.unique(): + m = n[n.buses.country == country].copy() + + _, labels = csgraph.connected_components( + m.adjacency_matrix(), directed=False + ) + + component = pd.Series(labels, index=m.buses.index) + component_sizes = component.value_counts() + + if len(component_sizes) > 1: + disconnected_bus = component[ + component == component_sizes.index[-1] + ].index[0] + + neighbor_bus = n.lines.query( + "bus0 == @disconnected_bus or bus1 == @disconnected_bus" + ).iloc[0][["bus0", "bus1"]] + new_country = list( + set(n.buses.loc[neighbor_bus].country) - set([country]) + )[0] + + logger.info( + f"overwriting country `{country}` of bus `{disconnected_bus}` " + f"to new country `{new_country}`, because it is disconnected " + "from its initial inter-country transmission grid." + ) + n.buses.at[disconnected_bus, "country"] = new_country + return n + + if algorithm == "hac": + feature = get_feature_for_hac(n, buses_i=n.buses.index, feature=feature) + n = fix_country_assignment_for_hac(n) + + if (algorithm != "hac") and (feature is not None): + logger.warning( + f"Keyword argument feature is only valid for algorithm `hac`. " + f"Given feature `{feature}` will be ignored." + ) n.determine_network_topology() - n_clusters = distribute_clusters(n, n_clusters, focus_weights=focus_weights, solver_name=solver_name) - - def reduce_network(n, buses): - nr = pypsa.Network() - nr.import_components_from_dataframe(buses, "Bus") - nr.import_components_from_dataframe(n.lines.loc[n.lines.bus0.isin(buses.index) & n.lines.bus1.isin(buses.index)], "Line") - return nr + n_clusters = distribute_clusters( + n, n_clusters, focus_weights=focus_weights, solver_name=solver_name + ) def busmap_for_country(x): - prefix = x.name[0] + x.name[1] + ' ' + prefix = x.name[0] + x.name[1] + " " logger.debug(f"Determining busmap for country {prefix[:-1]}") if len(x) == 1: - return pd.Series(prefix + '0', index=x.index) + return pd.Series(prefix + "0", index=x.index) weight = weighting_for_country(n, x) if algorithm == "kmeans": - return prefix + busmap_by_kmeans(n, weight, n_clusters[x.name], buses_i=x.index, **algorithm_kwds) - elif algorithm == "spectral": - return prefix + busmap_by_spectral_clustering(reduce_network(n, x), n_clusters[x.name], **algorithm_kwds) - elif algorithm == "louvain": - return prefix + busmap_by_louvain(reduce_network(n, x), n_clusters[x.name], **algorithm_kwds) + return prefix + busmap_by_kmeans( + n, weight, n_clusters[x.name], buses_i=x.index, **algorithm_kwds + ) + elif algorithm == "hac": + return prefix + busmap_by_hac( + n, n_clusters[x.name], buses_i=x.index, feature=feature.loc[x.index] + ) + elif algorithm == "modularity": + return prefix + busmap_by_greedy_modularity( + n, n_clusters[x.name], buses_i=x.index + ) else: - raise ValueError(f"`algorithm` must be one of 'kmeans', 'spectral' or 'louvain'. Is {algorithm}.") + raise ValueError( + f"`algorithm` must be one of 'kmeans' or 'hac'. Is {algorithm}." + ) - return (n.buses.groupby(['country', 'sub_network'], group_keys=False) - .apply(busmap_for_country).squeeze().rename('busmap')) + return ( + n.buses.groupby(["country", "sub_network"], group_keys=False) + .apply(busmap_for_country) + .squeeze() + .rename("busmap") + ) -def clustering_for_n_clusters(n, n_clusters, custom_busmap=False, aggregate_carriers=None, - line_length_factor=1.25, potential_mode='simple', solver_name="cbc", - algorithm="kmeans", extended_link_costs=0, focus_weights=None): - - if potential_mode == 'simple': - p_nom_max_strategy = pd.Series.sum - elif potential_mode == 'conservative': - p_nom_max_strategy = pd.Series.min - else: - raise AttributeError(f"potential_mode should be one of 'simple' or 'conservative' but is '{potential_mode}'") +def clustering_for_n_clusters( + n, + n_clusters, + custom_busmap=False, + aggregate_carriers=None, + line_length_factor=1.25, + aggregation_strategies=dict(), + solver_name="cbc", + algorithm="hac", + feature=None, + extended_link_costs=0, + focus_weights=None, +): + bus_strategies, generator_strategies = get_aggregation_strategies( + aggregation_strategies + ) if not isinstance(custom_busmap, pd.Series): - busmap = busmap_for_n_clusters(n, n_clusters, solver_name, focus_weights, algorithm) + busmap = busmap_for_n_clusters( + n, n_clusters, solver_name, focus_weights, algorithm, feature + ) else: busmap = custom_busmap clustering = get_clustering_from_busmap( - n, busmap, - bus_strategies=dict(country=_make_consense("Bus", "country")), + n, + busmap, + bus_strategies=bus_strategies, aggregate_generators_weighted=True, aggregate_generators_carriers=aggregate_carriers, aggregate_one_ports=["Load", "StorageUnit"], line_length_factor=line_length_factor, - generator_strategies={'p_nom_max': p_nom_max_strategy, 'p_nom_min': pd.Series.sum}, - scale_link_capital_costs=False) + generator_strategies=generator_strategies, + scale_link_capital_costs=False, + ) if not n.links.empty: nc = clustering.network - nc.links['underwater_fraction'] = (n.links.eval('underwater_fraction * length') - .div(nc.links.length).dropna()) - nc.links['capital_cost'] = (nc.links['capital_cost'] - .add((nc.links.length - n.links.length) - .clip(lower=0).mul(extended_link_costs), - fill_value=0)) + nc.links["underwater_fraction"] = ( + n.links.eval("underwater_fraction * length").div(nc.links.length).dropna() + ) + nc.links["capital_cost"] = nc.links["capital_cost"].add( + (nc.links.length - n.links.length).clip(lower=0).mul(extended_link_costs), + fill_value=0, + ) return clustering -def save_to_geojson(s, fn): - if os.path.exists(fn): - os.unlink(fn) - df = s.reset_index() - schema = {**gpd.io.file.infer_schema(df), 'geometry': 'Unknown'} - df.to_file(fn, driver='GeoJSON', schema=schema) - - def cluster_regions(busmaps, input=None, output=None): - busmap = reduce(lambda x, y: x.map(y), busmaps[1:], busmaps[0]) - for which in ('regions_onshore', 'regions_offshore'): - regions = gpd.read_file(getattr(input, which)).set_index('name') - geom_c = regions.geometry.groupby(busmap).apply(shapely.ops.unary_union) - regions_c = gpd.GeoDataFrame(dict(geometry=geom_c)) - regions_c.index.name = 'name' - save_to_geojson(regions_c, getattr(output, which)) + for which in ("regions_onshore", "regions_offshore"): + regions = gpd.read_file(getattr(input, which)) + regions = regions.reindex(columns=["name", "geometry"]).set_index("name") + regions_c = regions.dissolve(busmap) + regions_c.index.name = "name" + regions_c = regions_c.reset_index() + regions_c.to_file(getattr(output, which)) def plot_busmap_for_n_clusters(n, n_clusters, fn=None): @@ -321,69 +449,113 @@ def plot_busmap_for_n_clusters(n, n_clusters, fn=None): cr = sns.color_palette("hls", len(cs)) n.plot(bus_colors=busmap.map(dict(zip(cs, cr)))) if fn is not None: - plt.savefig(fn, bbox_inches='tight') + plt.savefig(fn, bbox_inches="tight") del cs, cr if __name__ == "__main__": - if 'snakemake' not in globals(): + if "snakemake" not in globals(): from _helpers import mock_snakemake - snakemake = mock_snakemake('cluster_network', network='elec', simpl='', clusters='40') + + snakemake = mock_snakemake("cluster_network", simpl="", clusters="5") configure_logging(snakemake) n = pypsa.Network(snakemake.input.network) - focus_weights = snakemake.config.get('focus_weights', None) + focus_weights = snakemake.config.get("focus_weights", None) - renewable_carriers = pd.Index([tech - for tech in n.generators.carrier.unique() - if tech in snakemake.config['renewable']]) + renewable_carriers = pd.Index( + [ + tech + for tech in n.generators.carrier.unique() + if tech in snakemake.config["renewable"] + ] + ) - if snakemake.wildcards.clusters.endswith('m'): + exclude_carriers = snakemake.config["clustering"]["cluster_network"].get( + "exclude_carriers", [] + ) + aggregate_carriers = set(n.generators.carrier) - set(exclude_carriers) + if snakemake.wildcards.clusters.endswith("m"): n_clusters = int(snakemake.wildcards.clusters[:-1]) - aggregate_carriers = pd.Index(n.generators.carrier.unique()).difference(renewable_carriers) - elif snakemake.wildcards.clusters == 'all': + conventional = set( + snakemake.config["electricity"].get("conventional_carriers", []) + ) + aggregate_carriers = conventional.intersection(aggregate_carriers) + elif snakemake.wildcards.clusters == "all": n_clusters = len(n.buses) - aggregate_carriers = None # All else: n_clusters = int(snakemake.wildcards.clusters) - aggregate_carriers = None # All if n_clusters == len(n.buses): # Fast-path if no clustering is necessary busmap = n.buses.index.to_series() linemap = n.lines.index.to_series() - clustering = pypsa.networkclustering.Clustering(n, busmap, linemap, linemap, pd.Series(dtype='O')) + clustering = pypsa.networkclustering.Clustering( + n, busmap, linemap, linemap, pd.Series(dtype="O") + ) else: - line_length_factor = snakemake.config['lines']['length_factor'] - Nyears = n.snapshot_weightings.objective.sum()/8760 + line_length_factor = snakemake.config["lines"]["length_factor"] + Nyears = n.snapshot_weightings.objective.sum() / 8760 - hvac_overhead_cost = (load_costs(snakemake.input.tech_costs, snakemake.config['costs'], snakemake.config['electricity'], Nyears) - .at['HVAC overhead', 'capital_cost']) + hvac_overhead_cost = load_costs( + snakemake.input.tech_costs, + snakemake.config["costs"], + snakemake.config["electricity"], + Nyears, + ).at["HVAC overhead", "capital_cost"] def consense(x): v = x.iat[0] - assert ((x == v).all() or x.isnull().all()), ( - "The `potential` configuration option must agree for all renewable carriers, for now!" - ) + assert ( + x == v + ).all() or x.isnull().all(), "The `potential` configuration option must agree for all renewable carriers, for now!" return v - potential_mode = consense(pd.Series([snakemake.config['renewable'][tech]['potential'] - for tech in renewable_carriers])) + + aggregation_strategies = snakemake.config["clustering"].get( + "aggregation_strategies", {} + ) + # translate str entries of aggregation_strategies to pd.Series functions: + aggregation_strategies = { + p: {k: getattr(pd.Series, v) for k, v in aggregation_strategies[p].items()} + for p in aggregation_strategies.keys() + } + custom_busmap = snakemake.config["enable"].get("custom_busmap", False) if custom_busmap: - custom_busmap = pd.read_csv(snakemake.input.custom_busmap, index_col=0, squeeze=True) + custom_busmap = pd.read_csv( + snakemake.input.custom_busmap, index_col=0, squeeze=True + ) custom_busmap.index = custom_busmap.index.astype(str) logger.info(f"Imported custom busmap from {snakemake.input.custom_busmap}") - clustering = clustering_for_n_clusters(n, n_clusters, custom_busmap, aggregate_carriers, - line_length_factor, potential_mode, - snakemake.config['solving']['solver']['name'], - "kmeans", hvac_overhead_cost, focus_weights) + cluster_config = snakemake.config.get("clustering", {}).get( + "cluster_network", {} + ) + clustering = clustering_for_n_clusters( + n, + n_clusters, + custom_busmap, + aggregate_carriers, + line_length_factor, + aggregation_strategies, + snakemake.config["solving"]["solver"]["name"], + cluster_config.get("algorithm", "hac"), + cluster_config.get("feature", "solar+onwind-time"), + hvac_overhead_cost, + focus_weights, + ) - update_p_nom_max(n) - + update_p_nom_max(clustering.network) + + clustering.network.meta = dict( + snakemake.config, **dict(wildcards=dict(snakemake.wildcards)) + ) clustering.network.export_to_netcdf(snakemake.output.network) - for attr in ('busmap', 'linemap'): #also available: linemap_positive, linemap_negative + for attr in ( + "busmap", + "linemap", + ): # also available: linemap_positive, linemap_negative getattr(clustering, attr).to_csv(snakemake.output[attr]) cluster_regions((clustering.busmap,), snakemake.input, snakemake.output) diff --git a/scripts/copy_config.py b/scripts/copy_config.py new file mode 100644 index 00000000..79d2e32b --- /dev/null +++ b/scripts/copy_config.py @@ -0,0 +1,39 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2020-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Copy used configuration files and important scripts for archiving. +""" + +from pathlib import Path +from shutil import copy + +import yaml + +files = { + "config/config.yaml": "config.yaml", + "Snakefile": "Snakefile", + "scripts/solve_network.py": "solve_network.py", + "scripts/prepare_sector_network.py": "prepare_sector_network.py", +} + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake("copy_config") + + basepath = Path(f"results/{snakemake.params.RDIR}config/") + + for f, name in files.items(): + copy(f, basepath / name) + + with open(basepath / "config.snakemake.yaml", "w") as yaml_file: + yaml.dump( + snakemake.config, + yaml_file, + default_flow_style=False, + allow_unicode=True, + sort_keys=False, + ) diff --git a/scripts/make_summary.py b/scripts/make_summary.py index 854e9463..3d743942 100644 --- a/scripts/make_summary.py +++ b/scripts/make_summary.py @@ -1,457 +1,717 @@ -# SPDX-FileCopyrightText: : 2017-2020 The PyPSA-Eur Authors +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2020-2023 The PyPSA-Eur Authors # # SPDX-License-Identifier: MIT - """ -Creates summaries of aggregated energy and costs as ``.csv`` files. - -Relevant Settings ------------------ - -.. code:: yaml - - costs: - USD2013_to_EUR2013: - discountrate: - marginal_cost: - capital_cost: - - electricity: - max_hours: - -.. seealso:: - Documentation of the configuration file ``config.yaml`` at - :ref:`costs_cf`, :ref:`electricity_cf` - -Inputs ------- - -Outputs -------- - -Description ------------ - -The following rule can be used to summarize the results in seperate .csv files: - -.. code:: - - snakemake results/summaries/elec_s_all_lall_Co2L-3H_all - clusters - line volume or cost cap - - options - - all countries - -the line volume/cost cap field can be set to one of the following: -* ``lv1.25`` for a particular line volume extension by 25% -* ``lc1.25`` for a line cost extension by 25 % -* ``lall`` for all evalutated caps -* ``lvall`` for all line volume caps -* ``lcall`` for all line cost caps - -Replacing '/summaries/' with '/plots/' creates nice colored maps of the results. - +Create summary CSV files for all scenario runs including costs, capacities, +capacity factors, curtailment, energy balances, prices and other metrics. """ import logging -from _helpers import configure_logging - -import os -import pypsa -import pandas as pd - -from add_electricity import load_costs, update_transmission_costs - -idx = pd.IndexSlice logger = logging.getLogger(__name__) -opt_name = {"Store": "e", "Line" : "s", "Transformer" : "s"} +import sys +import numpy as np +import pandas as pd +import pypsa +from _helpers import override_component_attrs +from prepare_sector_network import prepare_costs -def _add_indexed_rows(df, raw_index): - new_index = df.index.union(pd.MultiIndex.from_product(raw_index)) - if isinstance(new_index, pd.Index): - new_index = pd.MultiIndex.from_tuples(new_index) +idx = pd.IndexSlice - return df.reindex(new_index) +opt_name = {"Store": "e", "Line": "s", "Transformer": "s"} def assign_carriers(n): - - if "carrier" not in n.loads: - n.loads["carrier"] = "electricity" - for carrier in ["transport","heat","urban heat"]: - n.loads.loc[n.loads.index.str.contains(carrier),"carrier"] = carrier - - n.storage_units['carrier'].replace({'hydro': 'hydro+PHS', 'PHS': 'hydro+PHS'}, inplace=True) - if "carrier" not in n.lines: n.lines["carrier"] = "AC" - n.lines["carrier"].replace({"AC": "lines"}, inplace=True) - if n.links.empty: n.links["carrier"] = pd.Series(dtype=str) - n.links["carrier"].replace({"DC": "lines"}, inplace=True) - - if "EU gas store" in n.stores.index and n.stores.loc["EU gas Store","carrier"] == "": - n.stores.loc["EU gas Store","carrier"] = "gas Store" +def assign_locations(n): + for c in n.iterate_components(n.one_port_components | n.branch_components): + ifind = pd.Series(c.df.index.str.find(" ", start=4), c.df.index) + for i in ifind.unique(): + names = ifind.index[ifind == i] + if i == -1: + c.df.loc[names, "location"] = "" + else: + c.df.loc[names, "location"] = names.str[:i] -def calculate_costs(n, label, costs): - - for c in n.iterate_components(n.branch_components|n.controllable_one_port_components^{"Load"}): - capital_costs = c.df.capital_cost*c.df[opt_name.get(c.name,"p") + "_nom_opt"] - capital_costs_grouped = capital_costs.groupby(c.df.carrier).sum() - - # Index tuple(s) indicating the newly to-be-added row(s) - raw_index = tuple([[c.list_name],["capital"],list(capital_costs_grouped.index)]) - costs = _add_indexed_rows(costs, raw_index) - - costs.loc[idx[raw_index],label] = capital_costs_grouped.values +def calculate_nodal_cfs(n, label, nodal_cfs): + # Beware this also has extraneous locations for country (e.g. biomass) or continent-wide (e.g. fossil gas/oil) stuff + for c in n.iterate_components( + (n.branch_components ^ {"Line", "Transformer"}) + | n.controllable_one_port_components ^ {"Load", "StorageUnit"} + ): + capacities_c = c.df.groupby(["location", "carrier"])[ + opt_name.get(c.name, "p") + "_nom_opt" + ].sum() if c.name == "Link": - p = c.pnl.p0.multiply(n.snapshot_weightings.generators,axis=0).sum() + p = c.pnl.p0.abs().mean() + elif c.name == "Generator": + p = c.pnl.p.abs().mean() + elif c.name == "Store": + p = c.pnl.e.abs().mean() + else: + sys.exit() + + c.df["p"] = p + p_c = c.df.groupby(["location", "carrier"])["p"].sum() + + cf_c = p_c / capacities_c + + index = pd.MultiIndex.from_tuples( + [(c.list_name,) + t for t in cf_c.index.to_list()] + ) + nodal_cfs = nodal_cfs.reindex(index.union(nodal_cfs.index)) + nodal_cfs.loc[index, label] = cf_c.values + + return nodal_cfs + + +def calculate_cfs(n, label, cfs): + for c in n.iterate_components( + n.branch_components + | n.controllable_one_port_components ^ {"Load", "StorageUnit"} + ): + capacities_c = ( + c.df[opt_name.get(c.name, "p") + "_nom_opt"].groupby(c.df.carrier).sum() + ) + + if c.name in ["Link", "Line", "Transformer"]: + p = c.pnl.p0.abs().mean() + elif c.name == "Store": + p = c.pnl.e.abs().mean() + else: + p = c.pnl.p.abs().mean() + + p_c = p.groupby(c.df.carrier).sum() + + cf_c = p_c / capacities_c + + cf_c = pd.concat([cf_c], keys=[c.list_name]) + + cfs = cfs.reindex(cf_c.index.union(cfs.index)) + + cfs.loc[cf_c.index, label] = cf_c + + return cfs + + +def calculate_nodal_costs(n, label, nodal_costs): + # Beware this also has extraneous locations for country (e.g. biomass) or continent-wide (e.g. fossil gas/oil) stuff + for c in n.iterate_components( + n.branch_components | n.controllable_one_port_components ^ {"Load"} + ): + c.df["capital_costs"] = ( + c.df.capital_cost * c.df[opt_name.get(c.name, "p") + "_nom_opt"] + ) + capital_costs = c.df.groupby(["location", "carrier"])["capital_costs"].sum() + index = pd.MultiIndex.from_tuples( + [(c.list_name, "capital") + t for t in capital_costs.index.to_list()] + ) + nodal_costs = nodal_costs.reindex(index.union(nodal_costs.index)) + nodal_costs.loc[index, label] = capital_costs.values + + if c.name == "Link": + p = c.pnl.p0.multiply(n.snapshot_weightings.generators, axis=0).sum() elif c.name == "Line": continue elif c.name == "StorageUnit": - p_all = c.pnl.p.multiply(n.snapshot_weightings.generators,axis=0) - p_all[p_all < 0.] = 0. + p_all = c.pnl.p.multiply(n.snapshot_weightings.generators, axis=0) + p_all[p_all < 0.0] = 0.0 p = p_all.sum() else: - p = c.pnl.p.multiply(n.snapshot_weightings.generators,axis=0).sum() + p = c.pnl.p.multiply(n.snapshot_weightings.generators, axis=0).sum() - marginal_costs = p*c.df.marginal_cost + # correct sequestration cost + if c.name == "Store": + items = c.df.index[ + (c.df.carrier == "co2 stored") & (c.df.marginal_cost <= -100.0) + ] + c.df.loc[items, "marginal_cost"] = -20.0 + + c.df["marginal_costs"] = p * c.df.marginal_cost + marginal_costs = c.df.groupby(["location", "carrier"])["marginal_costs"].sum() + index = pd.MultiIndex.from_tuples( + [(c.list_name, "marginal") + t for t in marginal_costs.index.to_list()] + ) + nodal_costs = nodal_costs.reindex(index.union(nodal_costs.index)) + nodal_costs.loc[index, label] = marginal_costs.values + + return nodal_costs + + +def calculate_costs(n, label, costs): + for c in n.iterate_components( + n.branch_components | n.controllable_one_port_components ^ {"Load"} + ): + capital_costs = c.df.capital_cost * c.df[opt_name.get(c.name, "p") + "_nom_opt"] + capital_costs_grouped = capital_costs.groupby(c.df.carrier).sum() + + capital_costs_grouped = pd.concat([capital_costs_grouped], keys=["capital"]) + capital_costs_grouped = pd.concat([capital_costs_grouped], keys=[c.list_name]) + + costs = costs.reindex(capital_costs_grouped.index.union(costs.index)) + + costs.loc[capital_costs_grouped.index, label] = capital_costs_grouped + + if c.name == "Link": + p = c.pnl.p0.multiply(n.snapshot_weightings.generators, axis=0).sum() + elif c.name == "Line": + continue + elif c.name == "StorageUnit": + p_all = c.pnl.p.multiply(n.snapshot_weightings.generators, axis=0) + p_all[p_all < 0.0] = 0.0 + p = p_all.sum() + else: + p = c.pnl.p.multiply(n.snapshot_weightings.generators, axis=0).sum() + + # correct sequestration cost + if c.name == "Store": + items = c.df.index[ + (c.df.carrier == "co2 stored") & (c.df.marginal_cost <= -100.0) + ] + c.df.loc[items, "marginal_cost"] = -20.0 + + marginal_costs = p * c.df.marginal_cost marginal_costs_grouped = marginal_costs.groupby(c.df.carrier).sum() - costs = costs.reindex(costs.index.union(pd.MultiIndex.from_product([[c.list_name],["marginal"],marginal_costs_grouped.index]))) + marginal_costs_grouped = pd.concat([marginal_costs_grouped], keys=["marginal"]) + marginal_costs_grouped = pd.concat([marginal_costs_grouped], keys=[c.list_name]) - costs.loc[idx[c.list_name,"marginal",list(marginal_costs_grouped.index)],label] = marginal_costs_grouped.values + costs = costs.reindex(marginal_costs_grouped.index.union(costs.index)) + + costs.loc[marginal_costs_grouped.index, label] = marginal_costs_grouped + + # 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() + # costs.loc[("generators", "capital", "ror"),label] = (0.02)*3e6*n.generators.loc[n.generators.group=="ror", "p_nom"].sum() return costs -def calculate_curtailment(n, label, curtailment): - avail = n.generators_t.p_max_pu.multiply(n.generators.p_nom_opt).sum().groupby(n.generators.carrier).sum() +def calculate_cumulative_cost(): + planning_horizons = snakemake.config["scenario"]["planning_horizons"] + + cumulative_cost = pd.DataFrame( + index=df["costs"].sum().index, + columns=pd.Series(data=np.arange(0, 0.1, 0.01), name="social discount rate"), + ) + + # discount cost and express them in money value of planning_horizons[0] + for r in cumulative_cost.columns: + cumulative_cost[r] = [ + df["costs"].sum()[index] / ((1 + r) ** (index[-1] - planning_horizons[0])) + for index in cumulative_cost.index + ] + + # integrate cost throughout the transition path + for r in cumulative_cost.columns: + for cluster in cumulative_cost.index.get_level_values(level=0).unique(): + for ll in cumulative_cost.index.get_level_values(level=1).unique(): + for sector_opts in cumulative_cost.index.get_level_values( + level=2 + ).unique(): + cumulative_cost.loc[ + (cluster, ll, sector_opts, "cumulative cost"), r + ] = np.trapz( + cumulative_cost.loc[ + idx[cluster, ll, sector_opts, planning_horizons], r + ].values, + x=planning_horizons, + ) + + return cumulative_cost + + +def calculate_nodal_capacities(n, label, nodal_capacities): + # Beware this also has extraneous locations for country (e.g. biomass) or continent-wide (e.g. fossil gas/oil) stuff + for c in n.iterate_components( + n.branch_components | n.controllable_one_port_components ^ {"Load"} + ): + nodal_capacities_c = c.df.groupby(["location", "carrier"])[ + opt_name.get(c.name, "p") + "_nom_opt" + ].sum() + index = pd.MultiIndex.from_tuples( + [(c.list_name,) + t for t in nodal_capacities_c.index.to_list()] + ) + nodal_capacities = nodal_capacities.reindex(index.union(nodal_capacities.index)) + nodal_capacities.loc[index, label] = nodal_capacities_c.values + + return nodal_capacities + + +def calculate_capacities(n, label, capacities): + for c in n.iterate_components( + n.branch_components | n.controllable_one_port_components ^ {"Load"} + ): + capacities_grouped = ( + c.df[opt_name.get(c.name, "p") + "_nom_opt"].groupby(c.df.carrier).sum() + ) + capacities_grouped = pd.concat([capacities_grouped], keys=[c.list_name]) + + capacities = capacities.reindex( + capacities_grouped.index.union(capacities.index) + ) + + capacities.loc[capacities_grouped.index, label] = capacities_grouped + + return capacities + + +def calculate_curtailment(n, label, curtailment): + avail = ( + n.generators_t.p_max_pu.multiply(n.generators.p_nom_opt) + .sum() + .groupby(n.generators.carrier) + .sum() + ) used = n.generators_t.p.sum().groupby(n.generators.carrier).sum() - curtailment[label] = (((avail - used)/avail)*100).round(3) + curtailment[label] = (((avail - used) / avail) * 100).round(3) return curtailment + def calculate_energy(n, label, energy): - - for c in n.iterate_components(n.one_port_components|n.branch_components): - - if c.name in {'Generator', 'Load', 'ShuntImpedance'}: - c_energies = c.pnl.p.multiply(n.snapshot_weightings.generators,axis=0).sum().multiply(c.df.sign).groupby(c.df.carrier).sum() - elif c.name in {'StorageUnit', 'Store'}: - c_energies = c.pnl.p.multiply(n.snapshot_weightings.stores,axis=0).sum().multiply(c.df.sign).groupby(c.df.carrier).sum() + for c in n.iterate_components(n.one_port_components | n.branch_components): + if c.name in n.one_port_components: + c_energies = ( + c.pnl.p.multiply(n.snapshot_weightings.generators, axis=0) + .sum() + .multiply(c.df.sign) + .groupby(c.df.carrier) + .sum() + ) else: - c_energies = (-c.pnl.p1.multiply(n.snapshot_weightings.generators,axis=0).sum() - c.pnl.p0.multiply(n.snapshot_weightings.generators,axis=0).sum()).groupby(c.df.carrier).sum() + c_energies = pd.Series(0.0, c.df.carrier.unique()) + for port in [col[3:] for col in c.df.columns if col[:3] == "bus"]: + totals = ( + c.pnl["p" + port] + .multiply(n.snapshot_weightings.generators, axis=0) + .sum() + ) + # remove values where bus is missing (bug in nomopyomo) + no_bus = c.df.index[c.df["bus" + port] == ""] + totals.loc[no_bus] = n.component_attrs[c.name].loc[ + "p" + port, "default" + ] + c_energies -= totals.groupby(c.df.carrier).sum() - energy = include_in_summary(energy, [c.list_name], label, c_energies) + c_energies = pd.concat([c_energies], keys=[c.list_name]) + + energy = energy.reindex(c_energies.index.union(energy.index)) + + energy.loc[c_energies.index, label] = c_energies return energy -def include_in_summary(summary, multiindexprefix, label, item): - - # Index tuple(s) indicating the newly to-be-added row(s) - raw_index = tuple([multiindexprefix,list(item.index)]) - summary = _add_indexed_rows(summary, raw_index) - - summary.loc[idx[raw_index], label] = item.values - - return summary - -def calculate_capacity(n,label,capacity): - - for c in n.iterate_components(n.one_port_components): - if 'p_nom_opt' in c.df.columns: - c_capacities = abs(c.df.p_nom_opt.multiply(c.df.sign)).groupby(c.df.carrier).sum() - capacity = include_in_summary(capacity, [c.list_name], label, c_capacities) - - for c in n.iterate_components(n.passive_branch_components): - c_capacities = c.df['s_nom_opt'].groupby(c.df.carrier).sum() - capacity = include_in_summary(capacity, [c.list_name], label, c_capacities) - - for c in n.iterate_components(n.controllable_branch_components): - c_capacities = c.df.p_nom_opt.groupby(c.df.carrier).sum() - capacity = include_in_summary(capacity, [c.list_name], label, c_capacities) - - return capacity def calculate_supply(n, label, supply): - """calculate the max dispatch of each component at the buses where the loads are attached""" + """ + Calculate the max dispatch of each component at the buses aggregated by + carrier. + """ + bus_carriers = n.buses.carrier.unique() - load_types = n.loads.carrier.value_counts().index - - for i in load_types: - - buses = n.loads.bus[n.loads.carrier == i].values - - bus_map = pd.Series(False,index=n.buses.index) - - bus_map.loc[buses] = True + for i in bus_carriers: + bus_map = n.buses.carrier == i + bus_map.at[""] = False for c in n.iterate_components(n.one_port_components): + items = c.df.index[c.df.bus.map(bus_map).fillna(False)] - items = c.df.index[c.df.bus.map(bus_map)] - - if len(items) == 0 or c.pnl.p.empty: + if len(items) == 0: continue - s = c.pnl.p[items].max().multiply(c.df.loc[items,'sign']).groupby(c.df.loc[items,'carrier']).sum() - - # Index tuple(s) indicating the newly to-be-added row(s) - raw_index = tuple([[i],[c.list_name],list(s.index)]) - supply = _add_indexed_rows(supply, raw_index) - - supply.loc[idx[raw_index],label] = s.values + s = ( + c.pnl.p[items] + .max() + .multiply(c.df.loc[items, "sign"]) + .groupby(c.df.loc[items, "carrier"]) + .sum() + ) + s = pd.concat([s], keys=[c.list_name]) + s = pd.concat([s], keys=[i]) + supply = supply.reindex(s.index.union(supply.index)) + supply.loc[s.index, label] = s for c in n.iterate_components(n.branch_components): + for end in [col[3:] for col in c.df.columns if col[:3] == "bus"]: + items = c.df.index[c.df["bus" + end].map(bus_map).fillna(False)] - for end in ["0","1"]: - - items = c.df.index[c.df["bus" + end].map(bus_map)] - - if len(items) == 0 or c.pnl["p"+end].empty: + if len(items) == 0: continue - #lots of sign compensation for direction and to do maximums - s = (-1)**(1-int(end))*((-1)**int(end)*c.pnl["p"+end][items]).max().groupby(c.df.loc[items,'carrier']).sum() + # lots of sign compensation for direction and to do maximums + s = (-1) ** (1 - int(end)) * ( + (-1) ** int(end) * c.pnl["p" + end][items] + ).max().groupby(c.df.loc[items, "carrier"]).sum() + s.index = s.index + end + s = pd.concat([s], keys=[c.list_name]) + s = pd.concat([s], keys=[i]) - supply = supply.reindex(supply.index.union(pd.MultiIndex.from_product([[i],[c.list_name],s.index]))) - supply.loc[idx[i,c.list_name,list(s.index)],label] = s.values + supply = supply.reindex(s.index.union(supply.index)) + supply.loc[s.index, label] = s return supply def calculate_supply_energy(n, label, supply_energy): - """calculate the total dispatch of each component at the buses where the loads are attached""" + """ + Calculate the total energy supply/consuption of each component at the buses + aggregated by carrier. + """ + bus_carriers = n.buses.carrier.unique() - load_types = n.loads.carrier.value_counts().index - - for i in load_types: - - buses = n.loads.bus[n.loads.carrier == i].values - - bus_map = pd.Series(False,index=n.buses.index) - - bus_map.loc[buses] = True + for i in bus_carriers: + bus_map = n.buses.carrier == i + bus_map.at[""] = False for c in n.iterate_components(n.one_port_components): + items = c.df.index[c.df.bus.map(bus_map).fillna(False)] - items = c.df.index[c.df.bus.map(bus_map)] - - if len(items) == 0 or c.pnl.p.empty: + if len(items) == 0: continue - s = c.pnl.p[items].sum().multiply(c.df.loc[items,'sign']).groupby(c.df.loc[items,'carrier']).sum() - - # Index tuple(s) indicating the newly to-be-added row(s) - raw_index = tuple([[i],[c.list_name],list(s.index)]) - supply_energy = _add_indexed_rows(supply_energy, raw_index) - - supply_energy.loc[idx[raw_index],label] = s.values + s = ( + c.pnl.p[items] + .multiply(n.snapshot_weightings.generators, axis=0) + .sum() + .multiply(c.df.loc[items, "sign"]) + .groupby(c.df.loc[items, "carrier"]) + .sum() + ) + s = pd.concat([s], keys=[c.list_name]) + s = pd.concat([s], keys=[i]) + supply_energy = supply_energy.reindex(s.index.union(supply_energy.index)) + supply_energy.loc[s.index, label] = s for c in n.iterate_components(n.branch_components): + for end in [col[3:] for col in c.df.columns if col[:3] == "bus"]: + items = c.df.index[c.df["bus" + str(end)].map(bus_map).fillna(False)] - for end in ["0","1"]: - - items = c.df.index[c.df["bus" + end].map(bus_map)] - - if len(items) == 0 or c.pnl['p' + end].empty: + if len(items) == 0: continue - s = (-1)*c.pnl["p"+end][items].sum().groupby(c.df.loc[items,'carrier']).sum() + s = (-1) * c.pnl["p" + end][items].multiply( + n.snapshot_weightings.generators, axis=0 + ).sum().groupby(c.df.loc[items, "carrier"]).sum() + s.index = s.index + end + s = pd.concat([s], keys=[c.list_name]) + s = pd.concat([s], keys=[i]) - supply_energy = supply_energy.reindex(supply_energy.index.union(pd.MultiIndex.from_product([[i],[c.list_name],s.index]))) - supply_energy.loc[idx[i,c.list_name,list(s.index)],label] = s.values + supply_energy = supply_energy.reindex( + s.index.union(supply_energy.index) + ) + + supply_energy.loc[s.index, label] = s return supply_energy -def calculate_metrics(n,label,metrics): +def calculate_metrics(n, label, metrics): + metrics_list = [ + "line_volume", + "line_volume_limit", + "line_volume_AC", + "line_volume_DC", + "line_volume_shadow", + "co2_shadow", + ] - metrics = metrics.reindex(metrics.index.union(pd.Index(["line_volume","line_volume_limit","line_volume_AC","line_volume_DC","line_volume_shadow","co2_shadow"]))) + metrics = metrics.reindex(pd.Index(metrics_list).union(metrics.index)) - metrics.at["line_volume_DC",label] = (n.links.length*n.links.p_nom_opt)[n.links.carrier == "DC"].sum() - metrics.at["line_volume_AC",label] = (n.lines.length*n.lines.s_nom_opt).sum() - metrics.at["line_volume",label] = metrics.loc[["line_volume_AC","line_volume_DC"],label].sum() + metrics.at["line_volume_DC", label] = (n.links.length * n.links.p_nom_opt)[ + n.links.carrier == "DC" + ].sum() + metrics.at["line_volume_AC", label] = (n.lines.length * n.lines.s_nom_opt).sum() + metrics.at["line_volume", label] = metrics.loc[ + ["line_volume_AC", "line_volume_DC"], label + ].sum() - if hasattr(n,"line_volume_limit"): - metrics.at["line_volume_limit",label] = n.line_volume_limit - - if hasattr(n,"line_volume_limit_dual"): - metrics.at["line_volume_shadow",label] = n.line_volume_limit_dual + if "lv_limit" in n.global_constraints.index: + metrics.at["line_volume_limit", label] = n.global_constraints.at[ + "lv_limit", "constant" + ] + metrics.at["line_volume_shadow", label] = n.global_constraints.at[ + "lv_limit", "mu" + ] if "CO2Limit" in n.global_constraints.index: - metrics.at["co2_shadow",label] = n.global_constraints.at["CO2Limit","mu"] + metrics.at["co2_shadow", label] = n.global_constraints.at["CO2Limit", "mu"] return metrics -def calculate_prices(n,label,prices): +def calculate_prices(n, label, prices): + prices = prices.reindex(prices.index.union(n.buses.carrier.unique())) - bus_type = pd.Series(n.buses.index.str[3:],n.buses.index).replace("","electricity") - - prices = prices.reindex(prices.index.union(bus_type.value_counts().index)) - - logger.warning("Prices are time-averaged, not load-weighted") - prices[label] = n.buses_t.marginal_price.mean().groupby(bus_type).mean() + # WARNING: this is time-averaged, see weighted_prices for load-weighted average + prices[label] = n.buses_t.marginal_price.mean().groupby(n.buses.carrier).mean() return prices -def calculate_weighted_prices(n,label,weighted_prices): +def calculate_weighted_prices(n, label, weighted_prices): + # Warning: doesn't include storage units as loads - logger.warning("Weighted prices don't include storage units as loads") + weighted_prices = weighted_prices.reindex( + pd.Index( + [ + "electricity", + "heat", + "space heat", + "urban heat", + "space urban heat", + "gas", + "H2", + ] + ) + ) - weighted_prices = weighted_prices.reindex(pd.Index(["electricity","heat","space heat","urban heat","space urban heat","gas","H2"])) - - link_loads = {"electricity" : ["heat pump", "resistive heater", "battery charger", "H2 Electrolysis"], - "heat" : ["water tanks charger"], - "urban heat" : ["water tanks charger"], - "space heat" : [], - "space urban heat" : [], - "gas" : ["OCGT","gas boiler","CHP electric","CHP heat"], - "H2" : ["Sabatier", "H2 Fuel Cell"]} + link_loads = { + "electricity": [ + "heat pump", + "resistive heater", + "battery charger", + "H2 Electrolysis", + ], + "heat": ["water tanks charger"], + "urban heat": ["water tanks charger"], + "space heat": [], + "space urban heat": [], + "gas": ["OCGT", "gas boiler", "CHP electric", "CHP heat"], + "H2": ["Sabatier", "H2 Fuel Cell"], + } for carrier in link_loads: - if carrier == "electricity": suffix = "" elif carrier[:5] == "space": suffix = carrier[5:] else: - suffix = " " + carrier + suffix = " " + carrier buses = n.buses.index[n.buses.index.str[2:] == suffix] if buses.empty: continue - if carrier in ["H2","gas"]: - load = pd.DataFrame(index=n.snapshots,columns=buses,data=0.) + if carrier in ["H2", "gas"]: + load = pd.DataFrame(index=n.snapshots, columns=buses, data=0.0) elif carrier[:5] == "space": - load = heat_demand_df[buses.str[:2]].rename(columns=lambda i: str(i)+suffix) + load = heat_demand_df[buses.str[:2]].rename( + columns=lambda i: str(i) + suffix + ) else: load = n.loads_t.p_set[buses] - for tech in link_loads[carrier]: - - names = n.links.index[n.links.index.to_series().str[-len(tech):] == tech] + names = n.links.index[n.links.index.to_series().str[-len(tech) :] == tech] if names.empty: continue - load += n.links_t.p0[names].groupby(n.links.loc[names,"bus0"],axis=1).sum(axis=1) + load += ( + n.links_t.p0[names].groupby(n.links.loc[names, "bus0"], axis=1).sum() + ) # Add H2 Store when charging - if carrier == "H2": - stores = n.stores_t.p[buses+ " Store"].groupby(n.stores.loc[buses+ " Store","bus"],axis=1).sum(axis=1) - stores[stores > 0.] = 0. - load += -stores + # if carrier == "H2": + # stores = n.stores_t.p[buses+ " Store"].groupby(n.stores.loc[buses+ " Store", "bus"],axis=1).sum(axis=1) + # stores[stores > 0.] = 0. + # load += -stores - weighted_prices.loc[carrier,label] = (load*n.buses_t.marginal_price[buses]).sum().sum()/load.sum().sum() + weighted_prices.loc[carrier, label] = ( + load * n.buses_t.marginal_price[buses] + ).sum().sum() / load.sum().sum() + # still have no idea what this is for, only for debug reasons. if carrier[:5] == "space": - print(load*n.buses_t.marginal_price[buses]) + logger.debug(load * n.buses_t.marginal_price[buses]) return weighted_prices -outputs = ["costs", - "curtailment", - "energy", - "capacity", - "supply", - "supply_energy", - "prices", - "weighted_prices", - "metrics", - ] +def calculate_market_values(n, label, market_values): + # Warning: doesn't include storage units + + carrier = "AC" + + buses = n.buses.index[n.buses.carrier == carrier] + + ## First do market value of generators ## + + generators = n.generators.index[n.buses.loc[n.generators.bus, "carrier"] == carrier] + + techs = n.generators.loc[generators, "carrier"].value_counts().index + + market_values = market_values.reindex(market_values.index.union(techs)) + + for tech in techs: + gens = generators[n.generators.loc[generators, "carrier"] == tech] + + dispatch = ( + n.generators_t.p[gens] + .groupby(n.generators.loc[gens, "bus"], axis=1) + .sum() + .reindex(columns=buses, fill_value=0.0) + ) + + revenue = dispatch * n.buses_t.marginal_price[buses] + + market_values.at[tech, label] = revenue.sum().sum() / dispatch.sum().sum() + + ## Now do market value of links ## + + for i in ["0", "1"]: + all_links = n.links.index[n.buses.loc[n.links["bus" + i], "carrier"] == carrier] + + techs = n.links.loc[all_links, "carrier"].value_counts().index + + market_values = market_values.reindex(market_values.index.union(techs)) + + for tech in techs: + links = all_links[n.links.loc[all_links, "carrier"] == tech] + + dispatch = ( + n.links_t["p" + i][links] + .groupby(n.links.loc[links, "bus" + i], axis=1) + .sum() + .reindex(columns=buses, fill_value=0.0) + ) + + revenue = dispatch * n.buses_t.marginal_price[buses] + + market_values.at[tech, label] = revenue.sum().sum() / dispatch.sum().sum() + + return market_values -def make_summaries(networks_dict, paths, config, country='all'): +def calculate_price_statistics(n, label, price_statistics): + price_statistics = price_statistics.reindex( + price_statistics.index.union( + pd.Index(["zero_hours", "mean", "standard_deviation"]) + ) + ) - columns = pd.MultiIndex.from_tuples(networks_dict.keys(),names=["simpl","clusters","ll","opts"]) + buses = n.buses.index[n.buses.carrier == "AC"] - dfs = {} + threshold = 0.1 # higher than phoney marginal_cost of wind/solar + + df = pd.DataFrame(data=0.0, columns=buses, index=n.snapshots) + + df[n.buses_t.marginal_price[buses] < threshold] = 1.0 + + price_statistics.at["zero_hours", label] = df.sum().sum() / ( + df.shape[0] * df.shape[1] + ) + + price_statistics.at["mean", label] = ( + n.buses_t.marginal_price[buses].unstack().mean() + ) + + price_statistics.at["standard_deviation", label] = ( + n.buses_t.marginal_price[buses].unstack().std() + ) + + return price_statistics + + +def make_summaries(networks_dict): + outputs = [ + "nodal_costs", + "nodal_capacities", + "nodal_cfs", + "cfs", + "costs", + "capacities", + "curtailment", + "energy", + "supply", + "supply_energy", + "prices", + "weighted_prices", + "price_statistics", + "market_values", + "metrics", + ] + + columns = pd.MultiIndex.from_tuples( + networks_dict.keys(), names=["cluster", "ll", "opt", "planning_horizon"] + ) + + df = {} for output in outputs: - dfs[output] = pd.DataFrame(columns=columns,dtype=float) + df[output] = pd.DataFrame(columns=columns, dtype=float) for label, filename in networks_dict.items(): - print(label, filename) - if not os.path.exists(filename): - print("does not exist!!") - continue + logger.info(f"Make summary for scenario {label}, using {filename}") - try: - n = pypsa.Network(filename) - except OSError: - logger.warning("Skipping {filename}".format(filename=filename)) - continue - - if country != 'all': - n = n[n.buses.country == country] - - Nyears = n.snapshot_weightings.objective.sum() / 8760. - costs = load_costs(paths[0], config['costs'], config['electricity'], Nyears) - update_transmission_costs(n, costs, simple_hvdc_costs=False) + overrides = override_component_attrs(snakemake.input.overrides) + n = pypsa.Network(filename, override_component_attrs=overrides) assign_carriers(n) + assign_locations(n) for output in outputs: - dfs[output] = globals()["calculate_" + output](n, label, dfs[output]) + df[output] = globals()["calculate_" + output](n, label, df[output]) - return dfs + return df -def to_csv(dfs, dir): - os.makedirs(dir, exist_ok=True) - for key, df in dfs.items(): - df.to_csv(os.path.join(dir, f"{key}.csv")) +def to_csv(df): + for key in df: + df[key].to_csv(snakemake.output[key]) if __name__ == "__main__": - if 'snakemake' not in globals(): + if "snakemake" not in globals(): from _helpers import mock_snakemake - snakemake = mock_snakemake('make_summary', network='elec', simpl='', - clusters='5', ll='copt', opts='Co2L-24H', country='all') - network_dir = os.path.join('..', 'results', 'networks') - else: - network_dir = os.path.join('results', 'networks') - configure_logging(snakemake) - config = snakemake.config - wildcards = snakemake.wildcards + snakemake = mock_snakemake("make_summary") - def expand_from_wildcard(key, config): - w = getattr(wildcards, key) - return config["scenario"][key] if w == "all" else [w] + logging.basicConfig(level=snakemake.config["logging"]["level"]) - if wildcards.ll.endswith("all"): - ll = config["scenario"]["ll"] - if len(wildcards.ll) == 4: - ll = [l for l in ll if l[0] == wildcards.ll[0]] - else: - ll = [wildcards.ll] + networks_dict = { + (cluster, ll, opt + sector_opt, planning_horizon): "results/" + + snakemake.params.RDIR + + f"/postnetworks/elec_s{simpl}_{cluster}_l{ll}_{opt}_{sector_opt}_{planning_horizon}.nc" + 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 ll in snakemake.config["scenario"]["ll"] + for planning_horizon in snakemake.config["scenario"]["planning_horizons"] + } - networks_dict = {(simpl,clusters,l,opts) : - os.path.join(network_dir, f'elec_s{simpl}_' - f'{clusters}_ec_l{l}_{opts}.nc') - for simpl in expand_from_wildcard("simpl", config) - for clusters in expand_from_wildcard("clusters", config) - for l in ll - for opts in expand_from_wildcard("opts", config)} + Nyears = len(pd.date_range(freq="h", **snakemake.config["snapshots"])) / 8760 - dfs = make_summaries(networks_dict, snakemake.input, config, country=wildcards.country) + costs_db = prepare_costs( + snakemake.input.costs, + snakemake.config["costs"], + Nyears, + ) - to_csv(dfs, snakemake.output[0]) + df = make_summaries(networks_dict) + + df["metrics"].loc["total costs"] = df["costs"].sum() + + to_csv(df) + + if snakemake.config["foresight"] == "myopic": + cumulative_cost = calculate_cumulative_cost() + cumulative_cost.to_csv( + "results/" + snakemake.params.RDIR + "/csvs/cumulative_cost.csv" + ) diff --git a/scripts/plot_network.py b/scripts/plot_network.py old mode 100755 new mode 100644 index 645c8c39..0a22b2e5 --- a/scripts/plot_network.py +++ b/scripts/plot_network.py @@ -1,290 +1,957 @@ -# SPDX-FileCopyrightText: : 2017-2020 The PyPSA-Eur Authors +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2020-2023 The PyPSA-Eur Authors # # SPDX-License-Identifier: MIT - """ -Plots map with pie charts and cost box bar charts. - -Relevant Settings ------------------ - -Inputs ------- - -Outputs -------- - -Description ------------ +Creates plots for optimised network topologies, including electricity, gas and +hydrogen networks, and regional generation, storage and conversion capacities +built. +This rule plots a map of the network with technology capacities at the +nodes. """ import logging -from _helpers import (retrieve_snakemake_keys, load_network_for_plots, - aggregate_p, aggregate_costs, configure_logging) - -import pandas as pd -import numpy as np - -import cartopy.crs as ccrs -import matplotlib.pyplot as plt -import matplotlib as mpl -from matplotlib.patches import Circle, Ellipse -from matplotlib.legend_handler import HandlerPatch -to_rgba = mpl.colors.colorConverter.to_rgba logger = logging.getLogger(__name__) +import cartopy.crs as ccrs +import geopandas as gpd +import matplotlib.pyplot as plt +import pandas as pd +import pypsa +from _helpers import override_component_attrs +from make_summary import assign_carriers +from plot_summary import preferred_order, rename_techs +from pypsa.plot import add_legend_circles, add_legend_lines, add_legend_patches -def make_handler_map_to_scale_circles_as_in(ax, dont_resize_actively=False): - fig = ax.get_figure() - def axes2pt(): - return np.diff(ax.transData.transform([(0,0), (1,1)]), axis=0)[0] * (72./fig.dpi) - - ellipses = [] - if not dont_resize_actively: - def update_width_height(event): - dist = axes2pt() - for e, radius in ellipses: e.width, e.height = 2. * radius * dist - fig.canvas.mpl_connect('resize_event', update_width_height) - ax.callbacks.connect('xlim_changed', update_width_height) - ax.callbacks.connect('ylim_changed', update_width_height) - - def legend_circle_handler(legend, orig_handle, xdescent, ydescent, - width, height, fontsize): - w, h = 2. * orig_handle.get_radius() * axes2pt() - e = Ellipse(xy=(0.5*width-0.5*xdescent, 0.5*height-0.5*ydescent), width=w, height=w) - ellipses.append((e, orig_handle.get_radius())) - return e - return {Circle: HandlerPatch(patch_func=legend_circle_handler)} +plt.style.use(["ggplot", "matplotlibrc"]) -def make_legend_circles_for(sizes, scale=1.0, **kw): - return [Circle((0,0), radius=(s/scale)**0.5, **kw) for s in sizes] - - -def set_plot_style(): - plt.style.use(['classic', 'seaborn-white', - {'axes.grid': False, 'grid.linestyle': '--', 'grid.color': u'0.6', - 'hatch.color': 'white', - 'patch.linewidth': 0.5, - 'font.size': 12, - 'legend.fontsize': 'medium', - 'lines.linewidth': 1.5, - 'pdf.fonttype': 42, - }]) - - -def plot_map(n, ax=None, attribute='p_nom', opts={}): - if ax is None: - ax = plt.gca() - - ## DATA - line_colors = {'cur': "purple", - 'exp': mpl.colors.rgb2hex(to_rgba("red", 0.7), True)} - tech_colors = opts['tech_colors'] - - if attribute == 'p_nom': - # bus_sizes = n.generators_t.p.sum().loc[n.generators.carrier == "load"].groupby(n.generators.bus).sum() - bus_sizes = pd.concat((n.generators.query('carrier != "load"').groupby(['bus', 'carrier']).p_nom_opt.sum(), - n.storage_units.groupby(['bus', 'carrier']).p_nom_opt.sum())) - line_widths_exp = n.lines.s_nom_opt - line_widths_cur = n.lines.s_nom_min - link_widths_exp = n.links.p_nom_opt - link_widths_cur = n.links.p_nom_min +def rename_techs_tyndp(tech): + tech = rename_techs(tech) + if "heat pump" in tech or "resistive heater" in tech: + return "power-to-heat" + elif tech in ["H2 Electrolysis", "methanation", "helmeth", "H2 liquefaction"]: + return "power-to-gas" + elif tech == "H2": + return "H2 storage" + elif tech in ["NH3", "Haber-Bosch", "ammonia cracker", "ammonia store"]: + return "ammonia" + elif tech in ["OCGT", "CHP", "gas boiler", "H2 Fuel Cell"]: + return "gas-to-power/heat" + # elif "solar" in tech: + # return "solar" + elif tech in ["Fischer-Tropsch", "methanolisation"]: + return "power-to-liquid" + elif "offshore wind" in tech: + return "offshore wind" + elif "CC" in tech or "sequestration" in tech: + return "CCS" else: - raise 'plotting of {} has not been implemented yet'.format(attribute) + return tech - line_colors_with_alpha = \ - ((line_widths_cur / n.lines.s_nom > 1e-3) - .map({True: line_colors['cur'], False: to_rgba(line_colors['cur'], 0.)})) - link_colors_with_alpha = \ - ((link_widths_cur / n.links.p_nom > 1e-3) - .map({True: line_colors['cur'], False: to_rgba(line_colors['cur'], 0.)})) - - - ## FORMAT - linewidth_factor = opts['map'][attribute]['linewidth_factor'] - bus_size_factor = opts['map'][attribute]['bus_size_factor'] - - ## PLOT - n.plot(line_widths=line_widths_exp/linewidth_factor, - link_widths=link_widths_exp/linewidth_factor, - line_colors=line_colors['exp'], - link_colors=line_colors['exp'], - bus_sizes=bus_sizes/bus_size_factor, - bus_colors=tech_colors, - boundaries=map_boundaries, - color_geomap=True, geomap=True, - ax=ax) - n.plot(line_widths=line_widths_cur/linewidth_factor, - link_widths=link_widths_cur/linewidth_factor, - line_colors=line_colors_with_alpha, - link_colors=link_colors_with_alpha, - bus_sizes=0, - boundaries=map_boundaries, - color_geomap=True, geomap=False, - ax=ax) - ax.set_aspect('equal') - ax.axis('off') - - # Rasterize basemap - # TODO : Check if this also works with cartopy - for c in ax.collections[:2]: c.set_rasterized(True) - - # LEGEND - handles = [] - labels = [] - - for s in (10, 1): - handles.append(plt.Line2D([0],[0],color=line_colors['exp'], - linewidth=s*1e3/linewidth_factor)) - labels.append("{} GW".format(s)) - l1_1 = ax.legend(handles, labels, - loc="upper left", bbox_to_anchor=(0.24, 1.01), - frameon=False, - labelspacing=0.8, handletextpad=1.5, - title='Transmission Exp./Exist. ') - ax.add_artist(l1_1) - - handles = [] - labels = [] - for s in (10, 5): - handles.append(plt.Line2D([0],[0],color=line_colors['cur'], - linewidth=s*1e3/linewidth_factor)) - labels.append("/") - l1_2 = ax.legend(handles, labels, - loc="upper left", bbox_to_anchor=(0.26, 1.01), - frameon=False, - labelspacing=0.8, handletextpad=0.5, - title=' ') - ax.add_artist(l1_2) - - handles = make_legend_circles_for([10e3, 5e3, 1e3], scale=bus_size_factor, facecolor="w") - labels = ["{} GW".format(s) for s in (10, 5, 3)] - l2 = ax.legend(handles, labels, - loc="upper left", bbox_to_anchor=(0.01, 1.01), - frameon=False, labelspacing=1.0, - title='Generation', - handler_map=make_handler_map_to_scale_circles_as_in(ax)) - ax.add_artist(l2) - - techs = (bus_sizes.index.levels[1]).intersection(pd.Index(opts['vre_techs'] + opts['conv_techs'] + opts['storage_techs'])) - handles = [] - labels = [] - for t in techs: - handles.append(plt.Line2D([0], [0], color=tech_colors[t], marker='o', markersize=8, linewidth=0)) - labels.append(opts['nice_names'].get(t, t)) - l3 = ax.legend(handles, labels, loc="upper center", bbox_to_anchor=(0.5, -0.), # bbox_to_anchor=(0.72, -0.05), - handletextpad=0., columnspacing=0.5, ncol=4, title='Technology') - - return fig +def assign_location(n): + for c in n.iterate_components(n.one_port_components | n.branch_components): + ifind = pd.Series(c.df.index.str.find(" ", start=4), c.df.index) + for i in ifind.value_counts().index: + # these have already been assigned defaults + if i == -1: + continue + names = ifind.index[ifind == i] + c.df.loc[names, "location"] = names.str[:i] -def plot_total_energy_pie(n, ax=None): - if ax is None: ax = plt.gca() +def plot_map( + network, + components=["links", "stores", "storage_units", "generators"], + bus_size_factor=1.7e10, + transmission=False, + with_legend=True, +): + tech_colors = snakemake.config["plotting"]["tech_colors"] - ax.set_title('Energy per technology', fontdict=dict(fontsize="medium")) + n = network.copy() + assign_location(n) + # Drop non-electric buses so they don't clutter the plot + n.buses.drop(n.buses.index[n.buses.carrier != "AC"], inplace=True) - e_primary = aggregate_p(n).drop('load', errors='ignore').loc[lambda s: s>0] + costs = pd.DataFrame(index=n.buses.index) - patches, texts, autotexts = ax.pie(e_primary, - startangle=90, - labels = e_primary.rename(opts['nice_names']).index, - autopct='%.0f%%', - shadow=False, - colors = [opts['tech_colors'][tech] for tech in e_primary.index]) - for t1, t2, i in zip(texts, autotexts, e_primary.index): - if e_primary.at[i] < 0.04 * e_primary.sum(): - t1.remove() - t2.remove() + for comp in components: + df_c = getattr(n, comp) -def plot_total_cost_bar(n, ax=None): - if ax is None: ax = plt.gca() - - total_load = (n.snapshot_weightings.generators * n.loads_t.p.sum(axis=1)).sum() - tech_colors = opts['tech_colors'] - - def split_costs(n): - costs = aggregate_costs(n).reset_index(level=0, drop=True) - costs_ex = aggregate_costs(n, existing_only=True).reset_index(level=0, drop=True) - return (costs['capital'].add(costs['marginal'], fill_value=0.), - costs_ex['capital'], costs['capital'] - costs_ex['capital'], costs['marginal']) - - costs, costs_cap_ex, costs_cap_new, costs_marg = split_costs(n) - - costs_graph = pd.DataFrame(dict(a=costs.drop('load', errors='ignore')), - index=['AC-AC', 'AC line', 'onwind', 'offwind-ac', - 'offwind-dc', 'solar', 'OCGT','CCGT', 'battery', 'H2']).dropna() - bottom = np.array([0., 0.]) - texts = [] - - for i,ind in enumerate(costs_graph.index): - data = np.asarray(costs_graph.loc[ind])/total_load - ax.bar([0.5], data, bottom=bottom, color=tech_colors[ind], - width=0.7, zorder=-1) - bottom_sub = bottom - bottom = bottom+data - - if ind in opts['conv_techs'] + ['AC line']: - for c in [costs_cap_ex, costs_marg]: - if ind in c: - data_sub = np.asarray([c.loc[ind]])/total_load - ax.bar([0.5], data_sub, linewidth=0, - bottom=bottom_sub, color=tech_colors[ind], - width=0.7, zorder=-1, alpha=0.8) - bottom_sub += data_sub - - if abs(data[-1]) < 5: + if df_c.empty: continue - text = ax.text(1.1,(bottom-0.5*data)[-1]-3,opts['nice_names'].get(ind,ind)) - texts.append(text) + df_c["nice_group"] = df_c.carrier.map(rename_techs_tyndp) - ax.set_ylabel("Average system cost [Eur/MWh]") - ax.set_ylim([0, opts.get('costs_max', 80)]) - ax.set_xlim([0, 1]) - ax.set_xticklabels([]) - ax.grid(True, axis="y", color='k', linestyle='dotted') + attr = "e_nom_opt" if comp == "stores" else "p_nom_opt" + + costs_c = ( + (df_c.capital_cost * df_c[attr]) + .groupby([df_c.location, df_c.nice_group]) + .sum() + .unstack() + .fillna(0.0) + ) + costs = pd.concat([costs, costs_c], axis=1) + + logger.debug(f"{comp}, {costs}") + + costs = costs.groupby(costs.columns, axis=1).sum() + + costs.drop(list(costs.columns[(costs == 0.0).all()]), axis=1, inplace=True) + + new_columns = preferred_order.intersection(costs.columns).append( + costs.columns.difference(preferred_order) + ) + costs = costs[new_columns] + + for item in new_columns: + if item not in tech_colors: + logger.warning(f"{item} not in config/plotting/tech_colors") + + costs = costs.stack() # .sort_index() + + # hack because impossible to drop buses... + eu_location = snakemake.config["plotting"].get( + "eu_node_location", dict(x=-5.5, y=46) + ) + n.buses.loc["EU gas", "x"] = eu_location["x"] + n.buses.loc["EU gas", "y"] = eu_location["y"] + + n.links.drop( + n.links.index[(n.links.carrier != "DC") & (n.links.carrier != "B2B")], + inplace=True, + ) + + # drop non-bus + to_drop = costs.index.levels[0].symmetric_difference(n.buses.index) + if len(to_drop) != 0: + logger.info(f"Dropping non-buses {to_drop.tolist()}") + costs.drop(to_drop, level=0, inplace=True, axis=0, errors="ignore") + + # make sure they are removed from index + costs.index = pd.MultiIndex.from_tuples(costs.index.values) + + threshold = 100e6 # 100 mEUR/a + carriers = costs.groupby(level=1).sum() + carriers = carriers.where(carriers > threshold).dropna() + carriers = list(carriers.index) + + # PDF has minimum width, so set these to zero + line_lower_threshold = 500.0 + line_upper_threshold = 1e4 + linewidth_factor = 4e3 + ac_color = "rosybrown" + dc_color = "darkseagreen" + + if snakemake.wildcards["ll"] == "v1.0": + # should be zero + line_widths = n.lines.s_nom_opt - n.lines.s_nom + link_widths = n.links.p_nom_opt - n.links.p_nom + title = "added grid" + + if transmission: + line_widths = n.lines.s_nom_opt + link_widths = n.links.p_nom_opt + linewidth_factor = 2e3 + line_lower_threshold = 0.0 + title = "current grid" + else: + line_widths = n.lines.s_nom_opt - n.lines.s_nom_min + link_widths = n.links.p_nom_opt - n.links.p_nom_min + title = "added grid" + + if transmission: + line_widths = n.lines.s_nom_opt + link_widths = n.links.p_nom_opt + title = "total grid" + + line_widths = line_widths.clip(line_lower_threshold, line_upper_threshold) + link_widths = link_widths.clip(line_lower_threshold, line_upper_threshold) + + line_widths = line_widths.replace(line_lower_threshold, 0) + link_widths = link_widths.replace(line_lower_threshold, 0) + + fig, ax = plt.subplots(subplot_kw={"projection": ccrs.EqualEarth()}) + fig.set_size_inches(7, 6) + + n.plot( + bus_sizes=costs / bus_size_factor, + bus_colors=tech_colors, + line_colors=ac_color, + link_colors=dc_color, + line_widths=line_widths / linewidth_factor, + link_widths=link_widths / linewidth_factor, + ax=ax, + **map_opts, + ) + + sizes = [20, 10, 5] + labels = [f"{s} bEUR/a" for s in sizes] + sizes = [s / bus_size_factor * 1e9 for s in sizes] + + legend_kw = dict( + loc="upper left", + bbox_to_anchor=(0.01, 1.06), + labelspacing=0.8, + frameon=False, + handletextpad=0, + title="system cost", + ) + + add_legend_circles( + ax, + sizes, + labels, + srid=n.srid, + patch_kw=dict(facecolor="lightgrey"), + legend_kw=legend_kw, + ) + + sizes = [10, 5] + labels = [f"{s} GW" for s in sizes] + scale = 1e3 / linewidth_factor + sizes = [s * scale for s in sizes] + + legend_kw = dict( + loc="upper left", + bbox_to_anchor=(0.27, 1.06), + frameon=False, + labelspacing=0.8, + handletextpad=1, + title=title, + ) + + add_legend_lines( + ax, sizes, labels, patch_kw=dict(color="lightgrey"), legend_kw=legend_kw + ) + + legend_kw = dict( + bbox_to_anchor=(1.52, 1.04), + frameon=False, + ) + + if with_legend: + colors = [tech_colors[c] for c in carriers] + [ac_color, dc_color] + labels = carriers + ["HVAC line", "HVDC link"] + + add_legend_patches( + ax, + colors, + labels, + legend_kw=legend_kw, + ) + + fig.savefig(snakemake.output.map, transparent=True, bbox_inches="tight") + + +def group_pipes(df, drop_direction=False): + """ + Group pipes which connect same buses and return overall capacity. + """ + if drop_direction: + positive_order = df.bus0 < df.bus1 + df_p = df[positive_order] + swap_buses = {"bus0": "bus1", "bus1": "bus0"} + df_n = df[~positive_order].rename(columns=swap_buses) + df = pd.concat([df_p, df_n]) + + # there are pipes for each investment period rename to AC buses name for plotting + df.index = df.apply( + lambda x: f"H2 pipeline {x.bus0.replace(' H2', '')} -> {x.bus1.replace(' H2', '')}", + axis=1, + ) + # group pipe lines connecting the same buses and rename them for plotting + pipe_capacity = df.groupby(level=0).agg( + {"p_nom_opt": sum, "bus0": "first", "bus1": "first"} + ) + + return pipe_capacity + + +def plot_h2_map(network, regions): + n = network.copy() + if "H2 pipeline" not in n.links.carrier.unique(): + return + + assign_location(n) + + h2_storage = n.stores.query("carrier == 'H2'") + regions["H2"] = h2_storage.rename( + index=h2_storage.bus.map(n.buses.location) + ).e_nom_opt.div( + 1e6 + ) # TWh + regions["H2"] = regions["H2"].where(regions["H2"] > 0.1) + + bus_size_factor = 1e5 + linewidth_factor = 7e3 + # MW below which not drawn + line_lower_threshold = 750 + + # Drop non-electric buses so they don't clutter the plot + n.buses.drop(n.buses.index[n.buses.carrier != "AC"], inplace=True) + + carriers = ["H2 Electrolysis", "H2 Fuel Cell"] + + elec = n.links[n.links.carrier.isin(carriers)].index + + bus_sizes = ( + n.links.loc[elec, "p_nom_opt"].groupby([n.links["bus0"], n.links.carrier]).sum() + / bus_size_factor + ) + + # make a fake MultiIndex so that area is correct for legend + bus_sizes.rename(index=lambda x: x.replace(" H2", ""), level=0, inplace=True) + # drop all links which are not H2 pipelines + n.links.drop( + n.links.index[~n.links.carrier.str.contains("H2 pipeline")], inplace=True + ) + + h2_new = n.links[n.links.carrier == "H2 pipeline"] + h2_retro = n.links[n.links.carrier == "H2 pipeline retrofitted"] + + if snakemake.config["foresight"] == "myopic": + # sum capacitiy for pipelines from different investment periods + h2_new = group_pipes(h2_new) + + if not h2_retro.empty: + h2_retro = ( + group_pipes(h2_retro, drop_direction=True) + .reindex(h2_new.index) + .fillna(0) + ) + + if not h2_retro.empty: + positive_order = h2_retro.bus0 < h2_retro.bus1 + h2_retro_p = h2_retro[positive_order] + swap_buses = {"bus0": "bus1", "bus1": "bus0"} + h2_retro_n = h2_retro[~positive_order].rename(columns=swap_buses) + h2_retro = pd.concat([h2_retro_p, h2_retro_n]) + + h2_retro["index_orig"] = h2_retro.index + h2_retro.index = h2_retro.apply( + lambda x: f"H2 pipeline {x.bus0.replace(' H2', '')} -> {x.bus1.replace(' H2', '')}", + axis=1, + ) + + retro_w_new_i = h2_retro.index.intersection(h2_new.index) + h2_retro_w_new = h2_retro.loc[retro_w_new_i] + + retro_wo_new_i = h2_retro.index.difference(h2_new.index) + h2_retro_wo_new = h2_retro.loc[retro_wo_new_i] + h2_retro_wo_new.index = h2_retro_wo_new.index_orig + + to_concat = [h2_new, h2_retro_w_new, h2_retro_wo_new] + h2_total = pd.concat(to_concat).p_nom_opt.groupby(level=0).sum() + + else: + h2_total = h2_new.p_nom_opt + + link_widths_total = h2_total / linewidth_factor + + n.links.rename(index=lambda x: x.split("-2")[0], inplace=True) + n.links = n.links.groupby(level=0).first() + link_widths_total = link_widths_total.reindex(n.links.index).fillna(0.0) + link_widths_total[n.links.p_nom_opt < line_lower_threshold] = 0.0 + + retro = n.links.p_nom_opt.where( + n.links.carrier == "H2 pipeline retrofitted", other=0.0 + ) + link_widths_retro = retro / linewidth_factor + link_widths_retro[n.links.p_nom_opt < line_lower_threshold] = 0.0 + + n.links.bus0 = n.links.bus0.str.replace(" H2", "") + n.links.bus1 = n.links.bus1.str.replace(" H2", "") + + proj = ccrs.EqualEarth() + regions = regions.to_crs(proj.proj4_init) + + fig, ax = plt.subplots(figsize=(7, 6), subplot_kw={"projection": proj}) + + color_h2_pipe = "#b3f3f4" + color_retrofit = "#499a9c" + + bus_colors = {"H2 Electrolysis": "#ff29d9", "H2 Fuel Cell": "#805394"} + + n.plot( + geomap=True, + bus_sizes=bus_sizes, + bus_colors=bus_colors, + link_colors=color_h2_pipe, + link_widths=link_widths_total, + branch_components=["Link"], + ax=ax, + **map_opts, + ) + + n.plot( + geomap=True, + bus_sizes=0, + link_colors=color_retrofit, + link_widths=link_widths_retro, + branch_components=["Link"], + ax=ax, + **map_opts, + ) + + regions.plot( + ax=ax, + column="H2", + cmap="Blues", + linewidths=0, + legend=True, + vmax=6, + vmin=0, + legend_kwds={ + "label": "Hydrogen Storage [TWh]", + "shrink": 0.7, + "extend": "max", + }, + ) + + sizes = [50, 10] + labels = [f"{s} GW" for s in sizes] + sizes = [s / bus_size_factor * 1e3 for s in sizes] + + legend_kw = dict( + loc="upper left", + bbox_to_anchor=(0, 1), + labelspacing=0.8, + handletextpad=0, + frameon=False, + ) + + add_legend_circles( + ax, + sizes, + labels, + srid=n.srid, + patch_kw=dict(facecolor="lightgrey"), + legend_kw=legend_kw, + ) + + sizes = [30, 10] + labels = [f"{s} GW" for s in sizes] + scale = 1e3 / linewidth_factor + sizes = [s * scale for s in sizes] + + legend_kw = dict( + loc="upper left", + bbox_to_anchor=(0.23, 1), + frameon=False, + labelspacing=0.8, + handletextpad=1, + ) + + add_legend_lines( + ax, + sizes, + labels, + patch_kw=dict(color="lightgrey"), + legend_kw=legend_kw, + ) + + colors = [bus_colors[c] for c in carriers] + [color_h2_pipe, color_retrofit] + labels = carriers + ["H2 pipeline (total)", "H2 pipeline (repurposed)"] + + legend_kw = dict( + loc="upper left", + bbox_to_anchor=(0, 1.13), + ncol=2, + frameon=False, + ) + + add_legend_patches(ax, colors, labels, legend_kw=legend_kw) + + ax.set_facecolor("white") + + fig.savefig( + snakemake.output.map.replace("-costs-all", "-h2_network"), bbox_inches="tight" + ) + + +def plot_ch4_map(network): + n = network.copy() + + if "gas pipeline" not in n.links.carrier.unique(): + return + + assign_location(n) + + bus_size_factor = 8e7 + linewidth_factor = 1e4 + # MW below which not drawn + line_lower_threshold = 1e3 + + # Drop non-electric buses so they don't clutter the plot + n.buses.drop(n.buses.index[n.buses.carrier != "AC"], inplace=True) + + fossil_gas_i = n.generators[n.generators.carrier == "gas"].index + fossil_gas = ( + n.generators_t.p.loc[:, fossil_gas_i] + .mul(n.snapshot_weightings.generators, axis=0) + .sum() + .groupby(n.generators.loc[fossil_gas_i, "bus"]) + .sum() + / bus_size_factor + ) + fossil_gas.rename(index=lambda x: x.replace(" gas", ""), inplace=True) + fossil_gas = fossil_gas.reindex(n.buses.index).fillna(0) + # make a fake MultiIndex so that area is correct for legend + fossil_gas.index = pd.MultiIndex.from_product([fossil_gas.index, ["fossil gas"]]) + + methanation_i = n.links[n.links.carrier.isin(["helmeth", "Sabatier"])].index + methanation = ( + abs( + n.links_t.p1.loc[:, methanation_i].mul( + n.snapshot_weightings.generators, axis=0 + ) + ) + .sum() + .groupby(n.links.loc[methanation_i, "bus1"]) + .sum() + / bus_size_factor + ) + methanation = ( + methanation.groupby(methanation.index) + .sum() + .rename(index=lambda x: x.replace(" gas", "")) + ) + # make a fake MultiIndex so that area is correct for legend + methanation.index = pd.MultiIndex.from_product([methanation.index, ["methanation"]]) + + biogas_i = n.stores[n.stores.carrier == "biogas"].index + biogas = ( + n.stores_t.p.loc[:, biogas_i] + .mul(n.snapshot_weightings.generators, axis=0) + .sum() + .groupby(n.stores.loc[biogas_i, "bus"]) + .sum() + / bus_size_factor + ) + biogas = ( + biogas.groupby(biogas.index) + .sum() + .rename(index=lambda x: x.replace(" biogas", "")) + ) + # make a fake MultiIndex so that area is correct for legend + biogas.index = pd.MultiIndex.from_product([biogas.index, ["biogas"]]) + + bus_sizes = pd.concat([fossil_gas, methanation, biogas]) + bus_sizes.sort_index(inplace=True) + + to_remove = n.links.index[~n.links.carrier.str.contains("gas pipeline")] + n.links.drop(to_remove, inplace=True) + + link_widths_rem = n.links.p_nom_opt / linewidth_factor + link_widths_rem[n.links.p_nom_opt < line_lower_threshold] = 0.0 + + link_widths_orig = n.links.p_nom / linewidth_factor + link_widths_orig[n.links.p_nom < line_lower_threshold] = 0.0 + + max_usage = n.links_t.p0.abs().max(axis=0) + link_widths_used = max_usage / linewidth_factor + link_widths_used[max_usage < line_lower_threshold] = 0.0 + + tech_colors = snakemake.config["plotting"]["tech_colors"] + + pipe_colors = { + "gas pipeline": "#f08080", + "gas pipeline new": "#c46868", + "gas pipeline (in 2020)": "lightgrey", + "gas pipeline (available)": "#e8d1d1", + } + + link_color_used = n.links.carrier.map(pipe_colors) + + n.links.bus0 = n.links.bus0.str.replace(" gas", "") + n.links.bus1 = n.links.bus1.str.replace(" gas", "") + + bus_colors = { + "fossil gas": tech_colors["fossil gas"], + "methanation": tech_colors["methanation"], + "biogas": "seagreen", + } + + fig, ax = plt.subplots(figsize=(7, 6), subplot_kw={"projection": ccrs.EqualEarth()}) + + n.plot( + bus_sizes=bus_sizes, + bus_colors=bus_colors, + link_colors=pipe_colors["gas pipeline (in 2020)"], + link_widths=link_widths_orig, + branch_components=["Link"], + ax=ax, + **map_opts, + ) + + n.plot( + ax=ax, + bus_sizes=0.0, + link_colors=pipe_colors["gas pipeline (available)"], + link_widths=link_widths_rem, + branch_components=["Link"], + color_geomap=False, + boundaries=map_opts["boundaries"], + ) + + n.plot( + ax=ax, + bus_sizes=0.0, + link_colors=link_color_used, + link_widths=link_widths_used, + branch_components=["Link"], + color_geomap=False, + boundaries=map_opts["boundaries"], + ) + + sizes = [100, 10] + labels = [f"{s} TWh" for s in sizes] + sizes = [s / bus_size_factor * 1e6 for s in sizes] + + legend_kw = dict( + loc="upper left", + bbox_to_anchor=(0, 1.03), + labelspacing=0.8, + frameon=False, + handletextpad=1, + title="gas sources", + ) + + add_legend_circles( + ax, + sizes, + labels, + srid=n.srid, + patch_kw=dict(facecolor="lightgrey"), + legend_kw=legend_kw, + ) + + sizes = [50, 10] + labels = [f"{s} GW" for s in sizes] + scale = 1e3 / linewidth_factor + sizes = [s * scale for s in sizes] + + legend_kw = dict( + loc="upper left", + bbox_to_anchor=(0.25, 1.03), + frameon=False, + labelspacing=0.8, + handletextpad=1, + title="gas pipeline", + ) + + add_legend_lines( + ax, + sizes, + labels, + patch_kw=dict(color="lightgrey"), + legend_kw=legend_kw, + ) + + colors = list(pipe_colors.values()) + list(bus_colors.values()) + labels = list(pipe_colors.keys()) + list(bus_colors.keys()) + + # legend on the side + # legend_kw = dict( + # bbox_to_anchor=(1.47, 1.04), + # frameon=False, + # ) + + legend_kw = dict( + loc="upper left", + bbox_to_anchor=(0, 1.24), + ncol=2, + frameon=False, + ) + + add_legend_patches( + ax, + colors, + labels, + legend_kw=legend_kw, + ) + + fig.savefig( + snakemake.output.map.replace("-costs-all", "-ch4_network"), bbox_inches="tight" + ) + + +def plot_map_without(network): + n = network.copy() + assign_location(n) + + # Drop non-electric buses so they don't clutter the plot + n.buses.drop(n.buses.index[n.buses.carrier != "AC"], inplace=True) + + fig, ax = plt.subplots(figsize=(7, 6), subplot_kw={"projection": ccrs.EqualEarth()}) + + # PDF has minimum width, so set these to zero + line_lower_threshold = 200.0 + line_upper_threshold = 1e4 + linewidth_factor = 3e3 + ac_color = "rosybrown" + dc_color = "darkseagreen" + + # hack because impossible to drop buses... + if "EU gas" in n.buses.index: + eu_location = snakemake.config["plotting"].get( + "eu_node_location", dict(x=-5.5, y=46) + ) + n.buses.loc["EU gas", "x"] = eu_location["x"] + n.buses.loc["EU gas", "y"] = eu_location["y"] + + to_drop = n.links.index[(n.links.carrier != "DC") & (n.links.carrier != "B2B")] + n.links.drop(to_drop, inplace=True) + + if snakemake.wildcards["ll"] == "v1.0": + line_widths = n.lines.s_nom + link_widths = n.links.p_nom + else: + line_widths = n.lines.s_nom_min + link_widths = n.links.p_nom_min + + line_widths = line_widths.clip(line_lower_threshold, line_upper_threshold) + link_widths = link_widths.clip(line_lower_threshold, line_upper_threshold) + + line_widths = line_widths.replace(line_lower_threshold, 0) + link_widths = link_widths.replace(line_lower_threshold, 0) + + 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, + **map_opts, + ) + + handles = [] + labels = [] + + for s in (10, 5): + handles.append( + plt.Line2D([0], [0], color=ac_color, linewidth=s * 1e3 / linewidth_factor) + ) + labels.append(f"{s} GW") + l1_1 = ax.legend( + handles, + labels, + loc="upper left", + bbox_to_anchor=(0.05, 1.01), + frameon=False, + labelspacing=0.8, + handletextpad=1.5, + title="Today's transmission", + ) + ax.add_artist(l1_1) + + fig.savefig(snakemake.output.today, transparent=True, bbox_inches="tight") + + +def plot_series(network, carrier="AC", name="test"): + n = network.copy() + assign_location(n) + assign_carriers(n) + + buses = n.buses.index[n.buses.carrier.str.contains(carrier)] + + supply = pd.DataFrame(index=n.snapshots) + for c in n.iterate_components(n.branch_components): + n_port = 4 if c.name == "Link" else 2 + for i in range(n_port): + supply = pd.concat( + ( + supply, + (-1) + * c.pnl["p" + str(i)] + .loc[:, c.df.index[c.df["bus" + str(i)].isin(buses)]] + .groupby(c.df.carrier, axis=1) + .sum(), + ), + axis=1, + ) + + for c in n.iterate_components(n.one_port_components): + comps = c.df.index[c.df.bus.isin(buses)] + supply = pd.concat( + ( + supply, + ((c.pnl["p"].loc[:, comps]).multiply(c.df.loc[comps, "sign"])) + .groupby(c.df.carrier, axis=1) + .sum(), + ), + axis=1, + ) + + supply = supply.groupby(rename_techs_tyndp, axis=1).sum() + + both = supply.columns[(supply < 0.0).any() & (supply > 0.0).any()] + + positive_supply = supply[both] + negative_supply = supply[both] + + positive_supply[positive_supply < 0.0] = 0.0 + negative_supply[negative_supply > 0.0] = 0.0 + + supply[both] = positive_supply + + suffix = " charging" + + negative_supply.columns = negative_supply.columns + suffix + + supply = pd.concat((supply, negative_supply), axis=1) + + # 14-21.2 for flaute + # 19-26.1 for flaute + + start = "2013-02-19" + stop = "2013-02-26" + + threshold = 10e3 + + to_drop = supply.columns[(abs(supply) < threshold).all()] + + if len(to_drop) != 0: + logger.info(f"Dropping {to_drop.tolist()} from supply") + supply.drop(columns=to_drop, inplace=True) + + supply.index.name = None + + supply = supply / 1e3 + + supply.rename( + columns={"electricity": "electric demand", "heat": "heat demand"}, inplace=True + ) + supply.columns = supply.columns.str.replace("residential ", "") + supply.columns = supply.columns.str.replace("services ", "") + supply.columns = supply.columns.str.replace("urban decentral ", "decentral ") + + preferred_order = pd.Index( + [ + "electric demand", + "transmission lines", + "hydroelectricity", + "hydro reservoir", + "run of river", + "pumped hydro storage", + "CHP", + "onshore wind", + "offshore wind", + "solar PV", + "solar thermal", + "building retrofitting", + "ground heat pump", + "air heat pump", + "resistive heater", + "OCGT", + "gas boiler", + "gas", + "natural gas", + "methanation", + "hydrogen storage", + "battery storage", + "hot water storage", + ] + ) + + new_columns = preferred_order.intersection(supply.columns).append( + supply.columns.difference(preferred_order) + ) + + supply = supply.groupby(supply.columns, axis=1).sum() + fig, ax = plt.subplots() + fig.set_size_inches((8, 5)) + + ( + supply.loc[start:stop, new_columns].plot( + ax=ax, + kind="area", + stacked=True, + linewidth=0.0, + color=[ + snakemake.config["plotting"]["tech_colors"][i.replace(suffix, "")] + for i in new_columns + ], + ) + ) + + handles, labels = ax.get_legend_handles_labels() + + handles.reverse() + labels.reverse() + + new_handles = [] + new_labels = [] + + for i, item in enumerate(labels): + if "charging" not in item: + new_handles.append(handles[i]) + new_labels.append(labels[i]) + + ax.legend(new_handles, new_labels, ncol=3, loc="upper left", frameon=False) + ax.set_xlim([start, stop]) + ax.set_ylim([-1300, 1900]) + ax.grid(True) + ax.set_ylabel("Power [GW]") + fig.tight_layout() + + fig.savefig( + "{}/{RDIR}maps/series-{}-{}-{}-{}-{}.pdf".format( + "results", + snakemake.params.RDIR, + snakemake.wildcards["ll"], + carrier, + start, + stop, + name, + ), + transparent=True, + ) if __name__ == "__main__": - if 'snakemake' not in globals(): + if "snakemake" not in globals(): from _helpers import mock_snakemake - snakemake = mock_snakemake('plot_network', network='elec', simpl='', - clusters='5', ll='copt', opts='Co2L-24H', - attr='p_nom', ext="pdf") - configure_logging(snakemake) - set_plot_style() + snakemake = mock_snakemake( + "plot_network", + simpl="", + opts="", + clusters="5", + ll="v1.5", + sector_opts="CO2L0-1H-T-H-B-I-A-solar+p3-dist1", + planning_horizons="2030", + ) - paths, config, wildcards, logs, out = retrieve_snakemake_keys(snakemake) + logging.basicConfig(level=snakemake.config["logging"]["level"]) - map_figsize = config['map']['figsize'] - map_boundaries = config['map']['boundaries'] + overrides = override_component_attrs(snakemake.input.overrides) + n = pypsa.Network(snakemake.input.network, override_component_attrs=overrides) - n = load_network_for_plots(paths.network, paths.tech_costs, config) + regions = gpd.read_file(snakemake.input.regions).set_index("name") - scenario_opts = wildcards.opts.split('-') + map_opts = snakemake.config["plotting"]["map"] - fig, ax = plt.subplots(figsize=map_figsize, subplot_kw={"projection": ccrs.PlateCarree()}) - plot_map(n, ax, wildcards.attr, config) + if map_opts["boundaries"] is None: + map_opts["boundaries"] = regions.total_bounds[[0, 2, 1, 3]] + [-1, 1, -1, 1] - fig.savefig(out.only_map, dpi=150, bbox_inches='tight') + plot_map( + n, + components=["generators", "links", "stores", "storage_units"], + bus_size_factor=2e10, + transmission=False, + ) - ax1 = fig.add_axes([-0.115, 0.625, 0.2, 0.2]) - plot_total_energy_pie(n, ax1) + plot_h2_map(n, regions) + plot_ch4_map(n) + plot_map_without(n) - ax2 = fig.add_axes([-0.075, 0.1, 0.1, 0.45]) - plot_total_cost_bar(n, ax2) - - ll = wildcards.ll - ll_type = ll[0] - ll_factor = ll[1:] - lbl = dict(c='line cost', v='line volume')[ll_type] - amnt = '{ll} x today\'s'.format(ll=ll_factor) if ll_factor != 'opt' else 'optimal' - fig.suptitle('Expansion to {amount} {label} at {clusters} clusters' - .format(amount=amnt, label=lbl, clusters=wildcards.clusters)) - - fig.savefig(out.ext, transparent=True, bbox_inches='tight') + # plot_series(n, carrier="AC", name=suffix) + # plot_series(n, carrier="heat", name=suffix) diff --git a/scripts/plot_p_nom_max.py b/scripts/plot_p_nom_max.py deleted file mode 100644 index ea66d612..00000000 --- a/scripts/plot_p_nom_max.py +++ /dev/null @@ -1,84 +0,0 @@ -# SPDX-FileCopyrightText: : 2017-2020 The PyPSA-Eur Authors -# -# SPDX-License-Identifier: MIT - -""" -Plots renewable installation potentials per capacity factor. - -Relevant Settings ------------------ - -Inputs ------- - -Outputs -------- - -Description ------------ - -""" -import logging -from _helpers import configure_logging, retrieve_snakemake_keys - -import pypsa -import pandas as pd -import matplotlib.pyplot as plt - -logger = logging.getLogger(__name__) - - -def cum_p_nom_max(net, tech, country=None): - carrier_b = net.generators.carrier == tech - - generators = pd.DataFrame(dict( - p_nom_max=net.generators.loc[carrier_b, 'p_nom_max'], - p_max_pu=net.generators_t.p_max_pu.loc[:,carrier_b].mean(), - country=net.generators.loc[carrier_b, 'bus'].map(net.buses.country) - )).sort_values("p_max_pu", ascending=False) - - if country is not None: - generators = generators.loc[generators.country == country] - - generators["cum_p_nom_max"] = generators["p_nom_max"].cumsum() / 1e6 - - return generators - - -if __name__ == "__main__": - if 'snakemake' not in globals(): - from _helpers import mock_snakemake - snakemake = mock_snakemake('plot_p_nom_max', network='elec', simpl='', - techs='solar,onwind,offwind-dc', ext='png', - clusts= '5,full', country= 'all') - configure_logging(snakemake) - - paths, config, wildcards, logs, out = retrieve_snakemake_keys(snakemake) - - plot_kwds = dict(drawstyle="steps-post") - - clusters = wildcards.clusts.split(',') - techs = wildcards.techs.split(',') - country = wildcards.country - if country == 'all': - country = None - else: - plot_kwds['marker'] = 'x' - - fig, axes = plt.subplots(1, len(techs)) - - for j, cluster in enumerate(clusters): - net = pypsa.Network(paths[j]) - - for i, tech in enumerate(techs): - cum_p_nom_max(net, tech, country).plot(x="p_max_pu", y="cum_p_nom_max", - label=cluster, ax=axes[i], **plot_kwds) - - for i, tech in enumerate(techs): - ax = axes[i] - ax.set_xlabel(f"Capacity factor of {tech}") - ax.set_ylabel("Cumulative installable capacity / TW") - - plt.legend(title="Cluster level") - - fig.savefig(out[0], transparent=True, bbox_inches='tight') diff --git a/scripts/plot_summary.py b/scripts/plot_summary.py index 48f064b0..cfa8e361 100644 --- a/scripts/plot_summary.py +++ b/scripts/plot_summary.py @@ -1,181 +1,562 @@ -# SPDX-FileCopyrightText: : 2017-2020 The PyPSA-Eur Authors +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2020-2023 The PyPSA-Eur Authors # # SPDX-License-Identifier: MIT - """ -Plots energy and cost summaries for solved networks. - -Relevant Settings ------------------ - -Inputs ------- - -Outputs -------- - -Description ------------ - +Creates plots from summary CSV files. """ -import os import logging -from _helpers import configure_logging, retrieve_snakemake_keys - -import pandas as pd -import matplotlib.pyplot as plt logger = logging.getLogger(__name__) +import matplotlib.gridspec as gridspec +import matplotlib.pyplot as plt +import numpy as np +import pandas as pd +plt.style.use("ggplot") + +from prepare_sector_network import co2_emissions_year + + +# consolidate and rename def rename_techs(label): - if "H2" in label: - label = "hydrogen storage" - elif label == "solar": - label = "solar PV" - elif label == "offwind-ac": - label = "offshore wind ac" - elif label == "offwind-dc": - label = "offshore wind dc" - elif label == "onwind": - label = "onshore wind" - elif label == "ror": - label = "hydroelectricity" - elif label == "hydro": - label = "hydroelectricity" - elif label == "PHS": - label = "hydroelectricity" - elif "battery" in label: - label = "battery storage" + prefix_to_remove = [ + "residential ", + "services ", + "urban ", + "rural ", + "central ", + "decentral ", + ] + rename_if_contains = [ + "CHP", + "gas boiler", + "biogas", + "solar thermal", + "air heat pump", + "ground heat pump", + "resistive heater", + "Fischer-Tropsch", + ] + + rename_if_contains_dict = { + "water tanks": "hot water storage", + "retrofitting": "building retrofitting", + # "H2 Electrolysis": "hydrogen storage", + # "H2 Fuel Cell": "hydrogen storage", + # "H2 pipeline": "hydrogen storage", + "battery": "battery storage", + # "CC": "CC" + } + + rename = { + "solar": "solar PV", + "Sabatier": "methanation", + "offwind": "offshore wind", + "offwind-ac": "offshore wind (AC)", + "offwind-dc": "offshore wind (DC)", + "onwind": "onshore wind", + "ror": "hydroelectricity", + "hydro": "hydroelectricity", + "PHS": "hydroelectricity", + "NH3": "ammonia", + "co2 Store": "DAC", + "co2 stored": "CO2 sequestration", + "AC": "transmission lines", + "DC": "transmission lines", + "B2B": "transmission lines", + } + + for ptr in prefix_to_remove: + if label[: len(ptr)] == ptr: + label = label[len(ptr) :] + + for rif in rename_if_contains: + if rif in label: + label = rif + + for old, new in rename_if_contains_dict.items(): + if old in label: + label = new + + for old, new in rename.items(): + if old == label: + label = new return label -preferred_order = pd.Index(["transmission lines","hydroelectricity","hydro reservoir","run of river","pumped hydro storage","onshore wind","offshore wind ac", "offshore wind dc","solar PV","solar thermal","OCGT","hydrogen storage","battery storage"]) +preferred_order = pd.Index( + [ + "transmission lines", + "hydroelectricity", + "hydro reservoir", + "run of river", + "pumped hydro storage", + "solid biomass", + "biogas", + "onshore wind", + "offshore wind", + "offshore wind (AC)", + "offshore wind (DC)", + "solar PV", + "solar thermal", + "solar rooftop", + "solar", + "building retrofitting", + "ground heat pump", + "air heat pump", + "heat pump", + "resistive heater", + "power-to-heat", + "gas-to-power/heat", + "CHP", + "OCGT", + "gas boiler", + "gas", + "natural gas", + "helmeth", + "methanation", + "ammonia", + "hydrogen storage", + "power-to-gas", + "power-to-liquid", + "battery storage", + "hot water storage", + "CO2 sequestration", + ] +) -def plot_costs(infn, config, fn=None): - - ## For now ignore the simpl header - cost_df = pd.read_csv(infn,index_col=list(range(3)),header=[1,2,3]) +def plot_costs(): + cost_df = pd.read_csv( + snakemake.input.costs, index_col=list(range(3)), header=list(range(n_header)) + ) df = cost_df.groupby(cost_df.index.get_level_values(2)).sum() - #convert to billions - df = df/1e9 + # convert to billions + df = df / 1e9 df = df.groupby(df.index.map(rename_techs)).sum() - to_drop = df.index[df.max(axis=1) < config['plotting']['costs_threshold']] + to_drop = df.index[df.max(axis=1) < snakemake.config["plotting"]["costs_threshold"]] - print("dropping") - - print(df.loc[to_drop]) + logger.info( + f"Dropping technology with costs below {snakemake.config['plotting']['costs_threshold']} EUR billion per year" + ) + logger.debug(df.loc[to_drop]) df = df.drop(to_drop) - print(df.sum()) + logger.info(f"Total system cost of {round(df.sum()[0])} EUR billion per year") - new_index = (preferred_order&df.index).append(df.index.difference(preferred_order)) + new_index = preferred_order.intersection(df.index).append( + df.index.difference(preferred_order) + ) new_columns = df.sum().sort_values().index - fig, ax = plt.subplots() - fig.set_size_inches((12,8)) + fig, ax = plt.subplots(figsize=(12, 8)) - df.loc[new_index,new_columns].T.plot(kind="bar",ax=ax,stacked=True,color=[config['plotting']['tech_colors'][i] for i in new_index]) + df.loc[new_index, new_columns].T.plot( + kind="bar", + ax=ax, + stacked=True, + color=[snakemake.config["plotting"]["tech_colors"][i] for i in new_index], + ) - - handles,labels = ax.get_legend_handles_labels() + handles, labels = ax.get_legend_handles_labels() handles.reverse() labels.reverse() - ax.set_ylim([0,config['plotting']['costs_max']]) + ax.set_ylim([0, snakemake.config["plotting"]["costs_max"]]) ax.set_ylabel("System Cost [EUR billion per year]") ax.set_xlabel("") - ax.grid(axis="y") + ax.grid(axis="x") - ax.legend(handles,labels,ncol=4,loc="upper left") + ax.legend( + handles, labels, ncol=1, loc="upper left", bbox_to_anchor=[1, 1], frameon=False + ) + + fig.savefig(snakemake.output.costs, bbox_inches="tight") - fig.tight_layout() - - if fn is not None: - fig.savefig(fn, transparent=True) - - -def plot_energy(infn, config, fn=None): - - energy_df = pd.read_csv(infn, index_col=list(range(2)),header=[1,2,3]) +def plot_energy(): + energy_df = pd.read_csv( + snakemake.input.energy, index_col=list(range(2)), header=list(range(n_header)) + ) df = energy_df.groupby(energy_df.index.get_level_values(1)).sum() - #convert MWh to TWh - df = df/1e6 + # convert MWh to TWh + df = df / 1e6 df = df.groupby(df.index.map(rename_techs)).sum() - to_drop = df.index[df.abs().max(axis=1) < config['plotting']['energy_threshold']] + to_drop = df.index[ + df.abs().max(axis=1) < snakemake.config["plotting"]["energy_threshold"] + ] - print("dropping") - - print(df.loc[to_drop]) + logger.info( + f"Dropping all technology with energy consumption or production below {snakemake.config['plotting']['energy_threshold']} TWh/a" + ) + logger.debug(df.loc[to_drop]) df = df.drop(to_drop) - print(df.sum()) + logger.info(f"Total energy of {round(df.sum()[0])} TWh/a") - new_index = (preferred_order&df.index).append(df.index.difference(preferred_order)) + new_index = preferred_order.intersection(df.index).append( + df.index.difference(preferred_order) + ) new_columns = df.columns.sort_values() - fig, ax = plt.subplots() - fig.set_size_inches((12,8)) + fig, ax = plt.subplots(figsize=(12, 8)) - df.loc[new_index,new_columns].T.plot(kind="bar",ax=ax,stacked=True,color=[config['plotting']['tech_colors'][i] for i in new_index]) + logger.debug(df.loc[new_index, new_columns]) + df.loc[new_index, new_columns].T.plot( + kind="bar", + ax=ax, + stacked=True, + color=[snakemake.config["plotting"]["tech_colors"][i] for i in new_index], + ) - handles,labels = ax.get_legend_handles_labels() + handles, labels = ax.get_legend_handles_labels() handles.reverse() labels.reverse() - ax.set_ylim([config['plotting']['energy_min'], config['plotting']['energy_max']]) + ax.set_ylim( + [ + snakemake.config["plotting"]["energy_min"], + snakemake.config["plotting"]["energy_max"], + ] + ) ax.set_ylabel("Energy [TWh/a]") ax.set_xlabel("") - ax.grid(axis="y") + ax.grid(axis="x") - ax.legend(handles,labels,ncol=4,loc="upper left") + ax.legend( + handles, labels, ncol=1, loc="upper left", bbox_to_anchor=[1, 1], frameon=False + ) + + fig.savefig(snakemake.output.energy, bbox_inches="tight") - fig.tight_layout() +def plot_balances(): + co2_carriers = ["co2", "co2 stored", "process emissions"] - if fn is not None: - fig.savefig(fn, transparent=True) + balances_df = pd.read_csv( + snakemake.input.balances, index_col=list(range(3)), header=list(range(n_header)) + ) + + balances = {i.replace(" ", "_"): [i] for i in balances_df.index.levels[0]} + balances["energy"] = [ + i for i in balances_df.index.levels[0] if i not in co2_carriers + ] + + fig, ax = plt.subplots(figsize=(12, 8)) + + for k, v in balances.items(): + df = balances_df.loc[v] + df = df.groupby(df.index.get_level_values(2)).sum() + + # convert MWh to TWh + df = df / 1e6 + + # remove trailing link ports + df.index = [ + i[:-1] + if ((i not in ["co2", "NH3"]) 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"] / 10 + ] + + if v[0] in co2_carriers: + units = "MtCO2/a" + else: + units = "TWh/a" + + logger.debug( + f"Dropping technology energy balance smaller than {snakemake.config['plotting']['energy_threshold']/10} {units}" + ) + logger.debug(df.loc[to_drop]) + + df = df.drop(to_drop) + + logger.debug(f"Total energy balance for {v} of {round(df.sum()[0],2)} {units}") + + if df.empty: + continue + + new_index = preferred_order.intersection(df.index).append( + df.index.difference(preferred_order) + ) + + new_columns = df.columns.sort_values() + + df.loc[new_index, new_columns].T.plot( + kind="bar", + ax=ax, + stacked=True, + color=[snakemake.config["plotting"]["tech_colors"][i] for i in new_index], + ) + + handles, labels = ax.get_legend_handles_labels() + + handles.reverse() + labels.reverse() + + if v[0] in co2_carriers: + ax.set_ylabel("CO2 [MtCO2/a]") + else: + ax.set_ylabel("Energy [TWh/a]") + + ax.set_xlabel("") + + ax.grid(axis="x") + + ax.legend( + handles, + labels, + ncol=1, + loc="upper left", + bbox_to_anchor=[1, 1], + frameon=False, + ) + + fig.savefig(snakemake.output.balances[:-10] + k + ".pdf", bbox_inches="tight") + + plt.cla() + + +def historical_emissions(countries): + """ + Read historical emissions to add them to the carbon budget plot. + """ + # https://www.eea.europa.eu/data-and-maps/data/national-emissions-reported-to-the-unfccc-and-to-the-eu-greenhouse-gas-monitoring-mechanism-16 + # downloaded 201228 (modified by EEA last on 201221) + fn = "data/eea/UNFCCC_v23.csv" + df = pd.read_csv(fn, encoding="latin-1") + df.loc[df["Year"] == "1985-1987", "Year"] = 1986 + df["Year"] = df["Year"].astype(int) + df = df.set_index( + ["Year", "Sector_name", "Country_code", "Pollutant_name"] + ).sort_index() + + e = pd.Series() + e["electricity"] = "1.A.1.a - Public Electricity and Heat Production" + e["residential non-elec"] = "1.A.4.b - Residential" + e["services non-elec"] = "1.A.4.a - Commercial/Institutional" + e["rail non-elec"] = "1.A.3.c - Railways" + e["road non-elec"] = "1.A.3.b - Road Transportation" + e["domestic navigation"] = "1.A.3.d - Domestic Navigation" + e["international navigation"] = "1.D.1.b - International Navigation" + e["domestic aviation"] = "1.A.3.a - Domestic Aviation" + e["international aviation"] = "1.D.1.a - International Aviation" + e["total energy"] = "1 - Energy" + e["industrial processes"] = "2 - Industrial Processes and Product Use" + e["agriculture"] = "3 - Agriculture" + e["LULUCF"] = "4 - Land Use, Land-Use Change and Forestry" + e["waste management"] = "5 - Waste management" + e["other"] = "6 - Other Sector" + e["indirect"] = "ind_CO2 - Indirect CO2" + e["total wL"] = "Total (with LULUCF)" + e["total woL"] = "Total (without LULUCF)" + + pol = ["CO2"] # ["All greenhouse gases - (CO2 equivalent)"] + if "GB" in countries: + countries.remove("GB") + countries.append("UK") + + year = np.arange(1990, 2018).tolist() + + idx = pd.IndexSlice + co2_totals = ( + df.loc[idx[year, e.values, countries, pol], "emissions"] + .unstack("Year") + .rename(index=pd.Series(e.index, e.values)) + ) + + co2_totals = (1 / 1e6) * co2_totals.groupby(level=0, axis=0).sum() # Gton CO2 + + co2_totals.loc["industrial non-elec"] = ( + co2_totals.loc["total energy"] + - co2_totals.loc[ + [ + "electricity", + "services non-elec", + "residential non-elec", + "road non-elec", + "rail non-elec", + "domestic aviation", + "international aviation", + "domestic navigation", + "international navigation", + ] + ].sum() + ) + + emissions = co2_totals.loc["electricity"] + if "T" in opts: + emissions += co2_totals.loc[[i + " non-elec" for i in ["rail", "road"]]].sum() + if "H" in opts: + emissions += co2_totals.loc[ + [i + " non-elec" for i in ["residential", "services"]] + ].sum() + if "I" in opts: + emissions += co2_totals.loc[ + [ + "industrial non-elec", + "industrial processes", + "domestic aviation", + "international aviation", + "domestic navigation", + "international navigation", + ] + ].sum() + return emissions + + +def plot_carbon_budget_distribution(input_eurostat): + """ + Plot historical carbon emissions in the EU and decarbonization path. + """ + import seaborn as sns + + sns.set() + sns.set_style("ticks") + plt.style.use("seaborn-ticks") + plt.rcParams["xtick.direction"] = "in" + plt.rcParams["ytick.direction"] = "in" + plt.rcParams["xtick.labelsize"] = 20 + plt.rcParams["ytick.labelsize"] = 20 + + plt.figure(figsize=(10, 7)) + gs1 = gridspec.GridSpec(1, 1) + ax1 = plt.subplot(gs1[0, 0]) + ax1.set_ylabel("CO$_2$ emissions (Gt per year)", fontsize=22) + ax1.set_ylim([0, 5]) + ax1.set_xlim([1990, snakemake.config["scenario"]["planning_horizons"][-1] + 1]) + + path_cb = "results/" + snakemake.params.RDIR + "/csvs/" + countries = snakemake.config["countries"] + e_1990 = co2_emissions_year(countries, input_eurostat, opts, year=1990) + CO2_CAP = pd.read_csv(path_cb + "carbon_budget_distribution.csv", index_col=0) + + ax1.plot(e_1990 * CO2_CAP[o], linewidth=3, color="dodgerblue", label=None) + + emissions = historical_emissions(countries) + + ax1.plot(emissions, color="black", linewidth=3, label=None) + + # plot committed and uder-discussion targets + # (notice that historical emissions include all countries in the + # network, but targets refer to EU) + ax1.plot( + [2020], + [0.8 * emissions[1990]], + marker="*", + markersize=12, + markerfacecolor="black", + markeredgecolor="black", + ) + + ax1.plot( + [2030], + [0.45 * emissions[1990]], + marker="*", + markersize=12, + markerfacecolor="white", + markeredgecolor="black", + ) + + ax1.plot( + [2030], + [0.6 * emissions[1990]], + marker="*", + markersize=12, + markerfacecolor="black", + markeredgecolor="black", + ) + + ax1.plot( + [2050, 2050], + [x * emissions[1990] for x in [0.2, 0.05]], + color="gray", + linewidth=2, + marker="_", + alpha=0.5, + ) + + ax1.plot( + [2050], + [0.01 * emissions[1990]], + marker="*", + markersize=12, + markerfacecolor="white", + linewidth=0, + markeredgecolor="black", + label="EU under-discussion target", + zorder=10, + clip_on=False, + ) + + ax1.plot( + [2050], + [0.125 * emissions[1990]], + "ro", + marker="*", + markersize=12, + markerfacecolor="black", + markeredgecolor="black", + label="EU committed target", + ) + + ax1.legend( + fancybox=True, fontsize=18, loc=(0.01, 0.01), facecolor="white", frameon=True + ) + + path_cb_plot = "results/" + snakemake.params.RDIR + "/graphs/" + plt.savefig(path_cb_plot + "carbon_budget_plot.pdf", dpi=300) if __name__ == "__main__": - if 'snakemake' not in globals(): + if "snakemake" not in globals(): from _helpers import mock_snakemake - snakemake = mock_snakemake('plot_summary', summary='energy', network='elec', - simpl='', clusters=5, ll='copt', opts='Co2L-24H', - attr='', ext='png', country='all') - configure_logging(snakemake) - paths, config, wildcards, logs, out = retrieve_snakemake_keys(snakemake) + snakemake = mock_snakemake("plot_summary") - summary = wildcards.summary - try: - func = globals()[f"plot_{summary}"] - except KeyError: - raise RuntimeError(f"plotting function for {summary} has not been defined") + logging.basicConfig(level=snakemake.config["logging"]["level"]) - func(os.path.join(paths[0], f"{summary}.csv"), config, out[0]) + n_header = 4 + + plot_costs() + + plot_energy() + + plot_balances() + + for sector_opts in snakemake.config["scenario"]["sector_opts"]: + opts = sector_opts.split("-") + for o in opts: + if "cb" in o: + plot_carbon_budget_distribution(snakemake.input.eurostat) diff --git a/scripts/prepare_links_p_nom.py b/scripts/prepare_links_p_nom.py index 6bd4bca4..4b915d22 100644 --- a/scripts/prepare_links_p_nom.py +++ b/scripts/prepare_links_p_nom.py @@ -1,11 +1,13 @@ #!/usr/bin/env python +# -*- coding: utf-8 -*- -# SPDX-FileCopyrightText: : 2017-2020 The PyPSA-Eur Authors +# SPDX-FileCopyrightText: : 2017-2023 The PyPSA-Eur Authors # # SPDX-License-Identifier: MIT - """ -Extracts capacities of HVDC links from `Wikipedia `_. +Extracts capacities of HVDC links from `Wikipedia. + +`_. Relevant Settings ----------------- @@ -16,7 +18,7 @@ Relevant Settings prepare_links_p_nom: .. seealso:: - Documentation of the configuration file ``config.yaml`` at + Documentation of the configuration file ``config/config.yaml`` at :ref:`toplevel_cf` Inputs @@ -33,13 +35,12 @@ Description ----------- *None* - """ import logging -from _helpers import configure_logging, retrieve_snakemake_keys import pandas as pd +from _helpers import configure_logging logger = logging.getLogger(__name__) @@ -49,31 +50,45 @@ def multiply(s): def extract_coordinates(s): - regex = (r"(\d{1,2})°(\d{1,2})′(\d{1,2})″(N|S) " - r"(\d{1,2})°(\d{1,2})′(\d{1,2})″(E|W)") + regex = ( + r"(\d{1,2})°(\d{1,2})′(\d{1,2})″(N|S) " r"(\d{1,2})°(\d{1,2})′(\d{1,2})″(E|W)" + ) e = s.str.extract(regex, expand=True) - lat = (e[0].astype(float) + (e[1].astype(float) + e[2].astype(float)/60.)/60.)*e[3].map({'N': +1., 'S': -1.}) - lon = (e[4].astype(float) + (e[5].astype(float) + e[6].astype(float)/60.)/60.)*e[7].map({'E': +1., 'W': -1.}) + lat = ( + e[0].astype(float) + (e[1].astype(float) + e[2].astype(float) / 60.0) / 60.0 + ) * e[3].map({"N": +1.0, "S": -1.0}) + lon = ( + e[4].astype(float) + (e[5].astype(float) + e[6].astype(float) / 60.0) / 60.0 + ) * e[7].map({"E": +1.0, "W": -1.0}) return lon, lat if __name__ == "__main__": - if 'snakemake' not in globals(): - from _helpers import mock_snakemake #rule must be enabled in config - snakemake = mock_snakemake('prepare_links_p_nom', simpl='', network='elec') + if "snakemake" not in globals(): + from _helpers import mock_snakemake # rule must be enabled in config + + snakemake = mock_snakemake("prepare_links_p_nom", simpl="") configure_logging(snakemake) - paths, config, wildcards, logs, out = retrieve_snakemake_keys(snakemake) - - links_p_nom = pd.read_html('https://en.wikipedia.org/wiki/List_of_HVDC_projects', header=0, match="SwePol")[0] + links_p_nom = pd.read_html( + "https://en.wikipedia.org/wiki/List_of_HVDC_projects", header=0, match="SwePol" + )[0] mw = "Power (MW)" - m_b = links_p_nom[mw].str.contains('x').fillna(False) + m_b = links_p_nom[mw].str.contains("x").fillna(False) - links_p_nom.loc[m_b, mw] = links_p_nom.loc[m_b, mw].str.split('x').pipe(multiply) - links_p_nom[mw] = links_p_nom[mw].str.extract("[-/]?([\d.]+)", expand=False).astype(float) + links_p_nom.loc[m_b, mw] = links_p_nom.loc[m_b, mw].str.split("x").pipe(multiply) + links_p_nom[mw] = ( + links_p_nom[mw].str.extract("[-/]?([\d.]+)", expand=False).astype(float) + ) - links_p_nom['x1'], links_p_nom['y1'] = extract_coordinates(links_p_nom['Converterstation 1']) - links_p_nom['x2'], links_p_nom['y2'] = extract_coordinates(links_p_nom['Converterstation 2']) + links_p_nom["x1"], links_p_nom["y1"] = extract_coordinates( + links_p_nom["Converterstation 1"] + ) + links_p_nom["x2"], links_p_nom["y2"] = extract_coordinates( + links_p_nom["Converterstation 2"] + ) - links_p_nom.dropna(subset=['x1', 'y1', 'x2', 'y2']).to_csv(out[0], index=False) + links_p_nom.dropna(subset=["x1", "y1", "x2", "y2"]).to_csv( + snakemake.output[0], index=False + ) diff --git a/scripts/prepare_network.py b/scripts/prepare_network.py index 5cef1afd..14a003ae 100755 --- a/scripts/prepare_network.py +++ b/scripts/prepare_network.py @@ -1,10 +1,12 @@ -# SPDX-FileCopyrightText: : 2017-2020 The PyPSA-Eur Authors +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2017-2023 The PyPSA-Eur Authors # # SPDX-License-Identifier: MIT # coding: utf-8 """ -Prepare PyPSA network for solving according to :ref:`opts` and :ref:`ll`, such as +Prepare PyPSA network for solving according to :ref:`opts` and :ref:`ll`, such +as. - adding an annual **limit** of carbon-dioxide emissions, - adding an exogenous **price** per tonne emissions of carbon-dioxide (or other kinds), @@ -20,9 +22,10 @@ Relevant Settings .. code:: yaml costs: + year: + version: + fill_values: emission_prices: - USD2013_to_EUR2013: - discountrate: marginal_cost: capital_cost: @@ -31,13 +34,13 @@ Relevant Settings max_hours: .. seealso:: - Documentation of the configuration file ``config.yaml`` at + Documentation of the configuration file ``config/config.yaml`` at :ref:`costs_cf`, :ref:`electricity_cf` Inputs ------ -- ``data/costs.csv``: The database of cost assumptions for all included technologies for specific years from various sources; e.g. discount rate, lifetime, investment (CAPEX), fixed operation and maintenance (FOM), variable operation and maintenance (VOM), fuel costs, efficiency, carbon-dioxide intensity. +- ``resources/costs.csv``: The database of cost assumptions for all included technologies for specific years from various sources; e.g. discount rate, lifetime, investment (CAPEX), fixed operation and maintenance (FOM), variable operation and maintenance (VOM), fuel costs, efficiency, carbon-dioxide intensity. - ``networks/elec_s{simpl}_{clusters}.nc``: confer :ref:`cluster` Outputs @@ -49,20 +52,18 @@ Description ----------- .. tip:: - The rule :mod:`prepare_all_networks` runs + The rule :mod:`prepare_elec_networks` runs for all ``scenario`` s in the configuration file the rule :mod:`prepare_network`. - """ import logging -from _helpers import configure_logging - import re -import pypsa + import numpy as np import pandas as pd - +import pypsa +from _helpers import configure_logging from add_electricity import load_costs, update_transmission_costs idx = pd.IndexSlice @@ -70,55 +71,84 @@ idx = pd.IndexSlice logger = logging.getLogger(__name__) -def add_co2limit(n, co2limit, Nyears=1.): - - n.add("GlobalConstraint", "CO2Limit", - carrier_attribute="co2_emissions", sense="<=", - constant=co2limit * Nyears) +def add_co2limit(n, co2limit, Nyears=1.0): + n.add( + "GlobalConstraint", + "CO2Limit", + carrier_attribute="co2_emissions", + sense="<=", + constant=co2limit * Nyears, + ) -def add_emission_prices(n, emission_prices={'co2': 0.}, exclude_co2=False): - if exclude_co2: emission_prices.pop('co2') - ep = (pd.Series(emission_prices).rename(lambda x: x+'_emissions') * - n.carriers.filter(like='_emissions')).sum(axis=1) +def add_gaslimit(n, gaslimit, Nyears=1.0): + sel = n.carriers.index.intersection(["OCGT", "CCGT", "CHP"]) + n.carriers.loc[sel, "gas_usage"] = 1.0 + + n.add( + "GlobalConstraint", + "GasLimit", + carrier_attribute="gas_usage", + sense="<=", + constant=gaslimit * Nyears, + ) + + +def add_emission_prices(n, emission_prices={"co2": 0.0}, exclude_co2=False): + if exclude_co2: + emission_prices.pop("co2") + ep = ( + pd.Series(emission_prices).rename(lambda x: x + "_emissions") + * n.carriers.filter(like="_emissions") + ).sum(axis=1) gen_ep = n.generators.carrier.map(ep) / n.generators.efficiency - n.generators['marginal_cost'] += gen_ep + n.generators["marginal_cost"] += gen_ep su_ep = n.storage_units.carrier.map(ep) / n.storage_units.efficiency_dispatch - n.storage_units['marginal_cost'] += su_ep + n.storage_units["marginal_cost"] += su_ep -def set_line_s_max_pu(n, s_max_pu = 0.7): - n.lines['s_max_pu'] = s_max_pu +def set_line_s_max_pu(n, s_max_pu=0.7): + n.lines["s_max_pu"] = s_max_pu logger.info(f"N-1 security margin of lines set to {s_max_pu}") def set_transmission_limit(n, ll_type, factor, costs, Nyears=1): - links_dc_b = n.links.carrier == 'DC' if not n.links.empty else pd.Series() + links_dc_b = n.links.carrier == "DC" if not n.links.empty else pd.Series() - _lines_s_nom = (np.sqrt(3) * n.lines.type.map(n.line_types.i_nom) * - n.lines.num_parallel * n.lines.bus0.map(n.buses.v_nom)) - lines_s_nom = n.lines.s_nom.where(n.lines.type == '', _lines_s_nom) + _lines_s_nom = ( + np.sqrt(3) + * n.lines.type.map(n.line_types.i_nom) + * n.lines.num_parallel + * n.lines.bus0.map(n.buses.v_nom) + ) + lines_s_nom = n.lines.s_nom.where(n.lines.type == "", _lines_s_nom) + col = "capital_cost" if ll_type == "c" else "length" + ref = ( + lines_s_nom @ n.lines[col] + + n.links.loc[links_dc_b, "p_nom"] @ n.links.loc[links_dc_b, col] + ) - col = 'capital_cost' if ll_type == 'c' else 'length' - ref = (lines_s_nom @ n.lines[col] + - n.links.loc[links_dc_b, "p_nom"] @ n.links.loc[links_dc_b, col]) + update_transmission_costs(n, costs) - update_transmission_costs(n, costs, simple_hvdc_costs=False) + if factor == "opt" or float(factor) > 1.0: + n.lines["s_nom_min"] = lines_s_nom + n.lines["s_nom_extendable"] = True - if factor == 'opt' or float(factor) > 1.0: - n.lines['s_nom_min'] = lines_s_nom - n.lines['s_nom_extendable'] = True + n.links.loc[links_dc_b, "p_nom_min"] = n.links.loc[links_dc_b, "p_nom"] + n.links.loc[links_dc_b, "p_nom_extendable"] = True - n.links.loc[links_dc_b, 'p_nom_min'] = n.links.loc[links_dc_b, 'p_nom'] - n.links.loc[links_dc_b, 'p_nom_extendable'] = True - - if factor != 'opt': - con_type = 'expansion_cost' if ll_type == 'c' else 'volume_expansion' + if factor != "opt": + con_type = "expansion_cost" if ll_type == "c" else "volume_expansion" rhs = float(factor) * ref - n.add('GlobalConstraint', f'l{ll_type}_limit', - type=f'transmission_{con_type}_limit', - sense='<=', constant=rhs, carrier_attribute='AC, DC') + n.add( + "GlobalConstraint", + f"l{ll_type}_limit", + type=f"transmission_{con_type}_limit", + sense="<=", + constant=rhs, + carrier_attribute="AC, DC", + ) return n @@ -132,7 +162,7 @@ def average_every_nhours(n, offset): m.snapshot_weightings = snapshot_weightings for c in n.iterate_components(): - pnl = getattr(m, c.list_name+"_t") + pnl = getattr(m, c.list_name + "_t") for k, df in c.pnl.items(): if not df.empty: pnl[k] = df.resample(offset).mean() @@ -145,23 +175,29 @@ def apply_time_segmentation(n, segments, solver_name="cbc"): try: import tsam.timeseriesaggregation as tsam except: - raise ModuleNotFoundError("Optional dependency 'tsam' not found." - "Install via 'pip install tsam'") + raise ModuleNotFoundError( + "Optional dependency 'tsam' not found." "Install via 'pip install tsam'" + ) p_max_pu_norm = n.generators_t.p_max_pu.max() p_max_pu = n.generators_t.p_max_pu / p_max_pu_norm load_norm = n.loads_t.p_set.max() load = n.loads_t.p_set / load_norm - + inflow_norm = n.storage_units_t.inflow.max() inflow = n.storage_units_t.inflow / inflow_norm raw = pd.concat([p_max_pu, load, inflow], axis=1, sort=False) - agg = tsam.TimeSeriesAggregation(raw, hoursPerPeriod=len(raw), - noTypicalPeriods=1, noSegments=int(segments), - segmentation=True, solver=solver_name) + agg = tsam.TimeSeriesAggregation( + raw, + hoursPerPeriod=len(raw), + noTypicalPeriods=1, + noSegments=int(segments), + segmentation=True, + solver=solver_name, + ) segmented = agg.createTypicalPeriods() @@ -169,9 +205,11 @@ def apply_time_segmentation(n, segments, solver_name="cbc"): offsets = np.insert(np.cumsum(weightings[:-1]), 0, 0) snapshots = [n.snapshots[0] + pd.Timedelta(f"{offset}h") for offset in offsets] - n.set_snapshots(pd.DatetimeIndex(snapshots, name='name')) - n.snapshot_weightings = pd.Series(weightings, index=snapshots, name="weightings", dtype="float64") - + n.set_snapshots(pd.DatetimeIndex(snapshots, name="name")) + n.snapshot_weightings = pd.Series( + weightings, index=snapshots, name="weightings", dtype="float64" + ) + segmented.index = snapshots n.generators_t.p_max_pu = segmented[n.generators_t.p_max_pu.columns] * p_max_pu_norm n.loads_t.p_set = segmented[n.loads_t.p_set.columns] * load_norm @@ -179,49 +217,57 @@ def apply_time_segmentation(n, segments, solver_name="cbc"): return n + def enforce_autarky(n, only_crossborder=False): if only_crossborder: lines_rm = n.lines.loc[ - n.lines.bus0.map(n.buses.country) != - n.lines.bus1.map(n.buses.country) - ].index + n.lines.bus0.map(n.buses.country) != n.lines.bus1.map(n.buses.country) + ].index links_rm = n.links.loc[ - n.links.bus0.map(n.buses.country) != - n.links.bus1.map(n.buses.country) - ].index + n.links.bus0.map(n.buses.country) != n.links.bus1.map(n.buses.country) + ].index else: lines_rm = n.lines.index - links_rm = n.links.loc[n.links.carrier=="DC"].index + links_rm = n.links.loc[n.links.carrier == "DC"].index n.mremove("Line", lines_rm) n.mremove("Link", links_rm) + def set_line_nom_max(n, s_nom_max_set=np.inf, p_nom_max_set=np.inf): n.lines.s_nom_max.clip(upper=s_nom_max_set, inplace=True) n.links.p_nom_max.clip(upper=p_nom_max_set, inplace=True) + if __name__ == "__main__": - if 'snakemake' not in globals(): + if "snakemake" not in globals(): from _helpers import mock_snakemake - snakemake = mock_snakemake('prepare_network', network='elec', simpl='', - clusters='40', ll='v1.0', opts='Co2L-4H') + + snakemake = mock_snakemake( + "prepare_network", simpl="", clusters="40", ll="v0.3", opts="Co2L-24H" + ) configure_logging(snakemake) - opts = snakemake.wildcards.opts.split('-') + opts = snakemake.wildcards.opts.split("-") n = pypsa.Network(snakemake.input[0]) - Nyears = n.snapshot_weightings.objective.sum() / 8760. - costs = load_costs(snakemake.input.tech_costs, snakemake.config['costs'], snakemake.config['electricity'], Nyears) + Nyears = n.snapshot_weightings.objective.sum() / 8760.0 + costs = load_costs( + snakemake.input.tech_costs, + snakemake.config["costs"], + snakemake.config["electricity"], + Nyears, + ) - set_line_s_max_pu(n, snakemake.config['lines']['s_max_pu']) + set_line_s_max_pu(n, snakemake.config["lines"]["s_max_pu"]) for o in opts: - m = re.match(r'^\d+h$', o, re.IGNORECASE) + m = re.match(r"^\d+h$", o, re.IGNORECASE) if m is not None: n = average_every_nhours(n, m.group(0)) break for o in opts: - m = re.match(r'^\d+seg$', o, re.IGNORECASE) + m = re.match(r"^\d+seg$", o, re.IGNORECASE) if m is not None: solver_name = snakemake.config["solving"]["solver"]["name"] n = apply_time_segmentation(n, m.group(0)[:-3], solver_name) @@ -231,10 +277,24 @@ if __name__ == "__main__": if "Co2L" in o: m = re.findall("[0-9]*\.?[0-9]+$", o) if len(m) > 0: - co2limit = float(m[0]) * snakemake.config['electricity']['co2base'] + co2limit = float(m[0]) * snakemake.config["electricity"]["co2base"] add_co2limit(n, co2limit, Nyears) + logger.info("Setting CO2 limit according to wildcard value.") else: - add_co2limit(n, snakemake.config['electricity']['co2limit'], Nyears) + add_co2limit(n, snakemake.config["electricity"]["co2limit"], Nyears) + logger.info("Setting CO2 limit according to config value.") + break + + for o in opts: + if "CH4L" in o: + m = re.findall("[0-9]*\.?[0-9]+$", o) + if len(m) > 0: + limit = float(m[0]) * 1e6 + add_gaslimit(n, limit, Nyears) + logger.info("Setting gas usage limit according to wildcard value.") + else: + add_gaslimit(n, snakemake.config["electricity"].get("gaslimit"), Nyears) + logger.info("Setting gas usage limit according to config value.") break for o in opts: @@ -243,7 +303,7 @@ if __name__ == "__main__": if oo[0].startswith(tuple(suptechs)): carrier = oo[0] # handles only p_nom_max as stores and lines have no potentials - attr_lookup = {"p": "p_nom_max", "c": "capital_cost"} + attr_lookup = {"p": "p_nom_max", "c": "capital_cost", "m": "marginal_cost"} attr = attr_lookup[oo[1][0]] factor = float(oo[1][1:]) if carrier == "AC": # lines do not have carrier @@ -252,20 +312,32 @@ if __name__ == "__main__": comps = {"Generator", "Link", "StorageUnit", "Store"} for c in n.iterate_components(comps): sel = c.df.carrier.str.contains(carrier) - c.df.loc[sel,attr] *= factor + c.df.loc[sel, attr] *= factor - if 'Ep' in opts: - add_emission_prices(n, snakemake.config['costs']['emission_prices']) + for o in opts: + if "Ep" in o: + m = re.findall("[0-9]*\.?[0-9]+$", o) + if len(m) > 0: + logger.info("Setting emission prices according to wildcard value.") + add_emission_prices(n, dict(co2=float(m[0]))) + else: + logger.info("Setting emission prices according to config value.") + add_emission_prices(n, snakemake.config["costs"]["emission_prices"]) + break ll_type, factor = snakemake.wildcards.ll[0], snakemake.wildcards.ll[1:] set_transmission_limit(n, ll_type, factor, costs, Nyears) - set_line_nom_max(n, s_nom_max_set=snakemake.config["lines"].get("s_nom_max,", np.inf), - p_nom_max_set=snakemake.config["links"].get("p_nom_max,", np.inf)) + set_line_nom_max( + n, + s_nom_max_set=snakemake.config["lines"].get("s_nom_max,", np.inf), + p_nom_max_set=snakemake.config["links"].get("p_nom_max,", np.inf), + ) if "ATK" in opts: enforce_autarky(n) elif "ATKc" in opts: enforce_autarky(n, only_crossborder=True) + n.meta = dict(snakemake.config, **dict(wildcards=dict(snakemake.wildcards))) n.export_to_netcdf(snakemake.output[0]) diff --git a/scripts/prepare_sector_network.py b/scripts/prepare_sector_network.py new file mode 100644 index 00000000..57deb5fd --- /dev/null +++ b/scripts/prepare_sector_network.py @@ -0,0 +1,3428 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2020-2023 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Adds all sector-coupling components to the network, including demand and supply +technologies for the buildings, transport and industry sectors. +""" + +import logging +import os +import re +from itertools import product + +import networkx as nx +import numpy as np +import pandas as pd +import pypsa +import xarray as xr +from _helpers import ( + generate_periodic_profiles, + override_component_attrs, + update_config_with_sector_opts, +) +from add_electricity import calculate_annuity +from build_energy_totals import build_co2_totals, build_eea_co2, build_eurostat_co2 +from networkx.algorithms import complement +from networkx.algorithms.connectivity.edge_augmentation import k_edge_augmentation +from pypsa.geo import haversine_pts +from pypsa.io import import_components_from_dataframe +from scipy.stats import beta + +logger = logging.getLogger(__name__) + +from types import SimpleNamespace + +spatial = SimpleNamespace() + +from packaging.version import Version, parse + +pd_version = parse(pd.__version__) +agg_group_kwargs = dict(numeric_only=False) if pd_version >= Version("1.3") else {} + + +def define_spatial(nodes, options): + """ + Namespace for spatial. + + Parameters + ---------- + nodes : list-like + """ + global spatial + + spatial.nodes = nodes + + # biomass + + spatial.biomass = SimpleNamespace() + + if options.get("biomass_spatial", options["biomass_transport"]): + spatial.biomass.nodes = nodes + " solid biomass" + spatial.biomass.locations = nodes + spatial.biomass.industry = nodes + " solid biomass for industry" + spatial.biomass.industry_cc = nodes + " solid biomass for industry CC" + else: + spatial.biomass.nodes = ["EU solid biomass"] + spatial.biomass.locations = ["EU"] + spatial.biomass.industry = ["solid biomass for industry"] + spatial.biomass.industry_cc = ["solid biomass for industry CC"] + + spatial.biomass.df = pd.DataFrame(vars(spatial.biomass), index=nodes) + + # co2 + + spatial.co2 = SimpleNamespace() + + if options["co2_spatial"]: + spatial.co2.nodes = nodes + " co2 stored" + spatial.co2.locations = nodes + spatial.co2.vents = nodes + " co2 vent" + spatial.co2.process_emissions = nodes + " process emissions" + else: + spatial.co2.nodes = ["co2 stored"] + spatial.co2.locations = ["EU"] + spatial.co2.vents = ["co2 vent"] + spatial.co2.process_emissions = ["process emissions"] + + spatial.co2.df = pd.DataFrame(vars(spatial.co2), index=nodes) + + # gas + + spatial.gas = SimpleNamespace() + + if options["gas_network"]: + spatial.gas.nodes = nodes + " gas" + spatial.gas.locations = nodes + spatial.gas.biogas = nodes + " biogas" + spatial.gas.industry = nodes + " gas for industry" + spatial.gas.industry_cc = nodes + " gas for industry CC" + spatial.gas.biogas_to_gas = nodes + " biogas to gas" + else: + spatial.gas.nodes = ["EU gas"] + spatial.gas.locations = ["EU"] + spatial.gas.biogas = ["EU biogas"] + spatial.gas.industry = ["gas for industry"] + spatial.gas.biogas_to_gas = ["EU biogas to gas"] + if options.get("co2_spatial", options["co2network"]): + spatial.gas.industry_cc = nodes + " gas for industry CC" + else: + spatial.gas.industry_cc = ["gas for industry CC"] + + spatial.gas.df = pd.DataFrame(vars(spatial.gas), index=nodes) + + # ammonia + + if options.get("ammonia"): + spatial.ammonia = SimpleNamespace() + if options.get("ammonia") == "regional": + spatial.ammonia.nodes = nodes + " NH3" + spatial.ammonia.locations = nodes + else: + spatial.ammonia.nodes = ["EU NH3"] + spatial.ammonia.locations = ["EU"] + + spatial.ammonia.df = pd.DataFrame(vars(spatial.ammonia), index=nodes) + + # hydrogen + spatial.h2 = SimpleNamespace() + spatial.h2.nodes = nodes + " H2" + spatial.h2.locations = nodes + + # methanol + spatial.methanol = SimpleNamespace() + spatial.methanol.nodes = ["EU methanol"] + spatial.methanol.locations = ["EU"] + + # oil + spatial.oil = SimpleNamespace() + spatial.oil.nodes = ["EU oil"] + spatial.oil.locations = ["EU"] + + # uranium + spatial.uranium = SimpleNamespace() + spatial.uranium.nodes = ["EU uranium"] + spatial.uranium.locations = ["EU"] + + # coal + spatial.coal = SimpleNamespace() + spatial.coal.nodes = ["EU coal"] + spatial.coal.locations = ["EU"] + + # lignite + spatial.lignite = SimpleNamespace() + spatial.lignite.nodes = ["EU lignite"] + spatial.lignite.locations = ["EU"] + + return spatial + + +from types import SimpleNamespace + +spatial = SimpleNamespace() + + +def emission_sectors_from_opts(opts): + sectors = ["electricity"] + if "T" in opts: + sectors += ["rail non-elec", "road non-elec"] + if "H" in opts: + sectors += ["residential non-elec", "services non-elec"] + if "I" in opts: + sectors += [ + "industrial non-elec", + "industrial processes", + "domestic aviation", + "international aviation", + "domestic navigation", + "international navigation", + ] + if "A" in opts: + sectors += ["agriculture"] + + return sectors + + +def get(item, investment_year=None): + """ + Check whether item depends on investment year. + """ + if isinstance(item, dict): + return item[investment_year] + else: + return item + + +def co2_emissions_year( + countries, input_eurostat, opts, emissions_scope, report_year, year +): + """ + Calculate CO2 emissions in one specific year (e.g. 1990 or 2018). + """ + emissions_scope = snakemake.config["energy"]["emissions"] + eea_co2 = build_eea_co2(snakemake.input.co2, year, emissions_scope) + + # TODO: read Eurostat data from year > 2014 + # this only affects the estimation of CO2 emissions for BA, RS, AL, ME, MK + report_year = snakemake.config["energy"]["eurostat_report_year"] + if year > 2014: + eurostat_co2 = build_eurostat_co2( + input_eurostat, countries, report_year, year=2014 + ) + else: + eurostat_co2 = build_eurostat_co2(input_eurostat, countries, report_year, year) + + co2_totals = build_co2_totals(countries, eea_co2, eurostat_co2) + + sectors = emission_sectors_from_opts(opts) + + co2_emissions = co2_totals.loc[countries, sectors].sum().sum() + + # convert MtCO2 to GtCO2 + co2_emissions *= 0.001 + + return co2_emissions + + +# TODO: move to own rule with sector-opts wildcard? +def build_carbon_budget(o, input_eurostat, fn, emissions_scope, report_year): + """ + Distribute carbon budget following beta or exponential transition path. + """ + # opts? + + if "be" in o: + # beta decay + carbon_budget = float(o[o.find("cb") + 2 : o.find("be")]) + be = float(o[o.find("be") + 2 :]) + if "ex" in o: + # exponential decay + carbon_budget = float(o[o.find("cb") + 2 : o.find("ex")]) + r = float(o[o.find("ex") + 2 :]) + + countries = snakemake.config["countries"] + + e_1990 = co2_emissions_year( + countries, input_eurostat, opts, emissions_scope, report_year, year=1990 + ) + + # emissions at the beginning of the path (last year available 2018) + e_0 = co2_emissions_year( + countries, input_eurostat, opts, emissions_scope, report_year, year=2018 + ) + + planning_horizons = snakemake.config["scenario"]["planning_horizons"] + t_0 = planning_horizons[0] + + if "be" in o: + # final year in the path + t_f = t_0 + (2 * carbon_budget / e_0).round(0) + + def beta_decay(t): + cdf_term = (t - t_0) / (t_f - t_0) + return (e_0 / e_1990) * (1 - beta.cdf(cdf_term, be, be)) + + # emissions (relative to 1990) + co2_cap = pd.Series({t: beta_decay(t) for t in planning_horizons}, name=o) + + if "ex" in o: + T = carbon_budget / e_0 + m = (1 + np.sqrt(1 + r * T)) / T + + def exponential_decay(t): + return (e_0 / e_1990) * (1 + (m + r) * (t - t_0)) * np.exp(-m * (t - t_0)) + + co2_cap = pd.Series( + {t: exponential_decay(t) for t in planning_horizons}, name=o + ) + + # TODO log in Snakefile + csvs_folder = fn.rsplit("/", 1)[0] + if not os.path.exists(csvs_folder): + os.makedirs(csvs_folder) + co2_cap.to_csv(fn, float_format="%.3f") + + +def add_lifetime_wind_solar(n, costs): + """ + Add lifetime for solar and wind generators. + """ + for carrier in ["solar", "onwind", "offwind"]: + gen_i = n.generators.index.str.contains(carrier) + n.generators.loc[gen_i, "lifetime"] = costs.at[carrier, "lifetime"] + + +def haversine(p): + coord0 = n.buses.loc[p.bus0, ["x", "y"]].values + coord1 = n.buses.loc[p.bus1, ["x", "y"]].values + return 1.5 * haversine_pts(coord0, coord1) + + +def create_network_topology( + n, prefix, carriers=["DC"], connector=" -> ", bidirectional=True +): + """ + Create a network topology from transmission lines and link carrier + selection. + + Parameters + ---------- + n : pypsa.Network + prefix : str + carriers : list-like + connector : str + bidirectional : bool, default True + True: one link for each connection + False: one link for each connection and direction (back and forth) + + Returns + ------- + pd.DataFrame with columns bus0, bus1, length, underwater_fraction + """ + + ln_attrs = ["bus0", "bus1", "length"] + lk_attrs = ["bus0", "bus1", "length", "underwater_fraction"] + lk_attrs = n.links.columns.intersection(lk_attrs) + + candidates = pd.concat( + [n.lines[ln_attrs], n.links.loc[n.links.carrier.isin(carriers), lk_attrs]] + ).fillna(0) + + # base network topology purely on location not carrier + candidates["bus0"] = candidates.bus0.map(n.buses.location) + candidates["bus1"] = candidates.bus1.map(n.buses.location) + + positive_order = candidates.bus0 < candidates.bus1 + candidates_p = candidates[positive_order] + swap_buses = {"bus0": "bus1", "bus1": "bus0"} + candidates_n = candidates[~positive_order].rename(columns=swap_buses) + candidates = pd.concat([candidates_p, candidates_n]) + + def make_index(c): + return prefix + c.bus0 + connector + c.bus1 + + topo = candidates.groupby(["bus0", "bus1"], as_index=False).mean() + topo.index = topo.apply(make_index, axis=1) + + if not bidirectional: + topo_reverse = topo.copy() + topo_reverse.rename(columns=swap_buses, inplace=True) + topo_reverse.index = topo_reverse.apply(make_index, axis=1) + topo = pd.concat([topo, topo_reverse]) + + return topo + + +# TODO merge issue with PyPSA-Eur +def update_wind_solar_costs(n, costs): + """ + Update costs for wind and solar generators added with pypsa-eur to those + cost in the planning year. + """ + # NB: solar costs are also manipulated for rooftop + # 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" + ] + + # for offshore wind, need to calculated connection costs + + # assign clustered bus + # map initial network -> simplified network + 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_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 + for connection in ["dc", "ac"]: + tech = "offwind-" + connection + profile = snakemake.input["profile_offwind_" + connection] + with xr.open_dataset(profile) as ds: + underwater_fraction = ds["underwater_fraction"].to_pandas() + connection_cost = ( + snakemake.config["lines"]["length_factor"] + * ds["average_distance"].to_pandas() + * ( + underwater_fraction + * costs.at[tech + "-connection-submarine", "fixed"] + + (1.0 - underwater_fraction) + * costs.at[tech + "-connection-underground", "fixed"] + ) + ) + + # convert to aggregated clusters with weighting + weight = ds["weight"].to_pandas() + + # 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"] + + connection_cost + ) + + logger.info( + "Added connection cost of {:0.0f}-{:0.0f} Eur/MW/a to {}".format( + connection_cost[0].min(), connection_cost[0].max(), tech + ) + ) + + n.generators.loc[ + n.generators.carrier == tech, "capital_cost" + ] = capital_cost.rename(index=lambda node: node + " " + tech) + + +def add_carrier_buses(n, carrier, nodes=None): + """ + Add buses to connect e.g. coal, nuclear and oil plants. + """ + if nodes is None: + nodes = vars(spatial)[carrier].nodes + location = vars(spatial)[carrier].locations + + # skip if carrier already exists + if carrier in n.carriers.index: + return + + if not isinstance(nodes, pd.Index): + nodes = pd.Index(nodes) + + n.add("Carrier", carrier) + + unit = "MWh_LHV" if carrier == "gas" else "MWh_th" + + n.madd("Bus", nodes, location=location, carrier=carrier, unit=unit) + + # capital cost could be corrected to e.g. 0.2 EUR/kWh * annuity and O&M + n.madd( + "Store", + nodes + " Store", + bus=nodes, + e_nom_extendable=True, + e_cyclic=True, + carrier=carrier, + capital_cost=0.2 + * costs.at[carrier, "discount rate"], # preliminary value to avoid zeros + ) + + n.madd( + "Generator", + nodes, + bus=nodes, + p_nom_extendable=True, + carrier=carrier, + marginal_cost=costs.at[carrier, "fuel"], + ) + + +# TODO: PyPSA-Eur merge issue +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. + """ + 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()).symmetric_difference(to_keep) + if to_remove.empty: + continue + logger.info(f"Removing {c.list_name} with carrier {list(to_remove)}") + names = c.df.index[c.df.carrier.isin(to_remove)] + n.mremove(c.name, names) + n.carriers.drop(to_remove, inplace=True, errors="ignore") + + +# TODO: PyPSA-Eur merge issue +def remove_non_electric_buses(n): + """ + Remove buses from pypsa-eur with carriers which are not AC buses. + """ + to_drop = list(n.buses.query("carrier not in ['AC', 'DC']").carrier.unique()) + if to_drop: + logger.info(f"Drop buses from PyPSA-Eur with carrier: {to_drop}") + n.buses = n.buses[n.buses.carrier.isin(["AC", "DC"])] + + +def patch_electricity_network(n): + remove_elec_base_techs(n) + remove_non_electric_buses(n) + update_wind_solar_costs(n, costs) + n.loads["carrier"] = "electricity" + n.buses["location"] = n.buses.index + n.buses["unit"] = "MWh_el" + # remove trailing white space of load index until new PyPSA version after v0.18. + n.loads.rename(lambda x: x.strip(), inplace=True) + n.loads_t.p_set.rename(lambda x: x.strip(), axis=1, inplace=True) + + +def add_co2_tracking(n, options): + # minus sign because opposite to how fossil fuels used: + # CH4 burning puts CH4 down, atmosphere up + n.add("Carrier", "co2", co2_emissions=-1.0) + + # this tracks CO2 in the atmosphere + n.add("Bus", "co2 atmosphere", location="EU", carrier="co2", unit="t_co2") + + # can also be negative + n.add( + "Store", + "co2 atmosphere", + e_nom_extendable=True, + e_min_pu=-1, + carrier="co2", + bus="co2 atmosphere", + ) + + # this tracks CO2 stored, e.g. underground + n.madd( + "Bus", + spatial.co2.nodes, + location=spatial.co2.locations, + carrier="co2 stored", + unit="t_co2", + ) + + if options["regional_co2_sequestration_potential"]["enable"]: + upper_limit = ( + options["regional_co2_sequestration_potential"]["max_size"] * 1e3 + ) # Mt + annualiser = options["regional_co2_sequestration_potential"]["years_of_storage"] + e_nom_max = pd.read_csv( + snakemake.input.sequestration_potential, index_col=0 + ).squeeze() + e_nom_max = ( + e_nom_max.reindex(spatial.co2.locations) + .fillna(0.0) + .clip(upper=upper_limit) + .mul(1e6) + / annualiser + ) # t + e_nom_max = e_nom_max.rename(index=lambda x: x + " co2 stored") + else: + e_nom_max = np.inf + + n.madd( + "Store", + spatial.co2.nodes, + e_nom_extendable=True, + e_nom_max=e_nom_max, + capital_cost=options["co2_sequestration_cost"], + carrier="co2 stored", + bus=spatial.co2.nodes, + ) + + n.add("Carrier", "co2 stored") + + if options["co2_vent"]: + n.madd( + "Link", + spatial.co2.vents, + bus0=spatial.co2.nodes, + bus1="co2 atmosphere", + carrier="co2 vent", + efficiency=1.0, + p_nom_extendable=True, + ) + + +def add_co2_network(n, costs): + logger.info("Adding CO2 network.") + co2_links = create_network_topology(n, "CO2 pipeline ") + + cost_onshore = ( + (1 - co2_links.underwater_fraction) + * costs.at["CO2 pipeline", "fixed"] + * co2_links.length + ) + cost_submarine = ( + co2_links.underwater_fraction + * costs.at["CO2 submarine pipeline", "fixed"] + * co2_links.length + ) + capital_cost = cost_onshore + cost_submarine + + n.madd( + "Link", + co2_links.index, + bus0=co2_links.bus0.values + " co2 stored", + bus1=co2_links.bus1.values + " co2 stored", + p_min_pu=-1, + p_nom_extendable=True, + length=co2_links.length.values, + capital_cost=capital_cost.values, + carrier="CO2 pipeline", + lifetime=costs.at["CO2 pipeline", "lifetime"], + ) + + +def add_allam(n, costs): + logger.info("Adding Allam cycle gas power plants.") + + nodes = pop_layout.index + + n.madd( + "Link", + nodes, + suffix=" allam", + bus0=spatial.gas.df.loc[nodes, "nodes"].values, + bus1=nodes, + bus2=spatial.co2.df.loc[nodes, "nodes"].values, + carrier="allam", + p_nom_extendable=True, + # TODO: add costs to technology-data + capital_cost=0.6 * 1.5e6 * 0.1, # efficiency * EUR/MW * annuity + marginal_cost=2, + efficiency=0.6, + efficiency2=costs.at["gas", "CO2 intensity"], + lifetime=30.0, + ) + + +def add_dac(n, costs): + heat_carriers = ["urban central heat", "services urban decentral heat"] + heat_buses = n.buses.index[n.buses.carrier.isin(heat_carriers)] + locations = n.buses.location[heat_buses] + + 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"] + ) + + n.madd( + "Link", + heat_buses.str.replace(" heat", " DAC"), + bus0="co2 atmosphere", + bus1=spatial.co2.df.loc[locations, "nodes"].values, + bus2=locations.values, + bus3=heat_buses, + carrier="DAC", + capital_cost=costs.at["direct air capture", "fixed"], + efficiency=1.0, + efficiency2=efficiency2, + efficiency3=efficiency3, + p_nom_extendable=True, + lifetime=costs.at["direct air capture", "lifetime"], + ) + + +def add_co2limit(n, nyears=1.0, limit=0.0): + logger.info(f"Adding CO2 budget limit as per unit of 1990 levels of {limit}") + + countries = snakemake.config["countries"] + + sectors = emission_sectors_from_opts(opts) + + # convert Mt to tCO2 + co2_totals = 1e6 * pd.read_csv(snakemake.input.co2_totals_name, index_col=0) + + co2_limit = co2_totals.loc[countries, sectors].sum().sum() + + co2_limit *= limit * nyears + + n.add( + "GlobalConstraint", + "CO2Limit", + carrier_attribute="co2_emissions", + sense="<=", + constant=co2_limit, + ) + + +# TODO PyPSA-Eur merge issue +def average_every_nhours(n, offset): + logger.info(f"Resampling the network to {offset}") + m = n.copy(with_time=False) + + snapshot_weightings = n.snapshot_weightings.resample(offset).sum() + m.set_snapshots(snapshot_weightings.index) + m.snapshot_weightings = snapshot_weightings + + for c in n.iterate_components(): + pnl = getattr(m, c.list_name + "_t") + for k, df in c.pnl.items(): + if not df.empty: + if c.list_name == "stores" and k == "e_max_pu": + pnl[k] = df.resample(offset).min() + elif c.list_name == "stores" and k == "e_min_pu": + pnl[k] = df.resample(offset).max() + else: + pnl[k] = df.resample(offset).mean() + + return m + + +def cycling_shift(df, steps=1): + """ + Cyclic shift on index of pd.Series|pd.DataFrame by number of steps. + """ + df = df.copy() + new_index = np.roll(df.index, steps) + df.values[:] = df.reindex(index=new_index).values + return df + + +def prepare_costs(cost_file, config, nyears): + # set all asset costs and other parameters + costs = pd.read_csv(cost_file, index_col=[0, 1]).sort_index() + + # correct units to MW and EUR + costs.loc[costs.unit.str.contains("/kW"), "value"] *= 1e3 + + # min_count=1 is important to generate NaNs which are then filled by fillna + costs = ( + costs.loc[:, "value"].unstack(level=1).groupby("technology").sum(min_count=1) + ) + + costs = costs.fillna(config["fill_values"]) + + def annuity_factor(v): + return calculate_annuity(v["lifetime"], v["discount rate"]) + v["FOM"] / 100 + + costs["fixed"] = [ + annuity_factor(v) * v["investment"] * nyears for i, v in costs.iterrows() + ] + + return costs + + +def add_generation(n, costs): + logger.info("Adding electricity generation") + + nodes = pop_layout.index + + fallback = {"OCGT": "gas"} + conventionals = options.get("conventional_generation", fallback) + + for generator, carrier in conventionals.items(): + carrier_nodes = vars(spatial)[carrier].nodes + + add_carrier_buses(n, carrier, carrier_nodes) + + n.madd( + "Link", + nodes + " " + generator, + bus0=carrier_nodes, + bus1=nodes, + bus2="co2 atmosphere", + marginal_cost=costs.at[generator, "efficiency"] + * costs.at[generator, "VOM"], # NB: VOM is per MWel + capital_cost=costs.at[generator, "efficiency"] + * costs.at[generator, "fixed"], # NB: fixed cost is per MWel + p_nom_extendable=True, + carrier=generator, + efficiency=costs.at[generator, "efficiency"], + efficiency2=costs.at[carrier, "CO2 intensity"], + lifetime=costs.at[generator, "lifetime"], + ) + + +def add_ammonia(n, costs): + logger.info("Adding ammonia carrier with synthesis, cracking and storage") + + nodes = pop_layout.index + + cf_industry = snakemake.config["industry"] + + n.add("Carrier", "NH3") + + n.madd( + "Bus", spatial.ammonia.nodes, location=spatial.ammonia.locations, carrier="NH3" + ) + + n.madd( + "Link", + nodes, + suffix=" Haber-Bosch", + bus0=nodes, + bus1=spatial.ammonia.nodes, + bus2=nodes + " H2", + p_nom_extendable=True, + carrier="Haber-Bosch", + efficiency=1 + / ( + cf_industry["MWh_elec_per_tNH3_electrolysis"] + / cf_industry["MWh_NH3_per_tNH3"] + ), # output: MW_NH3 per MW_elec + efficiency2=-cf_industry["MWh_H2_per_tNH3_electrolysis"] + / cf_industry["MWh_elec_per_tNH3_electrolysis"], # input: MW_H2 per MW_elec + capital_cost=costs.at["Haber-Bosch", "fixed"], + lifetime=costs.at["Haber-Bosch", "lifetime"], + ) + + n.madd( + "Link", + nodes, + suffix=" ammonia cracker", + bus0=spatial.ammonia.nodes, + bus1=nodes + " H2", + p_nom_extendable=True, + carrier="ammonia cracker", + efficiency=1 / cf_industry["MWh_NH3_per_MWh_H2_cracker"], + capital_cost=costs.at["Ammonia cracker", "fixed"] + / cf_industry["MWh_NH3_per_MWh_H2_cracker"], # given per MW_H2 + lifetime=costs.at["Ammonia cracker", "lifetime"], + ) + + # Ammonia Storage + n.madd( + "Store", + spatial.ammonia.nodes, + suffix=" ammonia store", + bus=spatial.ammonia.nodes, + e_nom_extendable=True, + e_cyclic=True, + carrier="ammonia store", + capital_cost=costs.at["NH3 (l) storage tank incl. liquefaction", "fixed"], + lifetime=costs.at["NH3 (l) storage tank incl. liquefaction", "lifetime"], + ) + + +def add_wave(n, wave_cost_factor): + # TODO: handle in Snakefile + wave_fn = "data/WindWaveWEC_GLTB.xlsx" + + # in kW + capacity = pd.Series({"Attenuator": 750, "F2HB": 1000, "MultiPA": 600}) + + # in EUR/MW + annuity_factor = calculate_annuity(25, 0.07) + 0.03 + costs = ( + 1e6 + * wave_cost_factor + * annuity_factor + * pd.Series({"Attenuator": 2.5, "F2HB": 2, "MultiPA": 1.5}) + ) + + sheets = pd.read_excel( + wave_fn, + sheet_name=["FirthForth", "Hebrides"], + usecols=["Attenuator", "F2HB", "MultiPA"], + index_col=0, + skiprows=[0], + parse_dates=True, + ) + + wave = pd.concat( + [sheets[l].divide(capacity, axis=1) for l in locations], keys=locations, axis=1 + ) + + for wave_type in costs.index: + n.add( + "Generator", + "Hebrides " + wave_type, + bus="GB4 0", # TODO this location is hardcoded + p_nom_extendable=True, + carrier="wave", + capital_cost=costs[wave_type], + p_max_pu=wave["Hebrides", wave_type], + ) + + +def insert_electricity_distribution_grid(n, costs): + # TODO pop_layout? + # TODO options? + + cost_factor = options["electricity_distribution_grid_cost_factor"] + + logger.info( + f"Inserting electricity distribution grid with investment cost factor of {cost_factor:.2f}" + ) + + nodes = pop_layout.index + + n.madd( + "Bus", + nodes + " low voltage", + location=nodes, + carrier="low voltage", + unit="MWh_el", + ) + + n.madd( + "Link", + nodes + " electricity distribution grid", + bus0=nodes, + bus1=nodes + " low voltage", + p_nom_extendable=True, + p_min_pu=-1, + carrier="electricity distribution grid", + efficiency=1, + lifetime=costs.at["electricity distribution grid", "lifetime"], + capital_cost=costs.at["electricity distribution grid", "fixed"] * cost_factor, + ) + + # this catches regular electricity load and "industry electricity" and + # "agriculture machinery electric" and "agriculture electricity" + loads = n.loads.index[n.loads.carrier.str.contains("electric")] + n.loads.loc[loads, "bus"] += " low voltage" + + bevs = n.links.index[n.links.carrier == "BEV charger"] + n.links.loc[bevs, "bus0"] += " low voltage" + + v2gs = n.links.index[n.links.carrier == "V2G"] + n.links.loc[v2gs, "bus1"] += " low voltage" + + hps = n.links.index[n.links.carrier.str.contains("heat pump")] + n.links.loc[hps, "bus0"] += " low voltage" + + rh = n.links.index[n.links.carrier.str.contains("resistive heater")] + n.links.loc[rh, "bus0"] += " low voltage" + + mchp = n.links.index[n.links.carrier.str.contains("micro gas")] + n.links.loc[mchp, "bus1"] += " low voltage" + + # set existing solar to cost of utility cost rather the 50-50 rooftop-utility + solar = n.generators.index[n.generators.carrier == "solar"] + n.generators.loc[solar, "capital_cost"] = costs.at["solar-utility", "fixed"] + if snakemake.wildcards.clusters[-1:] == "m": + simplified_pop_layout = pd.read_csv( + snakemake.input.simplified_pop_layout, index_col=0 + ) + pop_solar = simplified_pop_layout.total.rename(index=lambda x: x + " solar") + else: + pop_solar = pop_layout.total.rename(index=lambda x: x + " 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 + + n.madd( + "Generator", + solar, + suffix=" rooftop", + bus=n.generators.loc[solar, "bus"] + " low voltage", + carrier="solar rooftop", + p_nom_extendable=True, + p_nom_max=potential, + marginal_cost=n.generators.loc[solar, "marginal_cost"], + capital_cost=costs.at["solar-rooftop", "fixed"], + efficiency=n.generators.loc[solar, "efficiency"], + p_max_pu=n.generators_t.p_max_pu[solar], + lifetime=costs.at["solar-rooftop", "lifetime"], + ) + + n.add("Carrier", "home battery") + + n.madd( + "Bus", + nodes + " home battery", + location=nodes, + carrier="home battery", + unit="MWh_el", + ) + + n.madd( + "Store", + nodes + " home battery", + bus=nodes + " home battery", + e_cyclic=True, + e_nom_extendable=True, + carrier="home battery", + capital_cost=costs.at["home battery storage", "fixed"], + lifetime=costs.at["battery storage", "lifetime"], + ) + + n.madd( + "Link", + nodes + " home battery charger", + bus0=nodes + " low voltage", + bus1=nodes + " home battery", + carrier="home battery charger", + efficiency=costs.at["battery inverter", "efficiency"] ** 0.5, + capital_cost=costs.at["home battery inverter", "fixed"], + p_nom_extendable=True, + lifetime=costs.at["battery inverter", "lifetime"], + ) + + n.madd( + "Link", + nodes + " home battery discharger", + bus0=nodes + " home battery", + bus1=nodes + " low voltage", + carrier="home battery discharger", + efficiency=costs.at["battery inverter", "efficiency"] ** 0.5, + marginal_cost=options["marginal_cost_storage"], + p_nom_extendable=True, + lifetime=costs.at["battery inverter", "lifetime"], + ) + + +def insert_gas_distribution_costs(n, costs): + # TODO options? + + f_costs = options["gas_distribution_grid_cost_factor"] + + logger.info( + f"Inserting gas distribution grid with investment cost factor of {f_costs}" + ) + + capital_cost = costs.loc["electricity distribution grid"]["fixed"] * f_costs + + # gas boilers + gas_b = n.links.index[ + n.links.carrier.str.contains("gas boiler") + & (~n.links.carrier.str.contains("urban central")) + ] + n.links.loc[gas_b, "capital_cost"] += capital_cost + + # micro CHPs + mchp = n.links.index[n.links.carrier.str.contains("micro gas")] + n.links.loc[mchp, "capital_cost"] += capital_cost + + +def add_electricity_grid_connection(n, costs): + carriers = ["onwind", "solar"] + + gens = n.generators.index[n.generators.carrier.isin(carriers)] + + n.generators.loc[gens, "capital_cost"] += costs.at[ + "electricity grid connection", "fixed" + ] + + +def add_storage_and_grids(n, costs): + logger.info("Add hydrogen storage") + + nodes = pop_layout.index + + n.add("Carrier", "H2") + + n.madd("Bus", nodes + " H2", location=nodes, carrier="H2", unit="MWh_LHV") + + n.madd( + "Link", + nodes + " H2 Electrolysis", + bus1=nodes + " H2", + bus0=nodes, + p_nom_extendable=True, + carrier="H2 Electrolysis", + efficiency=costs.at["electrolysis", "efficiency"], + capital_cost=costs.at["electrolysis", "fixed"], + lifetime=costs.at["electrolysis", "lifetime"], + ) + + if options["hydrogen_fuel_cell"]: + logger.info("Adding hydrogen fuel cell for re-electrification.") + + n.madd( + "Link", + nodes + " H2 Fuel Cell", + bus0=nodes + " H2", + bus1=nodes, + p_nom_extendable=True, + carrier="H2 Fuel Cell", + efficiency=costs.at["fuel cell", "efficiency"], + capital_cost=costs.at["fuel cell", "fixed"] + * costs.at["fuel cell", "efficiency"], # NB: fixed cost is per MWel + lifetime=costs.at["fuel cell", "lifetime"], + ) + + if options["hydrogen_turbine"]: + logger.info( + "Adding hydrogen turbine for re-electrification. Assuming OCGT technology costs." + ) + # TODO: perhaps replace with hydrogen-specific technology assumptions. + + n.madd( + "Link", + nodes + " H2 turbine", + bus0=nodes + " H2", + bus1=nodes, + p_nom_extendable=True, + carrier="H2 turbine", + efficiency=costs.at["OCGT", "efficiency"], + capital_cost=costs.at["OCGT", "fixed"] + * costs.at["OCGT", "efficiency"], # NB: fixed cost is per MWel + lifetime=costs.at["OCGT", "lifetime"], + ) + + cavern_types = snakemake.config["sector"]["hydrogen_underground_storage_locations"] + h2_caverns = pd.read_csv(snakemake.input.h2_cavern, index_col=0) + + if ( + not h2_caverns.empty + and options["hydrogen_underground_storage"] + and set(cavern_types).intersection(h2_caverns.columns) + ): + h2_caverns = h2_caverns[cavern_types].sum(axis=1) + + # only use sites with at least 2 TWh potential + h2_caverns = h2_caverns[h2_caverns > 2] + + # convert TWh to MWh + h2_caverns = h2_caverns * 1e6 + + # clip at 1000 TWh for one location + h2_caverns.clip(upper=1e9, inplace=True) + + logger.info("Add hydrogen underground storage") + + h2_capital_cost = costs.at["hydrogen storage underground", "fixed"] + + n.madd( + "Store", + h2_caverns.index + " H2 Store", + bus=h2_caverns.index + " H2", + e_nom_extendable=True, + e_nom_max=h2_caverns.values, + e_cyclic=True, + carrier="H2 Store", + capital_cost=h2_capital_cost, + lifetime=costs.at["hydrogen storage underground", "lifetime"], + ) + + # hydrogen stored overground (where not already underground) + h2_capital_cost = costs.at[ + "hydrogen storage tank type 1 including compressor", "fixed" + ] + nodes_overground = h2_caverns.index.symmetric_difference(nodes) + + n.madd( + "Store", + nodes_overground + " H2 Store", + bus=nodes_overground + " H2", + e_nom_extendable=True, + e_cyclic=True, + carrier="H2 Store", + capital_cost=h2_capital_cost, + ) + + if options["gas_network"] or options["H2_retrofit"]: + fn = snakemake.input.clustered_gas_network + gas_pipes = pd.read_csv(fn, index_col=0) + + if options["gas_network"]: + logger.info( + "Add natural gas infrastructure, incl. LNG terminals, production and entry-points." + ) + + if options["H2_retrofit"]: + gas_pipes["p_nom_max"] = gas_pipes.p_nom + gas_pipes["p_nom_min"] = 0.0 + # 0.1 EUR/MWkm/a to prefer decommissioning to address degeneracy + gas_pipes["capital_cost"] = 0.1 * gas_pipes.length + else: + gas_pipes["p_nom_max"] = np.inf + gas_pipes["p_nom_min"] = gas_pipes.p_nom + gas_pipes["capital_cost"] = ( + gas_pipes.length * costs.at["CH4 (g) pipeline", "fixed"] + ) + + n.madd( + "Link", + gas_pipes.index, + bus0=gas_pipes.bus0 + " gas", + bus1=gas_pipes.bus1 + " gas", + p_min_pu=gas_pipes.p_min_pu, + p_nom=gas_pipes.p_nom, + p_nom_extendable=True, + p_nom_max=gas_pipes.p_nom_max, + p_nom_min=gas_pipes.p_nom_min, + length=gas_pipes.length, + capital_cost=gas_pipes.capital_cost, + tags=gas_pipes.name, + carrier="gas pipeline", + lifetime=costs.at["CH4 (g) pipeline", "lifetime"], + ) + + # remove fossil generators where there is neither + # production, LNG terminal, nor entry-point beyond system scope + + fn = snakemake.input.gas_input_nodes_simplified + gas_input_nodes = pd.read_csv(fn, index_col=0) + + unique = gas_input_nodes.index.unique() + gas_i = n.generators.carrier == "gas" + internal_i = ~n.generators.bus.map(n.buses.location).isin(unique) + + remove_i = n.generators[gas_i & internal_i].index + n.generators.drop(remove_i, inplace=True) + + p_nom = gas_input_nodes.sum(axis=1).rename(lambda x: x + " gas") + n.generators.loc[gas_i, "p_nom_extendable"] = False + n.generators.loc[gas_i, "p_nom"] = p_nom + + # add candidates for new gas pipelines to achieve full connectivity + + G = nx.Graph() + + gas_buses = n.buses.loc[n.buses.carrier == "gas", "location"] + G.add_nodes_from(np.unique(gas_buses.values)) + + sel = gas_pipes.p_nom > 1500 + attrs = ["bus0", "bus1", "length"] + G.add_weighted_edges_from(gas_pipes.loc[sel, attrs].values) + + # find all complement edges + complement_edges = pd.DataFrame(complement(G).edges, columns=["bus0", "bus1"]) + complement_edges["length"] = complement_edges.apply(haversine, axis=1) + + # apply k_edge_augmentation weighted by length of complement edges + k_edge = options.get("gas_network_connectivity_upgrade", 3) + augmentation = list( + k_edge_augmentation(G, k_edge, avail=complement_edges.values) + ) + + if augmentation: + new_gas_pipes = pd.DataFrame(augmentation, columns=["bus0", "bus1"]) + new_gas_pipes["length"] = new_gas_pipes.apply(haversine, axis=1) + + new_gas_pipes.index = new_gas_pipes.apply( + lambda x: f"gas pipeline new {x.bus0} <-> {x.bus1}", axis=1 + ) + + n.madd( + "Link", + new_gas_pipes.index, + bus0=new_gas_pipes.bus0 + " gas", + bus1=new_gas_pipes.bus1 + " gas", + p_min_pu=-1, # new gas pipes are bidirectional + p_nom_extendable=True, + length=new_gas_pipes.length, + capital_cost=new_gas_pipes.length + * costs.at["CH4 (g) pipeline", "fixed"], + carrier="gas pipeline new", + lifetime=costs.at["CH4 (g) pipeline", "lifetime"], + ) + + if options["H2_retrofit"]: + logger.info("Add retrofitting options of existing CH4 pipes to H2 pipes.") + + fr = "gas pipeline" + to = "H2 pipeline retrofitted" + h2_pipes = gas_pipes.rename(index=lambda x: x.replace(fr, to)) + + n.madd( + "Link", + h2_pipes.index, + bus0=h2_pipes.bus0 + " H2", + bus1=h2_pipes.bus1 + " H2", + p_min_pu=-1.0, # allow that all H2 retrofit pipelines can be used in both directions + p_nom_max=h2_pipes.p_nom * options["H2_retrofit_capacity_per_CH4"], + p_nom_extendable=True, + length=h2_pipes.length, + capital_cost=costs.at["H2 (g) pipeline repurposed", "fixed"] + * h2_pipes.length, + tags=h2_pipes.name, + carrier="H2 pipeline retrofitted", + lifetime=costs.at["H2 (g) pipeline repurposed", "lifetime"], + ) + + if options.get("H2_network", True): + logger.info("Add options for new hydrogen pipelines.") + + h2_pipes = create_network_topology( + n, "H2 pipeline ", carriers=["DC", "gas pipeline"] + ) + + # TODO Add efficiency losses + n.madd( + "Link", + h2_pipes.index, + bus0=h2_pipes.bus0.values + " H2", + bus1=h2_pipes.bus1.values + " H2", + p_min_pu=-1, + p_nom_extendable=True, + length=h2_pipes.length.values, + capital_cost=costs.at["H2 (g) pipeline", "fixed"] * h2_pipes.length.values, + carrier="H2 pipeline", + lifetime=costs.at["H2 (g) pipeline", "lifetime"], + ) + + n.add("Carrier", "battery") + + n.madd("Bus", nodes + " battery", location=nodes, carrier="battery", unit="MWh_el") + + n.madd( + "Store", + nodes + " battery", + bus=nodes + " battery", + e_cyclic=True, + e_nom_extendable=True, + carrier="battery", + capital_cost=costs.at["battery storage", "fixed"], + lifetime=costs.at["battery storage", "lifetime"], + ) + + n.madd( + "Link", + nodes + " battery charger", + bus0=nodes, + bus1=nodes + " battery", + carrier="battery charger", + efficiency=costs.at["battery inverter", "efficiency"] ** 0.5, + capital_cost=costs.at["battery inverter", "fixed"], + p_nom_extendable=True, + lifetime=costs.at["battery inverter", "lifetime"], + ) + + n.madd( + "Link", + nodes + " battery discharger", + bus0=nodes + " battery", + bus1=nodes, + carrier="battery discharger", + efficiency=costs.at["battery inverter", "efficiency"] ** 0.5, + marginal_cost=options["marginal_cost_storage"], + p_nom_extendable=True, + lifetime=costs.at["battery inverter", "lifetime"], + ) + + if options["methanation"]: + n.madd( + "Link", + spatial.nodes, + suffix=" Sabatier", + bus0=nodes + " H2", + bus1=spatial.gas.nodes, + bus2=spatial.co2.nodes, + p_nom_extendable=True, + carrier="Sabatier", + efficiency=costs.at["methanation", "efficiency"], + efficiency2=-costs.at["methanation", "efficiency"] + * costs.at["gas", "CO2 intensity"], + capital_cost=costs.at["methanation", "fixed"] + * costs.at["methanation", "efficiency"], # costs given per kW_gas + lifetime=costs.at["methanation", "lifetime"], + ) + + if options["helmeth"]: + n.madd( + "Link", + spatial.nodes, + suffix=" helmeth", + bus0=nodes, + bus1=spatial.gas.nodes, + bus2=spatial.co2.nodes, + carrier="helmeth", + p_nom_extendable=True, + efficiency=costs.at["helmeth", "efficiency"], + efficiency2=-costs.at["helmeth", "efficiency"] + * costs.at["gas", "CO2 intensity"], + capital_cost=costs.at["helmeth", "fixed"], + lifetime=costs.at["helmeth", "lifetime"], + ) + + if options.get("coal_cc"): + n.madd( + "Link", + spatial.nodes, + suffix=" coal CC", + bus0=spatial.coal.nodes, + bus1=spatial.nodes, + bus2="co2 atmosphere", + bus3=spatial.co2.nodes, + marginal_cost=costs.at["coal", "efficiency"] + * costs.at["coal", "VOM"], # NB: VOM is per MWel + capital_cost=costs.at["coal", "efficiency"] * costs.at["coal", "fixed"] + + costs.at["biomass CHP capture", "fixed"] + * costs.at["coal", "CO2 intensity"], # NB: fixed cost is per MWel + p_nom_extendable=True, + carrier="coal", + efficiency=costs.at["coal", "efficiency"], + efficiency2=costs.at["coal", "CO2 intensity"] + * (1 - costs.at["biomass CHP capture", "capture_rate"]), + efficiency3=costs.at["coal", "CO2 intensity"] + * costs.at["biomass CHP capture", "capture_rate"], + lifetime=costs.at["coal", "lifetime"], + ) + + if options["SMR"]: + n.madd( + "Link", + spatial.nodes, + suffix=" SMR CC", + bus0=spatial.gas.nodes, + bus1=nodes + " H2", + bus2="co2 atmosphere", + bus3=spatial.co2.nodes, + p_nom_extendable=True, + 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"], + ) + + n.madd( + "Link", + nodes + " SMR", + bus0=spatial.gas.nodes, + bus1=nodes + " H2", + bus2="co2 atmosphere", + p_nom_extendable=True, + carrier="SMR", + efficiency=costs.at["SMR", "efficiency"], + efficiency2=costs.at["gas", "CO2 intensity"], + capital_cost=costs.at["SMR", "fixed"], + lifetime=costs.at["SMR", "lifetime"], + ) + + +def add_land_transport(n, costs): + # TODO options? + + logger.info("Add land transport") + nhours = n.snapshot_weightings.generators.sum() + + transport = pd.read_csv( + snakemake.input.transport_demand, index_col=0, parse_dates=True + ) + number_cars = pd.read_csv(snakemake.input.transport_data, index_col=0)[ + "number cars" + ] + avail_profile = pd.read_csv( + snakemake.input.avail_profile, index_col=0, parse_dates=True + ) + dsm_profile = pd.read_csv( + snakemake.input.dsm_profile, index_col=0, parse_dates=True + ) + + fuel_cell_share = get(options["land_transport_fuel_cell_share"], investment_year) + electric_share = get(options["land_transport_electric_share"], investment_year) + ice_share = get(options["land_transport_ice_share"], investment_year) + + total_share = fuel_cell_share + electric_share + ice_share + if total_share != 1: + logger.warning( + f"Total land transport shares sum up to {total_share:.2%}, corresponding to increased or decreased demand assumptions." + ) + + logger.info(f"FCEV share: {fuel_cell_share*100}%") + logger.info(f"EV share: {electric_share*100}%") + logger.info(f"ICEV share: {ice_share*100}%") + + nodes = pop_layout.index + + if electric_share > 0: + n.add("Carrier", "Li ion") + + n.madd( + "Bus", + nodes, + location=nodes, + suffix=" EV battery", + carrier="Li ion", + unit="MWh_el", + ) + + p_set = ( + electric_share + * ( + transport[nodes] + + cycling_shift(transport[nodes], 1) + + cycling_shift(transport[nodes], 2) + ) + / 3 + ) + + n.madd( + "Load", + nodes, + suffix=" land transport EV", + bus=nodes + " EV battery", + carrier="land transport EV", + p_set=p_set, + ) + + p_nom = number_cars * options.get("bev_charge_rate", 0.011) * electric_share + + n.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=options.get("bev_charge_efficiency", 0.9), + # 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 electric_share > 0 and options["v2g"]: + n.madd( + "Link", + nodes, + suffix=" V2G", + bus1=nodes, + bus0=nodes + " EV battery", + p_nom=p_nom, + carrier="V2G", + p_max_pu=avail_profile[nodes], + efficiency=options.get("bev_charge_efficiency", 0.9), + ) + + if electric_share > 0 and options["bev_dsm"]: + e_nom = ( + number_cars + * options.get("bev_energy", 0.05) + * options["bev_availability"] + * electric_share + ) + + n.madd( + "Store", + nodes, + suffix=" battery storage", + bus=nodes + " EV battery", + carrier="battery storage", + e_cyclic=True, + e_nom=e_nom, + e_max_pu=1, + e_min_pu=dsm_profile[nodes], + ) + + if fuel_cell_share > 0: + n.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 ice_share > 0: + if "oil" not in n.buses.carrier.unique(): + n.madd( + "Bus", + spatial.oil.nodes, + location=spatial.oil.locations, + carrier="oil", + unit="MWh_LHV", + ) + + ice_efficiency = options["transport_internal_combustion_efficiency"] + + n.madd( + "Load", + nodes, + suffix=" land transport oil", + bus=spatial.oil.nodes, + carrier="land transport oil", + p_set=ice_share / ice_efficiency * transport[nodes], + ) + + co2 = ( + ice_share + / ice_efficiency + * transport[nodes].sum().sum() + / nhours + * costs.at["oil", "CO2 intensity"] + ) + + n.add( + "Load", + "land transport oil emissions", + bus="co2 atmosphere", + carrier="land transport oil emissions", + p_set=-co2, + ) + + +def build_heat_demand(n): + # copy forward the daily average heat demand into each hour, so it can be multiplied by the intraday profile + daily_space_heat_demand = ( + xr.open_dataarray(snakemake.input.heat_demand_total) + .to_pandas() + .reindex(index=n.snapshots, method="ffill") + ) + + intraday_profiles = pd.read_csv(snakemake.input.heat_profile, index_col=0) + + sectors = ["residential", "services"] + uses = ["water", "space"] + + heat_demand = {} + electric_heat_supply = {} + for sector, use in product(sectors, uses): + weekday = list(intraday_profiles[f"{sector} {use} weekday"]) + weekend = list(intraday_profiles[f"{sector} {use} weekend"]) + weekly_profile = weekday * 5 + weekend * 2 + intraday_year_profile = generate_periodic_profiles( + daily_space_heat_demand.index.tz_localize("UTC"), + nodes=daily_space_heat_demand.columns, + weekly_profile=weekly_profile, + ) + + if use == "space": + heat_demand_shape = daily_space_heat_demand * intraday_year_profile + else: + heat_demand_shape = intraday_year_profile + + heat_demand[f"{sector} {use}"] = ( + heat_demand_shape / heat_demand_shape.sum() + ).multiply(pop_weighted_energy_totals[f"total {sector} {use}"]) * 1e6 + electric_heat_supply[f"{sector} {use}"] = ( + heat_demand_shape / heat_demand_shape.sum() + ).multiply(pop_weighted_energy_totals[f"electricity {sector} {use}"]) * 1e6 + + heat_demand = pd.concat(heat_demand, axis=1) + electric_heat_supply = pd.concat(electric_heat_supply, axis=1) + + # subtract from electricity load since heat demand already in heat_demand + electric_nodes = n.loads.index[n.loads.carrier == "electricity"] + n.loads_t.p_set[electric_nodes] = ( + n.loads_t.p_set[electric_nodes] + - electric_heat_supply.groupby(level=1, axis=1).sum()[electric_nodes] + ) + + return heat_demand + + +def add_heat(n, costs): + logger.info("Add heat sector") + + sectors = ["residential", "services"] + + heat_demand = build_heat_demand(n) + + nodes, dist_fraction, urban_fraction = create_nodes_for_heat_sector() + + # NB: must add costs of central heating afterwards (EUR 400 / kWpeak, 50a, 1% FOM from Fraunhofer ISE) + + # exogenously reduce space heat demand + if options["reduce_space_heat_exogenously"]: + dE = get(options["reduce_space_heat_exogenously_factor"], investment_year) + logger.info(f"Assumed space heat reduction of {dE:.2%}") + 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", + ] + + cop = { + "air": xr.open_dataarray(snakemake.input.cop_air_total) + .to_pandas() + .reindex(index=n.snapshots), + "ground": xr.open_dataarray(snakemake.input.cop_soil_total) + .to_pandas() + .reindex(index=n.snapshots), + } + + if options["solar_thermal"]: + solar_thermal = ( + xr.open_dataarray(snakemake.input.solar_thermal_total) + .to_pandas() + .reindex(index=n.snapshots) + ) + # 1e3 converts from W/m^2 to MW/(1000m^2) = kW/m^2 + solar_thermal = options["solar_cf_correction"] * solar_thermal / 1e3 + + for name in heat_systems: + name_type = "central" if name == "urban central" else "decentral" + + n.add("Carrier", name + " heat") + + n.madd( + "Bus", + nodes[name] + f" {name} heat", + location=nodes[name], + carrier=name + " heat", + unit="MWh_th", + ) + + ## Add heat load + + for sector in sectors: + # heat demand weighting + if "rural" in name: + factor = 1 - urban_fraction[nodes[name]] + elif "urban central" in name: + factor = dist_fraction[nodes[name]] + elif "urban decentral" in name: + factor = urban_fraction[nodes[name]] - dist_fraction[nodes[name]] + else: + raise NotImplementedError( + f" {name} not in " f"heat systems: {heat_systems}" + ) + + 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( + factor * (1 + options["district_heating"]["district_heating_loss"]) + ) + ) + + n.madd( + "Load", + nodes[name], + suffix=f" {name} heat", + bus=nodes[name] + f" {name} heat", + carrier=name + " heat", + p_set=heat_load, + ) + + ## Add heat pumps + + heat_pump_type = "air" if "urban" in name else "ground" + + costs_name = f"{name_type} {heat_pump_type}-sourced heat pump" + efficiency = ( + cop[heat_pump_type][nodes[name]] + if options["time_dep_hp_cop"] + else costs.at[costs_name, "efficiency"] + ) + + n.madd( + "Link", + nodes[name], + suffix=f" {name} {heat_pump_type} heat pump", + bus0=nodes[name], + bus1=nodes[name] + f" {name} heat", + carrier=f"{name} {heat_pump_type} heat pump", + efficiency=efficiency, + capital_cost=costs.at[costs_name, "efficiency"] + * costs.at[costs_name, "fixed"], + p_nom_extendable=True, + lifetime=costs.at[costs_name, "lifetime"], + ) + + if options["tes"]: + n.add("Carrier", name + " water tanks") + + n.madd( + "Bus", + nodes[name] + f" {name} water tanks", + location=nodes[name], + carrier=name + " water tanks", + unit="MWh_th", + ) + + n.madd( + "Link", + nodes[name] + f" {name} water tanks charger", + bus0=nodes[name] + f" {name} heat", + bus1=nodes[name] + f" {name} water tanks", + efficiency=costs.at["water tank charger", "efficiency"], + carrier=name + " water tanks charger", + p_nom_extendable=True, + ) + + n.madd( + "Link", + nodes[name] + f" {name} water tanks discharger", + bus0=nodes[name] + f" {name} water tanks", + bus1=nodes[name] + f" {name} heat", + carrier=name + " water tanks discharger", + efficiency=costs.at["water tank discharger", "efficiency"], + p_nom_extendable=True, + ) + + if isinstance(options["tes_tau"], dict): + tes_time_constant_days = options["tes_tau"][name_type] + else: + logger.warning( + "Deprecated: a future version will require you to specify 'tes_tau' ", + "for 'decentral' and 'central' separately.", + ) + tes_time_constant_days = ( + options["tes_tau"] if name_type == "decentral" else 180.0 + ) + + n.madd( + "Store", + nodes[name] + f" {name} water tanks", + bus=nodes[name] + f" {name} water tanks", + e_cyclic=True, + e_nom_extendable=True, + carrier=name + " water tanks", + standing_loss=1 - np.exp(-1 / 24 / tes_time_constant_days), + capital_cost=costs.at[name_type + " water tank storage", "fixed"], + lifetime=costs.at[name_type + " water tank storage", "lifetime"], + ) + + if options["boilers"]: + key = f"{name_type} resistive heater" + + n.madd( + "Link", + nodes[name] + f" {name} resistive heater", + bus0=nodes[name], + bus1=nodes[name] + f" {name} heat", + carrier=name + " resistive heater", + efficiency=costs.at[key, "efficiency"], + capital_cost=costs.at[key, "efficiency"] * costs.at[key, "fixed"], + p_nom_extendable=True, + lifetime=costs.at[key, "lifetime"], + ) + + key = f"{name_type} gas boiler" + + n.madd( + "Link", + nodes[name] + f" {name} gas boiler", + p_nom_extendable=True, + bus0=spatial.gas.df.loc[nodes[name], "nodes"].values, + bus1=nodes[name] + f" {name} heat", + bus2="co2 atmosphere", + carrier=name + " gas boiler", + efficiency=costs.at[key, "efficiency"], + efficiency2=costs.at["gas", "CO2 intensity"], + capital_cost=costs.at[key, "efficiency"] * costs.at[key, "fixed"], + lifetime=costs.at[key, "lifetime"], + ) + + if options["solar_thermal"]: + n.add("Carrier", name + " solar thermal") + + n.madd( + "Generator", + nodes[name], + suffix=f" {name} solar thermal collector", + bus=nodes[name] + f" {name} heat", + carrier=name + " solar thermal", + p_nom_extendable=True, + capital_cost=costs.at[name_type + " solar thermal", "fixed"], + p_max_pu=solar_thermal[nodes[name]], + lifetime=costs.at[name_type + " solar thermal", "lifetime"], + ) + + if options["chp"] and name == "urban central": + # add gas CHP; biomass CHP is added in biomass section + n.madd( + "Link", + nodes[name] + " urban central gas CHP", + bus0=spatial.gas.df.loc[nodes[name], "nodes"].values, + bus1=nodes[name], + 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["central gas CHP", "efficiency"] + / costs.at["central gas CHP", "c_b"], + efficiency3=costs.at["gas", "CO2 intensity"], + lifetime=costs.at["central gas CHP", "lifetime"], + ) + + n.madd( + "Link", + nodes[name] + " urban central gas CHP CC", + bus0=spatial.gas.df.loc[nodes[name], "nodes"].values, + bus1=nodes[name], + bus2=nodes[name] + " urban central heat", + bus3="co2 atmosphere", + bus4=spatial.co2.df.loc[nodes[name], "nodes"].values, + carrier="urban central gas CHP CC", + p_nom_extendable=True, + 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-input"] + ), + 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"], + ) + + if options["chp"] and options["micro_chp"] and name != "urban central": + n.madd( + "Link", + nodes[name] + f" {name} micro gas CHP", + p_nom_extendable=True, + bus0=spatial.gas.df.loc[nodes[name], "nodes"].values, + bus1=nodes[name], + bus2=nodes[name] + f" {name} heat", + bus3="co2 atmosphere", + carrier=name + " micro gas CHP", + efficiency=costs.at["micro CHP", "efficiency"], + efficiency2=costs.at["micro CHP", "efficiency-heat"], + efficiency3=costs.at["gas", "CO2 intensity"], + capital_cost=costs.at["micro CHP", "fixed"], + lifetime=costs.at["micro CHP", "lifetime"], + ) + + if options["retrofitting"]["retro_endogen"]: + logger.info("Add retrofitting endogenously") + + # 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() + + # 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]) + + n.add("Carrier", "retrofitting") + + # 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() + + for name in n.loads[ + n.loads.carrier.isin([x + " heat" for x in heat_systems]) + ].index: + node = n.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 = n.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 additional 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(): + logger.warning(f"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: + n.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"], + ) + + +def create_nodes_for_heat_sector(): + # TODO pop_layout + + # rural are areas with low heating density and individual heating + # urban are areas with high heating density + # urban can be split into district heating (central) and individual heating (decentral) + + ct_urban = pop_layout.urban.groupby(pop_layout.ct).sum() + # distribution of urban population within a country + pop_layout["urban_ct_fraction"] = pop_layout.urban / pop_layout.ct.map(ct_urban.get) + + sectors = ["residential", "services"] + + nodes = {} + urban_fraction = pop_layout.urban / pop_layout[["rural", "urban"]].sum(axis=1) + + for sector in sectors: + nodes[sector + " rural"] = pop_layout.index + nodes[sector + " urban decentral"] = pop_layout.index + + district_heat_share = pop_weighted_energy_totals["district heat share"] + + # maximum potential of urban demand covered by district heating + central_fraction = options["district_heating"]["potential"] + # district heating share at each node + dist_fraction_node = ( + district_heat_share * pop_layout["urban_ct_fraction"] / pop_layout["fraction"] + ) + nodes["urban central"] = dist_fraction_node.index + # if district heating share larger than urban fraction -> set urban + # fraction to district heating share + urban_fraction = pd.concat([urban_fraction, dist_fraction_node], axis=1).max(axis=1) + # difference of max potential and today's share of district heating + diff = (urban_fraction * central_fraction) - dist_fraction_node + progress = get(options["district_heating"]["progress"], investment_year) + dist_fraction_node += diff * progress + logger.info( + f"Increase district heating share by a progress factor of {progress:.2%} " + f"resulting in new average share of {dist_fraction_node.mean():.2%}" + ) + + return nodes, dist_fraction_node, urban_fraction + + +def add_biomass(n, costs): + logger.info("Add biomass") + + biomass_potentials = pd.read_csv(snakemake.input.biomass_potentials, index_col=0) + + # need to aggregate potentials if gas not nodally resolved + if options["gas_network"]: + biogas_potentials_spatial = biomass_potentials["biogas"].rename( + index=lambda x: x + " biogas" + ) + else: + biogas_potentials_spatial = biomass_potentials["biogas"].sum() + + if options.get("biomass_spatial", options["biomass_transport"]): + solid_biomass_potentials_spatial = biomass_potentials["solid biomass"].rename( + index=lambda x: x + " solid biomass" + ) + else: + solid_biomass_potentials_spatial = biomass_potentials["solid biomass"].sum() + + n.add("Carrier", "biogas") + n.add("Carrier", "solid biomass") + + n.madd( + "Bus", + spatial.gas.biogas, + location=spatial.gas.locations, + carrier="biogas", + unit="MWh_LHV", + ) + + n.madd( + "Bus", + spatial.biomass.nodes, + location=spatial.biomass.locations, + carrier="solid biomass", + unit="MWh_LHV", + ) + + n.madd( + "Store", + spatial.gas.biogas, + bus=spatial.gas.biogas, + carrier="biogas", + e_nom=biogas_potentials_spatial, + marginal_cost=costs.at["biogas", "fuel"], + e_initial=biogas_potentials_spatial, + ) + + n.madd( + "Store", + spatial.biomass.nodes, + bus=spatial.biomass.nodes, + carrier="solid biomass", + e_nom=solid_biomass_potentials_spatial, + marginal_cost=costs.at["solid biomass", "fuel"], + e_initial=solid_biomass_potentials_spatial, + ) + + n.madd( + "Link", + spatial.gas.biogas_to_gas, + bus0=spatial.gas.biogas, + bus1=spatial.gas.nodes, + bus2="co2 atmosphere", + carrier="biogas to gas", + capital_cost=costs.loc["biogas upgrading", "fixed"], + marginal_cost=costs.loc["biogas upgrading", "VOM"], + efficiency2=-costs.at["gas", "CO2 intensity"], + p_nom_extendable=True, + ) + + if options["biomass_transport"]: + transport_costs = pd.read_csv( + snakemake.input.biomass_transport_costs, + index_col=0, + ).squeeze() + + # add biomass transport + biomass_transport = create_network_topology( + n, "biomass transport ", bidirectional=False + ) + + # costs + bus0_costs = biomass_transport.bus0.apply(lambda x: transport_costs[x[:2]]) + bus1_costs = biomass_transport.bus1.apply(lambda x: transport_costs[x[:2]]) + biomass_transport["costs"] = pd.concat([bus0_costs, bus1_costs], axis=1).mean( + axis=1 + ) + + n.madd( + "Link", + biomass_transport.index, + bus0=biomass_transport.bus0 + " solid biomass", + bus1=biomass_transport.bus1 + " solid biomass", + p_nom_extendable=False, + p_nom=5e4, + length=biomass_transport.length.values, + marginal_cost=biomass_transport.costs * biomass_transport.length.values, + carrier="solid biomass transport", + ) + + # AC buses with district heating + urban_central = n.buses.index[n.buses.carrier == "urban central heat"] + if not urban_central.empty and options["chp"]: + urban_central = urban_central.str[: -len(" urban central heat")] + + key = "central solid biomass CHP" + + n.madd( + "Link", + urban_central + " urban central solid biomass CHP", + bus0=spatial.biomass.df.loc[urban_central, "nodes"].values, + bus1=urban_central, + bus2=urban_central + " urban central heat", + carrier="urban central solid biomass CHP", + p_nom_extendable=True, + capital_cost=costs.at[key, "fixed"] * costs.at[key, "efficiency"], + marginal_cost=costs.at[key, "VOM"], + efficiency=costs.at[key, "efficiency"], + efficiency2=costs.at[key, "efficiency-heat"], + lifetime=costs.at[key, "lifetime"], + ) + + n.madd( + "Link", + urban_central + " urban central solid biomass CHP CC", + bus0=spatial.biomass.df.loc[urban_central, "nodes"].values, + bus1=urban_central, + bus2=urban_central + " urban central heat", + bus3="co2 atmosphere", + bus4=spatial.co2.df.loc[urban_central, "nodes"].values, + carrier="urban central solid biomass CHP CC", + p_nom_extendable=True, + capital_cost=costs.at[key, "fixed"] * costs.at[key, "efficiency"] + + costs.at["biomass CHP capture", "fixed"] + * costs.at["solid biomass", "CO2 intensity"], + marginal_cost=costs.at[key, "VOM"], + efficiency=costs.at[key, "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[key, "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-input"] + ), + 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[key, "lifetime"], + ) + + if options["biomass_boiler"]: + # TODO: Add surcharge for pellets + nodes_heat = create_nodes_for_heat_sector()[0] + for name in [ + "residential rural", + "services rural", + "residential urban decentral", + "services urban decentral", + ]: + n.madd( + "Link", + nodes_heat[name] + f" {name} biomass boiler", + p_nom_extendable=True, + bus0=spatial.biomass.df.loc[nodes_heat[name], "nodes"].values, + bus1=nodes_heat[name] + f" {name} heat", + carrier=name + " biomass boiler", + efficiency=costs.at["biomass boiler", "efficiency"], + capital_cost=costs.at["biomass boiler", "efficiency"] + * costs.at["biomass boiler", "fixed"], + lifetime=costs.at["biomass boiler", "lifetime"], + ) + + # Solid biomass to liquid fuel + if options["biomass_to_liquid"]: + n.madd( + "Link", + spatial.biomass.nodes, + suffix=" biomass to liquid", + bus0=spatial.biomass.nodes, + bus1=spatial.oil.nodes, + bus2="co2 atmosphere", + carrier="biomass to liquid", + lifetime=costs.at["BtL", "lifetime"], + efficiency=costs.at["BtL", "efficiency"], + efficiency2=-costs.at["solid biomass", "CO2 intensity"] + + costs.at["BtL", "CO2 stored"], + p_nom_extendable=True, + capital_cost=costs.at["BtL", "fixed"], + marginal_cost=costs.at["BtL", "efficiency"] * costs.loc["BtL", "VOM"], + ) + + # TODO: Update with energy penalty + n.madd( + "Link", + spatial.biomass.nodes, + suffix=" biomass to liquid CC", + bus0=spatial.biomass.nodes, + bus1=spatial.oil.nodes, + bus2="co2 atmosphere", + bus3=spatial.co2.nodes, + carrier="biomass to liquid", + lifetime=costs.at["BtL", "lifetime"], + efficiency=costs.at["BtL", "efficiency"], + efficiency2=-costs.at["solid biomass", "CO2 intensity"] + + costs.at["BtL", "CO2 stored"] * (1 - costs.at["BtL", "capture rate"]), + efficiency3=costs.at["BtL", "CO2 stored"] * costs.at["BtL", "capture rate"], + p_nom_extendable=True, + capital_cost=costs.at["BtL", "fixed"] + + costs.at["biomass CHP capture", "fixed"] * costs.at["BtL", "CO2 stored"], + marginal_cost=costs.at["BtL", "efficiency"] * costs.loc["BtL", "VOM"], + ) + + # BioSNG from solid biomass + if options["biosng"]: + n.madd( + "Link", + spatial.biomass.nodes, + suffix=" solid biomass to gas", + bus0=spatial.biomass.nodes, + bus1=spatial.gas.nodes, + bus3="co2 atmosphere", + carrier="BioSNG", + lifetime=costs.at["BioSNG", "lifetime"], + efficiency=costs.at["BioSNG", "efficiency"], + efficiency3=-costs.at["solid biomass", "CO2 intensity"] + + costs.at["BioSNG", "CO2 stored"], + p_nom_extendable=True, + capital_cost=costs.at["BioSNG", "fixed"], + marginal_cost=costs.at["BioSNG", "efficiency"] * costs.loc["BioSNG", "VOM"], + ) + + # TODO: Update with energy penalty for CC + n.madd( + "Link", + spatial.biomass.nodes, + suffix=" solid biomass to gas CC", + bus0=spatial.biomass.nodes, + bus1=spatial.gas.nodes, + bus2=spatial.co2.nodes, + bus3="co2 atmosphere", + carrier="BioSNG", + lifetime=costs.at["BioSNG", "lifetime"], + efficiency=costs.at["BioSNG", "efficiency"], + efficiency2=costs.at["BioSNG", "CO2 stored"] + * costs.at["BioSNG", "capture rate"], + efficiency3=-costs.at["solid biomass", "CO2 intensity"] + + costs.at["BioSNG", "CO2 stored"] + * (1 - costs.at["BioSNG", "capture rate"]), + p_nom_extendable=True, + capital_cost=costs.at["BioSNG", "fixed"] + + costs.at["biomass CHP capture", "fixed"] + * costs.at["BioSNG", "CO2 stored"], + marginal_cost=costs.at["BioSNG", "efficiency"] * costs.loc["BioSNG", "VOM"], + ) + + +def add_industry(n, costs): + logger.info("Add industrial demand") + + nodes = pop_layout.index + nhours = n.snapshot_weightings.generators.sum() + nyears = nhours / 8760 + + # 1e6 to convert TWh to MWh + industrial_demand = ( + pd.read_csv(snakemake.input.industrial_demand, index_col=0) * 1e6 + ) * nyears + + n.madd( + "Bus", + spatial.biomass.industry, + location=spatial.biomass.locations, + carrier="solid biomass for industry", + unit="MWh_LHV", + ) + + if options.get("biomass_spatial", options["biomass_transport"]): + p_set = ( + industrial_demand.loc[spatial.biomass.locations, "solid biomass"].rename( + index=lambda x: x + " solid biomass for industry" + ) + / nhours + ) + else: + p_set = industrial_demand["solid biomass"].sum() / nhours + + n.madd( + "Load", + spatial.biomass.industry, + bus=spatial.biomass.industry, + carrier="solid biomass for industry", + p_set=p_set, + ) + + n.madd( + "Link", + spatial.biomass.industry, + bus0=spatial.biomass.nodes, + bus1=spatial.biomass.industry, + carrier="solid biomass for industry", + p_nom_extendable=True, + efficiency=1.0, + ) + + n.madd( + "Link", + spatial.biomass.industry_cc, + bus0=spatial.biomass.nodes, + bus1=spatial.biomass.industry, + bus2="co2 atmosphere", + bus3=spatial.co2.nodes, + carrier="solid biomass for industry CC", + p_nom_extendable=True, + capital_cost=costs.at["cement capture", "fixed"] + * costs.at["solid biomass", "CO2 intensity"], + efficiency=0.9, # TODO: make config option + 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"], + ) + + n.madd( + "Bus", + spatial.gas.industry, + location=spatial.gas.locations, + carrier="gas for industry", + unit="MWh_LHV", + ) + + gas_demand = industrial_demand.loc[nodes, "methane"] / nhours + + if options["gas_network"]: + spatial_gas_demand = gas_demand.rename(index=lambda x: x + " gas for industry") + else: + spatial_gas_demand = gas_demand.sum() + + n.madd( + "Load", + spatial.gas.industry, + bus=spatial.gas.industry, + carrier="gas for industry", + p_set=spatial_gas_demand, + ) + + n.madd( + "Link", + spatial.gas.industry, + bus0=spatial.gas.nodes, + bus1=spatial.gas.industry, + bus2="co2 atmosphere", + carrier="gas for industry", + p_nom_extendable=True, + efficiency=1.0, + efficiency2=costs.at["gas", "CO2 intensity"], + ) + + n.madd( + "Link", + spatial.gas.industry_cc, + bus0=spatial.gas.nodes, + bus1=spatial.gas.industry, + bus2="co2 atmosphere", + bus3=spatial.co2.nodes, + carrier="gas for industry CC", + p_nom_extendable=True, + capital_cost=costs.at["cement capture", "fixed"] + * costs.at["gas", "CO2 intensity"], + efficiency=0.9, + 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"], + ) + + n.madd( + "Load", + nodes, + suffix=" H2 for industry", + bus=nodes + " H2", + carrier="H2 for industry", + p_set=industrial_demand.loc[nodes, "hydrogen"] / nhours, + ) + + shipping_hydrogen_share = get(options["shipping_hydrogen_share"], investment_year) + shipping_methanol_share = get(options["shipping_methanol_share"], investment_year) + shipping_oil_share = get(options["shipping_oil_share"], investment_year) + + total_share = shipping_hydrogen_share + shipping_methanol_share + shipping_oil_share + if total_share != 1: + logger.warning( + f"Total shipping shares sum up to {total_share:.2%}, corresponding to increased or decreased demand assumptions." + ) + + domestic_navigation = pop_weighted_energy_totals.loc[ + nodes, "total domestic navigation" + ].squeeze() + international_navigation = ( + pd.read_csv(snakemake.input.shipping_demand, index_col=0).squeeze() * nyears + ) + all_navigation = domestic_navigation + international_navigation + p_set = all_navigation * 1e6 / nhours + + if shipping_hydrogen_share: + oil_efficiency = options.get( + "shipping_oil_efficiency", options.get("shipping_average_efficiency", 0.4) + ) + efficiency = oil_efficiency / costs.at["fuel cell", "efficiency"] + shipping_hydrogen_share = get( + options["shipping_hydrogen_share"], investment_year + ) + + if options["shipping_hydrogen_liquefaction"]: + n.madd( + "Bus", + nodes, + suffix=" H2 liquid", + carrier="H2 liquid", + location=nodes, + unit="MWh_LHV", + ) + + n.madd( + "Link", + nodes + " H2 liquefaction", + bus0=nodes + " H2", + bus1=nodes + " H2 liquid", + carrier="H2 liquefaction", + efficiency=costs.at["H2 liquefaction", "efficiency"], + capital_cost=costs.at["H2 liquefaction", "fixed"], + p_nom_extendable=True, + lifetime=costs.at["H2 liquefaction", "lifetime"], + ) + + shipping_bus = nodes + " H2 liquid" + else: + shipping_bus = nodes + " H2" + + efficiency = ( + options["shipping_oil_efficiency"] / costs.at["fuel cell", "efficiency"] + ) + p_set_hydrogen = shipping_hydrogen_share * p_set * efficiency + + n.madd( + "Load", + nodes, + suffix=" H2 for shipping", + bus=shipping_bus, + carrier="H2 for shipping", + p_set=p_set_hydrogen, + ) + + if shipping_methanol_share: + n.madd( + "Bus", + spatial.methanol.nodes, + carrier="methanol", + location=spatial.methanol.locations, + unit="MWh_LHV", + ) + + n.madd( + "Store", + spatial.methanol.nodes, + suffix=" Store", + bus=spatial.methanol.nodes, + e_nom_extendable=True, + e_cyclic=True, + carrier="methanol", + ) + + n.madd( + "Link", + spatial.h2.locations + " methanolisation", + bus0=spatial.h2.nodes, + bus1=spatial.methanol.nodes, + bus2=nodes, + bus3=spatial.co2.nodes, + carrier="methanolisation", + p_nom_extendable=True, + p_min_pu=options.get("min_part_load_methanolisation", 0), + capital_cost=costs.at["methanolisation", "fixed"] + * options["MWh_MeOH_per_MWh_H2"], # EUR/MW_H2/a + lifetime=costs.at["methanolisation", "lifetime"], + efficiency=options["MWh_MeOH_per_MWh_H2"], + efficiency2=-options["MWh_MeOH_per_MWh_H2"] / options["MWh_MeOH_per_MWh_e"], + efficiency3=-options["MWh_MeOH_per_MWh_H2"] / options["MWh_MeOH_per_tCO2"], + ) + + efficiency = ( + options["shipping_oil_efficiency"] / options["shipping_methanol_efficiency"] + ) + p_set_methanol = shipping_methanol_share * p_set.sum() * efficiency + + n.madd( + "Load", + spatial.methanol.nodes, + suffix=" shipping methanol", + bus=spatial.methanol.nodes, + carrier="shipping methanol", + p_set=p_set_methanol, + ) + + # CO2 intensity methanol based on stoichiometric calculation with 22.7 GJ/t methanol (32 g/mol), CO2 (44 g/mol), 277.78 MWh/TJ = 0.218 t/MWh + co2 = p_set_methanol / options["MWh_MeOH_per_tCO2"] + + n.add( + "Load", + "shipping methanol emissions", + bus="co2 atmosphere", + carrier="shipping methanol emissions", + p_set=-co2, + ) + + if shipping_oil_share: + p_set_oil = shipping_oil_share * p_set.sum() + + n.madd( + "Load", + spatial.oil.nodes, + suffix=" shipping oil", + bus=spatial.oil.nodes, + carrier="shipping oil", + p_set=p_set_oil, + ) + + co2 = p_set_oil * costs.at["oil", "CO2 intensity"] + + n.add( + "Load", + "shipping oil emissions", + bus="co2 atmosphere", + carrier="shipping oil emissions", + p_set=-co2, + ) + + if "oil" not in n.buses.carrier.unique(): + n.madd( + "Bus", + spatial.oil.nodes, + location=spatial.oil.locations, + carrier="oil", + unit="MWh_LHV", + ) + + if "oil" not in n.stores.carrier.unique(): + # could correct to e.g. 0.001 EUR/kWh * annuity and O&M + n.madd( + "Store", + [oil_bus + " Store" for oil_bus in spatial.oil.nodes], + bus=spatial.oil.nodes, + e_nom_extendable=True, + e_cyclic=True, + carrier="oil", + ) + + if "oil" not in n.generators.carrier.unique(): + n.madd( + "Generator", + spatial.oil.nodes, + bus=spatial.oil.nodes, + p_nom_extendable=True, + carrier="oil", + marginal_cost=costs.at["oil", "fuel"], + ) + + if options["oil_boilers"]: + nodes_heat = create_nodes_for_heat_sector()[0] + + for name in [ + "residential rural", + "services rural", + "residential urban decentral", + "services urban decentral", + ]: + n.madd( + "Link", + nodes_heat[name] + f" {name} oil boiler", + p_nom_extendable=True, + bus0=spatial.oil.nodes, + bus1=nodes_heat[name] + f" {name} heat", + bus2="co2 atmosphere", + carrier=f"{name} oil boiler", + efficiency=costs.at["decentral oil boiler", "efficiency"], + efficiency2=costs.at["oil", "CO2 intensity"], + capital_cost=costs.at["decentral oil boiler", "efficiency"] + * costs.at["decentral oil boiler", "fixed"], + lifetime=costs.at["decentral oil boiler", "lifetime"], + ) + + n.madd( + "Link", + nodes + " Fischer-Tropsch", + bus0=nodes + " H2", + bus1=spatial.oil.nodes, + bus2=spatial.co2.nodes, + carrier="Fischer-Tropsch", + efficiency=costs.at["Fischer-Tropsch", "efficiency"], + capital_cost=costs.at["Fischer-Tropsch", "fixed"] + * costs.at["Fischer-Tropsch", "efficiency"], # EUR/MW_H2/a + efficiency2=-costs.at["oil", "CO2 intensity"] + * costs.at["Fischer-Tropsch", "efficiency"], + p_nom_extendable=True, + p_min_pu=options.get("min_part_load_fischer_tropsch", 0), + lifetime=costs.at["Fischer-Tropsch", "lifetime"], + ) + + demand_factor = options.get("HVC_demand_factor", 1) + p_set = demand_factor * industrial_demand.loc[nodes, "naphtha"].sum() / nhours + if demand_factor != 1: + logger.warning(f"Changing HVC demand by {demand_factor*100-100:+.2f}%.") + + n.madd( + "Load", + ["naphtha for industry"], + bus=spatial.oil.nodes, + carrier="naphtha for industry", + p_set=p_set, + ) + + demand_factor = options.get("aviation_demand_factor", 1) + all_aviation = ["total international aviation", "total domestic aviation"] + p_set = ( + demand_factor + * pop_weighted_energy_totals.loc[nodes, all_aviation].sum(axis=1).sum() + * 1e6 + / nhours + ) + if demand_factor != 1: + logger.warning(f"Changing aviation demand by {demand_factor*100-100:+.2f}%.") + + n.madd( + "Load", + ["kerosene for aviation"], + bus=spatial.oil.nodes, + carrier="kerosene for aviation", + p_set=p_set, + ) + + # NB: CO2 gets released again to atmosphere when plastics decay or kerosene is burned + # except for the process emissions when naphtha is used for petrochemicals, which can be captured with other industry process emissions + # tco2 per hour + co2_release = ["naphtha for industry", "kerosene for aviation"] + co2 = ( + n.loads.loc[co2_release, "p_set"].sum() * costs.at["oil", "CO2 intensity"] + - industrial_demand.loc[nodes, "process emission from feedstock"].sum() / nhours + ) + + n.add( + "Load", + "oil emissions", + bus="co2 atmosphere", + carrier="oil emissions", + p_set=-co2, + ) + + # TODO simplify bus expression + n.madd( + "Load", + nodes, + suffix=" low-temperature heat for industry", + bus=[ + node + " urban central heat" + if node + " urban central heat" in n.buses.index + else node + " services urban decentral heat" + for node in nodes + ], + carrier="low-temperature heat for industry", + p_set=industrial_demand.loc[nodes, "low-temperature heat"] / nhours, + ) + + # remove today's industrial electricity demand by scaling down total electricity demand + for ct in n.buses.country.dropna().unique(): + # TODO map onto n.bus.country + + loads_i = n.loads.index[ + (n.loads.index.str[:2] == ct) & (n.loads.carrier == "electricity") + ] + if n.loads_t.p_set[loads_i].empty: + continue + factor = ( + 1 + - industrial_demand.loc[loads_i, "current electricity"].sum() + / n.loads_t.p_set[loads_i].sum().sum() + ) + n.loads_t.p_set[loads_i] *= factor + + n.madd( + "Load", + nodes, + suffix=" industry electricity", + bus=nodes, + carrier="industry electricity", + p_set=industrial_demand.loc[nodes, "electricity"] / nhours, + ) + + n.madd( + "Bus", + spatial.co2.process_emissions, + location=spatial.co2.locations, + carrier="process emissions", + unit="t_co2", + ) + + sel = ["process emission", "process emission from feedstock"] + if options["co2_spatial"] or options["co2network"]: + p_set = ( + -industrial_demand.loc[nodes, sel] + .sum(axis=1) + .rename(index=lambda x: x + " process emissions") + / nhours + ) + else: + p_set = -industrial_demand.loc[nodes, sel].sum(axis=1).sum() / nhours + + # this should be process emissions fossil+feedstock + # then need load on atmosphere for feedstock emissions that are currently going to atmosphere via Link Fischer-Tropsch demand + n.madd( + "Load", + spatial.co2.process_emissions, + bus=spatial.co2.process_emissions, + carrier="process emissions", + p_set=p_set, + ) + + n.madd( + "Link", + spatial.co2.process_emissions, + bus0=spatial.co2.process_emissions, + bus1="co2 atmosphere", + carrier="process emissions", + p_nom_extendable=True, + efficiency=1.0, + ) + + # assume enough local waste heat for CC + n.madd( + "Link", + spatial.co2.locations, + suffix=" process emissions CC", + bus0=spatial.co2.process_emissions, + bus1="co2 atmosphere", + bus2=spatial.co2.nodes, + carrier="process emissions CC", + p_nom_extendable=True, + 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"], + ) + + if options.get("ammonia"): + if options["ammonia"] == "regional": + p_set = ( + industrial_demand.loc[spatial.ammonia.locations, "ammonia"].rename( + index=lambda x: x + " NH3" + ) + / nhours + ) + else: + p_set = industrial_demand["ammonia"].sum() / nhours + + n.madd( + "Load", + spatial.ammonia.nodes, + bus=spatial.ammonia.nodes, + carrier="NH3", + p_set=p_set, + ) + + +def add_waste_heat(n): + # TODO options? + + logger.info("Add possibility to use industrial waste heat in district heating") + + # AC buses with district heating + urban_central = n.buses.index[n.buses.carrier == "urban central heat"] + if not urban_central.empty: + urban_central = urban_central.str[: -len(" urban central heat")] + + # TODO what is the 0.95 and should it be a config option? + if options["use_fischer_tropsch_waste_heat"]: + n.links.loc[urban_central + " Fischer-Tropsch", "bus3"] = ( + urban_central + " urban central heat" + ) + n.links.loc[urban_central + " Fischer-Tropsch", "efficiency3"] = ( + 0.95 - n.links.loc[urban_central + " Fischer-Tropsch", "efficiency"] + ) + + # TODO integrate usable waste heat efficiency into technology-data from DEA + if options.get("use_electrolysis_waste_heat", False): + n.links.loc[urban_central + " H2 Electrolysis", "bus2"] = ( + urban_central + " urban central heat" + ) + n.links.loc[urban_central + " H2 Electrolysis", "efficiency2"] = ( + 0.84 - n.links.loc[urban_central + " H2 Electrolysis", "efficiency"] + ) + + if options["use_fuel_cell_waste_heat"]: + n.links.loc[urban_central + " H2 Fuel Cell", "bus2"] = ( + urban_central + " urban central heat" + ) + n.links.loc[urban_central + " H2 Fuel Cell", "efficiency2"] = ( + 0.95 - n.links.loc[urban_central + " H2 Fuel Cell", "efficiency"] + ) + + +def add_agriculture(n, costs): + logger.info("Add agriculture, forestry and fishing sector.") + + nodes = pop_layout.index + nhours = n.snapshot_weightings.generators.sum() + + # electricity + + n.madd( + "Load", + nodes, + suffix=" agriculture electricity", + bus=nodes, + carrier="agriculture electricity", + p_set=pop_weighted_energy_totals.loc[nodes, "total agriculture electricity"] + * 1e6 + / nhours, + ) + + # heat + + n.madd( + "Load", + nodes, + suffix=" agriculture heat", + bus=nodes + " services rural heat", + carrier="agriculture heat", + p_set=pop_weighted_energy_totals.loc[nodes, "total agriculture heat"] + * 1e6 + / nhours, + ) + + # machinery + + electric_share = get( + options["agriculture_machinery_electric_share"], investment_year + ) + oil_share = get(options["agriculture_machinery_oil_share"], investment_year) + + total_share = electric_share + oil_share + if total_share != 1: + logger.warning( + f"Total agriculture machinery shares sum up to {total_share:.2%}, corresponding to increased or decreased demand assumptions." + ) + + machinery_nodal_energy = pop_weighted_energy_totals.loc[ + nodes, "total agriculture machinery" + ] + + if electric_share > 0: + efficiency_gain = ( + options["agriculture_machinery_fuel_efficiency"] + / options["agriculture_machinery_electric_efficiency"] + ) + + n.madd( + "Load", + nodes, + suffix=" agriculture machinery electric", + bus=nodes, + carrier="agriculture machinery electric", + p_set=electric_share + / efficiency_gain + * machinery_nodal_energy + * 1e6 + / nhours, + ) + + if oil_share > 0: + n.madd( + "Load", + ["agriculture machinery oil"], + bus=spatial.oil.nodes, + carrier="agriculture machinery oil", + p_set=oil_share * machinery_nodal_energy.sum() * 1e6 / nhours, + ) + + co2 = ( + oil_share + * machinery_nodal_energy.sum() + * 1e6 + / nhours + * costs.at["oil", "CO2 intensity"] + ) + + n.add( + "Load", + "agriculture machinery oil emissions", + bus="co2 atmosphere", + carrier="agriculture machinery oil emissions", + p_set=-co2, + ) + + +def decentral(n): + """ + Removes the electricity transmission system. + """ + n.lines.drop(n.lines.index, inplace=True) + n.links.drop(n.links.index[n.links.carrier.isin(["DC", "B2B"])], inplace=True) + + +def remove_h2_network(n): + n.links.drop( + n.links.index[n.links.carrier.str.contains("H2 pipeline")], inplace=True + ) + + if "EU H2 Store" in n.stores.index: + n.stores.drop("EU H2 Store", inplace=True) + + +def maybe_adjust_costs_and_potentials(n, opts): + for o in opts: + if "+" not in o: + continue + oo = o.split("+") + carrier_list = np.hstack( + ( + n.generators.carrier.unique(), + n.links.carrier.unique(), + n.stores.carrier.unique(), + n.storage_units.carrier.unique(), + ) + ) + suptechs = map(lambda c: c.split("-", 2)[0], carrier_list) + if oo[0].startswith(tuple(suptechs)): + carrier = oo[0] + attr_lookup = {"p": "p_nom_max", "e": "e_nom_max", "c": "capital_cost"} + attr = attr_lookup[oo[1][0]] + factor = float(oo[1][1:]) + # beware if factor is 0 and p_nom_max is np.inf, 0*np.inf is nan + if carrier == "AC": # lines do not have carrier + n.lines[attr] *= factor + else: + if attr == "p_nom_max": + comps = {"Generator", "Link", "StorageUnit"} + elif attr == "e_nom_max": + comps = {"Store"} + else: + comps = {"Generator", "Link", "StorageUnit", "Store"} + for c in n.iterate_components(comps): + if carrier == "solar": + sel = c.df.carrier.str.contains( + carrier + ) & ~c.df.carrier.str.contains("solar rooftop") + else: + sel = c.df.carrier.str.contains(carrier) + c.df.loc[sel, attr] *= factor + logger.info(f"changing {attr} for {carrier} by factor {factor}") + + +# TODO this should rather be a config no wildcard +def limit_individual_line_extension(n, maxext): + logger.info(f"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 + + +aggregate_dict = { + "p_nom": "sum", + "s_nom": "sum", + "v_nom": "max", + "v_mag_pu_max": "min", + "v_mag_pu_min": "max", + "p_nom_max": "sum", + "s_nom_max": "sum", + "p_nom_min": "sum", + "s_nom_min": "sum", + "v_ang_min": "max", + "v_ang_max": "min", + "terrain_factor": "mean", + "num_parallel": "sum", + "p_set": "sum", + "e_initial": "sum", + "e_nom": "sum", + "e_nom_max": "sum", + "e_nom_min": "sum", + "state_of_charge_initial": "sum", + "state_of_charge_set": "sum", + "inflow": "sum", + "p_max_pu": "first", + "x": "mean", + "y": "mean", +} + + +def cluster_heat_buses(n): + """ + Cluster residential and service heat buses to one representative bus. + + This can be done to save memory and speed up optimisation + """ + + def define_clustering(attributes, aggregate_dict): + """Define how attributes should be clustered. + Input: + attributes : pd.Index() + aggregate_dict: dictionary (key: name of attribute, value + clustering method) + + Returns: + agg : clustering dictionary + """ + keys = attributes.intersection(aggregate_dict.keys()) + agg = dict( + zip( + attributes.difference(keys), + ["first"] * len(df.columns.difference(keys)), + ) + ) + for key in keys: + agg[key] = aggregate_dict[key] + return agg + + logger.info("Cluster residential and service heat buses.") + components = ["Bus", "Carrier", "Generator", "Link", "Load", "Store"] + + for c in n.iterate_components(components): + df = c.df + cols = df.columns[df.columns.str.contains("bus") | (df.columns == "carrier")] + + # rename columns and index + df[cols] = df[cols].apply( + lambda x: x.str.replace("residential ", "").str.replace("services ", ""), + axis=1, + ) + df = df.rename( + index=lambda x: x.replace("residential ", "").replace("services ", "") + ) + + # cluster heat nodes + # static dataframe + agg = define_clustering(df.columns, aggregate_dict) + df = df.groupby(level=0).agg(agg, **agg_group_kwargs) + # time-varying data + pnl = c.pnl + agg = define_clustering(pd.Index(pnl.keys()), aggregate_dict) + for k in pnl.keys(): + pnl[k].rename( + columns=lambda x: x.replace("residential ", "").replace( + "services ", "" + ), + inplace=True, + ) + pnl[k] = pnl[k].groupby(level=0, axis=1).agg(agg[k], **agg_group_kwargs) + + # remove unclustered assets of service/residential + to_drop = c.df.index.difference(df.index) + n.mremove(c.name, to_drop) + # add clustered assets + to_add = df.index.difference(c.df.index) + import_components_from_dataframe(n, df.loc[to_add], c.name) + + +def apply_time_segmentation( + n, segments, solver_name="cbc", overwrite_time_dependent=True +): + """ + Aggregating time series to segments with different lengths. + + Input: + n: pypsa Network + segments: (int) number of segments in which the typical period should be + subdivided + solver_name: (str) name of solver + overwrite_time_dependent: (bool) overwrite time dependent data of pypsa network + with typical time series created by tsam + """ + try: + import tsam.timeseriesaggregation as tsam + except: + raise ModuleNotFoundError( + "Optional dependency 'tsam' not found." "Install via 'pip install tsam'" + ) + + # get all time-dependent data + columns = pd.MultiIndex.from_tuples([], names=["component", "key", "asset"]) + raw = pd.DataFrame(index=n.snapshots, columns=columns) + for c in n.iterate_components(): + for attr, pnl in c.pnl.items(): + # exclude e_min_pu which is used for SOC of EVs in the morning + if not pnl.empty and attr != "e_min_pu": + df = pnl.copy() + df.columns = pd.MultiIndex.from_product([[c.name], [attr], df.columns]) + raw = pd.concat([raw, df], axis=1) + + # normalise all time-dependent data + annual_max = raw.max().replace(0, 1) + raw = raw.div(annual_max, level=0) + + # get representative segments + agg = tsam.TimeSeriesAggregation( + raw, + hoursPerPeriod=len(raw), + noTypicalPeriods=1, + noSegments=int(segments), + segmentation=True, + solver=solver_name, + ) + segmented = agg.createTypicalPeriods() + + weightings = segmented.index.get_level_values("Segment Duration") + offsets = np.insert(np.cumsum(weightings[:-1]), 0, 0) + timesteps = [raw.index[0] + pd.Timedelta(f"{offset}h") for offset in offsets] + snapshots = pd.DatetimeIndex(timesteps) + sn_weightings = pd.Series( + weightings, index=snapshots, name="weightings", dtype="float64" + ) + + n.set_snapshots(sn_weightings.index) + n.snapshot_weightings = n.snapshot_weightings.mul(sn_weightings, axis=0) + + # overwrite time-dependent data with timeseries created by tsam + if overwrite_time_dependent: + values_t = segmented.mul(annual_max).set_index(snapshots) + for component, key in values_t.columns.droplevel(2).unique(): + n.pnl(component)[key] = values_t[component, key] + + return n + + +def set_temporal_aggregation(n, opts, solver_name): + """ + Aggregate network temporally. + """ + for o in opts: + # temporal averaging + m = re.match(r"^\d+h$", o, re.IGNORECASE) + if m is not None: + n = average_every_nhours(n, m.group(0)) + break + # representative snapshots + m = re.match(r"(^\d+)sn$", o, re.IGNORECASE) + if m is not None: + sn = int(m[1]) + logger.info(f"Use every {sn} snapshot as representative") + n.set_snapshots(n.snapshots[::sn]) + n.snapshot_weightings *= sn + break + # segments with package tsam + m = re.match(r"^(\d+)seg$", o, re.IGNORECASE) + if m is not None: + segments = int(m[1]) + logger.info(f"Use temporal segmentation with {segments} segments") + n = apply_time_segmentation(n, segments, solver_name=solver_name) + break + return n + + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake( + "prepare_sector_network", + configfiles="test/config.overnight.yaml", + simpl="", + opts="", + clusters="5", + ll="v1.5", + sector_opts="CO2L0-24H-T-H-B-I-A-solar+p3-dist1", + planning_horizons="2030", + ) + + logging.basicConfig(level=snakemake.config["logging"]["level"]) + + update_config_with_sector_opts(snakemake.config, snakemake.wildcards.sector_opts) + + options = snakemake.config["sector"] + + opts = snakemake.wildcards.sector_opts.split("-") + + investment_year = int(snakemake.wildcards.planning_horizons[-4:]) + + overrides = override_component_attrs(snakemake.input.overrides) + n = pypsa.Network(snakemake.input.network, override_component_attrs=overrides) + + pop_layout = pd.read_csv(snakemake.input.clustered_pop_layout, index_col=0) + nhours = n.snapshot_weightings.generators.sum() + nyears = nhours / 8760 + + costs = prepare_costs( + snakemake.input.costs, + snakemake.config["costs"], + nyears, + ) + + pop_weighted_energy_totals = ( + pd.read_csv(snakemake.input.pop_weighted_energy_totals, index_col=0) * nyears + ) + + patch_electricity_network(n) + + spatial = define_spatial(pop_layout.index, options) + + if snakemake.config["foresight"] == "myopic": + add_lifetime_wind_solar(n, costs) + + conventional = snakemake.config["existing_capacities"]["conventional_carriers"] + for carrier in conventional: + add_carrier_buses(n, carrier) + + add_co2_tracking(n, options) + + add_generation(n, costs) + + add_storage_and_grids(n, costs) + + # TODO merge with opts cost adjustment below + for o in opts: + if o[:4] == "wave": + wave_cost_factor = float(o[4:].replace("p", ".").replace("m", "-")) + logger.info( + f"Including wave generators with cost factor of {wave_cost_factor}" + ) + add_wave(n, wave_cost_factor) + if o[:4] == "dist": + options["electricity_distribution_grid"] = True + options["electricity_distribution_grid_cost_factor"] = float( + o[4:].replace("p", ".").replace("m", "-") + ) + if o == "biomasstransport": + options["biomass_transport"] = True + + if "nodistrict" in opts: + options["district_heating"]["progress"] = 0.0 + + if "T" in opts: + add_land_transport(n, costs) + + if "H" in opts: + add_heat(n, costs) + + if "B" in opts: + add_biomass(n, costs) + + if options["ammonia"]: + add_ammonia(n, costs) + + if "I" in opts: + add_industry(n, costs) + + if "I" in opts and "H" in opts: + add_waste_heat(n) + + if "A" in opts: # requires H and I + add_agriculture(n, costs) + + if options["dac"]: + add_dac(n, costs) + + if "decentral" in opts: + decentral(n) + + if "noH2network" in opts: + remove_h2_network(n) + + if options["co2network"]: + add_co2_network(n, costs) + + if options["allam_cycle"]: + add_allam(n, costs) + + solver_name = snakemake.config["solving"]["solver"]["name"] + n = set_temporal_aggregation(n, opts, solver_name) + + limit_type = "config" + limit = get(snakemake.config["co2_budget"], investment_year) + for o in opts: + if "cb" not in o: + continue + limit_type = "carbon budget" + fn = "results/" + snakemake.params.RDIR + "/csvs/carbon_budget_distribution.csv" + if not os.path.exists(fn): + emissions_scope = snakemake.config["energy"]["emissions"] + report_year = snakemake.config["energy"]["eurostat_report_year"] + build_carbon_budget( + o, snakemake.input.eurostat, fn, emissions_scope, report_year + ) + co2_cap = pd.read_csv(fn, index_col=0).squeeze() + limit = co2_cap.loc[investment_year] + break + for o in opts: + if "Co2L" not in o: + continue + limit_type = "wildcard" + limit = o[o.find("Co2L") + 4 :] + limit = float(limit.replace("p", ".").replace("m", "-")) + break + logger.info(f"Add CO2 limit from {limit_type}") + add_co2limit(n, nyears, limit) + + for o in opts: + if not o[:10] == "linemaxext": + continue + maxext = float(o[10:]) * 1e3 + limit_individual_line_extension(n, maxext) + break + + if options["electricity_distribution_grid"]: + insert_electricity_distribution_grid(n, costs) + + maybe_adjust_costs_and_potentials(n, opts) + + if options["gas_distribution_grid"]: + insert_gas_distribution_costs(n, costs) + + if options["electricity_grid_connection"]: + add_electricity_grid_connection(n, costs) + + first_year_myopic = (snakemake.config["foresight"] == "myopic") and ( + snakemake.config["scenario"]["planning_horizons"][0] == investment_year + ) + + if options.get("cluster_heat_buses", False) and not first_year_myopic: + cluster_heat_buses(n) + + n.meta = dict(snakemake.config, **dict(wildcards=dict(snakemake.wildcards))) + + n.export_to_netcdf(snakemake.output[0]) diff --git a/scripts/retrieve_databundle.py b/scripts/retrieve_databundle.py index 86869879..75d8519e 100644 --- a/scripts/retrieve_databundle.py +++ b/scripts/retrieve_databundle.py @@ -1,8 +1,8 @@ -# Copyright 2019-2020 Fabian Hofmann (FIAS) -# SPDX-FileCopyrightText: : 2017-2020 The PyPSA-Eur Authors +# -*- coding: utf-8 -*- +# Copyright 2019-2022 Fabian Hofmann (TUB, FIAS) +# SPDX-FileCopyrightText: : 2017-2023 The PyPSA-Eur Authors # # SPDX-License-Identifier: MIT - """ .. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.3517935.svg :target: https://doi.org/10.5281/zenodo.3517935 @@ -11,7 +11,7 @@ The data bundle (1.4 GB) contains common GIS datasets like NUTS3 shapes, EEZ sha This rule downloads the data bundle from `zenodo `_ and extracts it in the ``data`` sub-directory, such that all files of the bundle are stored in the ``data/bundle`` subdirectory. -The :ref:`tutorial` uses a smaller `data bundle `_ than required for the full model (19 MB) +The :ref:`tutorial` uses a smaller `data bundle `_ than required for the full model (188 MB) .. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.3517921.svg :target: https://doi.org/10.5281/zenodo.3517921 @@ -23,46 +23,49 @@ The :ref:`tutorial` uses a smaller `data bundle 0] + costs = ( + n.generators.loc[tech_b, "bus"] + .map(connection_costs_to_bus[tech]) + .loc[lambda s: s > 0] + ) if not costs.empty: n.generators.loc[costs.index, "capital_cost"] += costs - logger.info("Displacing {} generator(s) and adding connection costs to capital_costs: {} " - .format(tech, ", ".join("{:.0f} Eur/MW/a for `{}`".format(d, b) for b, d in costs.iteritems()))) + logger.info( + "Displacing {} generator(s) and adding connection costs to capital_costs: {} ".format( + tech, + ", ".join( + "{:.0f} Eur/MW/a for `{}`".format(d, b) + for b, d in costs.items() + ), + ) + ) connection_costs[tech] = costs - pd.DataFrame(connection_costs).to_csv(output.connection_costs) - + pd.DataFrame(connection_costs).to_csv(output.connection_costs) -def _aggregate_and_move_components(n, busmap, connection_costs_to_bus, output, aggregate_one_ports={"Load", "StorageUnit"}): +def _aggregate_and_move_components( + n, + busmap, + connection_costs_to_bus, + output, + aggregate_one_ports={"Load", "StorageUnit"}, + aggregation_strategies=dict(), + exclude_carriers=None, +): def replace_components(n, c, df, pnl): n.mremove(c, n.df(c).index) @@ -200,7 +245,13 @@ def _aggregate_and_move_components(n, busmap, connection_costs_to_bus, output, a _adjust_capital_costs_using_connection_costs(n, connection_costs_to_bus, output) - generators, generators_pnl = aggregategenerators(n, busmap, custom_strategies={'p_nom_min': np.sum}) + _, generator_strategies = get_aggregation_strategies(aggregation_strategies) + + carriers = set(n.generators.carrier) - set(exclude_carriers) + generators, generators_pnl = aggregategenerators( + n, busmap, carriers=carriers, custom_strategies=generator_strategies + ) + replace_components(n, "Generator", generators, generators_pnl) for one_port in aggregate_one_ports: @@ -214,7 +265,7 @@ def _aggregate_and_move_components(n, busmap, connection_costs_to_bus, output, a n.mremove(c, df.index[df.bus0.isin(buses_to_del) | df.bus1.isin(buses_to_del)]) -def simplify_links(n, costs, config, output): +def simplify_links(n, costs, config, output, aggregation_strategies=dict()): ## Complex multi-node links are folded into end-points logger.info("Simplifying connected link components") @@ -222,8 +273,10 @@ def simplify_links(n, costs, config, output): return n, n.buses.index.to_series() # Determine connected link components, ignore all links but DC - adjacency_matrix = n.adjacency_matrix(branch_components=['Link'], - weights=dict(Link=(n.links.carrier == 'DC').astype(float))) + adjacency_matrix = n.adjacency_matrix( + branch_components=["Link"], + weights=dict(Link=(n.links.carrier == "DC").astype(float)), + ) _, labels = connected_components(adjacency_matrix, directed=False) labels = pd.Series(labels, n.buses.index) @@ -234,22 +287,23 @@ def simplify_links(n, costs, config, output): nodes = frozenset(nodes) seen = set() - supernodes = {m for m in nodes - if len(G.adj[m]) > 2 or (set(G.adj[m]) - nodes)} + supernodes = {m for m in nodes if len(G.adj[m]) > 2 or (set(G.adj[m]) - nodes)} for u in supernodes: for m, ls in G.adj[u].items(): - if m not in nodes or m in seen: continue + if m not in nodes or m in seen: + continue buses = [u, m] - links = [list(ls)] #[name for name in ls]] + links = [list(ls)] # [name for name in ls]] while m not in (supernodes | seen): seen.add(m) for m2, ls in G.adj[m].items(): - if m2 in seen or m2 == u: continue + if m2 in seen or m2 == u: + continue buses.append(m2) - links.append(list(ls)) # [name for name in ls]) + links.append(list(ls)) # [name for name in ls]) break else: # stub @@ -262,81 +316,136 @@ def simplify_links(n, costs, config, output): busmap = n.buses.index.to_series() connection_costs_per_link = _prepare_connection_costs_per_link(n, costs, config) - connection_costs_to_bus = pd.DataFrame(0., index=n.buses.index, columns=list(connection_costs_per_link)) + connection_costs_to_bus = pd.DataFrame( + 0.0, index=n.buses.index, columns=list(connection_costs_per_link) + ) for lbl in labels.value_counts().loc[lambda s: s > 2].index: - for b, buses, links in split_links(labels.index[labels == lbl]): - if len(buses) <= 2: continue + if len(buses) <= 2: + continue - logger.debug('nodes = {}'.format(labels.index[labels == lbl])) - logger.debug('b = {}\nbuses = {}\nlinks = {}'.format(b, buses, links)) + logger.debug("nodes = {}".format(labels.index[labels == lbl])) + logger.debug("b = {}\nbuses = {}\nlinks = {}".format(b, buses, links)) - m = sp.spatial.distance_matrix(n.buses.loc[b, ['x', 'y']], - n.buses.loc[buses[1:-1], ['x', 'y']]) + m = sp.spatial.distance_matrix( + n.buses.loc[b, ["x", "y"]], n.buses.loc[buses[1:-1], ["x", "y"]] + ) busmap.loc[buses] = b[np.r_[0, m.argmin(axis=0), 1]] - connection_costs_to_bus.loc[buses] += _compute_connection_costs_to_bus(n, busmap, costs, config, connection_costs_per_link, buses) + connection_costs_to_bus.loc[buses] += _compute_connection_costs_to_bus( + n, busmap, costs, config, connection_costs_per_link, buses + ) all_links = [i for _, i in sum(links, [])] - p_max_pu = config['links'].get('p_max_pu', 1.) - lengths = n.links.loc[all_links, 'length'] - name = lengths.idxmax() + '+{}'.format(len(links) - 1) + p_max_pu = config["links"].get("p_max_pu", 1.0) + lengths = n.links.loc[all_links, "length"] + name = lengths.idxmax() + "+{}".format(len(links) - 1) params = dict( - carrier='DC', - bus0=b[0], bus1=b[1], - length=sum(n.links.loc[[i for _, i in l], 'length'].mean() for l in links), - p_nom=min(n.links.loc[[i for _, i in l], 'p_nom'].sum() for l in links), - underwater_fraction=sum(lengths/lengths.sum() * n.links.loc[all_links, 'underwater_fraction']), + carrier="DC", + bus0=b[0], + bus1=b[1], + length=sum( + n.links.loc[[i for _, i in l], "length"].mean() for l in links + ), + p_nom=min(n.links.loc[[i for _, i in l], "p_nom"].sum() for l in links), + underwater_fraction=sum( + lengths + / lengths.sum() + * n.links.loc[all_links, "underwater_fraction"] + ), p_max_pu=p_max_pu, p_min_pu=-p_max_pu, underground=False, - under_construction=False + under_construction=False, ) - logger.info("Joining the links {} connecting the buses {} to simple link {}".format(", ".join(all_links), ", ".join(buses), name)) + logger.info( + "Joining the links {} connecting the buses {} to simple link {}".format( + ", ".join(all_links), ", ".join(buses), name + ) + ) n.mremove("Link", all_links) static_attrs = n.components["Link"]["attrs"].loc[lambda df: df.static] - for attr, default in static_attrs.default.iteritems(): params.setdefault(attr, default) + for attr, default in static_attrs.default.items(): + params.setdefault(attr, default) n.links.loc[name] = pd.Series(params) # n.add("Link", **params) logger.debug("Collecting all components using the busmap") - _aggregate_and_move_components(n, busmap, connection_costs_to_bus, output) + exclude_carriers = config["clustering"]["simplify_network"].get( + "exclude_carriers", [] + ) + + _aggregate_and_move_components( + n, + busmap, + connection_costs_to_bus, + output, + aggregation_strategies=aggregation_strategies, + exclude_carriers=exclude_carriers, + ) return n, busmap -def remove_stubs(n, costs, config, output): + +def remove_stubs(n, costs, config, output, aggregation_strategies=dict()): logger.info("Removing stubs") - busmap = busmap_by_stubs(n) # ['country']) + across_borders = config["clustering"]["simplify_network"].get( + "remove_stubs_across_borders", True + ) + matching_attrs = [] if across_borders else ["country"] + busmap = busmap_by_stubs(n, matching_attrs) connection_costs_to_bus = _compute_connection_costs_to_bus(n, busmap, costs, config) - _aggregate_and_move_components(n, busmap, connection_costs_to_bus, output) + exclude_carriers = config["clustering"]["simplify_network"].get( + "exclude_carriers", [] + ) + + _aggregate_and_move_components( + n, + busmap, + connection_costs_to_bus, + output, + aggregation_strategies=aggregation_strategies, + exclude_carriers=exclude_carriers, + ) return n, busmap -def aggregate_to_substations(n, buses_i=None): + +def aggregate_to_substations(n, aggregation_strategies=dict(), buses_i=None): # can be used to aggregate a selection of buses to electrically closest neighbors # if no buses are given, nodes that are no substations or without offshore connection are aggregated - + if buses_i is None: - logger.info("Aggregating buses that are no substations or have no valid offshore connection") - buses_i = list(set(n.buses.index)-set(n.generators.bus)-set(n.loads.bus)) + logger.info( + "Aggregating buses that are no substations or have no valid offshore connection" + ) + buses_i = list(set(n.buses.index) - set(n.generators.bus) - set(n.loads.bus)) - weight = pd.concat({'Line': n.lines.length/n.lines.s_nom.clip(1e-3), - 'Link': n.links.length/n.links.p_nom.clip(1e-3)}) + weight = pd.concat( + { + "Line": n.lines.length / n.lines.s_nom.clip(1e-3), + "Link": n.links.length / n.links.p_nom.clip(1e-3), + } + ) - adj = n.adjacency_matrix(branch_components=['Line', 'Link'], weights=weight) + adj = n.adjacency_matrix(branch_components=["Line", "Link"], weights=weight) bus_indexer = n.buses.index.get_indexer(buses_i) - dist = pd.DataFrame(dijkstra(adj, directed=False, indices=bus_indexer), buses_i, n.buses.index) + dist = pd.DataFrame( + dijkstra(adj, directed=False, indices=bus_indexer), buses_i, n.buses.index + ) - dist[buses_i] = np.inf # bus in buses_i should not be assigned to different bus in buses_i + dist[ + buses_i + ] = np.inf # bus in buses_i should not be assigned to different bus in buses_i for c in n.buses.country.unique(): incountry_b = n.buses.country == c @@ -345,77 +454,150 @@ def aggregate_to_substations(n, buses_i=None): busmap = n.buses.index.to_series() busmap.loc[buses_i] = dist.idxmin(1) - clustering = get_clustering_from_busmap(n, busmap, - bus_strategies=dict(country=_make_consense("Bus", "country")), - aggregate_generators_weighted=True, - aggregate_generators_carriers=None, - aggregate_one_ports=["Load", "StorageUnit"], - line_length_factor=1.0, - generator_strategies={'p_nom_max': 'sum'}, - scale_link_capital_costs=False) - + bus_strategies, generator_strategies = get_aggregation_strategies( + aggregation_strategies + ) + + clustering = get_clustering_from_busmap( + n, + busmap, + bus_strategies=bus_strategies, + aggregate_generators_weighted=True, + aggregate_generators_carriers=None, + aggregate_one_ports=["Load", "StorageUnit"], + line_length_factor=1.0, + generator_strategies=generator_strategies, + scale_link_capital_costs=False, + ) return clustering.network, busmap -def cluster(n, n_clusters, config): +def cluster( + n, n_clusters, config, algorithm="hac", feature=None, aggregation_strategies=dict() +): logger.info(f"Clustering to {n_clusters} buses") - focus_weights = config.get('focus_weights', None) - - renewable_carriers = pd.Index([tech - for tech in n.generators.carrier.unique() - if tech.split('-', 2)[0] in config['renewable']]) - def consense(x): - v = x.iat[0] - assert ((x == v).all() or x.isnull().all()), ( - "The `potential` configuration option must agree for all renewable carriers, for now!" - ) - return v - potential_mode = (consense(pd.Series([config['renewable'][tech]['potential'] - for tech in renewable_carriers])) - if len(renewable_carriers) > 0 else 'conservative') - clustering = clustering_for_n_clusters(n, n_clusters, custom_busmap=False, potential_mode=potential_mode, - solver_name=config['solving']['solver']['name'], - focus_weights=focus_weights) + focus_weights = config.get("focus_weights", None) + + renewable_carriers = pd.Index( + [ + tech + for tech in n.generators.carrier.unique() + if tech.split("-", 2)[0] in config["renewable"] + ] + ) + + clustering = clustering_for_n_clusters( + n, + n_clusters, + custom_busmap=False, + aggregation_strategies=aggregation_strategies, + solver_name=config["solving"]["solver"]["name"], + algorithm=algorithm, + feature=feature, + focus_weights=focus_weights, + ) return clustering.network, clustering.busmap if __name__ == "__main__": - if 'snakemake' not in globals(): + if "snakemake" not in globals(): from _helpers import mock_snakemake - snakemake = mock_snakemake('simplify_network', simpl='', network='elec') + + snakemake = mock_snakemake("simplify_network", simpl="") configure_logging(snakemake) n = pypsa.Network(snakemake.input.network) + aggregation_strategies = snakemake.config["clustering"].get( + "aggregation_strategies", {} + ) + # translate str entries of aggregation_strategies to pd.Series functions: + aggregation_strategies = { + p: {k: getattr(pd.Series, v) for k, v in aggregation_strategies[p].items()} + for p in aggregation_strategies.keys() + } + n, trafo_map = simplify_network_to_380(n) Nyears = n.snapshot_weightings.objective.sum() / 8760 - technology_costs = load_costs(snakemake.input.tech_costs, snakemake.config['costs'], snakemake.config['electricity'], Nyears) + technology_costs = load_costs( + snakemake.input.tech_costs, + snakemake.config["costs"], + snakemake.config["electricity"], + Nyears, + ) - n, simplify_links_map = simplify_links(n, technology_costs, snakemake.config, snakemake.output) + n, simplify_links_map = simplify_links( + n, technology_costs, snakemake.config, snakemake.output, aggregation_strategies + ) - n, stub_map = remove_stubs(n, technology_costs, snakemake.config, snakemake.output) + busmaps = [trafo_map, simplify_links_map] - busmaps = [trafo_map, simplify_links_map, stub_map] + cluster_config = snakemake.config["clustering"]["simplify_network"] + if cluster_config.get("remove_stubs", True): + n, stub_map = remove_stubs( + n, + technology_costs, + snakemake.config, + snakemake.output, + aggregation_strategies=aggregation_strategies, + ) + busmaps.append(stub_map) - if snakemake.config.get('clustering', {}).get('simplify', {}).get('to_substations', False): - n, substation_map = aggregate_to_substations(n) + if cluster_config.get("to_substations", False): + n, substation_map = aggregate_to_substations(n, aggregation_strategies) busmaps.append(substation_map) + # treatment of outliers (nodes without a profile for considered carrier): + # all nodes that have no profile of the given carrier are being aggregated to closest neighbor + if ( + snakemake.config.get("clustering", {}) + .get("cluster_network", {}) + .get("algorithm", "hac") + == "hac" + or cluster_config.get("algorithm", "hac") == "hac" + ): + carriers = ( + cluster_config.get("feature", "solar+onwind-time").split("-")[0].split("+") + ) + for carrier in carriers: + buses_i = list( + set(n.buses.index) - set(n.generators.query("carrier == @carrier").bus) + ) + logger.info( + f"clustering preparaton (hac): aggregating {len(buses_i)} buses of type {carrier}." + ) + n, busmap_hac = aggregate_to_substations(n, aggregation_strategies, buses_i) + busmaps.append(busmap_hac) + if snakemake.wildcards.simpl: - n, cluster_map = cluster(n, int(snakemake.wildcards.simpl), snakemake.config) + n, cluster_map = cluster( + n, + int(snakemake.wildcards.simpl), + snakemake.config, + cluster_config.get("algorithm", "hac"), + cluster_config.get("feature", None), + aggregation_strategies, + ) busmaps.append(cluster_map) # some entries in n.buses are not updated in previous functions, therefore can be wrong. as they are not needed # and are lost when clustering (for example with the simpl wildcard), we remove them for consistency: - buses_c = {'symbol', 'tags', 'under_construction', 'substation_lv', 'substation_off'}.intersection(n.buses.columns) + buses_c = { + "symbol", + "tags", + "under_construction", + "substation_lv", + "substation_off", + }.intersection(n.buses.columns) n.buses = n.buses.drop(buses_c, axis=1) update_p_nom_max(n) - + + n.meta = dict(snakemake.config, **dict(wildcards=dict(snakemake.wildcards))) n.export_to_netcdf(snakemake.output.network) busmap_s = reduce(lambda x, y: x.map(y), busmaps[1:], busmaps[0]) diff --git a/scripts/solve_network.py b/scripts/solve_network.py old mode 100755 new mode 100644 index 077b7cb1..76d9e0ba --- a/scripts/solve_network.py +++ b/scripts/solve_network.py @@ -1,46 +1,13 @@ -# SPDX-FileCopyrightText: : 2017-2020 The PyPSA-Eur Authors +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2017-2023 The PyPSA-Eur Authors # # SPDX-License-Identifier: MIT - """ -Solves linear optimal power flow for a network iteratively while updating reactances. +Solves optimal operation and capacity for a network with the option to +iteratively optimize while updating line reactances. -Relevant Settings ------------------ - -.. code:: yaml - - solving: - tmpdir: - options: - formulation: - clip_p_max_pu: - load_shedding: - noisy_costs: - nhours: - min_iterations: - max_iterations: - skip_iterations: - track_iterations: - solver: - name: - -.. seealso:: - Documentation of the configuration file ``config.yaml`` at - :ref:`electricity_cf`, :ref:`solving_cf`, :ref:`plotting_cf` - -Inputs ------- - -- ``networks/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.nc``: confer :ref:`prepare` - -Outputs -------- - -- ``results/networks/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.nc``: Solved PyPSA network including optimisation results - - .. image:: ../img/results.png - :scale: 40 % +This script is used for optimizing the electrical network as well as the +sector coupled network. Description ----------- @@ -49,166 +16,453 @@ Total annual system costs are minimised with PyPSA. The full formulation of the linear optimal power flow (plus investment planning is provided in the `documentation of PyPSA `_. -The optimization is based on the ``pyomo=False`` setting in the :func:`network.lopf` and :func:`pypsa.linopf.ilopf` function. -Additionally, some extra constraints specified in :mod:`prepare_network` are added. -Solving the network in multiple iterations is motivated through the dependence of transmission line capacities and impedances. -As lines are expanded their electrical parameters change, which renders the optimisation bilinear even if the power flow -equations are linearized. -To retain the computational advantage of continuous linear programming, a sequential linear programming technique -is used, where in between iterations the line impedances are updated. -Details (and errors made through this heuristic) are discussed in the paper +The optimization is based on the :func:`network.optimize` function. +Additionally, some extra constraints specified in :mod:`solve_network` are added. -- Fabian Neumann and Tom Brown. `Heuristics for Transmission Expansion Planning in Low-Carbon Energy System Models `_), *16th International Conference on the European Energy Market*, 2019. `arXiv:1907.10548 `_. - -.. warning:: - Capital costs of existing network components are not included in the objective function, - since for the optimisation problem they are just a constant term (no influence on optimal result). - - Therefore, these capital costs are not included in ``network.objective``! - - If you want to calculate the full total annual system costs add these to the objective value. - -.. tip:: - The rule :mod:`solve_all_networks` runs - for all ``scenario`` s in the configuration file - the rule :mod:`solve_network`. +.. note:: + The rules ``solve_elec_networks`` and ``solve_sector_networks`` run + the workflow for all scenarios in the configuration file (``scenario:``) + based on the rule :mod:`solve_network`. """ - import logging -from _helpers import configure_logging +import re import numpy as np import pandas as pd -import re - import pypsa -from pypsa.linopf import (get_var, define_constraints, linexpr, join_exprs, - network_lopf, ilopf) - -from pathlib import Path -from vresutils.benchmark import memory_logger +import xarray as xr +from _helpers import ( + configure_logging, + override_component_attrs, + update_config_with_sector_opts, +) logger = logging.getLogger(__name__) +pypsa.pf.logger.setLevel(logging.WARNING) +from pypsa.descriptors import get_switchable_as_dense as get_as_dense -def prepare_network(n, solve_opts): +def add_land_use_constraint(n, config): + if "m" in snakemake.wildcards.clusters: + _add_land_use_constraint_m(n, config) + else: + _add_land_use_constraint(n, config) - if 'clip_p_max_pu' in solve_opts: - for df in (n.generators_t.p_max_pu, n.storage_units_t.inflow): - df.where(df>solve_opts['clip_p_max_pu'], other=0., inplace=True) - if solve_opts.get('load_shedding'): - n.add("Carrier", "Load") +def _add_land_use_constraint(n, config): + # warning: this will miss existing offwind which is not classed AC-DC and has carrier 'offwind' + + for carrier in ["solar", "onwind", "offwind-ac", "offwind-dc"]: + ext_i = (n.generators.carrier == carrier) & ~n.generators.p_nom_extendable + existing = ( + n.generators.loc[ext_i, "p_nom"] + .groupby(n.generators.bus.map(n.buses.location)) + .sum() + ) + existing.index += " " + carrier + "-" + snakemake.wildcards.planning_horizons + n.generators.loc[existing.index, "p_nom_max"] -= existing + + # check if existing capacities are larger than technical potential + existing_large = n.generators[ + n.generators["p_nom_min"] > n.generators["p_nom_max"] + ].index + if len(existing_large): + logger.warning( + f"Existing capacities larger than technical potential for {existing_large},\ + adjust technical potential to existing capacities" + ) + n.generators.loc[existing_large, "p_nom_max"] = n.generators.loc[ + existing_large, "p_nom_min" + ] + + n.generators.p_nom_max.clip(lower=0, inplace=True) + + +def _add_land_use_constraint_m(n, config): + # if generators clustering is lower than network clustering, land_use accounting is at generators clusters + + planning_horizons = config["scenario"]["planning_horizons"] + grouping_years = config["existing_capacities"]["grouping_years"] + current_horizon = snakemake.wildcards.planning_horizons + + for carrier in ["solar", "onwind", "offwind-ac", "offwind-dc"]: + existing = n.generators.loc[n.generators.carrier == carrier, "p_nom"] + ind = list( + set( + [ + i.split(sep=" ")[0] + " " + i.split(sep=" ")[1] + for i in existing.index + ] + ) + ) + + previous_years = [ + str(y) + for y in planning_horizons + grouping_years + if y < int(snakemake.wildcards.planning_horizons) + ] + + for p_year in previous_years: + ind2 = [ + i for i in ind if i + " " + carrier + "-" + p_year in existing.index + ] + sel_current = [i + " " + carrier + "-" + current_horizon for i in ind2] + sel_p_year = [i + " " + carrier + "-" + p_year for i in ind2] + n.generators.loc[sel_current, "p_nom_max"] -= existing.loc[ + sel_p_year + ].rename(lambda x: x[:-4] + current_horizon) + + n.generators.p_nom_max.clip(lower=0, inplace=True) + + +def add_co2_sequestration_limit(n, limit=200): + """ + Add a global constraint on the amount of Mt CO2 that can be sequestered. + """ + n.carriers.loc["co2 stored", "co2_absorptions"] = -1 + n.carriers.co2_absorptions = n.carriers.co2_absorptions.fillna(0) + + limit = limit * 1e6 + for o in opts: + if "seq" not in o: + continue + limit = float(o[o.find("seq") + 3 :]) * 1e6 + break + + n.add( + "GlobalConstraint", + "co2_sequestration_limit", + sense="<=", + constant=limit, + type="primary_energy", + carrier_attribute="co2_absorptions", + ) + + +def prepare_network(n, solve_opts=None, config=None): + if "clip_p_max_pu" in solve_opts: + for df in ( + n.generators_t.p_max_pu, + n.generators_t.p_min_pu, # TODO: check if this can be removed + n.storage_units_t.inflow, + ): + df.where(df > solve_opts["clip_p_max_pu"], other=0.0, inplace=True) + + load_shedding = solve_opts.get("load_shedding") + if load_shedding: + # intersect between macroeconomic and surveybased willingness to pay + # http://journal.frontiersin.org/article/10.3389/fenrg.2015.00055/full + # TODO: retrieve color and nice name from config + n.add("Carrier", "load", color="#dd2e23", nice_name="Load shedding") buses_i = n.buses.query("carrier == 'AC'").index - n.madd("Generator", buses_i, " load", - bus=buses_i, - carrier='load', - sign=1e-3, # Adjust sign to measure p and p_nom in kW instead of MW - marginal_cost=1e2, # Eur/kWh - # intersect between macroeconomic and surveybased - # willingness to pay - # http://journal.frontiersin.org/article/10.3389/fenrg.2015.00055/full - p_nom=1e9 # kW - ) + if not np.isscalar(load_shedding): + # TODO: do not scale via sign attribute (use Eur/MWh instead of Eur/kWh) + load_shedding = 1e2 # Eur/kWh - if solve_opts.get('noisy_costs'): - for t in n.iterate_components(n.one_port_components): - #if 'capital_cost' in t.df: + n.madd( + "Generator", + buses_i, + " load", + bus=buses_i, + carrier="load", + sign=1e-3, # Adjust sign to measure p and p_nom in kW instead of MW + marginal_cost=load_shedding, # Eur/kWh + p_nom=1e9, # kW + ) + + if solve_opts.get("noisy_costs"): + for t in n.iterate_components(): + # if 'capital_cost' in t.df: # t.df['capital_cost'] += 1e1 + 2.*(np.random.random(len(t.df)) - 0.5) - if 'marginal_cost' in t.df: - t.df['marginal_cost'] += (1e-2 + 2e-3 * - (np.random.random(len(t.df)) - 0.5)) + if "marginal_cost" in t.df: + t.df["marginal_cost"] += 1e-2 + 2e-3 * ( + np.random.random(len(t.df)) - 0.5 + ) - for t in n.iterate_components(['Line', 'Link']): - t.df['capital_cost'] += (1e-1 + - 2e-2*(np.random.random(len(t.df)) - 0.5)) * t.df['length'] + for t in n.iterate_components(["Line", "Link"]): + t.df["capital_cost"] += ( + 1e-1 + 2e-2 * (np.random.random(len(t.df)) - 0.5) + ) * t.df["length"] - if solve_opts.get('nhours'): - nhours = solve_opts['nhours'] + if solve_opts.get("nhours"): + nhours = solve_opts["nhours"] n.set_snapshots(n.snapshots[:nhours]) - n.snapshot_weightings[:] = 8760. / nhours + n.snapshot_weightings[:] = 8760.0 / nhours + + if config["foresight"] == "myopic": + add_land_use_constraint(n, config) + + if n.stores.carrier.eq("co2 stored").any(): + limit = config["sector"].get("co2_sequestration_potential", 200) + add_co2_sequestration_limit(n, limit=limit) return n def add_CCL_constraints(n, config): - agg_p_nom_limits = config['electricity'].get('agg_p_nom_limits') + """ + Add CCL (country & carrier limit) constraint to the network. - try: - agg_p_nom_minmax = pd.read_csv(agg_p_nom_limits, - index_col=list(range(2))) - except IOError: - logger.exception("Need to specify the path to a .csv file containing " - "aggregate capacity limits per country in " - "config['electricity']['agg_p_nom_limit'].") - logger.info("Adding per carrier generation capacity constraints for " - "individual countries") + Add minimum and maximum levels of generator nominal capacity per carrier + for individual countries. Opts and path for agg_p_nom_minmax.csv must be defined + in config.yaml. Default file is available at data/agg_p_nom_minmax.csv. - gen_country = n.generators.bus.map(n.buses.country) - # cc means country and carrier - p_nom_per_cc = (pd.DataFrame( - {'p_nom': linexpr((1, get_var(n, 'Generator', 'p_nom'))), - 'country': gen_country, 'carrier': n.generators.carrier}) - .dropna(subset=['p_nom']) - .groupby(['country', 'carrier']).p_nom - .apply(join_exprs)) - minimum = agg_p_nom_minmax['min'].dropna() - if not minimum.empty: - minconstraint = define_constraints(n, p_nom_per_cc[minimum.index], - '>=', minimum, 'agg_p_nom', 'min') - maximum = agg_p_nom_minmax['max'].dropna() - if not maximum.empty: - maxconstraint = define_constraints(n, p_nom_per_cc[maximum.index], - '<=', maximum, 'agg_p_nom', 'max') + Parameters + ---------- + n : pypsa.Network + config : dict + + Example + ------- + scenario: + opts: [Co2L-CCL-24H] + electricity: + agg_p_nom_limits: data/agg_p_nom_minmax.csv + """ + agg_p_nom_minmax = pd.read_csv( + config["electricity"]["agg_p_nom_limits"], index_col=[0, 1] + ) + logger.info("Adding generation capacity constraints per carrier and country") + p_nom = n.model["Generator-p_nom"] + + gens = n.generators.query("p_nom_extendable").rename_axis(index="Generator-ext") + grouper = [gens.bus.map(n.buses.country), gens.carrier] + grouper = xr.DataArray(pd.MultiIndex.from_arrays(grouper), dims=["Generator-ext"]) + lhs = p_nom.groupby(grouper).sum().rename(bus="country") + + minimum = xr.DataArray(agg_p_nom_minmax["min"].dropna()).rename(dim_0="group") + index = minimum.indexes["group"].intersection(lhs.indexes["group"]) + if not index.empty: + n.model.add_constraints( + lhs.sel(group=index) >= minimum.loc[index], name="agg_p_nom_min" + ) + + maximum = xr.DataArray(agg_p_nom_minmax["max"].dropna()).rename(dim_0="group") + index = maximum.indexes["group"].intersection(lhs.indexes["group"]) + if not index.empty: + n.model.add_constraints( + lhs.sel(group=index) <= maximum.loc[index], name="agg_p_nom_max" + ) def add_EQ_constraints(n, o, scaling=1e-1): + """ + Add equity constraints to the network. + + Currently this is only implemented for the electricity sector only. + + Opts must be specified in the config.yaml. + + Parameters + ---------- + n : pypsa.Network + o : str + + Example + ------- + scenario: + opts: [Co2L-EQ0.7-24H] + + Require each country or node to on average produce a minimal share + of its total electricity consumption itself. Example: EQ0.7c demands each country + to produce on average at least 70% of its consumption; EQ0.7 demands + each node to produce on average at least 70% of its consumption. + """ + # TODO: Generalize to cover myopic and other sectors? float_regex = "[0-9]*\.?[0-9]+" level = float(re.findall(float_regex, o)[0]) - if o[-1] == 'c': - ggrouper = n.generators.bus.map(n.buses.country) - lgrouper = n.loads.bus.map(n.buses.country) - sgrouper = n.storage_units.bus.map(n.buses.country) + if o[-1] == "c": + ggrouper = n.generators.bus.map(n.buses.country).to_xarray() + lgrouper = n.loads.bus.map(n.buses.country).to_xarray() + sgrouper = n.storage_units.bus.map(n.buses.country).to_xarray() else: - ggrouper = n.generators.bus - lgrouper = n.loads.bus - sgrouper = n.storage_units.bus - load = n.snapshot_weightings.generators @ \ - n.loads_t.p_set.groupby(lgrouper, axis=1).sum() - inflow = n.snapshot_weightings.stores @ \ - n.storage_units_t.inflow.groupby(sgrouper, axis=1).sum() - inflow = inflow.reindex(load.index).fillna(0.) - rhs = scaling * ( level * load - inflow ) - lhs_gen = linexpr((n.snapshot_weightings.generators * scaling, - get_var(n, "Generator", "p").T) - ).T.groupby(ggrouper, axis=1).apply(join_exprs) - lhs_spill = linexpr((-n.snapshot_weightings.stores * scaling, - get_var(n, "StorageUnit", "spill").T) - ).T.groupby(sgrouper, axis=1).apply(join_exprs) - lhs_spill = lhs_spill.reindex(lhs_gen.index).fillna("") - lhs = lhs_gen + lhs_spill - define_constraints(n, lhs, ">=", rhs, "equity", "min") + ggrouper = n.generators.bus.to_xarray() + lgrouper = n.loads.bus.to_xarray() + sgrouper = n.storage_units.bus.to_xarray() + load = ( + n.snapshot_weightings.generators + @ n.loads_t.p_set.groupby(lgrouper, axis=1).sum() + ) + inflow = ( + n.snapshot_weightings.stores + @ n.storage_units_t.inflow.groupby(sgrouper, axis=1).sum() + ) + inflow = inflow.reindex(load.index).fillna(0.0) + rhs = scaling * (level * load - inflow) + p = n.model["Generator-p"] + lhs_gen = ( + (p * (n.snapshot_weightings.generators * scaling)) + .groupby(ggrouper) + .sum() + .sum("snapshot") + ) + # TODO: double check that this is really needed, why do have to subtract the spillage + if not n.storage_units_t.inflow.empty: + spillage = n.model["StorageUnit-spill"] + lhs_spill = ( + (spillage * (-n.snapshot_weightings.stores * scaling)) + .groupby(sgrouper) + .sum() + .sum("snapshot") + ) + lhs = lhs_gen + lhs_spill + else: + lhs = lhs_gen + n.model.add_constraints(lhs >= rhs, name="equity_min") def add_BAU_constraints(n, config): - mincaps = pd.Series(config['electricity']['BAU_mincapacities']) - lhs = (linexpr((1, get_var(n, 'Generator', 'p_nom'))) - .groupby(n.generators.carrier).apply(join_exprs)) - define_constraints(n, lhs, '>=', mincaps[lhs.index], 'Carrier', 'bau_mincaps') + """ + Add a per-carrier minimal overall capacity. + + BAU_mincapacities and opts must be adjusted in the config.yaml. + + Parameters + ---------- + n : pypsa.Network + config : dict + + Example + ------- + scenario: + opts: [Co2L-BAU-24H] + electricity: + BAU_mincapacities: + solar: 0 + onwind: 0 + OCGT: 100000 + offwind-ac: 0 + offwind-dc: 0 + Which sets minimum expansion across all nodes e.g. in Europe to 100GW. + OCGT bus 1 + OCGT bus 2 + ... > 100000 + """ + mincaps = pd.Series(config["electricity"]["BAU_mincapacities"]) + p_nom = n.model["Generator-p_nom"] + ext_i = n.generators.query("p_nom_extendable") + ext_carrier_i = xr.DataArray(ext_i.carrier.rename_axis("Generator-ext")) + lhs = p_nom.groupby(ext_carrier_i).sum() + index = mincaps.index.intersection(lhs.indexes["carrier"]) + rhs = mincaps[index].rename_axis("carrier") + n.model.add_constraints(lhs >= rhs, name="bau_mincaps") +# TODO: think about removing or make per country def add_SAFE_constraints(n, config): - peakdemand = (1. + config['electricity']['SAFE_reservemargin']) *\ - n.loads_t.p_set.sum(axis=1).max() - conv_techs = config['plotting']['conv_techs'] - exist_conv_caps = n.generators.query('~p_nom_extendable & carrier in @conv_techs')\ - .p_nom.sum() - ext_gens_i = n.generators.query('carrier in @conv_techs & p_nom_extendable').index - lhs = linexpr((1, get_var(n, 'Generator', 'p_nom')[ext_gens_i])).sum() - rhs = peakdemand - exist_conv_caps - define_constraints(n, lhs, '>=', rhs, 'Safe', 'mintotalcap') + """ + Add a capacity reserve margin of a certain fraction above the peak demand. + Renewable generators and storage do not contribute. Ignores network. + + Parameters + ---------- + n : pypsa.Network + config : dict + + Example + ------- + config.yaml requires to specify opts: + + scenario: + opts: [Co2L-SAFE-24H] + electricity: + SAFE_reservemargin: 0.1 + Which sets a reserve margin of 10% above the peak demand. + """ + peakdemand = n.loads_t.p_set.sum(axis=1).max() + margin = 1.0 + config["electricity"]["SAFE_reservemargin"] + reserve_margin = peakdemand * margin + # TODO: do not take this from the plotting config! + conv_techs = config["plotting"]["conv_techs"] + ext_gens_i = n.generators.query("carrier in @conv_techs & p_nom_extendable").index + p_nom = n.model["Generator-p_nom"].loc[ext_gens_i] + lhs = p_nom.sum() + exist_conv_caps = n.generators.query( + "~p_nom_extendable & carrier in @conv_techs" + ).p_nom.sum() + rhs = reserve_margin - exist_conv_caps + n.model.add_constraints(lhs >= rhs, name="safe_mintotalcap") + + +def add_operational_reserve_margin(n, sns, config): + """ + Build reserve margin constraints based on the formulation given in + https://genxproject.github.io/GenX/dev/core/#Reserves. + + Parameters + ---------- + n : pypsa.Network + sns: pd.DatetimeIndex + config : dict + + Example: + -------- + config.yaml requires to specify operational_reserve: + operational_reserve: # like https://genxproject.github.io/GenX/dev/core/#Reserves + activate: true + epsilon_load: 0.02 # percentage of load at each snapshot + epsilon_vres: 0.02 # percentage of VRES at each snapshot + contingency: 400000 # MW + """ + reserve_config = config["electricity"]["operational_reserve"] + EPSILON_LOAD = reserve_config["epsilon_load"] + EPSILON_VRES = reserve_config["epsilon_vres"] + CONTINGENCY = reserve_config["contingency"] + + # Reserve Variables + n.model.add_variables( + 0, np.inf, coords=[sns, n.generators.index], name="Generator-r" + ) + reserve = n.model["Generator-r"] + summed_reserve = reserve.sum("Generator") + + # Share of extendable renewable capacities + ext_i = n.generators.query("p_nom_extendable").index + vres_i = n.generators_t.p_max_pu.columns + if not ext_i.empty and not vres_i.empty: + capacity_factor = n.generators_t.p_max_pu[vres_i.intersection(ext_i)] + p_nom_vres = ( + n.model["Generator-p_nom"] + .loc[vres_i.intersection(ext_i)] + .rename({"Generator-ext": "Generator"}) + ) + lhs = summed_reserve + (p_nom_vres * (-EPSILON_VRES * capacity_factor)).sum( + "Generator" + ) + + # Total demand per t + demand = get_as_dense(n, "Load", "p_set").sum(axis=1) + + # VRES potential of non extendable generators + capacity_factor = n.generators_t.p_max_pu[vres_i.difference(ext_i)] + renewable_capacity = n.generators.p_nom[vres_i.difference(ext_i)] + potential = (capacity_factor * renewable_capacity).sum(axis=1) + + # Right-hand-side + rhs = EPSILON_LOAD * demand + EPSILON_VRES * potential + CONTINGENCY + + n.model.add_constraints(lhs >= rhs, name="reserve_margin") + + # additional constraint that capacity is not exceeded + gen_i = n.generators.index + ext_i = n.generators.query("p_nom_extendable").index + fix_i = n.generators.query("not p_nom_extendable").index + + dispatch = n.model["Generator-p"] + reserve = n.model["Generator-r"] + + capacity_variable = n.model["Generator-p_nom"].rename( + {"Generator-ext": "Generator"} + ) + capacity_fixed = n.generators.p_nom[fix_i] + + p_max_pu = get_as_dense(n, "Generator", "p_max_pu") + + lhs = dispatch + reserve - capacity_variable * p_max_pu[ext_i] + + rhs = (p_max_pu[fix_i] * capacity_fixed).reindex(columns=gen_i, fill_value=0) + + n.model.add_constraints(lhs <= rhs, name="Generator-p-reserve-upper") def add_minRenew_constraints(n, config, o): ''' @@ -250,83 +504,224 @@ def add_base_load_constraint(n, config): n.generators.loc[filter,"p_min_pu"]=config["electricity"]["base_load"][carrier] def add_battery_constraints(n): - nodes = n.buses.index[n.buses.carrier == "battery"] - if nodes.empty or ('Link', 'p_nom') not in n.variables.index: + """ + Add constraint ensuring that charger = discharger, i.e. + 1 * charger_size - efficiency * discharger_size = 0 + """ + if not n.links.p_nom_extendable.any(): return - link_p_nom = get_var(n, "Link", "p_nom") - lhs = linexpr((1,link_p_nom[nodes + " charger"]), - (-n.links.loc[nodes + " discharger", "efficiency"].values, - link_p_nom[nodes + " discharger"].values)) - define_constraints(n, lhs, "=", 0, 'Link', 'charger_ratio') + + discharger_bool = n.links.index.str.contains("battery discharger") + charger_bool = n.links.index.str.contains("battery charger") + + dischargers_ext = n.links[discharger_bool].query("p_nom_extendable").index + chargers_ext = n.links[charger_bool].query("p_nom_extendable").index + + eff = n.links.efficiency[dischargers_ext].values + lhs = ( + n.model["Link-p_nom"].loc[chargers_ext] + - n.model["Link-p_nom"].loc[dischargers_ext] * eff + ) + + n.model.add_constraints(lhs == 0, name="Link-charger_ratio") + + +def add_chp_constraints(n): + electric = ( + n.links.index.str.contains("urban central") + & n.links.index.str.contains("CHP") + & n.links.index.str.contains("electric") + ) + heat = ( + n.links.index.str.contains("urban central") + & n.links.index.str.contains("CHP") + & n.links.index.str.contains("heat") + ) + + electric_ext = n.links[electric].query("p_nom_extendable").index + heat_ext = n.links[heat].query("p_nom_extendable").index + + electric_fix = n.links[electric].query("~p_nom_extendable").index + heat_fix = n.links[heat].query("~p_nom_extendable").index + + p = n.model["Link-p"] # dimension: [time, link] + + # output ratio between heat and electricity and top_iso_fuel_line for extendable + if not electric_ext.empty: + p_nom = n.model["Link-p_nom"] + + lhs = ( + p_nom.loc[electric_ext] + * (n.links.p_nom_ratio * n.links.efficiency)[electric_ext].values + - p_nom.loc[heat_ext] * n.links.efficiency[heat_ext].values + ) + n.model.add_constraints(lhs == 0, name="chplink-fix_p_nom_ratio") + + rename = {"Link-ext": "Link"} + lhs = ( + p.loc[:, electric_ext] + + p.loc[:, heat_ext] + - p_nom.rename(rename).loc[electric_ext] + ) + n.model.add_constraints(lhs <= 0, name="chplink-top_iso_fuel_line_ext") + + # top_iso_fuel_line for fixed + if not electric_fix.empty: + lhs = p.loc[:, electric_fix] + p.loc[:, heat_fix] + rhs = n.links.p_nom[electric_fix] + n.model.add_constraints(lhs <= rhs, name="chplink-top_iso_fuel_line_fix") + + # back-pressure + if not electric.empty: + lhs = ( + p.loc[:, heat] * (n.links.efficiency[heat] * n.links.c_b[electric].values) + - p.loc[:, electric] * n.links.efficiency[electric] + ) + n.model.add_constraints(lhs <= rhs, name="chplink-backpressure") + + +def add_pipe_retrofit_constraint(n): + """ + Add constraint for retrofitting existing CH4 pipelines to H2 pipelines. + """ + gas_pipes_i = n.links.query("carrier == 'gas pipeline' and p_nom_extendable").index + h2_retrofitted_i = n.links.query( + "carrier == 'H2 pipeline retrofitted' and p_nom_extendable" + ).index + + if h2_retrofitted_i.empty or gas_pipes_i.empty: + return + + p_nom = n.model["Link-p_nom"] + + CH4_per_H2 = 1 / n.config["sector"]["H2_retrofit_capacity_per_CH4"] + lhs = p_nom.loc[gas_pipes_i] + CH4_per_H2 * p_nom.loc[h2_retrofitted_i] + rhs = n.links.p_nom[gas_pipes_i].rename_axis("Link-ext") + + n.model.add_constraints(lhs == rhs, name="Link-pipe_retrofit") def extra_functionality(n, snapshots): """ - Collects supplementary constraints which will be passed to ``pypsa.linopf.network_lopf``. - If you want to enforce additional custom constraints, this is a good location to add them. - The arguments ``opts`` and ``snakemake.config`` are expected to be attached to the network. + Collects supplementary constraints which will be passed to + ``pypsa.optimization.optimize``. + + If you want to enforce additional custom constraints, this is a good + location to add them. The arguments ``opts`` and + ``snakemake.config`` are expected to be attached to the network. """ opts = n.opts config = n.config - if 'BAU' in opts and n.generators.p_nom_extendable.any(): + if "BAU" in opts and n.generators.p_nom_extendable.any(): add_BAU_constraints(n, config) - if 'SAFE' in opts and n.generators.p_nom_extendable.any(): + if "SAFE" in opts and n.generators.p_nom_extendable.any(): add_SAFE_constraints(n, config) - if 'CCL' in opts and n.generators.p_nom_extendable.any(): + if "CCL" in opts and n.generators.p_nom_extendable.any(): add_CCL_constraints(n, config) if "BL" in opts: add_base_load_constraint(n, config) + reserve = config["electricity"].get("operational_reserve", {}) + if reserve.get("activate"): + add_operational_reserve_margin(n, snapshots, config) for o in opts: if "EQ" in o: add_EQ_constraints(n, o) if 'RE' in o: add_minRenew_constraints(n, config, o) add_battery_constraints(n) + add_pipe_retrofit_constraint(n) -def solve_network(n, config, opts='', **kwargs): - solver_options = config['solving']['solver'].copy() - solver_name = solver_options.pop('name') - cf_solving = config['solving']['options'] - track_iterations = cf_solving.get('track_iterations', False) - min_iterations = cf_solving.get('min_iterations', 4) - max_iterations = cf_solving.get('max_iterations', 6) +def solve_network(n, config, opts="", **kwargs): + set_of_options = config["solving"]["solver"]["options"] + solver_options = ( + config["solving"]["solver_options"][set_of_options] if set_of_options else {} + ) + solver_name = config["solving"]["solver"]["name"] + cf_solving = config["solving"]["options"] + track_iterations = cf_solving.get("track_iterations", False) + min_iterations = cf_solving.get("min_iterations", 4) + max_iterations = cf_solving.get("max_iterations", 6) + transmission_losses = cf_solving.get("transmission_losses", 0) # add to network for extra_functionality n.config = config n.opts = opts - if cf_solving.get('skip_iterations', False): - network_lopf(n, solver_name=solver_name, solver_options=solver_options, - extra_functionality=extra_functionality, **kwargs) + skip_iterations = cf_solving.get("skip_iterations", False) + if not n.lines.s_nom_extendable.any(): + skip_iterations = True + logger.info("No expandable lines found. Skipping iterative solving.") + + if skip_iterations: + status, condition = n.optimize( + solver_name=solver_name, + transmission_losses=transmission_losses, + extra_functionality=extra_functionality, + **solver_options, + **kwargs, + ) else: - ilopf(n, solver_name=solver_name, solver_options=solver_options, - track_iterations=track_iterations, - min_iterations=min_iterations, - max_iterations=max_iterations, - extra_functionality=extra_functionality, **kwargs) + status, condition = n.optimize.optimize_transmission_expansion_iteratively( + solver_name=solver_name, + track_iterations=track_iterations, + min_iterations=min_iterations, + max_iterations=max_iterations, + transmission_losses=transmission_losses, + extra_functionality=extra_functionality, + **solver_options, + **kwargs, + ) + + if status != "ok": + logger.warning( + f"Solving status '{status}' with termination condition '{condition}'" + ) + if "infeasible" in condition: + raise RuntimeError("Solving status 'infeasible'") + return n if __name__ == "__main__": - if 'snakemake' not in globals(): + if "snakemake" not in globals(): from _helpers import mock_snakemake - snakemake = mock_snakemake('solve_network', network='elec', simpl='', - clusters='40', ll='v1.0', opts='Co2L-4H-RE') + + snakemake = mock_snakemake( + "solve_sector_network", + configfiles="test/config.overnight.yaml", + simpl="", + opts="", + clusters="5", + ll="v1.5", + sector_opts="CO2L0-24H-T-H-B-I-A-solar+p3-dist1", + planning_horizons="2030", + ) configure_logging(snakemake) + if "sector_opts" in snakemake.wildcards.keys(): + update_config_with_sector_opts( + snakemake.config, snakemake.wildcards.sector_opts + ) - tmpdir = snakemake.config['solving'].get('tmpdir') - if tmpdir is not None: - Path(tmpdir).mkdir(parents=True, exist_ok=True) - opts = snakemake.wildcards.opts.split('-') - solve_opts = snakemake.config['solving']['options'] + opts = snakemake.wildcards.opts + if "sector_opts" in snakemake.wildcards.keys(): + opts += "-" + snakemake.wildcards.sector_opts + opts = [o for o in opts.split("-") if o != ""] + solve_opts = snakemake.config["solving"]["options"] - fn = getattr(snakemake.log, 'memory', None) - with memory_logger(filename=fn, interval=30.) as mem: - n = pypsa.Network(snakemake.input[0]) - n = prepare_network(n, solve_opts) - n = solve_network(n, snakemake.config, opts, solver_dir=tmpdir, - solver_logfile=snakemake.log.solver) - n.export_to_netcdf(snakemake.output[0]) + np.random.seed(solve_opts.get("seed", 123)) - logger.info("Maximum memory usage: {}".format(mem.mem_usage)) + if "overrides" in snakemake.input.keys(): + overrides = override_component_attrs(snakemake.input.overrides) + n = pypsa.Network(snakemake.input.network, override_component_attrs=overrides) + else: + n = pypsa.Network(snakemake.input.network) + + n = prepare_network(n, solve_opts, config=snakemake.config) + + n = solve_network( + n, config=snakemake.config, opts=opts, log_fn=snakemake.log.solver + ) + + n.meta = dict(snakemake.config, **dict(wildcards=dict(snakemake.wildcards))) + n.export_to_netcdf(snakemake.output[0]) diff --git a/scripts/solve_operations_network.py b/scripts/solve_operations_network.py index faa11b90..27520485 100644 --- a/scripts/solve_operations_network.py +++ b/scripts/solve_operations_network.py @@ -1,126 +1,61 @@ -# SPDX-FileCopyrightText: : 2017-2020 The PyPSA-Eur Authors +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2017-2023 The PyPSA-Eur Authors # # SPDX-License-Identifier: MIT - """ -Solves linear optimal dispatch in hourly resolution -using the capacities of previous capacity expansion in rule :mod:`solve_network`. - -Relevant Settings ------------------ - -.. code:: yaml - - solving: - tmpdir: - options: - formulation: - clip_p_max_pu: - load_shedding: - noisy_costs: - nhours: - min_iterations: - max_iterations: - solver: - name: - (solveroptions): - -.. seealso:: - Documentation of the configuration file ``config.yaml`` at - :ref:`solving_cf` - -Inputs ------- - -- ``networks/elec_s{simpl}_{clusters}.nc``: confer :ref:`cluster` -- ``results/networks/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.nc``: confer :ref:`solve` - -Outputs -------- - -- ``results/networks/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}_op.nc``: Solved PyPSA network for optimal dispatch including optimisation results - -Description ------------ - +Solves linear optimal dispatch in hourly resolution using the capacities of +previous capacity expansion in rule :mod:`solve_network`. """ import logging -from _helpers import configure_logging -import pypsa import numpy as np - -from pathlib import Path -from vresutils.benchmark import memory_logger -from solve_network import solve_network, prepare_network +import pypsa +from _helpers import ( + configure_logging, + override_component_attrs, + update_config_with_sector_opts, +) +from solve_network import prepare_network, solve_network logger = logging.getLogger(__name__) -def set_parameters_from_optimized(n, n_optim): - lines_typed_i = n.lines.index[n.lines.type != ''] - n.lines.loc[lines_typed_i, 'num_parallel'] = \ - n_optim.lines['num_parallel'].reindex(lines_typed_i, fill_value=0.) - n.lines.loc[lines_typed_i, 's_nom'] = ( - np.sqrt(3) * n.lines['type'].map(n.line_types.i_nom) * - n.lines.bus0.map(n.buses.v_nom) * n.lines.num_parallel) - - lines_untyped_i = n.lines.index[n.lines.type == ''] - for attr in ('s_nom', 'r', 'x'): - n.lines.loc[lines_untyped_i, attr] = \ - n_optim.lines[attr].reindex(lines_untyped_i, fill_value=0.) - n.lines['s_nom_extendable'] = False - - links_dc_i = n.links.index[n.links.p_nom_extendable] - n.links.loc[links_dc_i, 'p_nom'] = \ - n_optim.links['p_nom_opt'].reindex(links_dc_i, fill_value=0.) - n.links.loc[links_dc_i, 'p_nom_extendable'] = False - - gen_extend_i = n.generators.index[n.generators.p_nom_extendable] - n.generators.loc[gen_extend_i, 'p_nom'] = \ - n_optim.generators['p_nom_opt'].reindex(gen_extend_i, fill_value=0.) - n.generators.loc[gen_extend_i, 'p_nom_extendable'] = False - #Use load shredding to avoid infeasibilites - n.generators.loc["dummy"]=n.generators.iloc[0] - n.generators.loc[["dummy"],["p_nom_extendable"]]=True - n.generators.loc[["dummy"],["marginal_cost"]]=3000 - - stor_units_extend_i = n.storage_units.index[n.storage_units.p_nom_extendable] - n.storage_units.loc[stor_units_extend_i, 'p_nom'] = \ - n_optim.storage_units['p_nom_opt'].reindex(stor_units_extend_i, fill_value=0.) - n.storage_units.loc[stor_units_extend_i, 'p_nom_extendable'] = False - - stor_extend_i = n.stores.index[n.stores.e_nom_extendable] - n.stores.loc[stor_extend_i, 'e_nom'] = \ - n_optim.stores['e_nom_opt'].reindex(stor_extend_i, fill_value=0.) - n.stores.loc[stor_extend_i, 'e_nom_extendable'] = False - - return n if __name__ == "__main__": - if 'snakemake' not in globals(): + if "snakemake" not in globals(): from _helpers import mock_snakemake - snakemake = mock_snakemake('solve_operations_network', network='elec', - simpl='', clusters='40', ll='v1.0', opts='Co2L-4H') + + snakemake = mock_snakemake( + "solve_operations_network", + configfiles="test/config.electricity.yaml", + simpl="", + opts="", + clusters="5", + ll="v1.5", + sector_opts="", + planning_horizons="", + ) + configure_logging(snakemake) + update_config_with_sector_opts(snakemake.config, snakemake.wildcards.sector_opts) - tmpdir = snakemake.config['solving'].get('tmpdir') - if tmpdir is not None: - Path(tmpdir).mkdir(parents=True, exist_ok=True) + opts = (snakemake.wildcards.opts + "-" + snakemake.wildcards.sector_opts).split("-") + opts = [o for o in opts if o != ""] + solve_opts = snakemake.config["solving"]["options"] - n = pypsa.Network(snakemake.input.unprepared) - n_optim = pypsa.Network(snakemake.input.optimized) - n = set_parameters_from_optimized(n, n_optim) - del n_optim + np.random.seed(solve_opts.get("seed", 123)) - opts = snakemake.wildcards.opts.split('-') - snakemake.config['solving']['options']['skip_iterations'] = False + if "overrides" in snakemake.input: + overrides = override_component_attrs(snakemake.input.overrides) + n = pypsa.Network(snakemake.input.network, override_component_attrs=overrides) + else: + n = pypsa.Network(snakemake.input.network) - fn = getattr(snakemake.log, 'memory', None) - with memory_logger(filename=fn, interval=30.) as mem: - n = prepare_network(n, snakemake.config['solving']['options']) - n = solve_network(n, snakemake.config, opts, solver_dir=tmpdir, - solver_logfile=snakemake.log.solver) - n.export_to_netcdf(snakemake.output[0]) + n.optimize.fix_optimal_capacities() + n = prepare_network(n, solve_opts, config=snakemake.config) + n = solve_network( + n, config=snakemake.config, opts=opts, log_fn=snakemake.log.solver + ) - logger.info("Maximum memory usage: {}".format(mem.mem_usage)) + n.meta = dict(snakemake.config, **dict(wildcards=dict(snakemake.wildcards))) + n.export_to_netcdf(snakemake.output[0]) diff --git a/test/config.test1.yaml b/test/config.test1.yaml deleted file mode 100755 index 2986037b..00000000 --- a/test/config.test1.yaml +++ /dev/null @@ -1,278 +0,0 @@ -# SPDX-FileCopyrightText: : 2017-2020 The PyPSA-Eur Authors -# -# SPDX-License-Identifier: CC0-1.0 - -version: 0.4.0 -tutorial: true -logging: - level: INFO - format: '%(levelname)s:%(name)s:%(message)s' - -summary_dir: results - -scenario: - simpl: [''] - ll: ['copt'] - clusters: [5] - opts: [Co2L-24H] - -countries: ['DE'] - -clustering: - simplify: - to_substations: false # network is simplified to nodes with positive or negative power injection (i.e. substations or offwind connections) - -snapshots: - start: "2013-03-01" - end: "2013-03-08" - closed: 'left' # end is not inclusive - -enable: - prepare_links_p_nom: false - retrieve_databundle: true - build_cutout: false - retrieve_cutout: true - build_natura_raster: false - retrieve_natura_raster: true - custom_busmap: false - -electricity: - voltages: [220., 300., 380.] - co2limit: 100.e+6 - - extendable_carriers: - Generator: [OCGT] - StorageUnit: [battery] - Store: [H2] - Link: [H2 pipeline] - - max_hours: - battery: 6 - H2: 168 - - powerplants_filter: false # use pandas query strings here, e.g. Country not in ['Germany'] - custom_powerplants: false # use pandas query strings here, e.g. Country in ['Germany'] - conventional_carriers: [coal, CCGT] # [nuclear, oil, OCGT, CCGT, coal, lignite, geothermal, biomass] - -atlite: - nprocesses: 4 - cutouts: - europe-2013-era5-tutorial: - module: era5 - x: [4., 15.] - y: [46., 56.] - time: ["2013-03-01", "2013-03-08"] - -renewable: - onwind: - cutout: europe-2013-era5-tutorial - resource: - method: wind - turbine: Vestas_V112_3MW - capacity_per_sqkm: 3 # ScholzPhd Tab 4.3.1: 10MW/km^2 - # correction_factor: 0.93 - corine: - # Scholz, Y. (2012). Renewable energy based electricity supply at low costs: - # development of the REMix model and application for Europe. ( p.42 / p.28) - grid_codes: [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, - 24, 25, 26, 27, 28, 29, 31, 32] - distance: 1000 - distance_grid_codes: [1, 2, 3, 4, 5, 6] - natura: true - potential: simple # or conservative - clip_p_max_pu: 1.e-2 - offwind-ac: - cutout: europe-2013-era5-tutorial - resource: - method: wind - turbine: NREL_ReferenceTurbine_5MW_offshore - capacity_per_sqkm: 3 - # correction_factor: 0.93 - corine: [44, 255] - natura: true - max_shore_distance: 30000 - potential: simple # or conservative - clip_p_max_pu: 1.e-2 - offwind-dc: - cutout: europe-2013-era5-tutorial - resource: - method: wind - turbine: NREL_ReferenceTurbine_5MW_offshore - # ScholzPhd Tab 4.3.1: 10MW/km^2 - capacity_per_sqkm: 3 - # correction_factor: 0.93 - corine: [44, 255] - natura: true - min_shore_distance: 30000 - potential: simple # or conservative - clip_p_max_pu: 1.e-2 - solar: - cutout: europe-2013-era5-tutorial - resource: - method: pv - panel: CSi - orientation: - slope: 35. - azimuth: 180. - capacity_per_sqkm: 1.7 # ScholzPhd Tab 4.3.1: 170 MW/km^2 - # Determined by comparing uncorrected area-weighted full-load hours to those - # published in Supplementary Data to - # Pietzcker, Robert Carl, et al. "Using the sun to decarbonize the power - # sector: The economic potential of photovoltaics and concentrating solar - # power." Applied Energy 135 (2014): 704-720. - correction_factor: 0.854337 - corine: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, - 14, 15, 16, 17, 18, 19, 20, 26, 31, 32] - natura: true - potential: simple # or conservative - clip_p_max_pu: 1.e-2 - -lines: - types: - 220.: "Al/St 240/40 2-bundle 220.0" - 300.: "Al/St 240/40 3-bundle 300.0" - 380.: "Al/St 240/40 4-bundle 380.0" - s_max_pu: 0.7 - s_nom_max: .inf - length_factor: 1.25 - under_construction: 'zero' # 'zero': set capacity to zero, 'remove': remove, 'keep': with full capacity - -links: - p_max_pu: 1.0 - p_nom_max: .inf - include_tyndp: true - under_construction: 'zero' # 'zero': set capacity to zero, 'remove': remove, 'keep': with full capacity - -transformers: - x: 0.1 - s_nom: 2000. - type: '' - -load: - power_statistics: True # only for files from <2019; set false in order to get ENTSOE transparency data - interpolate_limit: 3 # data gaps up until this size are interpolated linearly - time_shift_for_large_gaps: 1w # data gaps up until this size are copied by copying from - manual_adjustments: true # false - scaling_factor: 1.0 - -costs: - year: 2030 - discountrate: 0.07 # From a Lion Hirth paper, also reflects average of Noothout et al 2016 - USD2013_to_EUR2013: 0.7532 # [EUR/USD] ECB: https://www.ecb.europa.eu/stats/exchange/eurofxref/html/eurofxref-graph-usd.en.html - marginal_cost: - solar: 0.01 - onwind: 0.015 - offwind: 0.015 - H2: 0. - battery: 0. - emission_prices: # only used with the option Ep - co2: 0. - -solving: - options: - formulation: kirchhoff - load_shedding: false - noisy_costs: true - min_iterations: 1 - max_iterations: 1 - clip_p_max_pu: 0.01 - #nhours: 10 - solver: - name: glpk - # solver: - # name: gurobi - # threads: 4 - # method: 2 # barrier - # crossover: 0 - # BarConvTol: 1.e-5 - # FeasibilityTol: 1.e-6 - # AggFill: 0 - # PreDual: 0 - # GURO_PAR_BARDENSETHRESH: 200 - # solver: - # 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 - -plotting: - map: - figsize: [7, 7] - boundaries: [-10.2, 29, 35, 72] - p_nom: - bus_size_factor: 5.e+4 - linewidth_factor: 3.e+3 - - costs_max: 800 - costs_threshold: 1 - - energy_max: 15000. - energy_min: -10000. - energy_threshold: 50. - - vre_techs: ["onwind", "offwind-ac", "offwind-dc", "solar", "ror"] - conv_techs: ["OCGT", "CCGT", "Nuclear", "Coal"] - storage_techs: ["hydro+PHS", "battery", "H2"] - load_carriers: ["AC load"] - AC_carriers: ["AC line", "AC transformer"] - link_carriers: ["DC line", "Converter AC-DC"] - tech_colors: - "onwind" : "#235ebc" - "onshore wind" : "#235ebc" - 'offwind' : "#6895dd" - 'offwind-ac' : "#6895dd" - 'offshore wind' : "#6895dd" - 'offshore wind ac' : "#6895dd" - 'offwind-dc' : "#74c6f2" - 'offshore wind dc' : "#74c6f2" - "hydro" : "#08ad97" - "hydro+PHS" : "#08ad97" - "PHS" : "#08ad97" - "hydro reservoir" : "#08ad97" - 'hydroelectricity' : '#08ad97' - "ror" : "#4adbc8" - "run of river" : "#4adbc8" - 'solar' : "#f9d002" - 'solar PV' : "#f9d002" - 'solar thermal' : '#ffef60' - 'biomass' : '#0c6013' - 'solid biomass' : '#06540d' - 'biogas' : '#23932d' - 'waste' : '#68896b' - 'geothermal' : '#ba91b1' - "OCGT" : "#d35050" - "gas" : "#d35050" - "natural gas" : "#d35050" - "CCGT" : "#b20101" - "nuclear" : "#ff9000" - "coal" : "#707070" - "lignite" : "#9e5a01" - "oil" : "#262626" - "H2" : "#ea048a" - "hydrogen storage" : "#ea048a" - "battery" : "#b8ea04" - "Electric load" : "#f9d002" - "electricity" : "#f9d002" - "lines" : "#70af1d" - "transmission lines" : "#70af1d" - "AC-AC" : "#70af1d" - "AC line" : "#70af1d" - "links" : "#8a1caf" - "HVDC links" : "#8a1caf" - "DC-DC" : "#8a1caf" - "DC link" : "#8a1caf" - nice_names: - OCGT: "Open-Cycle Gas" - CCGT: "Combined-Cycle Gas" - offwind-ac: "Offshore Wind (AC)" - offwind-dc: "Offshore Wind (DC)" - onwind: "Onshore Wind" - solar: "Solar" - PHS: "Pumped Hydro Storage" - hydro: "Reservoir & Dam" - battery: "Battery Storage" - H2: "Hydrogen Storage" - lines: "Transmission Lines" - ror: "Run of River"