From 491cee92da5aa8477fac573eae4b1dfd95859621 Mon Sep 17 00:00:00 2001 From: Pilar Date: Mon, 13 Feb 2023 07:55:25 -0500 Subject: [PATCH 1/4] implementing shared_surfaces method --- hub/city_model_structure/attributes/plane.py | 3 --- hub/city_model_structure/building_demand/surface.py | 1 - 2 files changed, 4 deletions(-) diff --git a/hub/city_model_structure/attributes/plane.py b/hub/city_model_structure/attributes/plane.py index 25a4ec3f..700be8fb 100644 --- a/hub/city_model_structure/attributes/plane.py +++ b/hub/city_model_structure/attributes/plane.py @@ -17,9 +17,6 @@ class Plane: """ def __init__(self, origin, normal): - # todo: other options to define the plane: - # by two lines - # by three points self._origin = origin self._normal = normal self._equation = None diff --git a/hub/city_model_structure/building_demand/surface.py b/hub/city_model_structure/building_demand/surface.py index dc392160..285393e3 100644 --- a/hub/city_model_structure/building_demand/surface.py +++ b/hub/city_model_structure/building_demand/surface.py @@ -287,7 +287,6 @@ class Surface: """ Raises not implemented error """ - # todo: check https://trimsh.org/trimesh.collision.html as an option to implement this method raise NotImplementedError def divide(self, z): From 8469674b18331aa08c548414af4c71707e73869f Mon Sep 17 00:00:00 2001 From: Pilar Date: Tue, 21 Feb 2023 10:14:55 -0500 Subject: [PATCH 2/4] added nrcan catalog --- .../construction/construction_helper.py | 17 +- .../construction/nrcan_catalog.py | 276 +- .../data_models/construction/construction.py | 2 +- .../data_models/construction/window.py | 11 +- hub/data/construction/nrcan_archetypes.json | 47032 ++++++++-------- .../construction/nrcan_constructions.json | 768 +- hub/unittests/test_construction_catalog.py | 27 +- 7 files changed, 23547 insertions(+), 24586 deletions(-) diff --git a/hub/catalog_factories/construction/construction_helper.py b/hub/catalog_factories/construction/construction_helper.py index a93c2584..a9bdaf19 100644 --- a/hub/catalog_factories/construction/construction_helper.py +++ b/hub/catalog_factories/construction/construction_helper.py @@ -22,15 +22,14 @@ class ConstructionHelper: } _nrcan_surfaces_types_to_hub_types = { - 'Wall_Outdoors': cte.WALL, - 'RoofCeiling_Outdoors': cte.ROOF, - 'Floor_Outdoors': cte.ATTIC_FLOOR, - 'Window_Outdoors': cte.WINDOW, - 'Skylight_Outdoors': cte.SKYLIGHT, - 'Door_Outdoors': cte.DOOR, - 'Wall_Ground': cte.GROUND_WALL, - 'RoofCeiling_Ground': cte.GROUND_WALL, - 'Floor_Ground': cte.GROUND + 'OutdoorsWall': cte.WALL, + 'OutdoorsRoofCeiling': cte.ROOF, + 'OutdoorsFloor': cte.ATTIC_FLOOR, + 'Window': cte.WINDOW, + 'Skylight': cte.SKYLIGHT, + 'GroundWall': cte.GROUND_WALL, + 'GroundRoofCeiling': cte.GROUND_WALL, + 'GroundFloor': cte.GROUND } @property diff --git a/hub/catalog_factories/construction/nrcan_catalog.py b/hub/catalog_factories/construction/nrcan_catalog.py index 1ace7524..0fe42d72 100644 --- a/hub/catalog_factories/construction/nrcan_catalog.py +++ b/hub/catalog_factories/construction/nrcan_catalog.py @@ -6,119 +6,227 @@ Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ import json -import urllib.request -import xmltodict - +from pathlib import Path from hub.catalog_factories.catalog import Catalog -from hub.catalog_factories.data_models.usages.content import Content +from hub.catalog_factories.data_models.construction.content import Content from hub.catalog_factories.construction.construction_helper import ConstructionHelper from hub.catalog_factories.data_models.construction.construction import Construction from hub.catalog_factories.data_models.construction.archetype import Archetype +from hub.catalog_factories.data_models.construction.window import Window +from hub.catalog_factories.data_models.construction.material import Material +from hub.catalog_factories.data_models.construction.layer import Layer class NrcanCatalog(Catalog): def __init__(self, path): - path = str(path / 'nrcan.xml') - self._content = None - self._g_value_per_hdd = [] - self._thermal_transmittance_per_hdd_and_surface = {} - self._window_ratios = {} - with open(path) as xml: - self._metadata = xmltodict.parse(xml.read()) - self._base_url_archetypes = self._metadata['nrcan']['@base_url_archetypes'] - self._base_url_construction = self._metadata['nrcan']['@base_url_construction'] - self._load_window_ratios() - self._load_construction_values() - self._content = Content(self._load_archetypes()) + _path_archetypes = Path(path / 'nrcan_archetypes.json').resolve() + _path_constructions = (path / 'nrcan_constructions.json') + with open(_path_archetypes, 'r') as file: + self._archetypes = json.load(file) + with open(_path_constructions, 'r') as file: + self._constructions = json.load(file) - def _load_window_ratios(self): - for standard in self._metadata['nrcan']['standards_per_function']['standard']: - url = f'{self._base_url_archetypes}{standard["file_location"]}' - # todo: read from file - self._window_ratios = {'Mean': 0.2, 'North': 0.2, 'East': 0.2, 'South': 0.2, 'West': 0.2} + self._catalog_windows = self._load_windows() + self._catalog_materials = self._load_materials() + self._catalog_constructions = self._load_constructions() + self._catalog_archetypes = self._load_archetypes() - def _load_construction_values(self): - for standard in self._metadata['nrcan']['standards_per_period']['standard']: - g_value_url = f'{self._base_url_construction}{standard["g_value_location"]}' - punc = '() Date: Wed, 22 Feb 2023 08:31:14 -0500 Subject: [PATCH 3/4] added nrcan catalog --- .../data_models/construction/archetype.py | 18 +- .../data_models/construction/construction.py | 2 +- .../data_models/construction/layer.py | 2 +- .../data_models/construction/material.py | 2 +- .../building_demand/material.py | 6 +- .../building_demand/thermal_zone.py | 4 +- hub/data/construction/nrcan_archetypes.json | 10368 +++++++--------- .../construction/nrcan_constructions.json | 5308 ++++---- .../insel/insel_monthly_energy_balance.py | 5 +- .../helpers/construction_helper.py | 20 +- .../construction/nrcan_physics_parameters.py | 38 +- hub/unittests/test_construction_factory.py | 104 +- 12 files changed, 7040 insertions(+), 8837 deletions(-) diff --git a/hub/catalog_factories/data_models/construction/archetype.py b/hub/catalog_factories/data_models/construction/archetype.py index 6f69a874..d23e57a0 100644 --- a/hub/catalog_factories/data_models/construction/archetype.py +++ b/hub/catalog_factories/data_models/construction/archetype.py @@ -38,7 +38,7 @@ class Archetype: def id(self): """ Get archetype id - :return: int + :return: str """ return self._id @@ -85,7 +85,7 @@ class Archetype: @property def average_storey_height(self): """ - Get archetype average storey height + Get archetype average storey height in m :return: float """ return self._average_storey_height @@ -93,23 +93,23 @@ class Archetype: @property def thermal_capacity(self): """ - Get archetype thermal capacity - :return: int + Get archetype thermal capacity in J/m3K + :return: float """ return self._thermal_capacity @property def extra_loses_due_to_thermal_bridges(self): """ - Get archetype extra loses due to thermal bridges - :return: int + Get archetype extra loses due to thermal bridges in W/m2K + :return: float """ return self._extra_loses_due_to_thermal_bridges @property def indirect_heated_ratio(self): """ - Get archetype indirect heat ratio + Get archetype indirect heated area ratio :return: float """ return self._indirect_heated_ratio @@ -117,7 +117,7 @@ class Archetype: @property def infiltration_rate_for_ventilation_system_off(self): """ - Get archetype infiltration rate for ventilation system off + Get archetype infiltration rate for ventilation system off in ACH :return: float """ return self._infiltration_rate_for_ventilation_system_off @@ -125,7 +125,7 @@ class Archetype: @property def infiltration_rate_for_ventilation_system_on(self): """ - Get archetype infiltration rate for ventilation system on + Get archetype infiltration rate for ventilation system on in ACH :return: float """ return self._infiltration_rate_for_ventilation_system_on diff --git a/hub/catalog_factories/data_models/construction/construction.py b/hub/catalog_factories/data_models/construction/construction.py index ec2bb0a4..472f629e 100644 --- a/hub/catalog_factories/data_models/construction/construction.py +++ b/hub/catalog_factories/data_models/construction/construction.py @@ -21,7 +21,7 @@ class Construction: def id(self): """ Get construction id - :return: int + :return: str """ return self._id diff --git a/hub/catalog_factories/data_models/construction/layer.py b/hub/catalog_factories/data_models/construction/layer.py index afcbfe14..e8452d79 100644 --- a/hub/catalog_factories/data_models/construction/layer.py +++ b/hub/catalog_factories/data_models/construction/layer.py @@ -17,7 +17,7 @@ class Layer: def id(self): """ Get layer id - :return: int + :return: str """ return self._id diff --git a/hub/catalog_factories/data_models/construction/material.py b/hub/catalog_factories/data_models/construction/material.py index d701a827..34674e0d 100644 --- a/hub/catalog_factories/data_models/construction/material.py +++ b/hub/catalog_factories/data_models/construction/material.py @@ -32,7 +32,7 @@ class Material: def id(self): """ Get material id - :return: int + :return: str """ return self._id diff --git a/hub/city_model_structure/building_demand/material.py b/hub/city_model_structure/building_demand/material.py index 6320c4ff..ebf97ced 100644 --- a/hub/city_model_structure/building_demand/material.py +++ b/hub/city_model_structure/building_demand/material.py @@ -28,7 +28,7 @@ class Material: def id(self): """ Get material id - :return: int + :return: str """ return self._id @@ -36,9 +36,9 @@ class Material: def id(self, value): """ Set material id - :param value: int + :param value: str """ - self._id = int(value) + self._id = value @property def name(self): diff --git a/hub/city_model_structure/building_demand/thermal_zone.py b/hub/city_model_structure/building_demand/thermal_zone.py index 19f305d5..db873ce4 100644 --- a/hub/city_model_structure/building_demand/thermal_zone.py +++ b/hub/city_model_structure/building_demand/thermal_zone.py @@ -120,7 +120,7 @@ class ThermalZone: @property def effective_thermal_capacity(self) -> Union[None, float]: """ - Get thermal zone effective thermal capacity in J/m2K + Get thermal zone effective thermal capacity in J/m3K :return: None or float """ return self._effective_thermal_capacity @@ -128,7 +128,7 @@ class ThermalZone: @effective_thermal_capacity.setter def effective_thermal_capacity(self, value): """ - Set thermal zone effective thermal capacity in J/m2K + Set thermal zone effective thermal capacity in J/m3K :param value: float """ if value is not None: diff --git a/hub/data/construction/nrcan_archetypes.json b/hub/data/construction/nrcan_archetypes.json index c64920cc..6b36328f 100644 --- a/hub/data/construction/nrcan_archetypes.json +++ b/hub/data/construction/nrcan_archetypes.json @@ -14,24 +14,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -62,24 +58,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -110,24 +102,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -158,24 +146,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -206,24 +190,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -254,24 +234,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -302,24 +278,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -350,24 +322,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -398,24 +366,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -446,24 +410,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -494,24 +454,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -542,24 +498,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -590,24 +542,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -638,24 +586,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -686,24 +630,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -734,24 +674,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -782,24 +718,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -830,24 +762,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -878,24 +806,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -926,24 +850,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -974,24 +894,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -1022,24 +938,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -1070,24 +982,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -1118,24 +1026,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -1166,24 +1070,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -1214,24 +1114,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -1262,24 +1158,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -1310,24 +1202,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -1358,24 +1246,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -1406,24 +1290,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "20.22", - "south": "28.0", - "west": "20.22" - } + "north": "0.0", + "east": "20.22", + "south": "28.0", + "west": "20.22" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -1454,24 +1334,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -1502,24 +1378,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -1550,24 +1422,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -1598,24 +1466,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -1646,24 +1510,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -1694,24 +1554,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -1742,24 +1598,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -1790,24 +1642,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -1838,24 +1686,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -1886,24 +1730,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -1934,24 +1774,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -1982,24 +1818,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -2030,24 +1862,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -2078,24 +1906,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -2126,24 +1950,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -2174,24 +1994,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -2222,24 +2038,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -2270,24 +2082,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -2318,24 +2126,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -2366,24 +2170,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -2414,24 +2214,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -2462,24 +2258,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -2510,24 +2302,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -2558,24 +2346,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -2606,24 +2390,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -2654,24 +2434,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -2702,24 +2478,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -2750,24 +2522,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -2798,24 +2566,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -2846,24 +2610,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "30.0", - "east": "29.62", - "south": "30.0", - "west": "29.19" - } + "north": "30.0", + "east": "29.62", + "south": "30.0", + "west": "29.19" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -2894,24 +2654,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -2942,24 +2698,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -2990,24 +2742,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3038,24 +2786,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3086,24 +2830,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3134,24 +2874,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3182,24 +2918,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3230,24 +2962,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3278,24 +3006,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3326,24 +3050,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3374,24 +3094,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3422,24 +3138,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3470,24 +3182,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3518,24 +3226,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3566,24 +3270,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3614,24 +3314,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3662,24 +3358,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3710,24 +3402,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3758,24 +3446,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3806,24 +3490,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3854,24 +3534,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3902,24 +3578,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3950,24 +3622,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -3998,24 +3666,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -4046,24 +3710,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -4094,24 +3754,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -4142,24 +3798,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -4190,24 +3842,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -4238,24 +3886,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -4286,24 +3930,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "9.31", - "east": "11.25", - "south": "13.22", - "west": "23.17" - } + "north": "9.31", + "east": "11.25", + "south": "13.22", + "west": "23.17" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -4334,24 +3974,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -4382,24 +4018,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -4430,24 +4062,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -4478,24 +4106,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -4526,24 +4150,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -4574,24 +4194,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -4622,24 +4238,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -4670,24 +4282,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -4718,24 +4326,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -4766,24 +4370,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -4814,24 +4414,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -4862,24 +4458,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -4910,24 +4502,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -4958,24 +4546,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -5006,24 +4590,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -5054,24 +4634,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -5102,24 +4678,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -5150,24 +4722,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -5198,24 +4766,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -5246,24 +4810,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -5294,24 +4854,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -5342,24 +4898,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -5390,24 +4942,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -5438,24 +4986,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -5486,24 +5030,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -5534,24 +5074,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -5582,24 +5118,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -5630,24 +5162,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -5678,24 +5206,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -5726,24 +5250,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "15.61", - "east": "20.37", - "south": "21.46", - "west": "19.85" - } + "north": "15.61", + "east": "20.37", + "south": "21.46", + "west": "19.85" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -5774,24 +5294,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -5822,24 +5338,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -5870,24 +5382,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -5918,24 +5426,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -5966,24 +5470,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6014,24 +5514,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6062,24 +5558,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6110,24 +5602,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6158,24 +5646,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6206,24 +5690,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6254,24 +5734,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6302,24 +5778,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6350,24 +5822,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6398,24 +5866,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6446,24 +5910,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6494,24 +5954,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6542,24 +5998,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6590,24 +6042,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6638,24 +6086,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6686,24 +6130,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6734,24 +6174,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6782,24 +6218,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6830,24 +6262,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6878,24 +6306,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -6926,24 +6350,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -6974,24 +6394,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -7022,24 +6438,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -7070,24 +6482,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -7118,24 +6526,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -7166,24 +6570,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "35.29", - "east": "35.29", - "south": "35.29", - "west": "35.29" - } + "north": "35.29", + "east": "35.29", + "south": "35.29", + "west": "35.29" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -7214,24 +6614,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7262,24 +6658,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7310,24 +6702,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7358,24 +6746,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7406,24 +6790,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7454,24 +6834,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7502,24 +6878,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7550,24 +6922,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7598,24 +6966,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7646,24 +7010,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7694,24 +7054,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7742,24 +7098,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7790,24 +7142,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7838,24 +7186,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7886,24 +7230,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7934,24 +7274,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -7982,24 +7318,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -8030,24 +7362,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -8078,24 +7406,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -8126,24 +7450,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -8174,24 +7494,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -8222,24 +7538,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -8270,24 +7582,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -8318,24 +7626,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -8366,24 +7670,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -8414,24 +7714,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -8462,24 +7758,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -8510,24 +7802,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -8558,24 +7846,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -8606,24 +7890,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "33.01", - "east": "33.01", - "south": "33.01", - "west": "33.01" - } + "north": "33.01", + "east": "33.01", + "south": "33.01", + "west": "33.01" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -8654,24 +7934,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -8702,24 +7978,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -8750,24 +8022,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -8798,24 +8066,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -8846,24 +8110,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -8894,24 +8154,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -8942,24 +8198,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -8990,24 +8242,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9038,24 +8286,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9086,24 +8330,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9134,24 +8374,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9182,24 +8418,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9230,24 +8462,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9278,24 +8506,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9326,24 +8550,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9374,24 +8594,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9422,24 +8638,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9470,24 +8682,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9518,24 +8726,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9566,24 +8770,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9614,24 +8814,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9662,24 +8858,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9710,24 +8902,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9758,24 +8946,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -9806,24 +8990,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -9854,24 +9034,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -9902,24 +9078,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -9950,24 +9122,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -9998,24 +9166,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -10046,24 +9210,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "20.0", - "east": "21.25", - "south": "20.0", - "west": "18.02" - } + "north": "20.0", + "east": "21.25", + "south": "20.0", + "west": "18.02" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -10094,24 +9254,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10142,24 +9298,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10190,24 +9342,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10238,24 +9386,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10286,24 +9430,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10334,24 +9474,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10382,24 +9518,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10430,24 +9562,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10478,24 +9606,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10526,24 +9650,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10574,24 +9694,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10622,24 +9738,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10670,24 +9782,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10718,24 +9826,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10766,24 +9870,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10814,24 +9914,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10862,24 +9958,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10910,24 +10002,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -10958,24 +10046,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -11006,24 +10090,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -11054,24 +10134,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -11102,24 +10178,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -11150,24 +10222,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -11198,24 +10266,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -11246,24 +10310,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -11294,24 +10354,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -11342,24 +10398,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -11390,24 +10442,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -11438,24 +10486,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -11486,24 +10530,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "20.52", - "east": "19.14", - "south": "24.08", - "west": "12.88" - } + "north": "20.52", + "east": "19.14", + "south": "24.08", + "west": "12.88" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -11534,24 +10574,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -11582,24 +10618,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -11630,24 +10662,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -11678,24 +10706,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -11726,24 +10750,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -11774,24 +10794,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -11822,24 +10838,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -11870,24 +10882,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -11918,24 +10926,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -11966,24 +10970,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -12014,24 +11014,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -12062,24 +11058,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -12110,24 +11102,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -12158,24 +11146,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -12206,24 +11190,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -12254,24 +11234,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -12302,24 +11278,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -12350,24 +11322,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -12398,24 +11366,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -12446,24 +11410,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -12494,24 +11454,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -12542,24 +11498,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -12590,24 +11542,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -12638,24 +11586,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -12686,24 +11630,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -12734,24 +11674,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -12782,24 +11718,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -12830,24 +11762,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -12878,24 +11806,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -12926,24 +11850,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -12974,24 +11894,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13022,24 +11938,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13070,24 +11982,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13118,24 +12026,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13166,24 +12070,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13214,24 +12114,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13262,24 +12158,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13310,24 +12202,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13358,24 +12246,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13406,24 +12290,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13454,24 +12334,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13502,24 +12378,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13550,24 +12422,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13598,24 +12466,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13646,24 +12510,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13694,24 +12554,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13742,24 +12598,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13790,24 +12642,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13838,24 +12686,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13886,24 +12730,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13934,24 +12774,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -13982,24 +12818,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -14030,24 +12862,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -14078,24 +12906,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -14126,24 +12950,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -14174,24 +12994,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -14222,24 +13038,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -14270,24 +13082,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -14318,24 +13126,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -14366,24 +13170,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "14.0", - "south": "28.0", - "west": "14.0" - } + "north": "0.0", + "east": "14.0", + "south": "28.0", + "west": "14.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -14414,24 +13214,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -14462,24 +13258,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -14510,24 +13302,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -14558,24 +13346,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -14606,24 +13390,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -14654,24 +13434,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -14702,24 +13478,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -14750,24 +13522,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -14798,24 +13566,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -14846,24 +13610,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -14894,24 +13654,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -14942,24 +13698,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -14990,24 +13742,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -15038,24 +13786,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -15086,24 +13830,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -15134,24 +13874,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -15182,24 +13918,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -15230,24 +13962,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -15278,24 +14006,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -15326,24 +14050,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -15374,24 +14094,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -15422,24 +14138,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -15470,24 +14182,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -15518,24 +14226,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -15566,24 +14270,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" } }, "OutdoorsFloor": { @@ -15614,24 +14314,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" } }, "OutdoorsFloor": { @@ -15662,24 +14358,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" } }, "OutdoorsFloor": { @@ -15710,24 +14402,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" } }, "OutdoorsFloor": { @@ -15758,24 +14446,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" } }, "OutdoorsFloor": { @@ -15806,24 +14490,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "25.37", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "25.37", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "1.04", - "east": "1.04", - "south": "1.04", - "west": "1.04" - } + "north": "1.04", + "east": "1.04", + "south": "1.04", + "west": "1.04" } }, "OutdoorsFloor": { @@ -15854,24 +14534,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -15902,24 +14578,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -15950,24 +14622,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -15998,24 +14666,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16046,24 +14710,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16094,24 +14754,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16142,24 +14798,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16190,24 +14842,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16238,24 +14886,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16286,24 +14930,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16334,24 +14974,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16382,24 +15018,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16430,24 +15062,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16478,24 +15106,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16526,24 +15150,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16574,24 +15194,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16622,24 +15238,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16670,24 +15282,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16718,24 +15326,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16766,24 +15370,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16814,24 +15414,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16862,24 +15458,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16910,24 +15502,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -16958,24 +15546,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -17006,24 +15590,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -17054,24 +15634,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -17102,24 +15678,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -17150,24 +15722,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -17198,24 +15766,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -17246,24 +15810,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "26.24", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "26.24", + "west": "0.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -17294,24 +15854,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -17342,24 +15898,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -17390,24 +15942,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -17438,24 +15986,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -17486,24 +16030,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -17534,24 +16074,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -17582,24 +16118,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -17630,24 +16162,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -17678,24 +16206,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -17726,24 +16250,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -17774,24 +16294,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -17822,24 +16338,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -17870,24 +16382,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -17918,24 +16426,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -17966,24 +16470,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -18014,24 +16514,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -18062,24 +16558,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -18110,24 +16602,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -18158,24 +16646,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -18206,24 +16690,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -18254,24 +16734,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -18302,24 +16778,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -18350,24 +16822,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -18398,24 +16866,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -18446,24 +16910,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" } }, "OutdoorsFloor": { @@ -18494,24 +16954,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" } }, "OutdoorsFloor": { @@ -18542,24 +16998,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" } }, "OutdoorsFloor": { @@ -18590,24 +17042,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" } }, "OutdoorsFloor": { @@ -18638,24 +17086,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" } }, "OutdoorsFloor": { @@ -18686,24 +17130,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "35.0", - "east": "35.0", - "south": "35.0", - "west": "35.0" - } + "north": "35.0", + "east": "35.0", + "south": "35.0", + "west": "35.0" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "1.12", - "east": "1.12", - "south": "1.12", - "west": "1.12" - } + "north": "1.12", + "east": "1.12", + "south": "1.12", + "west": "1.12" } }, "OutdoorsFloor": { @@ -18734,24 +17174,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -18782,24 +17218,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -18830,24 +17262,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -18878,24 +17306,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -18926,24 +17350,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -18974,24 +17394,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19022,24 +17438,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19070,24 +17482,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19118,24 +17526,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19166,24 +17570,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19214,24 +17614,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19262,24 +17658,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19310,24 +17702,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19358,24 +17746,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19406,24 +17790,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19454,24 +17834,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19502,24 +17878,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19550,24 +17922,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19598,24 +17966,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19646,24 +18010,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19694,24 +18054,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19742,24 +18098,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19790,24 +18142,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19838,24 +18186,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -19886,24 +18230,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -19934,24 +18274,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -19982,24 +18318,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -20030,24 +18362,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -20078,24 +18406,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -20126,24 +18450,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "15.24", - "east": "3.95", - "south": "11.39", - "west": "3.13" - } + "north": "15.24", + "east": "3.95", + "south": "11.39", + "west": "3.13" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -20174,24 +18494,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20222,24 +18538,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20270,24 +18582,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20318,24 +18626,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20366,24 +18670,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20414,24 +18714,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20462,24 +18758,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20510,24 +18802,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20558,24 +18846,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20606,24 +18890,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20654,24 +18934,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20702,24 +18978,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20750,24 +19022,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20798,24 +19066,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20846,24 +19110,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20894,24 +19154,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20942,24 +19198,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -20990,24 +19242,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -21038,24 +19286,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -21086,24 +19330,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -21134,24 +19374,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -21182,24 +19418,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -21230,24 +19462,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -21278,24 +19506,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -21326,24 +19550,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -21374,24 +19594,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -21422,24 +19638,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -21470,24 +19682,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -21518,24 +19726,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -21566,24 +19770,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "19.81", - "east": "19.81", - "south": "19.81", - "west": "19.81" - } + "north": "19.81", + "east": "19.81", + "south": "19.81", + "west": "19.81" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "0.0", - "west": "0.0" - } + "north": "0.0", + "east": "0.0", + "south": "0.0", + "west": "0.0" } }, "OutdoorsFloor": { @@ -21614,24 +19814,20 @@ "opaque_surface_name": "1000_1979_4", "transparent_surface_name": "Window_1000_1979_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_4", - "transparent_surface_name": "Skylight_1000_1979_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -21662,24 +19858,20 @@ "opaque_surface_name": "1000_1979_5", "transparent_surface_name": "Window_1000_1979_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_5", - "transparent_surface_name": "Skylight_1000_1979_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -21710,24 +19902,20 @@ "opaque_surface_name": "1000_1979_6", "transparent_surface_name": "Window_1000_1979_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_6", - "transparent_surface_name": "Skylight_1000_1979_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -21758,24 +19946,20 @@ "opaque_surface_name": "1000_1979_7A", "transparent_surface_name": "Window_1000_1979_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7A", - "transparent_surface_name": "Skylight_1000_1979_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -21806,24 +19990,20 @@ "opaque_surface_name": "1000_1979_7B", "transparent_surface_name": "Window_1000_1979_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_7B", - "transparent_surface_name": "Skylight_1000_1979_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -21854,24 +20034,20 @@ "opaque_surface_name": "1000_1979_8", "transparent_surface_name": "Window_1000_1979_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1000_1979_8", - "transparent_surface_name": "Skylight_1000_1979_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -21902,24 +20078,20 @@ "opaque_surface_name": "1980_2010_4", "transparent_surface_name": "Window_1980_2010_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_4", - "transparent_surface_name": "Skylight_1980_2010_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -21950,24 +20122,20 @@ "opaque_surface_name": "1980_2010_5", "transparent_surface_name": "Window_1980_2010_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_5", - "transparent_surface_name": "Skylight_1980_2010_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -21998,24 +20166,20 @@ "opaque_surface_name": "1980_2010_6", "transparent_surface_name": "Window_1980_2010_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_6", - "transparent_surface_name": "Skylight_1980_2010_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22046,24 +20210,20 @@ "opaque_surface_name": "1980_2010_7A", "transparent_surface_name": "Window_1980_2010_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7A", - "transparent_surface_name": "Skylight_1980_2010_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22094,24 +20254,20 @@ "opaque_surface_name": "1980_2010_7B", "transparent_surface_name": "Window_1980_2010_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_7B", - "transparent_surface_name": "Skylight_1980_2010_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22142,24 +20298,20 @@ "opaque_surface_name": "1980_2010_8", "transparent_surface_name": "Window_1980_2010_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "1980_2010_8", - "transparent_surface_name": "Skylight_1980_2010_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22190,24 +20342,20 @@ "opaque_surface_name": "2011_2016_4", "transparent_surface_name": "Window_2011_2016_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_4", - "transparent_surface_name": "Skylight_2011_2016_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22238,24 +20386,20 @@ "opaque_surface_name": "2011_2016_5", "transparent_surface_name": "Window_2011_2016_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_5", - "transparent_surface_name": "Skylight_2011_2016_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22286,24 +20430,20 @@ "opaque_surface_name": "2011_2016_6", "transparent_surface_name": "Window_2011_2016_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_6", - "transparent_surface_name": "Skylight_2011_2016_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22334,24 +20474,20 @@ "opaque_surface_name": "2011_2016_7A", "transparent_surface_name": "Window_2011_2016_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7A", - "transparent_surface_name": "Skylight_2011_2016_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22382,24 +20518,20 @@ "opaque_surface_name": "2011_2016_7B", "transparent_surface_name": "Window_2011_2016_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_7B", - "transparent_surface_name": "Skylight_2011_2016_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22430,24 +20562,20 @@ "opaque_surface_name": "2011_2016_8", "transparent_surface_name": "Window_2011_2016_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2011_2016_8", - "transparent_surface_name": "Skylight_2011_2016_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22478,24 +20606,20 @@ "opaque_surface_name": "2017_2019_4", "transparent_surface_name": "Window_2017_2019_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_4", - "transparent_surface_name": "Skylight_2017_2019_4", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22526,24 +20650,20 @@ "opaque_surface_name": "2017_2019_5", "transparent_surface_name": "Window_2017_2019_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_5", - "transparent_surface_name": "Skylight_2017_2019_5", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22574,24 +20694,20 @@ "opaque_surface_name": "2017_2019_6", "transparent_surface_name": "Window_2017_2019_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_6", - "transparent_surface_name": "Skylight_2017_2019_6", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22622,24 +20738,20 @@ "opaque_surface_name": "2017_2019_7A", "transparent_surface_name": "Window_2017_2019_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7A", - "transparent_surface_name": "Skylight_2017_2019_7A", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22670,24 +20782,20 @@ "opaque_surface_name": "2017_2019_7B", "transparent_surface_name": "Window_2017_2019_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_7B", - "transparent_surface_name": "Skylight_2017_2019_7B", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22718,24 +20826,20 @@ "opaque_surface_name": "2017_2019_8", "transparent_surface_name": "Window_2017_2019_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2017_2019_8", - "transparent_surface_name": "Skylight_2017_2019_8", + "transparent_surface_name": null, "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": null, + "east": null, + "south": null, + "west": null } }, "OutdoorsFloor": { @@ -22766,24 +20870,20 @@ "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Window_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_4", "transparent_surface_name": "Skylight_2020_3000_4", "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" } }, "OutdoorsFloor": { @@ -22814,24 +20914,20 @@ "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Window_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_5", "transparent_surface_name": "Skylight_2020_3000_5", "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" } }, "OutdoorsFloor": { @@ -22862,24 +20958,20 @@ "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Window_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_6", "transparent_surface_name": "Skylight_2020_3000_6", "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" } }, "OutdoorsFloor": { @@ -22910,24 +21002,20 @@ "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Window_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7A", "transparent_surface_name": "Skylight_2020_3000_7A", "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" } }, "OutdoorsFloor": { @@ -22958,24 +21046,20 @@ "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Window_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_7B", "transparent_surface_name": "Skylight_2020_3000_7B", "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" } }, "OutdoorsFloor": { @@ -23006,24 +21090,20 @@ "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Window_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "0.0", - "east": "0.0", - "south": "2.86", - "west": "0.76" - } + "north": "0.0", + "east": "0.0", + "south": "2.86", + "west": "0.76" } }, "OutdoorsRoofCeiling": { "opaque_surface_name": "2020_3000_8", "transparent_surface_name": "Skylight_2020_3000_8", "transparent_ratio": { - "transparent_ratio": { - "north": "1.49", - "east": "1.49", - "south": "1.49", - "west": "1.49" - } + "north": "1.49", + "east": "1.49", + "south": "1.49", + "west": "1.49" } }, "OutdoorsFloor": { diff --git a/hub/data/construction/nrcan_constructions.json b/hub/data/construction/nrcan_constructions.json index 282ec4fe..e3f3b65a 100644 --- a/hub/data/construction/nrcan_constructions.json +++ b/hub/data/construction/nrcan_constructions.json @@ -1,4 +1,2598 @@ { + "opaque_surfaces": [ + { + "1000_1979_4": { + "period_of_construction": "1000_1979", + "climate_zone": "4", + "type": "OutdoorsWall", + "u_value": 0.994, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_0": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1000_1979_4": { + "period_of_construction": "1000_1979", + "climate_zone": "4", + "type": "OutdoorsRoofCeiling", + "u_value": 0.363, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_1": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1000_1979_4": { + "period_of_construction": "1000_1979", + "climate_zone": "4", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_2": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1000_1979_4": { + "period_of_construction": "1000_1979", + "climate_zone": "4", + "type": "GroundWall", + "u_value": 0.678, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_3": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1000_1979_4": { + "period_of_construction": "1000_1979", + "climate_zone": "4", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_4": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1000_1979_4": { + "period_of_construction": "1000_1979", + "climate_zone": "4", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_5": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1000_1979_5": { + "period_of_construction": "1000_1979", + "climate_zone": "5", + "type": "OutdoorsWall", + "u_value": 0.9, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_6": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1000_1979_5": { + "period_of_construction": "1000_1979", + "climate_zone": "5", + "type": "OutdoorsRoofCeiling", + "u_value": 0.296, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_7": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1000_1979_5": { + "period_of_construction": "1000_1979", + "climate_zone": "5", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_8": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1000_1979_5": { + "period_of_construction": "1000_1979", + "climate_zone": "5", + "type": "GroundWall", + "u_value": 0.678, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_9": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1000_1979_5": { + "period_of_construction": "1000_1979", + "climate_zone": "5", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_10": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1000_1979_5": { + "period_of_construction": "1000_1979", + "climate_zone": "5", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_11": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1000_1979_6": { + "period_of_construction": "1000_1979", + "climate_zone": "6", + "type": "OutdoorsWall", + "u_value": 0.823, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_12": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1000_1979_6": { + "period_of_construction": "1000_1979", + "climate_zone": "6", + "type": "OutdoorsRoofCeiling", + "u_value": 0.267, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_13": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1000_1979_6": { + "period_of_construction": "1000_1979", + "climate_zone": "6", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_14": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1000_1979_6": { + "period_of_construction": "1000_1979", + "climate_zone": "6", + "type": "GroundWall", + "u_value": 0.678, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_15": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1000_1979_6": { + "period_of_construction": "1000_1979", + "climate_zone": "6", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_16": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1000_1979_6": { + "period_of_construction": "1000_1979", + "climate_zone": "6", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_17": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1000_1979_7A": { + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "type": "OutdoorsWall", + "u_value": 0.772, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_18": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1000_1979_7A": { + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "type": "OutdoorsRoofCeiling", + "u_value": 0.227, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_19": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1000_1979_7A": { + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_20": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1000_1979_7A": { + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "type": "GroundWall", + "u_value": 0.678, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_21": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1000_1979_7A": { + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_22": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1000_1979_7A": { + "period_of_construction": "1000_1979", + "climate_zone": "7A", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_23": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1000_1979_7B": { + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "type": "OutdoorsWall", + "u_value": 0.772, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_24": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1000_1979_7B": { + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "type": "OutdoorsRoofCeiling", + "u_value": 0.227, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_25": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1000_1979_7B": { + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_26": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1000_1979_7B": { + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "type": "GroundWall", + "u_value": 0.678, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_27": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1000_1979_7B": { + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_28": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1000_1979_7B": { + "period_of_construction": "1000_1979", + "climate_zone": "7B", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_29": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1000_1979_8": { + "period_of_construction": "1000_1979", + "climate_zone": "8", + "type": "OutdoorsWall", + "u_value": 0.71, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_30": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1000_1979_8": { + "period_of_construction": "1000_1979", + "climate_zone": "8", + "type": "OutdoorsRoofCeiling", + "u_value": 0.176, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_31": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1000_1979_8": { + "period_of_construction": "1000_1979", + "climate_zone": "8", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_32": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1000_1979_8": { + "period_of_construction": "1000_1979", + "climate_zone": "8", + "type": "GroundWall", + "u_value": 0.678, + "layers": { + "Brickwork Outer": 0.1, + "virtual_no_mass_33": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0794, + "Concrete Block (Medium)": 0.1, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1000_1979_8": { + "period_of_construction": "1000_1979", + "climate_zone": "8", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_34": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1000_1979_8": { + "period_of_construction": "1000_1979", + "climate_zone": "8", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_35": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1980_2010_4": { + "period_of_construction": "1980_2010", + "climate_zone": "4", + "type": "OutdoorsWall", + "u_value": 0.568, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_36": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1980_2010_4": { + "period_of_construction": "1980_2010", + "climate_zone": "4", + "type": "OutdoorsRoofCeiling", + "u_value": 0.363, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_37": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1980_2010_4": { + "period_of_construction": "1980_2010", + "climate_zone": "4", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_38": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1980_2010_4": { + "period_of_construction": "1980_2010", + "climate_zone": "4", + "type": "GroundWall", + "u_value": 0.606, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_39": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1980_2010_4": { + "period_of_construction": "1980_2010", + "climate_zone": "4", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_40": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1980_2010_4": { + "period_of_construction": "1980_2010", + "climate_zone": "4", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_41": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1980_2010_5": { + "period_of_construction": "1980_2010", + "climate_zone": "5", + "type": "OutdoorsWall", + "u_value": 0.682, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_42": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1980_2010_5": { + "period_of_construction": "1980_2010", + "climate_zone": "5", + "type": "OutdoorsRoofCeiling", + "u_value": 0.296, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_43": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1980_2010_5": { + "period_of_construction": "1980_2010", + "climate_zone": "5", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_44": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1980_2010_5": { + "period_of_construction": "1980_2010", + "climate_zone": "5", + "type": "GroundWall", + "u_value": 0.547, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_45": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1980_2010_5": { + "period_of_construction": "1980_2010", + "climate_zone": "5", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_46": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1980_2010_5": { + "period_of_construction": "1980_2010", + "climate_zone": "5", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_47": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1980_2010_6": { + "period_of_construction": "1980_2010", + "climate_zone": "6", + "type": "OutdoorsWall", + "u_value": 0.426, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_48": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1980_2010_6": { + "period_of_construction": "1980_2010", + "climate_zone": "6", + "type": "OutdoorsRoofCeiling", + "u_value": 0.267, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_49": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1980_2010_6": { + "period_of_construction": "1980_2010", + "climate_zone": "6", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_50": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1980_2010_6": { + "period_of_construction": "1980_2010", + "climate_zone": "6", + "type": "GroundWall", + "u_value": 0.459, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_51": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1980_2010_6": { + "period_of_construction": "1980_2010", + "climate_zone": "6", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_52": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1980_2010_6": { + "period_of_construction": "1980_2010", + "climate_zone": "6", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_53": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1980_2010_7A": { + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "type": "OutdoorsWall", + "u_value": 0.346, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_54": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1980_2010_7A": { + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "type": "OutdoorsRoofCeiling", + "u_value": 0.227, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_55": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1980_2010_7A": { + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_56": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1980_2010_7A": { + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "type": "GroundWall", + "u_value": 0.425, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_57": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1980_2010_7A": { + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_58": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1980_2010_7A": { + "period_of_construction": "1980_2010", + "climate_zone": "7A", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_59": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1980_2010_7B": { + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "type": "OutdoorsWall", + "u_value": 0.346, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_60": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1980_2010_7B": { + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "type": "OutdoorsRoofCeiling", + "u_value": 0.227, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_61": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1980_2010_7B": { + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_62": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1980_2010_7B": { + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "type": "GroundWall", + "u_value": 0.425, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_63": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1980_2010_7B": { + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_64": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1980_2010_7B": { + "period_of_construction": "1980_2010", + "climate_zone": "7B", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_65": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1980_2010_8": { + "period_of_construction": "1980_2010", + "climate_zone": "8", + "type": "OutdoorsWall", + "u_value": 0.267, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_66": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1980_2010_8": { + "period_of_construction": "1980_2010", + "climate_zone": "8", + "type": "OutdoorsRoofCeiling", + "u_value": 0.176, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_67": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1980_2010_8": { + "period_of_construction": "1980_2010", + "climate_zone": "8", + "type": "OutdoorsFloor", + "u_value": 3.822, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_68": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "1980_2010_8": { + "period_of_construction": "1980_2010", + "climate_zone": "8", + "type": "GroundWall", + "u_value": 0.347, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_69": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "1980_2010_8": { + "period_of_construction": "1980_2010", + "climate_zone": "8", + "type": "GroundRoofCeiling", + "u_value": 0.678, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_70": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "1980_2010_8": { + "period_of_construction": "1980_2010", + "climate_zone": "8", + "type": "GroundFloor", + "u_value": 0.678, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_71": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2011_2016_4": { + "period_of_construction": "2011_2016", + "climate_zone": "4", + "type": "OutdoorsWall", + "u_value": 0.315, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_72": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2011_2016_4": { + "period_of_construction": "2011_2016", + "climate_zone": "4", + "type": "OutdoorsRoofCeiling", + "u_value": 0.227, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_73": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2011_2016_4": { + "period_of_construction": "2011_2016", + "climate_zone": "4", + "type": "OutdoorsFloor", + "u_value": 0.227, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_74": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2011_2016_4": { + "period_of_construction": "2011_2016", + "climate_zone": "4", + "type": "GroundWall", + "u_value": 0.568, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_75": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2011_2016_4": { + "period_of_construction": "2011_2016", + "climate_zone": "4", + "type": "GroundRoofCeiling", + "u_value": 0.568, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_76": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2011_2016_4": { + "period_of_construction": "2011_2016", + "climate_zone": "4", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_77": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2011_2016_5": { + "period_of_construction": "2011_2016", + "climate_zone": "5", + "type": "OutdoorsWall", + "u_value": 0.278, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_78": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2011_2016_5": { + "period_of_construction": "2011_2016", + "climate_zone": "5", + "type": "OutdoorsRoofCeiling", + "u_value": 0.183, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_79": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2011_2016_5": { + "period_of_construction": "2011_2016", + "climate_zone": "5", + "type": "OutdoorsFloor", + "u_value": 0.183, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_80": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2011_2016_5": { + "period_of_construction": "2011_2016", + "climate_zone": "5", + "type": "GroundWall", + "u_value": 0.379, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_81": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2011_2016_5": { + "period_of_construction": "2011_2016", + "climate_zone": "5", + "type": "GroundRoofCeiling", + "u_value": 0.379, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_82": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2011_2016_5": { + "period_of_construction": "2011_2016", + "climate_zone": "5", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_83": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2011_2016_6": { + "period_of_construction": "2011_2016", + "climate_zone": "6", + "type": "OutdoorsWall", + "u_value": 0.247, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_84": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2011_2016_6": { + "period_of_construction": "2011_2016", + "climate_zone": "6", + "type": "OutdoorsRoofCeiling", + "u_value": 0.183, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_85": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2011_2016_6": { + "period_of_construction": "2011_2016", + "climate_zone": "6", + "type": "OutdoorsFloor", + "u_value": 0.183, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_86": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2011_2016_6": { + "period_of_construction": "2011_2016", + "climate_zone": "6", + "type": "GroundWall", + "u_value": 0.284, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_87": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2011_2016_6": { + "period_of_construction": "2011_2016", + "climate_zone": "6", + "type": "GroundRoofCeiling", + "u_value": 0.284, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_88": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2011_2016_6": { + "period_of_construction": "2011_2016", + "climate_zone": "6", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_89": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2011_2016_7A": { + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "type": "OutdoorsWall", + "u_value": 0.21, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_90": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2011_2016_7A": { + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "type": "OutdoorsRoofCeiling", + "u_value": 0.162, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_91": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2011_2016_7A": { + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "type": "OutdoorsFloor", + "u_value": 0.162, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_92": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2011_2016_7A": { + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "type": "GroundWall", + "u_value": 0.284, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_93": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2011_2016_7A": { + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "type": "GroundRoofCeiling", + "u_value": 0.284, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_94": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2011_2016_7A": { + "period_of_construction": "2011_2016", + "climate_zone": "7A", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_95": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2011_2016_7B": { + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "type": "OutdoorsWall", + "u_value": 0.21, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_96": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2011_2016_7B": { + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "type": "OutdoorsRoofCeiling", + "u_value": 0.162, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_97": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2011_2016_7B": { + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "type": "OutdoorsFloor", + "u_value": 0.162, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_98": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2011_2016_7B": { + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "type": "GroundWall", + "u_value": 0.284, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_99": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2011_2016_7B": { + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "type": "GroundRoofCeiling", + "u_value": 0.284, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_100": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2011_2016_7B": { + "period_of_construction": "2011_2016", + "climate_zone": "7B", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_101": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2011_2016_8": { + "period_of_construction": "2011_2016", + "climate_zone": "8", + "type": "OutdoorsWall", + "u_value": 0.183, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_102": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2011_2016_8": { + "period_of_construction": "2011_2016", + "climate_zone": "8", + "type": "OutdoorsRoofCeiling", + "u_value": 0.142, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_103": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2011_2016_8": { + "period_of_construction": "2011_2016", + "climate_zone": "8", + "type": "OutdoorsFloor", + "u_value": 0.142, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_104": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2011_2016_8": { + "period_of_construction": "2011_2016", + "climate_zone": "8", + "type": "GroundWall", + "u_value": 0.21, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_105": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2011_2016_8": { + "period_of_construction": "2011_2016", + "climate_zone": "8", + "type": "GroundRoofCeiling", + "u_value": 0.21, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_106": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2011_2016_8": { + "period_of_construction": "2011_2016", + "climate_zone": "8", + "type": "GroundFloor", + "u_value": 0.379, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_107": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2017_2019_4": { + "period_of_construction": "2017_2019", + "climate_zone": "4", + "type": "OutdoorsWall", + "u_value": 0.315, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_108": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2017_2019_4": { + "period_of_construction": "2017_2019", + "climate_zone": "4", + "type": "OutdoorsRoofCeiling", + "u_value": 0.193, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_109": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2017_2019_4": { + "period_of_construction": "2017_2019", + "climate_zone": "4", + "type": "OutdoorsFloor", + "u_value": 0.227, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_110": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2017_2019_4": { + "period_of_construction": "2017_2019", + "climate_zone": "4", + "type": "GroundWall", + "u_value": 0.568, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_111": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2017_2019_4": { + "period_of_construction": "2017_2019", + "climate_zone": "4", + "type": "GroundRoofCeiling", + "u_value": 0.568, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_112": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2017_2019_4": { + "period_of_construction": "2017_2019", + "climate_zone": "4", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_113": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2017_2019_5": { + "period_of_construction": "2017_2019", + "climate_zone": "5", + "type": "OutdoorsWall", + "u_value": 0.278, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_114": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2017_2019_5": { + "period_of_construction": "2017_2019", + "climate_zone": "5", + "type": "OutdoorsRoofCeiling", + "u_value": 0.156, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_115": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2017_2019_5": { + "period_of_construction": "2017_2019", + "climate_zone": "5", + "type": "OutdoorsFloor", + "u_value": 0.183, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_116": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2017_2019_5": { + "period_of_construction": "2017_2019", + "climate_zone": "5", + "type": "GroundWall", + "u_value": 0.379, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_117": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2017_2019_5": { + "period_of_construction": "2017_2019", + "climate_zone": "5", + "type": "GroundRoofCeiling", + "u_value": 0.379, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_118": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2017_2019_5": { + "period_of_construction": "2017_2019", + "climate_zone": "5", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_119": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2017_2019_6": { + "period_of_construction": "2017_2019", + "climate_zone": "6", + "type": "OutdoorsWall", + "u_value": 0.247, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_120": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2017_2019_6": { + "period_of_construction": "2017_2019", + "climate_zone": "6", + "type": "OutdoorsRoofCeiling", + "u_value": 0.156, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_121": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2017_2019_6": { + "period_of_construction": "2017_2019", + "climate_zone": "6", + "type": "OutdoorsFloor", + "u_value": 0.183, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_122": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2017_2019_6": { + "period_of_construction": "2017_2019", + "climate_zone": "6", + "type": "GroundWall", + "u_value": 0.284, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_123": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2017_2019_6": { + "period_of_construction": "2017_2019", + "climate_zone": "6", + "type": "GroundRoofCeiling", + "u_value": 0.284, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_124": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2017_2019_6": { + "period_of_construction": "2017_2019", + "climate_zone": "6", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_125": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2017_2019_7A": { + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "type": "OutdoorsWall", + "u_value": 0.21, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_126": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2017_2019_7A": { + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "type": "OutdoorsRoofCeiling", + "u_value": 0.138, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_127": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2017_2019_7A": { + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "type": "OutdoorsFloor", + "u_value": 0.162, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_128": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2017_2019_7A": { + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "type": "GroundWall", + "u_value": 0.284, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_129": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2017_2019_7A": { + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "type": "GroundRoofCeiling", + "u_value": 0.284, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_130": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2017_2019_7A": { + "period_of_construction": "2017_2019", + "climate_zone": "7A", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_131": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2017_2019_7B": { + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "type": "OutdoorsWall", + "u_value": 0.21, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_132": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2017_2019_7B": { + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "type": "OutdoorsRoofCeiling", + "u_value": 0.138, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_133": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2017_2019_7B": { + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "type": "OutdoorsFloor", + "u_value": 0.162, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_134": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2017_2019_7B": { + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "type": "GroundWall", + "u_value": 0.284, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_135": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2017_2019_7B": { + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "type": "GroundRoofCeiling", + "u_value": 0.284, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_136": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2017_2019_7B": { + "period_of_construction": "2017_2019", + "climate_zone": "7B", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_137": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2017_2019_8": { + "period_of_construction": "2017_2019", + "climate_zone": "8", + "type": "OutdoorsWall", + "u_value": 0.183, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_138": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2017_2019_8": { + "period_of_construction": "2017_2019", + "climate_zone": "8", + "type": "OutdoorsRoofCeiling", + "u_value": 0.121, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_139": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2017_2019_8": { + "period_of_construction": "2017_2019", + "climate_zone": "8", + "type": "OutdoorsFloor", + "u_value": 0.142, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_140": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2017_2019_8": { + "period_of_construction": "2017_2019", + "climate_zone": "8", + "type": "GroundWall", + "u_value": 0.21, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_141": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2017_2019_8": { + "period_of_construction": "2017_2019", + "climate_zone": "8", + "type": "GroundRoofCeiling", + "u_value": 0.21, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_142": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2017_2019_8": { + "period_of_construction": "2017_2019", + "climate_zone": "8", + "type": "GroundFloor", + "u_value": 0.379, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_143": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2020_3000_4": { + "period_of_construction": "2020_3000", + "climate_zone": "4", + "type": "OutdoorsWall", + "u_value": 0.29, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_144": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2020_3000_4": { + "period_of_construction": "2020_3000", + "climate_zone": "4", + "type": "OutdoorsRoofCeiling", + "u_value": 0.164, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_145": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2020_3000_4": { + "period_of_construction": "2020_3000", + "climate_zone": "4", + "type": "OutdoorsFloor", + "u_value": 0.193, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_146": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2020_3000_4": { + "period_of_construction": "2020_3000", + "climate_zone": "4", + "type": "GroundWall", + "u_value": 0.568, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_147": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2020_3000_4": { + "period_of_construction": "2020_3000", + "climate_zone": "4", + "type": "GroundRoofCeiling", + "u_value": 0.568, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_148": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2020_3000_4": { + "period_of_construction": "2020_3000", + "climate_zone": "4", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_149": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2020_3000_5": { + "period_of_construction": "2020_3000", + "climate_zone": "5", + "type": "OutdoorsWall", + "u_value": 0.265, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_150": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2020_3000_5": { + "period_of_construction": "2020_3000", + "climate_zone": "5", + "type": "OutdoorsRoofCeiling", + "u_value": 0.156, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_151": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2020_3000_5": { + "period_of_construction": "2020_3000", + "climate_zone": "5", + "type": "OutdoorsFloor", + "u_value": 0.175, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_152": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2020_3000_5": { + "period_of_construction": "2020_3000", + "climate_zone": "5", + "type": "GroundWall", + "u_value": 0.379, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_153": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2020_3000_5": { + "period_of_construction": "2020_3000", + "climate_zone": "5", + "type": "GroundRoofCeiling", + "u_value": 0.379, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_154": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2020_3000_5": { + "period_of_construction": "2020_3000", + "climate_zone": "5", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_155": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2020_3000_6": { + "period_of_construction": "2020_3000", + "climate_zone": "6", + "type": "OutdoorsWall", + "u_value": 0.24, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_156": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2020_3000_6": { + "period_of_construction": "2020_3000", + "climate_zone": "6", + "type": "OutdoorsRoofCeiling", + "u_value": 0.138, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_157": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2020_3000_6": { + "period_of_construction": "2020_3000", + "climate_zone": "6", + "type": "OutdoorsFloor", + "u_value": 0.156, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_158": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2020_3000_6": { + "period_of_construction": "2020_3000", + "climate_zone": "6", + "type": "GroundWall", + "u_value": 0.284, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_159": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2020_3000_6": { + "period_of_construction": "2020_3000", + "climate_zone": "6", + "type": "GroundRoofCeiling", + "u_value": 0.284, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_160": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2020_3000_6": { + "period_of_construction": "2020_3000", + "climate_zone": "6", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_161": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2020_3000_7A": { + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "type": "OutdoorsWall", + "u_value": 0.215, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_162": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2020_3000_7A": { + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "type": "OutdoorsRoofCeiling", + "u_value": 0.121, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_163": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2020_3000_7A": { + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "type": "OutdoorsFloor", + "u_value": 0.138, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_164": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2020_3000_7A": { + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "type": "GroundWall", + "u_value": 0.284, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_165": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2020_3000_7A": { + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "type": "GroundRoofCeiling", + "u_value": 0.284, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_166": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2020_3000_7A": { + "period_of_construction": "2020_3000", + "climate_zone": "7A", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_167": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2020_3000_7B": { + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "type": "OutdoorsWall", + "u_value": 0.19, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_168": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2020_3000_7B": { + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "type": "OutdoorsRoofCeiling", + "u_value": 0.117, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_169": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2020_3000_7B": { + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "type": "OutdoorsFloor", + "u_value": 0.121, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_170": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2020_3000_7B": { + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "type": "GroundWall", + "u_value": 0.284, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_171": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2020_3000_7B": { + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "type": "GroundRoofCeiling", + "u_value": 0.284, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_172": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2020_3000_7B": { + "period_of_construction": "2020_3000", + "climate_zone": "7B", + "type": "GroundFloor", + "u_value": 0.757, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_173": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2020_3000_8": { + "period_of_construction": "2020_3000", + "climate_zone": "8", + "type": "OutdoorsWall", + "u_value": 0.165, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_174": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2020_3000_8": { + "period_of_construction": "2020_3000", + "climate_zone": "8", + "type": "OutdoorsRoofCeiling", + "u_value": 0.11, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_175": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2020_3000_8": { + "period_of_construction": "2020_3000", + "climate_zone": "8", + "type": "OutdoorsFloor", + "u_value": 0.117, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_176": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + }, + { + "2020_3000_8": { + "period_of_construction": "2020_3000", + "climate_zone": "8", + "type": "GroundWall", + "u_value": 0.21, + "layers": { + "Lightweight Metallic Cladding": 0.006, + "virtual_no_mass_177": 0, + "XPS Extruded Polystyrene- CO2 Blowing": 0.0877, + "Gypsum Plastering": 0.013 + } + } + }, + { + "2020_3000_8": { + "period_of_construction": "2020_3000", + "climate_zone": "8", + "type": "GroundRoofCeiling", + "u_value": 0.21, + "layers": { + "Asphalt 1": 0.01, + "virtual_no_mass_178": 0, + "MW Glass Wool (rolls)": 0.1, + "Plasterboard": 0.013 + } + } + }, + { + "2020_3000_8": { + "period_of_construction": "2020_3000", + "climate_zone": "8", + "type": "GroundFloor", + "u_value": 0.379, + "layers": { + "Urea Formaldehyde Foam": 0.1, + "virtual_no_mass_179": 0, + "Cast Concrete": 0.1, + "Floor/Roof Screed": 0.07, + "Timber Flooring": 0.03 + } + } + } + ], "transparent_surfaces": [ { "Window_1000_1979_4": { @@ -361,2600 +2955,6 @@ } } ], - "opaque_surfaces": [ - { - "1000_1979_4": { - "period_of_construction": "1000_1979", - "climate_zone": "4", - "type": "OutdoorsWall", - "u_value": 0.994, - "layers": { - "Brickwork Outer": 0.1, - "virtual_no_mass_0": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, - "Concrete Block (Medium)": 0.1, - "Gypsum Plastering": 0.013 - } - } - }, - { - "1000_1979_4": { - "period_of_construction": "1000_1979", - "climate_zone": "4", - "type": "OutdoorsRoofCeiling", - "u_value": 0.363, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_1": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1000_1979_4": { - "period_of_construction": "1000_1979", - "climate_zone": "4", - "type": "OutdoorsFloor", - "u_value": 3.822, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_2": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1000_1979_4": { - "period_of_construction": "1000_1979", - "climate_zone": "4", - "type": "GroundWall", - "u_value": 0.678, - "layers": { - "Brickwork Outer": 0.1, - "virtual_no_mass_3": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, - "Concrete Block (Medium)": 0.1, - "Gypsum Plastering": 0.013 - } - } - }, - { - "1000_1979_4": { - "period_of_construction": "1000_1979", - "climate_zone": "4", - "type": "GroundRoofCeiling", - "u_value": 0.678, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_4": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1000_1979_4": { - "period_of_construction": "1000_1979", - "climate_zone": "4", - "type": "GroundFloor", - "u_value": 0.678, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_5": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1000_1979_5": { - "period_of_construction": "1000_1979", - "climate_zone": "5", - "type": "OutdoorsWall", - "u_value": 0.9, - "layers": { - "Brickwork Outer": 0.1, - "virtual_no_mass_6": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, - "Concrete Block (Medium)": 0.1, - "Gypsum Plastering": 0.013 - } - } - }, - { - "1000_1979_5": { - "period_of_construction": "1000_1979", - "climate_zone": "5", - "type": "OutdoorsRoofCeiling", - "u_value": 0.296, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_7": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1000_1979_5": { - "period_of_construction": "1000_1979", - "climate_zone": "5", - "type": "OutdoorsFloor", - "u_value": 3.822, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_8": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1000_1979_5": { - "period_of_construction": "1000_1979", - "climate_zone": "5", - "type": "GroundWall", - "u_value": 0.678, - "layers": { - "Brickwork Outer": 0.1, - "virtual_no_mass_9": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, - "Concrete Block (Medium)": 0.1, - "Gypsum Plastering": 0.013 - } - } - }, - { - "1000_1979_5": { - "period_of_construction": "1000_1979", - "climate_zone": "5", - "type": "GroundRoofCeiling", - "u_value": 0.678, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_10": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1000_1979_5": { - "period_of_construction": "1000_1979", - "climate_zone": "5", - "type": "GroundFloor", - "u_value": 0.678, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_11": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1000_1979_6": { - "period_of_construction": "1000_1979", - "climate_zone": "6", - "type": "OutdoorsWall", - "u_value": 0.823, - "layers": { - "Brickwork Outer": 0.1, - "virtual_no_mass_12": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, - "Concrete Block (Medium)": 0.1, - "Gypsum Plastering": 0.013 - } - } - }, - { - "1000_1979_6": { - "period_of_construction": "1000_1979", - "climate_zone": "6", - "type": "OutdoorsRoofCeiling", - "u_value": 0.267, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_13": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1000_1979_6": { - "period_of_construction": "1000_1979", - "climate_zone": "6", - "type": "OutdoorsFloor", - "u_value": 3.822, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_14": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1000_1979_6": { - "period_of_construction": "1000_1979", - "climate_zone": "6", - "type": "GroundWall", - "u_value": 0.678, - "layers": { - "Brickwork Outer": 0.1, - "virtual_no_mass_15": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, - "Concrete Block (Medium)": 0.1, - "Gypsum Plastering": 0.013 - } - } - }, - { - "1000_1979_6": { - "period_of_construction": "1000_1979", - "climate_zone": "6", - "type": "GroundRoofCeiling", - "u_value": 0.678, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_16": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1000_1979_6": { - "period_of_construction": "1000_1979", - "climate_zone": "6", - "type": "GroundFloor", - "u_value": 0.678, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_17": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1000_1979_7A": { - "period_of_construction": "1000_1979", - "climate_zone": "7A", - "type": "OutdoorsWall", - "u_value": 0.772, - "layers": { - "Brickwork Outer": 0.1, - "virtual_no_mass_18": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, - "Concrete Block (Medium)": 0.1, - "Gypsum Plastering": 0.013 - } - } - }, - { - "1000_1979_7A": { - "period_of_construction": "1000_1979", - "climate_zone": "7A", - "type": "OutdoorsRoofCeiling", - "u_value": 0.227, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_19": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1000_1979_7A": { - "period_of_construction": "1000_1979", - "climate_zone": "7A", - "type": "OutdoorsFloor", - "u_value": 3.822, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_20": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1000_1979_7A": { - "period_of_construction": "1000_1979", - "climate_zone": "7A", - "type": "GroundWall", - "u_value": 0.678, - "layers": { - "Brickwork Outer": 0.1, - "virtual_no_mass_21": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, - "Concrete Block (Medium)": 0.1, - "Gypsum Plastering": 0.013 - } - } - }, - { - "1000_1979_7A": { - "period_of_construction": "1000_1979", - "climate_zone": "7A", - "type": "GroundRoofCeiling", - "u_value": 0.678, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_22": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1000_1979_7A": { - "period_of_construction": "1000_1979", - "climate_zone": "7A", - "type": "GroundFloor", - "u_value": 0.678, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_23": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1000_1979_7B": { - "period_of_construction": "1000_1979", - "climate_zone": "7B", - "type": "OutdoorsWall", - "u_value": 0.772, - "layers": { - "Brickwork Outer": 0.1, - "virtual_no_mass_24": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, - "Concrete Block (Medium)": 0.1, - "Gypsum Plastering": 0.013 - } - } - }, - { - "1000_1979_7B": { - "period_of_construction": "1000_1979", - "climate_zone": "7B", - "type": "OutdoorsRoofCeiling", - "u_value": 0.227, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_25": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1000_1979_7B": { - "period_of_construction": "1000_1979", - "climate_zone": "7B", - "type": "OutdoorsFloor", - "u_value": 3.822, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_26": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1000_1979_7B": { - "period_of_construction": "1000_1979", - "climate_zone": "7B", - "type": "GroundWall", - "u_value": 0.678, - "layers": { - "Brickwork Outer": 0.1, - "virtual_no_mass_27": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, - "Concrete Block (Medium)": 0.1, - "Gypsum Plastering": 0.013 - } - } - }, - { - "1000_1979_7B": { - "period_of_construction": "1000_1979", - "climate_zone": "7B", - "type": "GroundRoofCeiling", - "u_value": 0.678, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_28": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1000_1979_7B": { - "period_of_construction": "1000_1979", - "climate_zone": "7B", - "type": "GroundFloor", - "u_value": 0.678, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_29": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1000_1979_8": { - "period_of_construction": "1000_1979", - "climate_zone": "8", - "type": "OutdoorsWall", - "u_value": 0.71, - "layers": { - "Brickwork Outer": 0.1, - "virtual_no_mass_30": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, - "Concrete Block (Medium)": 0.1, - "Gypsum Plastering": 0.013 - } - } - }, - { - "1000_1979_8": { - "period_of_construction": "1000_1979", - "climate_zone": "8", - "type": "OutdoorsRoofCeiling", - "u_value": 0.176, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_31": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1000_1979_8": { - "period_of_construction": "1000_1979", - "climate_zone": "8", - "type": "OutdoorsFloor", - "u_value": 3.822, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_32": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1000_1979_8": { - "period_of_construction": "1000_1979", - "climate_zone": "8", - "type": "GroundWall", - "u_value": 0.678, - "layers": { - "Brickwork Outer": 0.1, - "virtual_no_mass_33": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0794, - "Concrete Block (Medium)": 0.1, - "Gypsum Plastering": 0.013 - } - } - }, - { - "1000_1979_8": { - "period_of_construction": "1000_1979", - "climate_zone": "8", - "type": "GroundRoofCeiling", - "u_value": 0.678, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_34": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1000_1979_8": { - "period_of_construction": "1000_1979", - "climate_zone": "8", - "type": "GroundFloor", - "u_value": 0.678, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_35": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1980_2010_4": { - "period_of_construction": "1980_2010", - "climate_zone": "4", - "type": "OutdoorsWall", - "u_value": 0.568, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_36": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "1980_2010_4": { - "period_of_construction": "1980_2010", - "climate_zone": "4", - "type": "OutdoorsRoofCeiling", - "u_value": 0.363, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_37": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1980_2010_4": { - "period_of_construction": "1980_2010", - "climate_zone": "4", - "type": "OutdoorsFloor", - "u_value": 3.822, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_38": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1980_2010_4": { - "period_of_construction": "1980_2010", - "climate_zone": "4", - "type": "GroundWall", - "u_value": 0.606, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_39": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "1980_2010_4": { - "period_of_construction": "1980_2010", - "climate_zone": "4", - "type": "GroundRoofCeiling", - "u_value": 0.678, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_40": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1980_2010_4": { - "period_of_construction": "1980_2010", - "climate_zone": "4", - "type": "GroundFloor", - "u_value": 0.678, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_41": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1980_2010_5": { - "period_of_construction": "1980_2010", - "climate_zone": "5", - "type": "OutdoorsWall", - "u_value": 0.682, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_42": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "1980_2010_5": { - "period_of_construction": "1980_2010", - "climate_zone": "5", - "type": "OutdoorsRoofCeiling", - "u_value": 0.296, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_43": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1980_2010_5": { - "period_of_construction": "1980_2010", - "climate_zone": "5", - "type": "OutdoorsFloor", - "u_value": 3.822, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_44": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1980_2010_5": { - "period_of_construction": "1980_2010", - "climate_zone": "5", - "type": "GroundWall", - "u_value": 0.547, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_45": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "1980_2010_5": { - "period_of_construction": "1980_2010", - "climate_zone": "5", - "type": "GroundRoofCeiling", - "u_value": 0.678, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_46": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1980_2010_5": { - "period_of_construction": "1980_2010", - "climate_zone": "5", - "type": "GroundFloor", - "u_value": 0.678, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_47": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1980_2010_6": { - "period_of_construction": "1980_2010", - "climate_zone": "6", - "type": "OutdoorsWall", - "u_value": 0.426, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_48": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "1980_2010_6": { - "period_of_construction": "1980_2010", - "climate_zone": "6", - "type": "OutdoorsRoofCeiling", - "u_value": 0.267, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_49": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1980_2010_6": { - "period_of_construction": "1980_2010", - "climate_zone": "6", - "type": "OutdoorsFloor", - "u_value": 3.822, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_50": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1980_2010_6": { - "period_of_construction": "1980_2010", - "climate_zone": "6", - "type": "GroundWall", - "u_value": 0.459, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_51": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "1980_2010_6": { - "period_of_construction": "1980_2010", - "climate_zone": "6", - "type": "GroundRoofCeiling", - "u_value": 0.678, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_52": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1980_2010_6": { - "period_of_construction": "1980_2010", - "climate_zone": "6", - "type": "GroundFloor", - "u_value": 0.678, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_53": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1980_2010_7A": { - "period_of_construction": "1980_2010", - "climate_zone": "7A", - "type": "OutdoorsWall", - "u_value": 0.346, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_54": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "1980_2010_7A": { - "period_of_construction": "1980_2010", - "climate_zone": "7A", - "type": "OutdoorsRoofCeiling", - "u_value": 0.227, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_55": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1980_2010_7A": { - "period_of_construction": "1980_2010", - "climate_zone": "7A", - "type": "OutdoorsFloor", - "u_value": 3.822, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_56": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1980_2010_7A": { - "period_of_construction": "1980_2010", - "climate_zone": "7A", - "type": "GroundWall", - "u_value": 0.425, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_57": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "1980_2010_7A": { - "period_of_construction": "1980_2010", - "climate_zone": "7A", - "type": "GroundRoofCeiling", - "u_value": 0.678, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_58": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1980_2010_7A": { - "period_of_construction": "1980_2010", - "climate_zone": "7A", - "type": "GroundFloor", - "u_value": 0.678, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_59": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1980_2010_7B": { - "period_of_construction": "1980_2010", - "climate_zone": "7B", - "type": "OutdoorsWall", - "u_value": 0.346, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_60": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "1980_2010_7B": { - "period_of_construction": "1980_2010", - "climate_zone": "7B", - "type": "OutdoorsRoofCeiling", - "u_value": 0.227, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_61": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1980_2010_7B": { - "period_of_construction": "1980_2010", - "climate_zone": "7B", - "type": "OutdoorsFloor", - "u_value": 3.822, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_62": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1980_2010_7B": { - "period_of_construction": "1980_2010", - "climate_zone": "7B", - "type": "GroundWall", - "u_value": 0.425, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_63": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "1980_2010_7B": { - "period_of_construction": "1980_2010", - "climate_zone": "7B", - "type": "GroundRoofCeiling", - "u_value": 0.678, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_64": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1980_2010_7B": { - "period_of_construction": "1980_2010", - "climate_zone": "7B", - "type": "GroundFloor", - "u_value": 0.678, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_65": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1980_2010_8": { - "period_of_construction": "1980_2010", - "climate_zone": "8", - "type": "OutdoorsWall", - "u_value": 0.267, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_66": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "1980_2010_8": { - "period_of_construction": "1980_2010", - "climate_zone": "8", - "type": "OutdoorsRoofCeiling", - "u_value": 0.176, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_67": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1980_2010_8": { - "period_of_construction": "1980_2010", - "climate_zone": "8", - "type": "OutdoorsFloor", - "u_value": 3.822, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_68": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "1980_2010_8": { - "period_of_construction": "1980_2010", - "climate_zone": "8", - "type": "GroundWall", - "u_value": 0.347, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_69": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "1980_2010_8": { - "period_of_construction": "1980_2010", - "climate_zone": "8", - "type": "GroundRoofCeiling", - "u_value": 0.678, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_70": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "1980_2010_8": { - "period_of_construction": "1980_2010", - "climate_zone": "8", - "type": "GroundFloor", - "u_value": 0.678, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_71": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2011_2016_4": { - "period_of_construction": "2011_2016", - "climate_zone": "4", - "type": "OutdoorsWall", - "u_value": 0.315, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_72": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2011_2016_4": { - "period_of_construction": "2011_2016", - "climate_zone": "4", - "type": "OutdoorsRoofCeiling", - "u_value": 0.227, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_73": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2011_2016_4": { - "period_of_construction": "2011_2016", - "climate_zone": "4", - "type": "OutdoorsFloor", - "u_value": 0.227, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_74": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2011_2016_4": { - "period_of_construction": "2011_2016", - "climate_zone": "4", - "type": "GroundWall", - "u_value": 0.568, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_75": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2011_2016_4": { - "period_of_construction": "2011_2016", - "climate_zone": "4", - "type": "GroundRoofCeiling", - "u_value": 0.568, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_76": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2011_2016_4": { - "period_of_construction": "2011_2016", - "climate_zone": "4", - "type": "GroundFloor", - "u_value": 0.757, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_77": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2011_2016_5": { - "period_of_construction": "2011_2016", - "climate_zone": "5", - "type": "OutdoorsWall", - "u_value": 0.278, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_78": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2011_2016_5": { - "period_of_construction": "2011_2016", - "climate_zone": "5", - "type": "OutdoorsRoofCeiling", - "u_value": 0.183, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_79": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2011_2016_5": { - "period_of_construction": "2011_2016", - "climate_zone": "5", - "type": "OutdoorsFloor", - "u_value": 0.183, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_80": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2011_2016_5": { - "period_of_construction": "2011_2016", - "climate_zone": "5", - "type": "GroundWall", - "u_value": 0.379, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_81": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2011_2016_5": { - "period_of_construction": "2011_2016", - "climate_zone": "5", - "type": "GroundRoofCeiling", - "u_value": 0.379, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_82": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2011_2016_5": { - "period_of_construction": "2011_2016", - "climate_zone": "5", - "type": "GroundFloor", - "u_value": 0.757, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_83": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2011_2016_6": { - "period_of_construction": "2011_2016", - "climate_zone": "6", - "type": "OutdoorsWall", - "u_value": 0.247, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_84": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2011_2016_6": { - "period_of_construction": "2011_2016", - "climate_zone": "6", - "type": "OutdoorsRoofCeiling", - "u_value": 0.183, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_85": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2011_2016_6": { - "period_of_construction": "2011_2016", - "climate_zone": "6", - "type": "OutdoorsFloor", - "u_value": 0.183, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_86": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2011_2016_6": { - "period_of_construction": "2011_2016", - "climate_zone": "6", - "type": "GroundWall", - "u_value": 0.284, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_87": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2011_2016_6": { - "period_of_construction": "2011_2016", - "climate_zone": "6", - "type": "GroundRoofCeiling", - "u_value": 0.284, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_88": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2011_2016_6": { - "period_of_construction": "2011_2016", - "climate_zone": "6", - "type": "GroundFloor", - "u_value": 0.757, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_89": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2011_2016_7A": { - "period_of_construction": "2011_2016", - "climate_zone": "7A", - "type": "OutdoorsWall", - "u_value": 0.21, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_90": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2011_2016_7A": { - "period_of_construction": "2011_2016", - "climate_zone": "7A", - "type": "OutdoorsRoofCeiling", - "u_value": 0.162, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_91": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2011_2016_7A": { - "period_of_construction": "2011_2016", - "climate_zone": "7A", - "type": "OutdoorsFloor", - "u_value": 0.162, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_92": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2011_2016_7A": { - "period_of_construction": "2011_2016", - "climate_zone": "7A", - "type": "GroundWall", - "u_value": 0.284, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_93": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2011_2016_7A": { - "period_of_construction": "2011_2016", - "climate_zone": "7A", - "type": "GroundRoofCeiling", - "u_value": 0.284, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_94": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2011_2016_7A": { - "period_of_construction": "2011_2016", - "climate_zone": "7A", - "type": "GroundFloor", - "u_value": 0.757, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_95": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2011_2016_7B": { - "period_of_construction": "2011_2016", - "climate_zone": "7B", - "type": "OutdoorsWall", - "u_value": 0.21, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_96": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2011_2016_7B": { - "period_of_construction": "2011_2016", - "climate_zone": "7B", - "type": "OutdoorsRoofCeiling", - "u_value": 0.162, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_97": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2011_2016_7B": { - "period_of_construction": "2011_2016", - "climate_zone": "7B", - "type": "OutdoorsFloor", - "u_value": 0.162, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_98": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2011_2016_7B": { - "period_of_construction": "2011_2016", - "climate_zone": "7B", - "type": "GroundWall", - "u_value": 0.284, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_99": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2011_2016_7B": { - "period_of_construction": "2011_2016", - "climate_zone": "7B", - "type": "GroundRoofCeiling", - "u_value": 0.284, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_100": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2011_2016_7B": { - "period_of_construction": "2011_2016", - "climate_zone": "7B", - "type": "GroundFloor", - "u_value": 0.757, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_101": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2011_2016_8": { - "period_of_construction": "2011_2016", - "climate_zone": "8", - "type": "OutdoorsWall", - "u_value": 0.183, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_102": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2011_2016_8": { - "period_of_construction": "2011_2016", - "climate_zone": "8", - "type": "OutdoorsRoofCeiling", - "u_value": 0.142, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_103": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2011_2016_8": { - "period_of_construction": "2011_2016", - "climate_zone": "8", - "type": "OutdoorsFloor", - "u_value": 0.142, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_104": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2011_2016_8": { - "period_of_construction": "2011_2016", - "climate_zone": "8", - "type": "GroundWall", - "u_value": 0.21, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_105": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2011_2016_8": { - "period_of_construction": "2011_2016", - "climate_zone": "8", - "type": "GroundRoofCeiling", - "u_value": 0.21, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_106": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2011_2016_8": { - "period_of_construction": "2011_2016", - "climate_zone": "8", - "type": "GroundFloor", - "u_value": 0.379, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_107": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2017_2019_4": { - "period_of_construction": "2017_2019", - "climate_zone": "4", - "type": "OutdoorsWall", - "u_value": 0.315, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_108": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2017_2019_4": { - "period_of_construction": "2017_2019", - "climate_zone": "4", - "type": "OutdoorsRoofCeiling", - "u_value": 0.193, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_109": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2017_2019_4": { - "period_of_construction": "2017_2019", - "climate_zone": "4", - "type": "OutdoorsFloor", - "u_value": 0.227, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_110": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2017_2019_4": { - "period_of_construction": "2017_2019", - "climate_zone": "4", - "type": "GroundWall", - "u_value": 0.568, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_111": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2017_2019_4": { - "period_of_construction": "2017_2019", - "climate_zone": "4", - "type": "GroundRoofCeiling", - "u_value": 0.568, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_112": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2017_2019_4": { - "period_of_construction": "2017_2019", - "climate_zone": "4", - "type": "GroundFloor", - "u_value": 0.757, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_113": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2017_2019_5": { - "period_of_construction": "2017_2019", - "climate_zone": "5", - "type": "OutdoorsWall", - "u_value": 0.278, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_114": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2017_2019_5": { - "period_of_construction": "2017_2019", - "climate_zone": "5", - "type": "OutdoorsRoofCeiling", - "u_value": 0.156, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_115": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2017_2019_5": { - "period_of_construction": "2017_2019", - "climate_zone": "5", - "type": "OutdoorsFloor", - "u_value": 0.183, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_116": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2017_2019_5": { - "period_of_construction": "2017_2019", - "climate_zone": "5", - "type": "GroundWall", - "u_value": 0.379, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_117": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2017_2019_5": { - "period_of_construction": "2017_2019", - "climate_zone": "5", - "type": "GroundRoofCeiling", - "u_value": 0.379, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_118": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2017_2019_5": { - "period_of_construction": "2017_2019", - "climate_zone": "5", - "type": "GroundFloor", - "u_value": 0.757, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_119": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2017_2019_6": { - "period_of_construction": "2017_2019", - "climate_zone": "6", - "type": "OutdoorsWall", - "u_value": 0.247, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_120": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2017_2019_6": { - "period_of_construction": "2017_2019", - "climate_zone": "6", - "type": "OutdoorsRoofCeiling", - "u_value": 0.156, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_121": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2017_2019_6": { - "period_of_construction": "2017_2019", - "climate_zone": "6", - "type": "OutdoorsFloor", - "u_value": 0.183, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_122": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2017_2019_6": { - "period_of_construction": "2017_2019", - "climate_zone": "6", - "type": "GroundWall", - "u_value": 0.284, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_123": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2017_2019_6": { - "period_of_construction": "2017_2019", - "climate_zone": "6", - "type": "GroundRoofCeiling", - "u_value": 0.284, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_124": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2017_2019_6": { - "period_of_construction": "2017_2019", - "climate_zone": "6", - "type": "GroundFloor", - "u_value": 0.757, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_125": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2017_2019_7A": { - "period_of_construction": "2017_2019", - "climate_zone": "7A", - "type": "OutdoorsWall", - "u_value": 0.21, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_126": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2017_2019_7A": { - "period_of_construction": "2017_2019", - "climate_zone": "7A", - "type": "OutdoorsRoofCeiling", - "u_value": 0.138, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_127": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2017_2019_7A": { - "period_of_construction": "2017_2019", - "climate_zone": "7A", - "type": "OutdoorsFloor", - "u_value": 0.162, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_128": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2017_2019_7A": { - "period_of_construction": "2017_2019", - "climate_zone": "7A", - "type": "GroundWall", - "u_value": 0.284, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_129": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2017_2019_7A": { - "period_of_construction": "2017_2019", - "climate_zone": "7A", - "type": "GroundRoofCeiling", - "u_value": 0.284, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_130": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2017_2019_7A": { - "period_of_construction": "2017_2019", - "climate_zone": "7A", - "type": "GroundFloor", - "u_value": 0.757, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_131": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2017_2019_7B": { - "period_of_construction": "2017_2019", - "climate_zone": "7B", - "type": "OutdoorsWall", - "u_value": 0.21, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_132": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2017_2019_7B": { - "period_of_construction": "2017_2019", - "climate_zone": "7B", - "type": "OutdoorsRoofCeiling", - "u_value": 0.138, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_133": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2017_2019_7B": { - "period_of_construction": "2017_2019", - "climate_zone": "7B", - "type": "OutdoorsFloor", - "u_value": 0.162, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_134": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2017_2019_7B": { - "period_of_construction": "2017_2019", - "climate_zone": "7B", - "type": "GroundWall", - "u_value": 0.284, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_135": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2017_2019_7B": { - "period_of_construction": "2017_2019", - "climate_zone": "7B", - "type": "GroundRoofCeiling", - "u_value": 0.284, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_136": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2017_2019_7B": { - "period_of_construction": "2017_2019", - "climate_zone": "7B", - "type": "GroundFloor", - "u_value": 0.757, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_137": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2017_2019_8": { - "period_of_construction": "2017_2019", - "climate_zone": "8", - "type": "OutdoorsWall", - "u_value": 0.183, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_138": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2017_2019_8": { - "period_of_construction": "2017_2019", - "climate_zone": "8", - "type": "OutdoorsRoofCeiling", - "u_value": 0.121, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_139": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2017_2019_8": { - "period_of_construction": "2017_2019", - "climate_zone": "8", - "type": "OutdoorsFloor", - "u_value": 0.142, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_140": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2017_2019_8": { - "period_of_construction": "2017_2019", - "climate_zone": "8", - "type": "GroundWall", - "u_value": 0.21, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_141": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2017_2019_8": { - "period_of_construction": "2017_2019", - "climate_zone": "8", - "type": "GroundRoofCeiling", - "u_value": 0.21, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_142": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2017_2019_8": { - "period_of_construction": "2017_2019", - "climate_zone": "8", - "type": "GroundFloor", - "u_value": 0.379, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_143": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2020_3000_4": { - "period_of_construction": "2020_3000", - "climate_zone": "4", - "type": "OutdoorsWall", - "u_value": 0.29, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_144": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2020_3000_4": { - "period_of_construction": "2020_3000", - "climate_zone": "4", - "type": "OutdoorsRoofCeiling", - "u_value": 0.164, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_145": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2020_3000_4": { - "period_of_construction": "2020_3000", - "climate_zone": "4", - "type": "OutdoorsFloor", - "u_value": 0.193, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_146": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2020_3000_4": { - "period_of_construction": "2020_3000", - "climate_zone": "4", - "type": "GroundWall", - "u_value": 0.568, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_147": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2020_3000_4": { - "period_of_construction": "2020_3000", - "climate_zone": "4", - "type": "GroundRoofCeiling", - "u_value": 0.568, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_148": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2020_3000_4": { - "period_of_construction": "2020_3000", - "climate_zone": "4", - "type": "GroundFloor", - "u_value": 0.757, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_149": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2020_3000_5": { - "period_of_construction": "2020_3000", - "climate_zone": "5", - "type": "OutdoorsWall", - "u_value": 0.265, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_150": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2020_3000_5": { - "period_of_construction": "2020_3000", - "climate_zone": "5", - "type": "OutdoorsRoofCeiling", - "u_value": 0.156, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_151": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2020_3000_5": { - "period_of_construction": "2020_3000", - "climate_zone": "5", - "type": "OutdoorsFloor", - "u_value": 0.175, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_152": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2020_3000_5": { - "period_of_construction": "2020_3000", - "climate_zone": "5", - "type": "GroundWall", - "u_value": 0.379, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_153": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2020_3000_5": { - "period_of_construction": "2020_3000", - "climate_zone": "5", - "type": "GroundRoofCeiling", - "u_value": 0.379, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_154": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2020_3000_5": { - "period_of_construction": "2020_3000", - "climate_zone": "5", - "type": "GroundFloor", - "u_value": 0.757, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_155": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2020_3000_6": { - "period_of_construction": "2020_3000", - "climate_zone": "6", - "type": "OutdoorsWall", - "u_value": 0.24, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_156": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2020_3000_6": { - "period_of_construction": "2020_3000", - "climate_zone": "6", - "type": "OutdoorsRoofCeiling", - "u_value": 0.138, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_157": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2020_3000_6": { - "period_of_construction": "2020_3000", - "climate_zone": "6", - "type": "OutdoorsFloor", - "u_value": 0.156, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_158": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2020_3000_6": { - "period_of_construction": "2020_3000", - "climate_zone": "6", - "type": "GroundWall", - "u_value": 0.284, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_159": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2020_3000_6": { - "period_of_construction": "2020_3000", - "climate_zone": "6", - "type": "GroundRoofCeiling", - "u_value": 0.284, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_160": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2020_3000_6": { - "period_of_construction": "2020_3000", - "climate_zone": "6", - "type": "GroundFloor", - "u_value": 0.757, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_161": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2020_3000_7A": { - "period_of_construction": "2020_3000", - "climate_zone": "7A", - "type": "OutdoorsWall", - "u_value": 0.215, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_162": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2020_3000_7A": { - "period_of_construction": "2020_3000", - "climate_zone": "7A", - "type": "OutdoorsRoofCeiling", - "u_value": 0.121, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_163": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2020_3000_7A": { - "period_of_construction": "2020_3000", - "climate_zone": "7A", - "type": "OutdoorsFloor", - "u_value": 0.138, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_164": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2020_3000_7A": { - "period_of_construction": "2020_3000", - "climate_zone": "7A", - "type": "GroundWall", - "u_value": 0.284, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_165": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2020_3000_7A": { - "period_of_construction": "2020_3000", - "climate_zone": "7A", - "type": "GroundRoofCeiling", - "u_value": 0.284, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_166": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2020_3000_7A": { - "period_of_construction": "2020_3000", - "climate_zone": "7A", - "type": "GroundFloor", - "u_value": 0.757, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_167": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2020_3000_7B": { - "period_of_construction": "2020_3000", - "climate_zone": "7B", - "type": "OutdoorsWall", - "u_value": 0.19, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_168": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2020_3000_7B": { - "period_of_construction": "2020_3000", - "climate_zone": "7B", - "type": "OutdoorsRoofCeiling", - "u_value": 0.117, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_169": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2020_3000_7B": { - "period_of_construction": "2020_3000", - "climate_zone": "7B", - "type": "OutdoorsFloor", - "u_value": 0.121, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_170": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2020_3000_7B": { - "period_of_construction": "2020_3000", - "climate_zone": "7B", - "type": "GroundWall", - "u_value": 0.284, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_171": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2020_3000_7B": { - "period_of_construction": "2020_3000", - "climate_zone": "7B", - "type": "GroundRoofCeiling", - "u_value": 0.284, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_172": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2020_3000_7B": { - "period_of_construction": "2020_3000", - "climate_zone": "7B", - "type": "GroundFloor", - "u_value": 0.757, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_173": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2020_3000_8": { - "period_of_construction": "2020_3000", - "climate_zone": "8", - "type": "OutdoorsWall", - "u_value": 0.165, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_174": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2020_3000_8": { - "period_of_construction": "2020_3000", - "climate_zone": "8", - "type": "OutdoorsRoofCeiling", - "u_value": 0.11, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_175": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2020_3000_8": { - "period_of_construction": "2020_3000", - "climate_zone": "8", - "type": "OutdoorsFloor", - "u_value": 0.117, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_176": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - }, - { - "2020_3000_8": { - "period_of_construction": "2020_3000", - "climate_zone": "8", - "type": "GroundWall", - "u_value": 0.21, - "layers": { - "Lightweight Metallic Cladding": 0.006, - "virtual_no_mass_177": 0, - "XPS Extruded Polystyrene - CO2 Blowing": 0.0877, - "Gypsum Plasterboard": 0.013 - } - } - }, - { - "2020_3000_8": { - "period_of_construction": "2020_3000", - "climate_zone": "8", - "type": "GroundRoofCeiling", - "u_value": 0.21, - "layers": { - "Asphalt 1": 0.01, - "virtual_no_mass_178": 0, - "MW Glass Wool (rolls)": 0.1, - "Plasterboard": 0.013 - } - } - }, - { - "2020_3000_8": { - "period_of_construction": "2020_3000", - "climate_zone": "8", - "type": "GroundFloor", - "u_value": 0.379, - "layers": { - "Urea Formaldehyde Foam": 0.1, - "virtual_no_mass_179": 0, - "Cast Concrete": 0.1, - "Floor/Roof Screed": 0.07, - "Timber Flooring": 0.03 - } - } - } - ], "materials": [ { "Urea Formaldehyde Foam": { @@ -3091,7 +3091,7 @@ { "virtual_no_mass_0": { "no_mass": true, - "thermal_resistance": 0.6584101668836548 + "thermal_resistance": -1.6768839507634041 } }, { @@ -3109,7 +3109,7 @@ { "virtual_no_mass_3": { "no_mass": true, - "thermal_resistance": 1.1273002032671475 + "thermal_resistance": -1.2079939143799114 } }, { @@ -3127,7 +3127,7 @@ { "virtual_no_mass_6": { "no_mass": true, - "thermal_resistance": 0.7634850606909431 + "thermal_resistance": -1.5718090569561158 } }, { @@ -3145,7 +3145,7 @@ { "virtual_no_mass_9": { "no_mass": true, - "thermal_resistance": 1.1273002032671475 + "thermal_resistance": -1.2079939143799114 } }, { @@ -3163,7 +3163,7 @@ { "virtual_no_mass_12": { "no_mass": true, - "thermal_resistance": 0.8674407782554092 + "thermal_resistance": -1.4678533393916497 } }, { @@ -3181,7 +3181,7 @@ { "virtual_no_mass_15": { "no_mass": true, - "thermal_resistance": 1.1273002032671475 + "thermal_resistance": -1.2079939143799114 } }, { @@ -3199,7 +3199,7 @@ { "virtual_no_mass_18": { "no_mass": true, - "thermal_resistance": 0.9477107371445987 + "thermal_resistance": -1.3875833805024602 } }, { @@ -3217,7 +3217,7 @@ { "virtual_no_mass_21": { "no_mass": true, - "thermal_resistance": 1.1273002032671475 + "thermal_resistance": -1.2079939143799114 } }, { @@ -3235,7 +3235,7 @@ { "virtual_no_mass_24": { "no_mass": true, - "thermal_resistance": 0.9477107371445987 + "thermal_resistance": -1.3875833805024602 } }, { @@ -3253,7 +3253,7 @@ { "virtual_no_mass_27": { "no_mass": true, - "thermal_resistance": 1.1273002032671475 + "thermal_resistance": -1.2079939143799114 } }, { @@ -3271,7 +3271,7 @@ { "virtual_no_mass_30": { "no_mass": true, - "thermal_resistance": 1.0608246538051842 + "thermal_resistance": -1.2744694638418748 } }, { @@ -3289,7 +3289,7 @@ { "virtual_no_mass_33": { "no_mass": true, - "thermal_resistance": 1.1273002032671475 + "thermal_resistance": -1.2079939143799114 } }, { @@ -3307,7 +3307,7 @@ { "virtual_no_mass_36": { "no_mass": true, - "thermal_resistance": 1.7398737251092764 + "thermal_resistance": -0.8720380395966056 } }, { @@ -3325,7 +3325,7 @@ { "virtual_no_mass_39": { "no_mass": true, - "thermal_resistance": 1.6294753613292363 + "thermal_resistance": -0.9824364033766457 } }, { @@ -3343,7 +3343,7 @@ { "virtual_no_mass_42": { "no_mass": true, - "thermal_resistance": 1.445586004651633 + "thermal_resistance": -1.1663257600542491 } }, { @@ -3361,7 +3361,7 @@ { "virtual_no_mass_45": { "no_mass": true, - "thermal_resistance": 1.8074639097270375 + "thermal_resistance": -0.8044478549788445 } }, { @@ -3379,7 +3379,7 @@ { "virtual_no_mass_48": { "no_mass": true, - "thermal_resistance": 2.3267281852031734 + "thermal_resistance": -0.2851835795027089 } }, { @@ -3397,7 +3397,7 @@ { "virtual_no_mass_51": { "no_mass": true, - "thermal_resistance": 2.1579595823003532 + "thermal_resistance": -0.45395218240552904 } }, { @@ -3415,7 +3415,7 @@ { "virtual_no_mass_54": { "no_mass": true, - "thermal_resistance": 2.8694837552322108 + "thermal_resistance": 0.2575719905263285 } }, { @@ -3433,7 +3433,7 @@ { "virtual_no_mass_57": { "no_mass": true, - "thermal_resistance": 2.3322515212981747 + "thermal_resistance": -0.27966024340770756 } }, { @@ -3451,7 +3451,7 @@ { "virtual_no_mass_60": { "no_mass": true, - "thermal_resistance": 2.8694837552322108 + "thermal_resistance": 0.2575719905263285 } }, { @@ -3469,7 +3469,7 @@ { "virtual_no_mass_63": { "no_mass": true, - "thermal_resistance": 2.3322515212981747 + "thermal_resistance": -0.27966024340770756 } }, { @@ -3487,7 +3487,7 @@ { "virtual_no_mass_66": { "no_mass": true, - "thermal_resistance": 3.7246286968875113 + "thermal_resistance": 1.112716932181629 } }, { @@ -3505,7 +3505,7 @@ { "virtual_no_mass_69": { "no_mass": true, - "thermal_resistance": 2.861154725231045 + "thermal_resistance": 0.2492429605251627 } }, { @@ -3523,7 +3523,7 @@ { "virtual_no_mass_72": { "no_mass": true, - "thermal_resistance": 3.153913519430761 + "thermal_resistance": 0.5420017547248785 } }, { @@ -3541,7 +3541,7 @@ { "virtual_no_mass_75": { "no_mass": true, - "thermal_resistance": 1.7398737251092764 + "thermal_resistance": -0.8720380395966056 } }, { @@ -3559,7 +3559,7 @@ { "virtual_no_mass_78": { "no_mass": true, - "thermal_resistance": 3.5764326469858596 + "thermal_resistance": 0.9645208822799773 } }, { @@ -3577,7 +3577,7 @@ { "virtual_no_mass_81": { "no_mass": true, - "thermal_resistance": 2.6178327722682195 + "thermal_resistance": 0.005921007562337266 } }, { @@ -3595,7 +3595,7 @@ { "virtual_no_mass_84": { "no_mass": true, - "thermal_resistance": 4.027893340779003 + "thermal_resistance": 1.4159815760731211 } }, { @@ -3613,7 +3613,7 @@ { "virtual_no_mass_87": { "no_mass": true, - "thermal_resistance": 3.500437105390967 + "thermal_resistance": 0.8885253406850846 } }, { @@ -3631,7 +3631,7 @@ { "virtual_no_mass_90": { "no_mass": true, - "thermal_resistance": 4.741215106732348 + "thermal_resistance": 2.129303342026466 } }, { @@ -3649,7 +3649,7 @@ { "virtual_no_mass_93": { "no_mass": true, - "thermal_resistance": 3.500437105390967 + "thermal_resistance": 0.8885253406850846 } }, { @@ -3667,7 +3667,7 @@ { "virtual_no_mass_96": { "no_mass": true, - "thermal_resistance": 4.741215106732348 + "thermal_resistance": 2.129303342026466 } }, { @@ -3685,7 +3685,7 @@ { "virtual_no_mass_99": { "no_mass": true, - "thermal_resistance": 3.500437105390967 + "thermal_resistance": 0.8885253406850846 } }, { @@ -3703,7 +3703,7 @@ { "virtual_no_mass_102": { "no_mass": true, - "thermal_resistance": 5.443791219144526 + "thermal_resistance": 2.831879454438644 } }, { @@ -3721,7 +3721,7 @@ { "virtual_no_mass_105": { "no_mass": true, - "thermal_resistance": 4.741215106732348 + "thermal_resistance": 2.129303342026466 } }, { @@ -3739,7 +3739,7 @@ { "virtual_no_mass_108": { "no_mass": true, - "thermal_resistance": 3.153913519430761 + "thermal_resistance": 0.5420017547248785 } }, { @@ -3757,7 +3757,7 @@ { "virtual_no_mass_111": { "no_mass": true, - "thermal_resistance": 1.7398737251092764 + "thermal_resistance": -0.8720380395966056 } }, { @@ -3775,7 +3775,7 @@ { "virtual_no_mass_114": { "no_mass": true, - "thermal_resistance": 3.5764326469858596 + "thermal_resistance": 0.9645208822799773 } }, { @@ -3793,7 +3793,7 @@ { "virtual_no_mass_117": { "no_mass": true, - "thermal_resistance": 2.6178327722682195 + "thermal_resistance": 0.005921007562337266 } }, { @@ -3811,7 +3811,7 @@ { "virtual_no_mass_120": { "no_mass": true, - "thermal_resistance": 4.027893340779003 + "thermal_resistance": 1.4159815760731211 } }, { @@ -3829,7 +3829,7 @@ { "virtual_no_mass_123": { "no_mass": true, - "thermal_resistance": 3.500437105390967 + "thermal_resistance": 0.8885253406850846 } }, { @@ -3847,7 +3847,7 @@ { "virtual_no_mass_126": { "no_mass": true, - "thermal_resistance": 4.741215106732348 + "thermal_resistance": 2.129303342026466 } }, { @@ -3865,7 +3865,7 @@ { "virtual_no_mass_129": { "no_mass": true, - "thermal_resistance": 3.500437105390967 + "thermal_resistance": 0.8885253406850846 } }, { @@ -3883,7 +3883,7 @@ { "virtual_no_mass_132": { "no_mass": true, - "thermal_resistance": 4.741215106732348 + "thermal_resistance": 2.129303342026466 } }, { @@ -3901,7 +3901,7 @@ { "virtual_no_mass_135": { "no_mass": true, - "thermal_resistance": 3.500437105390967 + "thermal_resistance": 0.8885253406850846 } }, { @@ -3919,7 +3919,7 @@ { "virtual_no_mass_138": { "no_mass": true, - "thermal_resistance": 5.443791219144526 + "thermal_resistance": 2.831879454438644 } }, { @@ -3937,7 +3937,7 @@ { "virtual_no_mass_141": { "no_mass": true, - "thermal_resistance": 4.741215106732348 + "thermal_resistance": 2.129303342026466 } }, { @@ -3955,7 +3955,7 @@ { "virtual_no_mass_144": { "no_mass": true, - "thermal_resistance": 3.427586206896552 + "thermal_resistance": 0.8156744421906699 } }, { @@ -3973,7 +3973,7 @@ { "virtual_no_mass_147": { "no_mass": true, - "thermal_resistance": 1.7398737251092764 + "thermal_resistance": -0.8720380395966056 } }, { @@ -3991,7 +3991,7 @@ { "virtual_no_mass_150": { "no_mass": true, - "thermal_resistance": 3.7528952504879634 + "thermal_resistance": 1.140983485782081 } }, { @@ -4009,7 +4009,7 @@ { "virtual_no_mass_153": { "no_mass": true, - "thermal_resistance": 2.6178327722682195 + "thermal_resistance": 0.005921007562337266 } }, { @@ -4027,7 +4027,7 @@ { "virtual_no_mass_156": { "no_mass": true, - "thermal_resistance": 4.145977011494253 + "thermal_resistance": 1.534065246788371 } }, { @@ -4045,7 +4045,7 @@ { "virtual_no_mass_159": { "no_mass": true, - "thermal_resistance": 3.500437105390967 + "thermal_resistance": 0.8885253406850846 } }, { @@ -4063,7 +4063,7 @@ { "virtual_no_mass_162": { "no_mass": true, - "thermal_resistance": 4.630473135525261 + "thermal_resistance": 2.018561370819379 } }, { @@ -4081,7 +4081,7 @@ { "virtual_no_mass_165": { "no_mass": true, - "thermal_resistance": 3.500437105390967 + "thermal_resistance": 0.8885253406850846 } }, { @@ -4099,7 +4099,7 @@ { "virtual_no_mass_168": { "no_mass": true, - "thermal_resistance": 5.242468239564428 + "thermal_resistance": 2.6305564748585466 } }, { @@ -4117,7 +4117,7 @@ { "virtual_no_mass_171": { "no_mass": true, - "thermal_resistance": 3.500437105390967 + "thermal_resistance": 0.8885253406850846 } }, { @@ -4135,7 +4135,7 @@ { "virtual_no_mass_174": { "no_mass": true, - "thermal_resistance": 6.0399164054336465 + "thermal_resistance": 3.4280046407277647 } }, { @@ -4153,7 +4153,7 @@ { "virtual_no_mass_177": { "no_mass": true, - "thermal_resistance": 4.741215106732348 + "thermal_resistance": 2.129303342026466 } }, { diff --git a/hub/exports/building_energy/insel/insel_monthly_energy_balance.py b/hub/exports/building_energy/insel/insel_monthly_energy_balance.py index af8462c0..f136509a 100644 --- a/hub/exports/building_energy/insel/insel_monthly_energy_balance.py +++ b/hub/exports/building_energy/insel/insel_monthly_energy_balance.py @@ -71,9 +71,10 @@ class InselMonthlyEnergyBalance(Insel): internal_zone = building.internal_zones[0] thermal_zone = internal_zone.thermal_zones[0] parameters.append(f'{thermal_zone.indirectly_heated_area_ratio} % BP(6) Indirectly heated area ratio') - parameters.append(f'{thermal_zone.effective_thermal_capacity / 3600} % BP(7) Effective heat capacity (Wh/m2K)') + parameters.append(f'{thermal_zone.effective_thermal_capacity / 3600 / building.average_storey_height}' + f' % BP(7) Effective heat capacity (Wh/m2K)') parameters.append(f'{thermal_zone.additional_thermal_bridge_u_value} ' - f'% BP(8) Additional U-value for heat bridge (Wh/m2K)') + f'% BP(8) Additional U-value for heat bridge (W/m2K)') parameters.append('1 % BP(9) Usage type (0=standard, 1=IWU)') # ZONES AND SURFACES diff --git a/hub/imports/construction/helpers/construction_helper.py b/hub/imports/construction/helpers/construction_helper.py index ed693b5d..39332f9d 100644 --- a/hub/imports/construction/helpers/construction_helper.py +++ b/hub/imports/construction/helpers/construction_helper.py @@ -47,6 +47,10 @@ class ConstructionHelper: cte.ROOF: 'roof' } + _reference_city_to_nrcan_climate_zone = { + 'Montreal': '6' + } + @staticmethod def yoc_to_nrel_standard(year_of_construction): """ @@ -68,9 +72,9 @@ class ConstructionHelper: :return: str """ # todo: Dummy function that needs to be implemented - reference_city = 'Baltimore' + reference_city = 'Montreal' if city is not None: - reference_city = 'Baltimore' + reference_city = 'Montreal' return reference_city @staticmethod @@ -80,5 +84,15 @@ class ConstructionHelper: :param city: str :return: str """ - reference_city = ConstructionHelper.city_to_reference_city(city) + reference_city = 'Baltimore' return ConstructionHelper._reference_city_to_nrel_climate_zone[reference_city] + + @staticmethod + def city_to_nrcan_climate_zone(city): + """ + City name to NRCAN climate zone + :param city: str + :return: str + """ + reference_city = ConstructionHelper.city_to_reference_city(city) + return ConstructionHelper._reference_city_to_nrcan_climate_zone[reference_city] diff --git a/hub/imports/construction/nrcan_physics_parameters.py b/hub/imports/construction/nrcan_physics_parameters.py index 3904ac69..dbe37684 100644 --- a/hub/imports/construction/nrcan_physics_parameters.py +++ b/hub/imports/construction/nrcan_physics_parameters.py @@ -4,8 +4,10 @@ SPDX - License - Identifier: LGPL - 3.0 - or -later Copyright © 2022 Concordia CERC group Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca """ +import math import sys +import hub.helpers.constants as cte from hub.catalog_factories.construction_catalog_factory import ConstructionCatalogFactory from hub.city_model_structure.building_demand.layer import Layer from hub.city_model_structure.building_demand.material import Material @@ -22,25 +24,23 @@ class NrcanPhysicsParameters: self._city = city self._path = base_path self._divide_in_storeys = divide_in_storeys - self._climate_zone = ConstructionHelper.city_to_nrel_climate_zone(city.name) + self._climate_zone = ConstructionHelper.city_to_nrcan_climate_zone(city.name) def enrich_buildings(self): """ Returns the city with the construction parameters assigned to the buildings """ city = self._city - canel_catalog = ConstructionCatalogFactory('nrcan').catalog + nrcan_catalog = ConstructionCatalogFactory('nrcan').catalog for building in city.buildings: try: function = Dictionaries().hub_function_to_nrcan_construction_function[building.function] - archetype = self._search_archetype(canel_catalog, function, building.year_of_construction, - self._climate_zone) + archetype = self._search_archetype(nrcan_catalog, function, building.year_of_construction, self._climate_zone) except KeyError: sys.stderr.write(f'Building {building.name} has unknown construction archetype for building function: ' f'{building.function} and building year of construction: {building.year_of_construction} ' - f'and climate zone reference norm {self._climate_zone}\n') + f'and climate zone {self._climate_zone}\n') return - # if building has no thermal zones defined from geometry, and the building will be divided in storeys, # one thermal zone per storey is assigned if len(building.internal_zones) == 1: @@ -65,12 +65,10 @@ class NrcanPhysicsParameters: self._calculate_view_factors(thermal_zone) @staticmethod - def _search_archetype(nrel_catalog, function, year_of_construction, climate_zone): - nrel_archetypes = nrel_catalog.entries('archetypes') - for building_archetype in nrel_archetypes: - construction_period_limits = building_archetype.construction_period.split(' - ') - if construction_period_limits[1] == 'PRESENT': - construction_period_limits[1] = 3000 + def _search_archetype(nrcan_catalog, function, year_of_construction, climate_zone): + nrcan_archetypes = nrcan_catalog.entries('archetypes') + for building_archetype in nrcan_archetypes: + construction_period_limits = building_archetype.construction_period.split('_') if int(construction_period_limits[0]) <= int(year_of_construction) < int(construction_period_limits[1]): if (str(function) == str(building_archetype.function)) and \ (climate_zone == str(building_archetype.climate_zone)): @@ -96,7 +94,21 @@ class NrcanPhysicsParameters: construction_archetype = self._search_construction_in_archetype(archetype, thermal_boundary.type) thermal_boundary.construction_name = construction_archetype.name try: - thermal_boundary.window_ratio = construction_archetype.window_ratio + thermal_boundary.window_ratio = 0 + if thermal_boundary.type == cte.WALL or thermal_boundary.type == cte.ROOF: + if construction_archetype.window is not None: + if math.pi / 4 <= thermal_boundary.parent_surface.azimuth < 3 * math.pi / 4: + thermal_boundary.window_ratio = \ + float(construction_archetype.window_ratio['east']) / 100 + elif 3 * math.pi / 4 <= thermal_boundary.parent_surface.azimuth < 5 * math.pi / 4: + thermal_boundary.window_ratio = \ + float(construction_archetype.window_ratio['south']) / 100 + elif 5 * math.pi / 4 <= thermal_boundary.parent_surface.azimuth < 7 * math.pi / 4: + thermal_boundary.window_ratio = \ + float(construction_archetype.window_ratio['west']) / 100 + else: + thermal_boundary.window_ratio = \ + float(construction_archetype.window_ratio['north']) / 100 except ValueError: # This is the normal operation way when the windows are defined in the geometry continue diff --git a/hub/unittests/test_construction_factory.py b/hub/unittests/test_construction_factory.py index 7e37777a..023d13ee 100644 --- a/hub/unittests/test_construction_factory.py +++ b/hub/unittests/test_construction_factory.py @@ -113,8 +113,6 @@ class TestConstructionFactory(TestCase): self.assertTrue(len(thermal_zone.thermal_boundaries) > 0, 'thermal_zone thermal_boundaries not defined') self.assertIsNotNone(thermal_zone.additional_thermal_bridge_u_value, 'additional_thermal_bridge_u_value is none') self.assertIsNotNone(thermal_zone.effective_thermal_capacity, 'thermal_zone effective_thermal_capacity is none') - self.assertIsNotNone(thermal_zone.indirectly_heated_area_ratio, - 'thermal_zone indirectly_heated_area_ratio is none') self.assertIsNotNone(thermal_zone.infiltration_rate_system_off, 'thermal_zone infiltration_rate_system_off is none') self.assertIsNotNone(thermal_zone.infiltration_rate_system_on, 'thermal_zone infiltration_rate_system_on is none') @@ -153,7 +151,7 @@ class TestConstructionFactory(TestCase): def _check_thermal_openings(self, thermal_boundary): for thermal_opening in thermal_boundary.thermal_openings: self.assertIsNotNone(thermal_opening.id, 'thermal opening id is not none') - self.assertIsNotNone(thermal_opening.construction_name, 'thermal opening construction is not none') + self.assertIsNotNone(thermal_opening.construction_name, 'thermal opening construction is none') self.assertIsNotNone(thermal_opening.area, 'thermal opening area is not none') self.assertIsNotNone(thermal_opening.frame_ratio, 'thermal opening frame_ratio is none') self.assertIsNotNone(thermal_opening.g_value, 'thermal opening g_value is none') @@ -176,10 +174,64 @@ class TestConstructionFactory(TestCase): """ Enrich the city with the construction information and verify it """ + file = 'one_building_in_kelowna.gml' + city = self._get_citygml(file) + for building in city.buildings: + building.year_of_construction = 1980 + building.function = self._internal_function('hft', building.function) + ConstructionFactory('nrcan', city).enrich() + + self._check_buildings(city) + for building in city.buildings: + for internal_zone in building.internal_zones: + self._check_thermal_zones(internal_zone) + for thermal_zone in internal_zone.thermal_zones: + self._check_thermal_boundaries(thermal_zone) + for thermal_boundary in thermal_zone.thermal_boundaries: + self.assertIsNotNone(thermal_boundary.layers, 'layers is none') + self._check_thermal_openings(thermal_boundary) + self._check_surfaces(thermal_boundary) + file = 'pluto_building.gml' city = self._get_citygml(file) for building in city.buildings: - building.year_of_construction = 2005 + building.year_of_construction = 1980 + building.function = self._internal_function('pluto', building.function) + ConstructionFactory('nrcan', city).enrich() + + self._check_buildings(city) + for building in city.buildings: + for internal_zone in building.internal_zones: + self._check_thermal_zones(internal_zone) + for thermal_zone in internal_zone.thermal_zones: + self._check_thermal_boundaries(thermal_zone) + for thermal_boundary in thermal_zone.thermal_boundaries: + self.assertIsNotNone(thermal_boundary.layers, 'layers is none') + self._check_thermal_openings(thermal_boundary) + self._check_surfaces(thermal_boundary) + + file = 'one_building_in_kelowna.gml' + city = self._get_citygml(file) + for building in city.buildings: + building.year_of_construction = 2006 + building.function = self._internal_function('hft', building.function) + ConstructionFactory('nrel', city).enrich() + + self._check_buildings(city) + for building in city.buildings: + for internal_zone in building.internal_zones: + self._check_thermal_zones(internal_zone) + for thermal_zone in internal_zone.thermal_zones: + self._check_thermal_boundaries(thermal_zone) + for thermal_boundary in thermal_zone.thermal_boundaries: + self.assertIsNotNone(thermal_boundary.layers, 'layers is none') + self._check_thermal_openings(thermal_boundary) + self._check_surfaces(thermal_boundary) + + file = 'pluto_building.gml' + city = self._get_citygml(file) + for building in city.buildings: + building.year_of_construction = 2006 building.function = self._internal_function('pluto', building.function) ConstructionFactory('nrel', city).enrich() @@ -194,6 +246,50 @@ class TestConstructionFactory(TestCase): self._check_thermal_openings(thermal_boundary) self._check_surfaces(thermal_boundary) + file = 'one_building_in_kelowna.gml' + city = self._get_citygml(file) + for building in city.buildings: + building.year_of_construction = 1980 + building.function = self._internal_function('hft', building.function) + ConstructionFactory('nrcan', city).enrich() + + self._check_buildings(city) + for building in city.buildings: + for internal_zone in building.internal_zones: + self._check_thermal_zones(internal_zone) + for thermal_zone in internal_zone.thermal_zones: + self._check_thermal_boundaries(thermal_zone) + for thermal_boundary in thermal_zone.thermal_boundaries: + self.assertIsNotNone(thermal_boundary.layers, 'layers is none') + self._check_thermal_openings(thermal_boundary) + self._check_surfaces(thermal_boundary) + + file_path = (self._example_path / 'concordia.geojson').resolve() + self._city = GeometryFactory('geojson', + path=file_path, + height_field='citygml_me', + year_of_construction_field='ANNEE_CONS', + function_field='LIBELLE_UT', + function_to_hub=Dictionaries().montreal_function_to_hub_function).city + + for building in city.buildings: + building.year_of_construction = 1980 + building.function = self._internal_function('pluto', building.function) + ConstructionFactory('nrcan', city).enrich() + + self._check_buildings(city) + for building in city.buildings: + for internal_zone in building.internal_zones: + self._check_thermal_zones(internal_zone) + for thermal_zone in internal_zone.thermal_zones: + self._check_thermal_boundaries(thermal_zone) + for thermal_boundary in thermal_zone.thermal_boundaries: + self.assertIsNotNone(thermal_boundary.layers, 'layers is none') + self._check_thermal_openings(thermal_boundary) + self._check_surfaces(thermal_boundary) + + + def test_archetype_not_found(self): file = 'pluto_building.gml' city = self._get_citygml(file) From ee495bf41a1129ecd90bf7a2282fcfcf7d9bf83c Mon Sep 17 00:00:00 2001 From: Pilar Date: Wed, 22 Feb 2023 08:35:45 -0500 Subject: [PATCH 4/4] added nrcan catalog --- hub/imports/geometry/geojson.py | 2 +- hub/unittests/test_construction_factory.py | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/hub/imports/geometry/geojson.py b/hub/imports/geometry/geojson.py index 58f3949d..21f27b27 100644 --- a/hub/imports/geometry/geojson.py +++ b/hub/imports/geometry/geojson.py @@ -163,6 +163,6 @@ class Geojson: for building in buildings: self._city.add_city_object(building) self._city.level_of_detail.geometry = lod - if len(missing_functions > 0): + if len(missing_functions) > 0: print(f'There are unknown functions {missing_functions}') return self._city diff --git a/hub/unittests/test_construction_factory.py b/hub/unittests/test_construction_factory.py index 023d13ee..026b535f 100644 --- a/hub/unittests/test_construction_factory.py +++ b/hub/unittests/test_construction_factory.py @@ -272,9 +272,6 @@ class TestConstructionFactory(TestCase): function_field='LIBELLE_UT', function_to_hub=Dictionaries().montreal_function_to_hub_function).city - for building in city.buildings: - building.year_of_construction = 1980 - building.function = self._internal_function('pluto', building.function) ConstructionFactory('nrcan', city).enrich() self._check_buildings(city) @@ -288,8 +285,6 @@ class TestConstructionFactory(TestCase): self._check_thermal_openings(thermal_boundary) self._check_surfaces(thermal_boundary) - - def test_archetype_not_found(self): file = 'pluto_building.gml' city = self._get_citygml(file)