@viadukt/connect 2.4.2 → 2.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +114 -602
- package/dist/index.js +100 -566
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6,63 +6,63 @@ declare const $LookupPropertiesV2: {
|
|
|
6
6
|
readonly properties: {
|
|
7
7
|
readonly street: {
|
|
8
8
|
readonly type: readonly ["string", "null"];
|
|
9
|
-
readonly description: "\
|
|
9
|
+
readonly description: "\nThe `street` field specifies the street name of a building.\n\nThe field is set to `null` if the street is unknown.";
|
|
10
10
|
readonly example: "Friedrich Ebert Straße";
|
|
11
11
|
};
|
|
12
12
|
readonly city: {
|
|
13
13
|
readonly type: readonly ["string", "null"];
|
|
14
|
-
readonly description: "\nThe `city` field specifies the city name of a building.\n\nThe field is set to `null` if the city is unknown
|
|
14
|
+
readonly description: "\nThe `city` field specifies the city name of a building.\n\nThe field is set to `null` if the city is unknown.";
|
|
15
15
|
readonly example: "Wuppertal";
|
|
16
16
|
};
|
|
17
17
|
readonly street_number: {
|
|
18
18
|
readonly type: readonly ["string", "null"];
|
|
19
|
-
readonly description: "\nThe `street_number` field specifies the street number name of a building.\n\nThe field is set to `null` if the street number is unknown
|
|
19
|
+
readonly description: "\nThe `street_number` field specifies the street number name of a building.\n\nThe field is set to `null` if the street number is unknown.";
|
|
20
20
|
readonly example: "107";
|
|
21
21
|
};
|
|
22
22
|
readonly postcode: {
|
|
23
23
|
readonly type: readonly ["string", "null"];
|
|
24
|
-
readonly description: "\nThe `postcode` field specifies the postcode of a building.\n\nThe field is set to `null` if the postcode is unknown
|
|
24
|
+
readonly description: "\nThe `postcode` field specifies the postcode of a building.\n\nThe field is set to `null` if the postcode is unknown.";
|
|
25
25
|
readonly example: "107";
|
|
26
26
|
};
|
|
27
27
|
readonly roof_type: {
|
|
28
28
|
readonly type: readonly ["string", "null"];
|
|
29
29
|
readonly enum: readonly ["flat", "pitched", "mixed"];
|
|
30
|
-
readonly description: "\nThe `roof_type` field specifies the type of roof of a building. This field can have one of the following values:\n\n- **flat**: Flat roof\n- **pitched**: Pitched roof\n- **mixed**: Mixed types of roofs\n\nThe field is set to `null` if the building type is unknown
|
|
30
|
+
readonly description: "\nThe `roof_type` field specifies the type of roof of a building. This field can have one of the following values:\n\n- **flat**: Flat roof\n- **pitched**: Pitched roof\n- **mixed**: Mixed types of roofs\n\nThe field is set to `null` if the building type is unknown.";
|
|
31
31
|
readonly example: "flat";
|
|
32
32
|
};
|
|
33
33
|
readonly type: {
|
|
34
34
|
readonly type: readonly ["string", "null"];
|
|
35
35
|
readonly enum: readonly ["single_family", "multi_family", "non_residential", "mixed_use"];
|
|
36
|
-
readonly description: "\nThe `type` field specifies the type of building. This field can have one of the following values:\n\n- **single_family**: Single-family house\n- **multi_family**: Multi-family house\n- **non_residential**: Non-residential building\n- **mixed_use**: Mixed-use building\n\nThe field is set to `null` if the building type is unknown
|
|
36
|
+
readonly description: "\nThe `type` field specifies the type of building. This field can have one of the following values:\n\n- **single_family**: Single-family house\n- **multi_family**: Multi-family house\n- **non_residential**: Non-residential building\n- **mixed_use**: Mixed-use building\n\nThe field is set to `null` if the building type is unknown.";
|
|
37
37
|
readonly example: "single_family";
|
|
38
38
|
};
|
|
39
39
|
readonly type_class: {
|
|
40
40
|
readonly type: readonly ["number", "null"];
|
|
41
41
|
readonly minimum: 1;
|
|
42
42
|
readonly maximum: 4;
|
|
43
|
-
readonly description: "\nThe `type_class` field specifies the class of the building type. This field can have one of the following values:\n\n- **1**: Single-family house\n- **2**: Multi-family house\n- **3**: Non-residential building\n- **4**: Mixed-use building\n\nThe field is set to `null` if the building type is unknown
|
|
43
|
+
readonly description: "\nThe `type_class` field specifies the class of the building type. This field can have one of the following values:\n\n- **1**: Single-family house\n- **2**: Multi-family house\n- **3**: Non-residential building\n- **4**: Mixed-use building\n\nThe field is set to `null` if the building type is unknown.";
|
|
44
44
|
readonly example: 1;
|
|
45
45
|
};
|
|
46
46
|
readonly water_protected: {
|
|
47
47
|
readonly type: readonly ["boolean", "null"];
|
|
48
|
-
readonly description: "\nThe `water_protected` field specifies whether the building is within a water protection area.\n\nIf the field is set to `null`, no water protection area could be assigned
|
|
48
|
+
readonly description: "\nThe `water_protected` field specifies whether the building is within a water protection area.\n\nIf the field is set to `null`, no water protection area could be assigned.";
|
|
49
49
|
readonly example: true;
|
|
50
50
|
};
|
|
51
51
|
readonly heated: {
|
|
52
52
|
readonly type: readonly ["boolean", "null"];
|
|
53
|
-
readonly description: "\nThe `heated` field specifies whether the building is heated or not.\n\nThe field is set to `null` if the heating status is unknown
|
|
53
|
+
readonly description: "\nThe `heated` field specifies whether the building is heated or not.\n\nThe field is set to `null` if the heating status is unknown.";
|
|
54
54
|
readonly example: true;
|
|
55
55
|
};
|
|
56
56
|
readonly heat_demand: {
|
|
57
57
|
readonly type: readonly ["number", "null"];
|
|
58
58
|
readonly minimum: 0;
|
|
59
|
-
readonly description: "\nThe `heat_demand` field specifies the heat demand of the building in [kWh/m²a].\n\nThe field is set to `null` if the heat demand is unknown
|
|
59
|
+
readonly description: "\nThe `heat_demand` field specifies the heat demand of the building in [kWh/m²a].\n\nThe field is set to `null` if the heat demand is unknown.";
|
|
60
60
|
readonly example: 127.42;
|
|
61
61
|
};
|
|
62
62
|
readonly height_category: {
|
|
63
63
|
readonly type: readonly ["string", "null"];
|
|
64
64
|
readonly enum: readonly ["<= 5m", "<= 7.5m", "<= 10m", "<= 12.5m", "<= 15m", "> 15m"];
|
|
65
|
-
readonly description: "\nThe `height_category` field specifies the height category of the building. The height category is a\nnumber between 1 and 6, where 1 is the lowest and 6 is the highest category.\n\n### Classifications\n\n- **1**: <= 5m\n- **2**: <= 7.5m\n- **3**: <= 10m\n- **4**: <= 12.5m\n- **5**: <= 15m\n- **6**: > 15m\n\nIf the height category is unknown, the field is set to `null`.\n\n<br /><br />**
|
|
65
|
+
readonly description: "\nThe `height_category` field specifies the height category of the building. The height category is a\nnumber between 1 and 6, where 1 is the lowest and 6 is the highest category.\n\n### Classifications\n\n- **1**: <= 5m\n- **2**: <= 7.5m\n- **3**: <= 10m\n- **4**: <= 12.5m\n- **5**: <= 15m\n- **6**: > 15m\n\nIf the height category is unknown, the field is set to `null`.\n\n<br /><br />**Warning:**<br /><br />\n\nThis field is deprecated and will be removed in future API versions. It is no longer actively supported and may be omitted from upcoming endpoints. We recommend updating your implementation to use the latest supported fields.\n ";
|
|
66
66
|
readonly example: "<= 5m";
|
|
67
67
|
readonly deprecated: true;
|
|
68
68
|
};
|
|
@@ -70,20 +70,20 @@ declare const $LookupPropertiesV2: {
|
|
|
70
70
|
readonly type: readonly ["number", "null"];
|
|
71
71
|
readonly minimum: 1;
|
|
72
72
|
readonly maximum: 6;
|
|
73
|
-
readonly description: "\nThe `height_category_class` field specifies the height category of the building. The height category is a\nnumber between 1 and 6, where 1 is the lowest and 6 is the highest category.\n\n### Classifications\n\n- **1**: <= 5m\n- **2**: <= 7.5m\n- **3**: <= 10m\n- **4**: <= 12.5m\n- **5**: <= 15m\n- **6**: > 15m\n\nThe field is set to `null` if the number of height category is unknown.\n\n<br /><br />**
|
|
73
|
+
readonly description: "\nThe `height_category_class` field specifies the height category of the building. The height category is a\nnumber between 1 and 6, where 1 is the lowest and 6 is the highest category.\n\n### Classifications\n\n- **1**: <= 5m\n- **2**: <= 7.5m\n- **3**: <= 10m\n- **4**: <= 12.5m\n- **5**: <= 15m\n- **6**: > 15m\n\nThe field is set to `null` if the number of height category is unknown.\n\n<br /><br />**Warning:**<br /><br />\n\nThis field is deprecated and will be no longer supported in future datasets.";
|
|
74
74
|
readonly example: 1;
|
|
75
75
|
readonly deprecated: true;
|
|
76
76
|
};
|
|
77
77
|
readonly levels: {
|
|
78
78
|
readonly type: readonly ["number", "null"];
|
|
79
79
|
readonly minimum: 1;
|
|
80
|
-
readonly description: "\nThe `levels` field specifies the number of levels in the building.\n\nThe field is set to `null` if the number of levels is unknown
|
|
80
|
+
readonly description: "\nThe `levels` field specifies the number of levels in the building.\n\nThe field is set to `null` if the number of levels is unknown.";
|
|
81
81
|
readonly example: 4;
|
|
82
82
|
};
|
|
83
83
|
readonly household_count: {
|
|
84
84
|
readonly type: readonly ["number", "null"];
|
|
85
85
|
readonly minimum: 0;
|
|
86
|
-
readonly description: "\nThe `household_count` field specifies the number of households in the building.\n\nThe field is set to `null` if the number of households is unknown
|
|
86
|
+
readonly description: "\nThe `household_count` field specifies the number of households in the building.\n\nThe field is set to `null` if the number of households is unknown.";
|
|
87
87
|
readonly example: 3;
|
|
88
88
|
};
|
|
89
89
|
readonly net_area: {
|
|
@@ -101,7 +101,7 @@ declare const $LookupPropertiesV2: {
|
|
|
101
101
|
readonly usage: {
|
|
102
102
|
readonly type: readonly ["string", "null"];
|
|
103
103
|
readonly enum: readonly ["residential", "non_residential", "mixed_use"];
|
|
104
|
-
readonly description: "\nThe `usage` field specifies the usage of the building. This field can have one of the following values:\n\n- **residential**: Residential building\n- **non_residential**: Non-residential building\n- **mixed_use**: Mixed-use building\n\nIf the usage is unknown, the field is set to `null`.\n\n<br /><br />**
|
|
104
|
+
readonly description: "\nThe `usage` field specifies the usage of the building. This field can have one of the following values:\n\n- **residential**: Residential building\n- **non_residential**: Non-residential building\n- **mixed_use**: Mixed-use building\n\nIf the usage is unknown, the field is set to `null`.\n\n<br /><br />**Warning:**<br /><br />\n\nThis field is deprecated and will be removed in future API versions. It is no longer actively supported and may be omitted from upcoming endpoints. We recommend updating your implementation to use the latest supported fields.";
|
|
105
105
|
readonly example: "residential";
|
|
106
106
|
readonly deprecated: true;
|
|
107
107
|
};
|
|
@@ -109,21 +109,21 @@ declare const $LookupPropertiesV2: {
|
|
|
109
109
|
readonly type: readonly ["number", "null"];
|
|
110
110
|
readonly minimum: 1;
|
|
111
111
|
readonly maximum: 3;
|
|
112
|
-
readonly description: "\nThe `usage_class` field specifies the usage of the building. This field can have one of the following values:\n\n- **1**: Residential building\n- **2**: Non-residential building\n- **3**: Mixed-use building\n\nIf the usage is unknown, the field is set to `null`.\n\n<br /><br />**
|
|
112
|
+
readonly description: "\nThe `usage_class` field specifies the usage of the building. This field can have one of the following values:\n\n- **1**: Residential building\n- **2**: Non-residential building\n- **3**: Mixed-use building\n\nIf the usage is unknown, the field is set to `null`.\n\n<br /><br />**Warning:**<br /><br />\n\nThis field is deprecated and will be removed in future API versions. It is no longer actively supported and may be omitted from upcoming endpoints. We recommend updating your implementation to use the latest supported fields.";
|
|
113
113
|
readonly example: 1;
|
|
114
114
|
readonly deprecated: true;
|
|
115
115
|
};
|
|
116
116
|
readonly characteristics: {
|
|
117
117
|
readonly type: readonly ["string", "null"];
|
|
118
118
|
readonly enum: readonly ["single_two_family", "row_semi_detached", "multi_family", "residential_block", "high_rise", "terrace", "farmhouse", "office_other", "factory_warehouse"];
|
|
119
|
-
readonly description: "\nThe `characteristics` field defines the different types of building characteristics. This classification includes \nvarious types of residential and non-residential buildings. This field can have one of the following values:\n\n- **single_two_family**: Single- or two-family house\n- **row_semi_detached**: Row or semi-detached house\n- **multi_family**: Multi-family house\n- **residential_block**: Residential block\n- **high_rise**: High-rise residential building\n- **terrace**: Terrace house\n- **farmhouse**: Farmhouse\n- **office_other**: Office or other building\n- **factory_warehouse**: Factory or warehouse building\n\nIf the characteristics is unknown, the field is set to `null
|
|
119
|
+
readonly description: "\nThe `characteristics` field defines the different types of building characteristics. This classification includes \nvarious types of residential and non-residential buildings. This field can have one of the following values:\n\n- **single_two_family**: Single- or two-family house\n- **row_semi_detached**: Row or semi-detached house\n- **multi_family**: Multi-family house\n- **residential_block**: Residential block\n- **high_rise**: High-rise residential building\n- **terrace**: Terrace house\n- **farmhouse**: Farmhouse\n- **office_other**: Office or other building\n- **factory_warehouse**: Factory or warehouse building\n\nIf the characteristics is unknown, the field is set to `null`.";
|
|
120
120
|
readonly example: "residential_block";
|
|
121
121
|
};
|
|
122
122
|
readonly characteristics_class: {
|
|
123
123
|
readonly type: readonly ["number", "null"];
|
|
124
124
|
readonly minimum: 1;
|
|
125
125
|
readonly maximum: 9;
|
|
126
|
-
readonly description: "\nThe `characteristics_class` field defines the different types of building characteristics. This classification includes \nvarious types of residential and non-residential buildings. This field can have one of the following values:\n\n- **1**: Single- or two-family house\n- **2**: Row or semi-detached house\n- **3**: Multi-family house\n- **4**: Residential block\n- **5**: High-rise residential building\n- **6**: Terrace house\n- **7**: Farmhouse\n- **8**: Office or other building\n- **9**: Factory or warehouse building\n\nIf the characteristics_class is unknown, the field is set to `null
|
|
126
|
+
readonly description: "\nThe `characteristics_class` field defines the different types of building characteristics. This classification includes \nvarious types of residential and non-residential buildings. This field can have one of the following values:\n\n- **1**: Single- or two-family house\n- **2**: Row or semi-detached house\n- **3**: Multi-family house\n- **4**: Residential block\n- **5**: High-rise residential building\n- **6**: Terrace house\n- **7**: Farmhouse\n- **8**: Office or other building\n- **9**: Factory or warehouse building\n\nIf the characteristics_class is unknown, the field is set to `null`.";
|
|
127
127
|
readonly example: 1;
|
|
128
128
|
};
|
|
129
129
|
readonly development_layout: {
|
|
@@ -146,14 +146,14 @@ declare const $LookupPropertiesV2: {
|
|
|
146
146
|
}, {
|
|
147
147
|
readonly type: "number";
|
|
148
148
|
}];
|
|
149
|
-
readonly description: "\nThe `construction_year_range` field specifies the approximate construction year of the building. The field is a tuple with two\nvalues: the lower and upper bound of the construction year and can have one of the following value:\n\n- **[*null*, 1899]**: Construction year is somewhere up to 1899\n- **[1900, 1945]**\n- **[1946, 1960]**\n- **[1961, 1970]**\n- **[1971, 1980]**\n- **[1981, 1985]**\n- **[1986, 1995]**\n- **[1996, 2000]**\n- **[2001, 2005]**\n- **[2006, 2010]**\n- **[2011, 2015]**\n- **[2016, 2024]**\n\nIf the construction year class is unknown, the field is set to `null
|
|
149
|
+
readonly description: "\nThe `construction_year_range` field specifies the approximate construction year of the building. The field is a tuple with two\nvalues: the lower and upper bound of the construction year and can have one of the following value:\n\n- **[*null*, 1899]**: Construction year is somewhere up to 1899\n- **[1900, 1945]**\n- **[1946, 1960]**\n- **[1961, 1970]**\n- **[1971, 1980]**\n- **[1981, 1985]**\n- **[1986, 1995]**\n- **[1996, 2000]**\n- **[2001, 2005]**\n- **[2006, 2010]**\n- **[2011, 2015]**\n- **[2016, 2024]**\n\nIf the construction year class is unknown, the field is set to `null`.";
|
|
150
150
|
readonly example: readonly [1990, 1995];
|
|
151
151
|
};
|
|
152
152
|
readonly construction_year_range_class: {
|
|
153
153
|
readonly type: readonly ["number", "null"];
|
|
154
154
|
readonly minimum: 1;
|
|
155
155
|
readonly maximum: 12;
|
|
156
|
-
readonly description: "\nThe `construction_year_range_class` field specifies the approximate construction year of the building and can have one of the following values: \n\n- **1**: < 1899\n- **2**: 1900 - 1945\n- **3**: 1946 - 1960\n- **4**: 1961 - 1970\n- **5**: 1971 - 1980\n- **6**: 1981 - 1985\n- **7**: 1986 - 1995\n- **8**: 1996 - 2000\n- **9**: 2001 - 2005\n- **10**: 2006 - 2010\n- **11**: 2011 - 2015\n- **12**: 2016 - 2024\n\nIf the construction year range class is unknown, the field is set to `null
|
|
156
|
+
readonly description: "\nThe `construction_year_range_class` field specifies the approximate construction year of the building and can have one of the following values: \n\n- **1**: < 1899\n- **2**: 1900 - 1945\n- **3**: 1946 - 1960\n- **4**: 1961 - 1970\n- **5**: 1971 - 1980\n- **6**: 1981 - 1985\n- **7**: 1986 - 1995\n- **8**: 1996 - 2000\n- **9**: 2001 - 2005\n- **10**: 2006 - 2010\n- **11**: 2011 - 2015\n- **12**: 2016 - 2024\n\nIf the construction year range class is unknown, the field is set to `null`.";
|
|
157
157
|
readonly example: 1;
|
|
158
158
|
};
|
|
159
159
|
readonly construction_year: {
|
|
@@ -170,55 +170,55 @@ declare const $LookupPropertiesV2: {
|
|
|
170
170
|
readonly geo_conductivity_100: {
|
|
171
171
|
readonly type: readonly ["number", "null"];
|
|
172
172
|
readonly minimum: 0;
|
|
173
|
-
readonly description: "\nThe `geo_conductivity_100` field specifies the geothermal conductivity in 100 m depth.\n\nThe field is set to `null` if the geothermal conductivity is unknown
|
|
173
|
+
readonly description: "\nThe `geo_conductivity_100` field specifies the geothermal conductivity in 100 m depth.\n\nThe field is set to `null` if the geothermal conductivity is unknown.";
|
|
174
174
|
readonly example: 2;
|
|
175
175
|
};
|
|
176
176
|
readonly heat_pump_air_possible: {
|
|
177
177
|
readonly type: readonly ["boolean", "null"];
|
|
178
|
-
readonly description: "\nThe `heat_pump_air_possible` field indicates whether an air-source heat pump is a viable option for the building.\n\n- Set to `true` if an air-source heat pump is feasible.\n- Set to `false` if an air-source heat pump is not feasible.\n- Set to `null` if the information is unknown
|
|
178
|
+
readonly description: "\nThe `heat_pump_air_possible` field indicates whether an air-source heat pump is a viable option for the building.\n\n- Set to `true` if an air-source heat pump is feasible.\n- Set to `false` if an air-source heat pump is not feasible.\n- Set to `null` if the information is unknown.";
|
|
179
179
|
readonly example: true;
|
|
180
180
|
};
|
|
181
181
|
readonly heat_pump_maximal_distance_drillings: {
|
|
182
182
|
readonly type: readonly ["number", "null"];
|
|
183
183
|
readonly minimum: 0;
|
|
184
|
-
readonly description: "\nThe `heat_pump_maximal_distance_drillings` field specifies the maximum allowable distance between drillings for a heat pump installation, measured in meters.\nThis field will be deprecated in future versions. Please use `heat_pump_maximal_distance_drillings_5m` instead.\n\nThe field is set to `null` if the information is unknown
|
|
184
|
+
readonly description: "\nThe `heat_pump_maximal_distance_drillings` field specifies the maximum allowable distance between drillings for a heat pump installation, measured in meters.\nThis field will be deprecated in future versions. Please use `heat_pump_maximal_distance_drillings_5m` instead.\n\nThe field is set to `null` if the information is unknown.";
|
|
185
185
|
readonly example: 100;
|
|
186
186
|
};
|
|
187
187
|
readonly heat_pump_maximal_distance_drillings_5m: {
|
|
188
188
|
readonly type: readonly ["number", "null"];
|
|
189
189
|
readonly minimum: 0;
|
|
190
|
-
readonly description: "\nThe `heat_pump_maximal_distance_drillings_5m` field specifies the maximum allowable distance between drillings for a heat pump installation, measured in meters.\n\nThe field is set to `null` if the information is unknown
|
|
190
|
+
readonly description: "\nThe `heat_pump_maximal_distance_drillings_5m` field specifies the maximum allowable distance between drillings for a heat pump installation, measured in meters.\n\nThe field is set to `null` if the information is unknown.";
|
|
191
191
|
readonly example: 100.35;
|
|
192
192
|
};
|
|
193
193
|
readonly heat_pump_minimal_number_possible_drillings: {
|
|
194
194
|
readonly type: readonly ["number", "null"];
|
|
195
195
|
readonly minimum: 0;
|
|
196
|
-
readonly description: "\nThe `heat_pump_minimal_number_possible_drillings` field specifies the minimum \nnumber of drillings required for a heat pump installation with a distance of 5m \nto the parcel border.\nThis field will be deprecated in future versions. Please use `heat_pump_minimal_number_possible_drillings_5m` instead.\n\nThe field is set to `null` if the information is unknown.\n\n<br /><br />**Deprecation Warning:**<br /><br />\n\nPlease use `heat_pump_minimal_number_possible_drillings_5m` instead of this field
|
|
196
|
+
readonly description: "\nThe `heat_pump_minimal_number_possible_drillings` field specifies the minimum \nnumber of drillings required for a heat pump installation with a distance of 5m \nto the parcel border.\nThis field will be deprecated in future versions. Please use `heat_pump_minimal_number_possible_drillings_5m` instead.\n\nThe field is set to `null` if the information is unknown.\n\n<br /><br />**Deprecation Warning:**<br /><br />\n\nPlease use `heat_pump_minimal_number_possible_drillings_5m` instead of this field.";
|
|
197
197
|
readonly example: 1;
|
|
198
198
|
readonly deprecated: true;
|
|
199
199
|
};
|
|
200
200
|
readonly heat_pump_minimal_number_possible_drillings_5m: {
|
|
201
201
|
readonly type: readonly ["number", "null"];
|
|
202
202
|
readonly minimum: 0;
|
|
203
|
-
readonly description: "\nThe `heat_pump_minimal_number_possible_drillings_5m` field specifies the minimum \nnumber of drillings required for a heat pump installation with a distance of 5m \nto the parcel border.\n\nThe field is set to `null` if the information is unknown
|
|
203
|
+
readonly description: "\nThe `heat_pump_minimal_number_possible_drillings_5m` field specifies the minimum \nnumber of drillings required for a heat pump installation with a distance of 5m \nto the parcel border.\n\nThe field is set to `null` if the information is unknown.";
|
|
204
204
|
readonly example: 1;
|
|
205
205
|
};
|
|
206
206
|
readonly heat_pump_minimal_number_possible_drillings_2m: {
|
|
207
207
|
readonly type: readonly ["number", "null"];
|
|
208
208
|
readonly minimum: 0;
|
|
209
|
-
readonly description: "\nThe `heat_pump_minimal_number_possible_drillings_2m` field specifies the minimum \nnumber of drillings required for a heat pump installation with a distance of 2m \nto the parcel border.\n\nThe field is set to `null` if the information is unknown
|
|
209
|
+
readonly description: "\nThe `heat_pump_minimal_number_possible_drillings_2m` field specifies the minimum \nnumber of drillings required for a heat pump installation with a distance of 2m \nto the parcel border.\n\nThe field is set to `null` if the information is unknown.";
|
|
210
210
|
readonly example: 1;
|
|
211
211
|
};
|
|
212
212
|
readonly heat_pump_minimal_number_possible_drillings_no_distance: {
|
|
213
213
|
readonly type: readonly ["number", "null"];
|
|
214
214
|
readonly minimum: 0;
|
|
215
|
-
readonly description: "\nThe `heat_pump_minimal_number_possible_drillings_no_distance` field specifies the minimum \nnumber of drillings required for a heat pump installation with no distance to the parcel border.\n\nThe field is set to `null` if the information is unknown
|
|
215
|
+
readonly description: "\nThe `heat_pump_minimal_number_possible_drillings_no_distance` field specifies the minimum \nnumber of drillings required for a heat pump installation with no distance to the parcel border.\n\nThe field is set to `null` if the information is unknown.";
|
|
216
216
|
readonly example: 1;
|
|
217
217
|
};
|
|
218
218
|
readonly heat_pump_collector_free_area: {
|
|
219
219
|
readonly type: readonly ["number", "null"];
|
|
220
220
|
readonly minimum: 0;
|
|
221
|
-
readonly description: "\nThe `heat_pump_collector_free_area` field specifies the sum of the free area suitable \nfor a collector heat pump on parcels associated to a building.\n\nThe field is set to `null` if the information is unknown
|
|
221
|
+
readonly description: "\nThe `heat_pump_collector_free_area` field specifies the sum of the free area suitable \nfor a collector heat pump on parcels associated to a building.\n\nThe field is set to `null` if the information is unknown.";
|
|
222
222
|
readonly example: 100;
|
|
223
223
|
};
|
|
224
224
|
readonly flood_potential: {
|
|
@@ -240,7 +240,7 @@ declare const $LookupPropertiesV2: {
|
|
|
240
240
|
};
|
|
241
241
|
};
|
|
242
242
|
readonly minItems: 1;
|
|
243
|
-
readonly description: "\nThe `flood_potential` field is an array representing different flood risk scenarios for a given \nlocation. The objects in the array can contain the following fields:\n\n- `min_reccurence`: The minimum expected recurrence interval for flooding, measured in years. \n This field is optional and can be `null` if the data is unavailable. A lower value indicates more \n frequent flooding.\n \n- `max_reccurence`: The maximum expected recurrence interval for flooding, also in years. This \n field is optional and can be `null`. If provided, this value represents the upper bound of the \n flood risk interval. This field allows the specification of a range of recurrence intervals.\n \n- `protection_against_floods`: A boolean flag indicating whether flood protection measures are in \n place for the area. This field is optional and can be `null` if the information is not available. \n A value of `true` means flood defenses are present, while `false` indicates the absence of such \n measures.\n\nIf this array is set to `null`, it means that no data regarding flood potential is available for the location
|
|
243
|
+
readonly description: "\nThe `flood_potential` field is an array representing different flood risk scenarios for a given \nlocation. The objects in the array can contain the following fields:\n\n- `min_reccurence`: The minimum expected recurrence interval for flooding, measured in years. \n This field is optional and can be `null` if the data is unavailable. A lower value indicates more \n frequent flooding.\n \n- `max_reccurence`: The maximum expected recurrence interval for flooding, also in years. This \n field is optional and can be `null`. If provided, this value represents the upper bound of the \n flood risk interval. This field allows the specification of a range of recurrence intervals.\n \n- `protection_against_floods`: A boolean flag indicating whether flood protection measures are in \n place for the area. This field is optional and can be `null` if the information is not available. \n A value of `true` means flood defenses are present, while `false` indicates the absence of such \n measures.\n\nIf this array is set to `null`, it means that no data regarding flood potential is available for the location.";
|
|
244
244
|
readonly example: readonly [{
|
|
245
245
|
readonly min_recurrence: 100;
|
|
246
246
|
readonly max_recurrence: null;
|
|
@@ -257,31 +257,31 @@ declare const $LookupPropertiesV2: {
|
|
|
257
257
|
readonly suitable_roof_area: {
|
|
258
258
|
readonly type: readonly ["number", "null"];
|
|
259
259
|
readonly minimum: 0;
|
|
260
|
-
readonly description: "\nThe `suitable_roof_area` field specifies the roof area suited for photovoltaics [m^2].\n\nThe field is set to `null` if the roof area suited for photovoltaics is unknown
|
|
260
|
+
readonly description: "\nThe `suitable_roof_area` field specifies the roof area suited for photovoltaics [m^2].\n\nThe field is set to `null` if the roof area suited for photovoltaics is unknown.";
|
|
261
261
|
readonly example: 77;
|
|
262
262
|
};
|
|
263
263
|
readonly gross_collector_area: {
|
|
264
264
|
readonly type: readonly ["number", "null"];
|
|
265
265
|
readonly minimum: 0;
|
|
266
|
-
readonly description: "\nThe `gross_collector_area` field specifies the maximal collector area for photovoltaics including module frames [m^2].\n\nThe field is set to `null` if the maximal collector area for photovoltaics is unknown
|
|
266
|
+
readonly description: "\nThe `gross_collector_area` field specifies the maximal collector area for photovoltaics including module frames [m^2].\n\nThe field is set to `null` if the maximal collector area for photovoltaics is unknown.";
|
|
267
267
|
readonly example: 48;
|
|
268
268
|
};
|
|
269
269
|
readonly net_collector_area: {
|
|
270
270
|
readonly type: readonly ["number", "null"];
|
|
271
271
|
readonly minimum: 0;
|
|
272
|
-
readonly description: "\nThe `net_collector_area` field specifies the maximal collector area for photovoltaics excluding module frames [m^2].\n\nThe field is set to `null` if the maximal collector area for photovoltaics excluding module frames is unknown
|
|
272
|
+
readonly description: "\nThe `net_collector_area` field specifies the maximal collector area for photovoltaics excluding module frames [m^2].\n\nThe field is set to `null` if the maximal collector area for photovoltaics excluding module frames is unknown.";
|
|
273
273
|
readonly example: 48;
|
|
274
274
|
};
|
|
275
275
|
readonly electricity_generation: {
|
|
276
276
|
readonly type: readonly ["number", "null"];
|
|
277
277
|
readonly minimum: 0;
|
|
278
|
-
readonly description: "\nThe `electricity_generation` field specifies the maximal electricity generation from photovoltaics of the building per year [kWh/a].\n\nThe field is set to `null` if the maximal electricity generation per year is unknown
|
|
278
|
+
readonly description: "\nThe `electricity_generation` field specifies the maximal electricity generation from photovoltaics of the building per year [kWh/a].\n\nThe field is set to `null` if the maximal electricity generation per year is unknown.";
|
|
279
279
|
readonly example: 6401;
|
|
280
280
|
};
|
|
281
281
|
readonly nominal_power: {
|
|
282
282
|
readonly type: readonly ["number", "null"];
|
|
283
283
|
readonly minimum: 0;
|
|
284
|
-
readonly description: "\nThe `nominal_power` field specifies the nominal power a photovoltaics system could have at this building per year [kWp].\n\nThe field is set to `null` if the the nominal power is unknown
|
|
284
|
+
readonly description: "\nThe `nominal_power` field specifies the nominal power a photovoltaics system could have at this building per year [kWp].\n\nThe field is set to `null` if the the nominal power is unknown.";
|
|
285
285
|
readonly example: 7.5;
|
|
286
286
|
};
|
|
287
287
|
};
|
|
@@ -293,19 +293,19 @@ declare const $LookupPropertiesV2: {
|
|
|
293
293
|
readonly suitable_roof_area: {
|
|
294
294
|
readonly type: readonly ["number", "null"];
|
|
295
295
|
readonly minimum: 0;
|
|
296
|
-
readonly description: "\nThe `st_suitable_roof_area` field specifies the roof area suited for solarthermie [m^2].\n\nThe field is set to `null` if the roof area suited for solarthermie is unknown
|
|
296
|
+
readonly description: "\nThe `st_suitable_roof_area` field specifies the roof area suited for solarthermie [m^2].\n\nThe field is set to `null` if the roof area suited for solarthermie is unknown.";
|
|
297
297
|
readonly example: 90;
|
|
298
298
|
};
|
|
299
299
|
readonly heat_generation: {
|
|
300
300
|
readonly type: readonly ["number", "null"];
|
|
301
301
|
readonly minimum: 0;
|
|
302
|
-
readonly description: "\nThe `st_heat_generation` field specifies the potential solarthermic heat generation on this bulding [kWh/a].\n\nThe field is set to `null` if the heat generation by solarthermie is unknown
|
|
302
|
+
readonly description: "\nThe `st_heat_generation` field specifies the potential solarthermic heat generation on this bulding [kWh/a].\n\nThe field is set to `null` if the heat generation by solarthermie is unknown.";
|
|
303
303
|
readonly example: 25201;
|
|
304
304
|
};
|
|
305
305
|
readonly net_collector_area: {
|
|
306
306
|
readonly type: readonly ["number", "null"];
|
|
307
307
|
readonly minimum: 0;
|
|
308
|
-
readonly description: "\nThe `st_net_collector_area` field specifies the maximal collector area for solarthermie [m^2].\n\nThe field is set to `null` if the maximal collector area for solarthermie is unknown
|
|
308
|
+
readonly description: "\nThe `st_net_collector_area` field specifies the maximal collector area for solarthermie [m^2].\n\nThe field is set to `null` if the maximal collector area for solarthermie is unknown.";
|
|
309
309
|
readonly example: 25201;
|
|
310
310
|
};
|
|
311
311
|
};
|
|
@@ -414,69 +414,69 @@ declare const $LookupPropertiesV3: {
|
|
|
414
414
|
readonly properties: {
|
|
415
415
|
readonly street: {
|
|
416
416
|
readonly type: readonly ["string", "null"];
|
|
417
|
-
readonly description: "\
|
|
417
|
+
readonly description: "\nThe `street` field specifies the street name of a building.\n\nThe field is set to `null` if the street is unknown.";
|
|
418
418
|
readonly example: "Friedrich Ebert Straße";
|
|
419
419
|
};
|
|
420
420
|
readonly city: {
|
|
421
421
|
readonly type: readonly ["string", "null"];
|
|
422
|
-
readonly description: "\nThe `city` field specifies the city name of a building.\n\nThe field is set to `null` if the city is unknown
|
|
422
|
+
readonly description: "\nThe `city` field specifies the city name of a building.\n\nThe field is set to `null` if the city is unknown.";
|
|
423
423
|
readonly example: "Wuppertal";
|
|
424
424
|
};
|
|
425
425
|
readonly street_number: {
|
|
426
426
|
readonly type: readonly ["string", "null"];
|
|
427
|
-
readonly description: "\nThe `street_number` field specifies the street number name of a building.\n\nThe field is set to `null` if the street number is unknown
|
|
427
|
+
readonly description: "\nThe `street_number` field specifies the street number name of a building.\n\nThe field is set to `null` if the street number is unknown.";
|
|
428
428
|
readonly example: "107";
|
|
429
429
|
};
|
|
430
430
|
readonly postcode: {
|
|
431
431
|
readonly type: readonly ["string", "null"];
|
|
432
|
-
readonly description: "\nThe `postcode` field specifies the postcode of a building.\n\nThe field is set to `null` if the postcode is unknown
|
|
432
|
+
readonly description: "\nThe `postcode` field specifies the postcode of a building.\n\nThe field is set to `null` if the postcode is unknown.";
|
|
433
433
|
readonly example: "107";
|
|
434
434
|
};
|
|
435
435
|
readonly roof_type: {
|
|
436
436
|
readonly type: readonly ["string", "null"];
|
|
437
437
|
readonly enum: readonly ["flat", "pitched", "mixed"];
|
|
438
|
-
readonly description: "\nThe `roof_type` field specifies the type of roof of a building. This field can have one of the following values:\n\n- **flat**: Flat roof\n- **pitched**: Pitched roof\n- **mixed**: Mixed types of roofs\n\nThe field is set to `null` if the building type is unknown
|
|
438
|
+
readonly description: "\nThe `roof_type` field specifies the type of roof of a building. This field can have one of the following values:\n\n- **flat**: Flat roof\n- **pitched**: Pitched roof\n- **mixed**: Mixed types of roofs\n\nThe field is set to `null` if the building type is unknown.";
|
|
439
439
|
readonly example: "flat";
|
|
440
440
|
};
|
|
441
441
|
readonly type: {
|
|
442
442
|
readonly type: readonly ["string", "null"];
|
|
443
443
|
readonly enum: readonly ["single_family", "multi_family", "non_residential", "mixed_use"];
|
|
444
|
-
readonly description: "\nThe `type` field specifies the type of building. This field can have one of the following values:\n\n- **single_family**: Single-family house\n- **multi_family**: Multi-family house\n- **non_residential**: Non-residential building\n- **mixed_use**: Mixed-use building\n\nThe field is set to `null` if the building type is unknown
|
|
444
|
+
readonly description: "\nThe `type` field specifies the type of building. This field can have one of the following values:\n\n- **single_family**: Single-family house\n- **multi_family**: Multi-family house\n- **non_residential**: Non-residential building\n- **mixed_use**: Mixed-use building\n\nThe field is set to `null` if the building type is unknown.";
|
|
445
445
|
readonly example: "single_family";
|
|
446
446
|
};
|
|
447
447
|
readonly type_class: {
|
|
448
448
|
readonly type: readonly ["number", "null"];
|
|
449
449
|
readonly minimum: 1;
|
|
450
450
|
readonly maximum: 4;
|
|
451
|
-
readonly description: "\nThe `type_class` field specifies the class of the building type. This field can have one of the following values:\n\n- **1**: Single-family house\n- **2**: Multi-family house\n- **3**: Non-residential building\n- **4**: Mixed-use building\n\nThe field is set to `null` if the building type is unknown
|
|
451
|
+
readonly description: "\nThe `type_class` field specifies the class of the building type. This field can have one of the following values:\n\n- **1**: Single-family house\n- **2**: Multi-family house\n- **3**: Non-residential building\n- **4**: Mixed-use building\n\nThe field is set to `null` if the building type is unknown.";
|
|
452
452
|
readonly example: 1;
|
|
453
453
|
};
|
|
454
454
|
readonly water_protected: {
|
|
455
455
|
readonly type: readonly ["boolean", "null"];
|
|
456
|
-
readonly description: "\nThe `water_protected` field specifies whether the building is within a water protection area.\n\nIf the field is set to `null`, no water protection area could be assigned
|
|
456
|
+
readonly description: "\nThe `water_protected` field specifies whether the building is within a water protection area.\n\nIf the field is set to `null`, no water protection area could be assigned.";
|
|
457
457
|
readonly example: true;
|
|
458
458
|
};
|
|
459
459
|
readonly heated: {
|
|
460
460
|
readonly type: readonly ["boolean", "null"];
|
|
461
|
-
readonly description: "\nThe `heated` field specifies whether the building is heated or not.\n\nThe field is set to `null` if the heating status is unknown
|
|
461
|
+
readonly description: "\nThe `heated` field specifies whether the building is heated or not.\n\nThe field is set to `null` if the heating status is unknown.";
|
|
462
462
|
readonly example: true;
|
|
463
463
|
};
|
|
464
464
|
readonly heat_demand: {
|
|
465
465
|
readonly type: readonly ["number", "null"];
|
|
466
466
|
readonly minimum: 0;
|
|
467
|
-
readonly description: "\nThe `heat_demand` field specifies the heat demand of the building in [kWh/m²a].\n\nThe field is set to `null` if the heat demand is unknown
|
|
467
|
+
readonly description: "\nThe `heat_demand` field specifies the heat demand of the building in [kWh/m²a].\n\nThe field is set to `null` if the heat demand is unknown.";
|
|
468
468
|
readonly example: 127.42;
|
|
469
469
|
};
|
|
470
470
|
readonly levels: {
|
|
471
471
|
readonly type: readonly ["number", "null"];
|
|
472
472
|
readonly minimum: 1;
|
|
473
|
-
readonly description: "\nThe `levels` field specifies the number of levels in the building.\n\nThe field is set to `null` if the number of levels is unknown
|
|
473
|
+
readonly description: "\nThe `levels` field specifies the number of levels in the building.\n\nThe field is set to `null` if the number of levels is unknown.";
|
|
474
474
|
readonly example: 4;
|
|
475
475
|
};
|
|
476
476
|
readonly household_count: {
|
|
477
477
|
readonly type: readonly ["number", "null"];
|
|
478
478
|
readonly minimum: 0;
|
|
479
|
-
readonly description: "\nThe `household_count` field specifies the number of households in the building.\n\nThe field is set to `null` if the number of households is unknown
|
|
479
|
+
readonly description: "\nThe `household_count` field specifies the number of households in the building.\n\nThe field is set to `null` if the number of households is unknown.";
|
|
480
480
|
readonly example: 3;
|
|
481
481
|
};
|
|
482
482
|
readonly net_area: {
|
|
@@ -494,14 +494,14 @@ declare const $LookupPropertiesV3: {
|
|
|
494
494
|
readonly characteristics: {
|
|
495
495
|
readonly type: readonly ["string", "null"];
|
|
496
496
|
readonly enum: readonly ["single_two_family", "row_semi_detached", "multi_family", "residential_block", "high_rise", "terrace", "farmhouse", "office_other", "factory_warehouse"];
|
|
497
|
-
readonly description: "\nThe `characteristics` field defines the different types of building characteristics. This classification includes \nvarious types of residential and non-residential buildings. This field can have one of the following values:\n\n- **single_two_family**: Single- or two-family house\n- **row_semi_detached**: Row or semi-detached house\n- **multi_family**: Multi-family house\n- **residential_block**: Residential block\n- **high_rise**: High-rise residential building\n- **terrace**: Terrace house\n- **farmhouse**: Farmhouse\n- **office_other**: Office or other building\n- **factory_warehouse**: Factory or warehouse building\n\nIf the characteristics is unknown, the field is set to `null
|
|
497
|
+
readonly description: "\nThe `characteristics` field defines the different types of building characteristics. This classification includes \nvarious types of residential and non-residential buildings. This field can have one of the following values:\n\n- **single_two_family**: Single- or two-family house\n- **row_semi_detached**: Row or semi-detached house\n- **multi_family**: Multi-family house\n- **residential_block**: Residential block\n- **high_rise**: High-rise residential building\n- **terrace**: Terrace house\n- **farmhouse**: Farmhouse\n- **office_other**: Office or other building\n- **factory_warehouse**: Factory or warehouse building\n\nIf the characteristics is unknown, the field is set to `null`.";
|
|
498
498
|
readonly example: "residential_block";
|
|
499
499
|
};
|
|
500
500
|
readonly characteristics_class: {
|
|
501
501
|
readonly type: readonly ["number", "null"];
|
|
502
502
|
readonly minimum: 1;
|
|
503
503
|
readonly maximum: 9;
|
|
504
|
-
readonly description: "\nThe `characteristics_class` field defines the different types of building characteristics. This classification includes \nvarious types of residential and non-residential buildings. This field can have one of the following values:\n\n- **1**: Single- or two-family house\n- **2**: Row or semi-detached house\n- **3**: Multi-family house\n- **4**: Residential block\n- **5**: High-rise residential building\n- **6**: Terrace house\n- **7**: Farmhouse\n- **8**: Office or other building\n- **9**: Factory or warehouse building\n\nIf the characteristics_class is unknown, the field is set to `null
|
|
504
|
+
readonly description: "\nThe `characteristics_class` field defines the different types of building characteristics. This classification includes \nvarious types of residential and non-residential buildings. This field can have one of the following values:\n\n- **1**: Single- or two-family house\n- **2**: Row or semi-detached house\n- **3**: Multi-family house\n- **4**: Residential block\n- **5**: High-rise residential building\n- **6**: Terrace house\n- **7**: Farmhouse\n- **8**: Office or other building\n- **9**: Factory or warehouse building\n\nIf the characteristics_class is unknown, the field is set to `null`.";
|
|
505
505
|
readonly example: 1;
|
|
506
506
|
};
|
|
507
507
|
readonly development_layout: {
|
|
@@ -524,14 +524,14 @@ declare const $LookupPropertiesV3: {
|
|
|
524
524
|
}, {
|
|
525
525
|
readonly type: "number";
|
|
526
526
|
}];
|
|
527
|
-
readonly description: "\nThe `construction_year_range` field specifies the approximate construction year of the building. The field is a tuple with two\nvalues: the lower and upper bound of the construction year and can have one of the following value:\n\n- **[*null*, 1899]**: Construction year is somewhere up to 1899\n- **[1900, 1945]**\n- **[1946, 1960]**\n- **[1961, 1970]**\n- **[1971, 1980]**\n- **[1981, 1985]**\n- **[1986, 1995]**\n- **[1996, 2000]**\n- **[2001, 2005]**\n- **[2006, 2010]**\n- **[2011, 2015]**\n- **[2016, 2024]**\n\nIf the construction year class is unknown, the field is set to `null
|
|
527
|
+
readonly description: "\nThe `construction_year_range` field specifies the approximate construction year of the building. The field is a tuple with two\nvalues: the lower and upper bound of the construction year and can have one of the following value:\n\n- **[*null*, 1899]**: Construction year is somewhere up to 1899\n- **[1900, 1945]**\n- **[1946, 1960]**\n- **[1961, 1970]**\n- **[1971, 1980]**\n- **[1981, 1985]**\n- **[1986, 1995]**\n- **[1996, 2000]**\n- **[2001, 2005]**\n- **[2006, 2010]**\n- **[2011, 2015]**\n- **[2016, 2024]**\n\nIf the construction year class is unknown, the field is set to `null`.";
|
|
528
528
|
readonly example: readonly [1990, 1995];
|
|
529
529
|
};
|
|
530
530
|
readonly construction_year_range_class: {
|
|
531
531
|
readonly type: readonly ["number", "null"];
|
|
532
532
|
readonly minimum: 1;
|
|
533
533
|
readonly maximum: 12;
|
|
534
|
-
readonly description: "\nThe `construction_year_range_class` field specifies the approximate construction year of the building and can have one of the following values: \n\n- **1**: < 1899\n- **2**: 1900 - 1945\n- **3**: 1946 - 1960\n- **4**: 1961 - 1970\n- **5**: 1971 - 1980\n- **6**: 1981 - 1985\n- **7**: 1986 - 1995\n- **8**: 1996 - 2000\n- **9**: 2001 - 2005\n- **10**: 2006 - 2010\n- **11**: 2011 - 2015\n- **12**: 2016 - 2024\n\nIf the construction year range class is unknown, the field is set to `null
|
|
534
|
+
readonly description: "\nThe `construction_year_range_class` field specifies the approximate construction year of the building and can have one of the following values: \n\n- **1**: < 1899\n- **2**: 1900 - 1945\n- **3**: 1946 - 1960\n- **4**: 1961 - 1970\n- **5**: 1971 - 1980\n- **6**: 1981 - 1985\n- **7**: 1986 - 1995\n- **8**: 1996 - 2000\n- **9**: 2001 - 2005\n- **10**: 2006 - 2010\n- **11**: 2011 - 2015\n- **12**: 2016 - 2024\n\nIf the construction year range class is unknown, the field is set to `null`.";
|
|
535
535
|
readonly example: 1;
|
|
536
536
|
};
|
|
537
537
|
readonly construction_year: {
|
|
@@ -548,55 +548,55 @@ declare const $LookupPropertiesV3: {
|
|
|
548
548
|
readonly geo_conductivity_100: {
|
|
549
549
|
readonly type: readonly ["number", "null"];
|
|
550
550
|
readonly minimum: 0;
|
|
551
|
-
readonly description: "\nThe `geo_conductivity_100` field specifies the geothermal conductivity in 100 m depth.\n\nThe field is set to `null` if the geothermal conductivity is unknown
|
|
551
|
+
readonly description: "\nThe `geo_conductivity_100` field specifies the geothermal conductivity in 100 m depth.\n\nThe field is set to `null` if the geothermal conductivity is unknown.";
|
|
552
552
|
readonly example: 2;
|
|
553
553
|
};
|
|
554
554
|
readonly heat_pump_air_possible: {
|
|
555
555
|
readonly type: readonly ["boolean", "null"];
|
|
556
|
-
readonly description: "\nThe `heat_pump_air_possible` field indicates whether an air-source heat pump is a viable option for the building.\n\n- Set to `true` if an air-source heat pump is feasible.\n- Set to `false` if an air-source heat pump is not feasible.\n- Set to `null` if the information is unknown
|
|
556
|
+
readonly description: "\nThe `heat_pump_air_possible` field indicates whether an air-source heat pump is a viable option for the building.\n\n- Set to `true` if an air-source heat pump is feasible.\n- Set to `false` if an air-source heat pump is not feasible.\n- Set to `null` if the information is unknown.";
|
|
557
557
|
readonly example: true;
|
|
558
558
|
};
|
|
559
559
|
readonly heat_pump_maximal_distance_drillings: {
|
|
560
560
|
readonly type: readonly ["number", "null"];
|
|
561
561
|
readonly minimum: 0;
|
|
562
|
-
readonly description: "\nThe `heat_pump_maximal_distance_drillings` field specifies the maximum allowable distance between drillings for a heat pump installation, measured in meters.\nThis field will be deprecated in future versions. Please use `heat_pump_maximal_distance_drillings_5m` instead.\n\nThe field is set to `null` if the information is unknown
|
|
562
|
+
readonly description: "\nThe `heat_pump_maximal_distance_drillings` field specifies the maximum allowable distance between drillings for a heat pump installation, measured in meters.\nThis field will be deprecated in future versions. Please use `heat_pump_maximal_distance_drillings_5m` instead.\n\nThe field is set to `null` if the information is unknown.";
|
|
563
563
|
readonly example: 100;
|
|
564
564
|
};
|
|
565
565
|
readonly heat_pump_maximal_distance_drillings_5m: {
|
|
566
566
|
readonly type: readonly ["number", "null"];
|
|
567
567
|
readonly minimum: 0;
|
|
568
|
-
readonly description: "\nThe `heat_pump_maximal_distance_drillings_5m` field specifies the maximum allowable distance between drillings for a heat pump installation, measured in meters.\n\nThe field is set to `null` if the information is unknown
|
|
568
|
+
readonly description: "\nThe `heat_pump_maximal_distance_drillings_5m` field specifies the maximum allowable distance between drillings for a heat pump installation, measured in meters.\n\nThe field is set to `null` if the information is unknown.";
|
|
569
569
|
readonly example: 100.35;
|
|
570
570
|
};
|
|
571
571
|
readonly heat_pump_minimal_number_possible_drillings: {
|
|
572
572
|
readonly type: readonly ["number", "null"];
|
|
573
573
|
readonly minimum: 0;
|
|
574
|
-
readonly description: "\nThe `heat_pump_minimal_number_possible_drillings` field specifies the minimum \nnumber of drillings required for a heat pump installation with a distance of 5m \nto the parcel border.\nThis field will be deprecated in future versions. Please use `heat_pump_minimal_number_possible_drillings_5m` instead.\n\nThe field is set to `null` if the information is unknown.\n\n<br /><br />**Deprecation Warning:**<br /><br />\n\nPlease use `heat_pump_minimal_number_possible_drillings_5m` instead of this field
|
|
574
|
+
readonly description: "\nThe `heat_pump_minimal_number_possible_drillings` field specifies the minimum \nnumber of drillings required for a heat pump installation with a distance of 5m \nto the parcel border.\nThis field will be deprecated in future versions. Please use `heat_pump_minimal_number_possible_drillings_5m` instead.\n\nThe field is set to `null` if the information is unknown.\n\n<br /><br />**Deprecation Warning:**<br /><br />\n\nPlease use `heat_pump_minimal_number_possible_drillings_5m` instead of this field.";
|
|
575
575
|
readonly example: 1;
|
|
576
576
|
readonly deprecated: true;
|
|
577
577
|
};
|
|
578
578
|
readonly heat_pump_minimal_number_possible_drillings_5m: {
|
|
579
579
|
readonly type: readonly ["number", "null"];
|
|
580
580
|
readonly minimum: 0;
|
|
581
|
-
readonly description: "\nThe `heat_pump_minimal_number_possible_drillings_5m` field specifies the minimum \nnumber of drillings required for a heat pump installation with a distance of 5m \nto the parcel border.\n\nThe field is set to `null` if the information is unknown
|
|
581
|
+
readonly description: "\nThe `heat_pump_minimal_number_possible_drillings_5m` field specifies the minimum \nnumber of drillings required for a heat pump installation with a distance of 5m \nto the parcel border.\n\nThe field is set to `null` if the information is unknown.";
|
|
582
582
|
readonly example: 1;
|
|
583
583
|
};
|
|
584
584
|
readonly heat_pump_minimal_number_possible_drillings_2m: {
|
|
585
585
|
readonly type: readonly ["number", "null"];
|
|
586
586
|
readonly minimum: 0;
|
|
587
|
-
readonly description: "\nThe `heat_pump_minimal_number_possible_drillings_2m` field specifies the minimum \nnumber of drillings required for a heat pump installation with a distance of 2m \nto the parcel border.\n\nThe field is set to `null` if the information is unknown
|
|
587
|
+
readonly description: "\nThe `heat_pump_minimal_number_possible_drillings_2m` field specifies the minimum \nnumber of drillings required for a heat pump installation with a distance of 2m \nto the parcel border.\n\nThe field is set to `null` if the information is unknown.";
|
|
588
588
|
readonly example: 1;
|
|
589
589
|
};
|
|
590
590
|
readonly heat_pump_minimal_number_possible_drillings_no_distance: {
|
|
591
591
|
readonly type: readonly ["number", "null"];
|
|
592
592
|
readonly minimum: 0;
|
|
593
|
-
readonly description: "\nThe `heat_pump_minimal_number_possible_drillings_no_distance` field specifies the minimum \nnumber of drillings required for a heat pump installation with no distance to the parcel border.\n\nThe field is set to `null` if the information is unknown
|
|
593
|
+
readonly description: "\nThe `heat_pump_minimal_number_possible_drillings_no_distance` field specifies the minimum \nnumber of drillings required for a heat pump installation with no distance to the parcel border.\n\nThe field is set to `null` if the information is unknown.";
|
|
594
594
|
readonly example: 1;
|
|
595
595
|
};
|
|
596
596
|
readonly heat_pump_collector_free_area: {
|
|
597
597
|
readonly type: readonly ["number", "null"];
|
|
598
598
|
readonly minimum: 0;
|
|
599
|
-
readonly description: "\nThe `heat_pump_collector_free_area` field specifies the sum of the free area suitable \nfor a collector heat pump on parcels associated to a building.\n\nThe field is set to `null` if the information is unknown
|
|
599
|
+
readonly description: "\nThe `heat_pump_collector_free_area` field specifies the sum of the free area suitable \nfor a collector heat pump on parcels associated to a building.\n\nThe field is set to `null` if the information is unknown.";
|
|
600
600
|
readonly example: 100;
|
|
601
601
|
};
|
|
602
602
|
readonly flood_potential: {
|
|
@@ -618,7 +618,7 @@ declare const $LookupPropertiesV3: {
|
|
|
618
618
|
};
|
|
619
619
|
};
|
|
620
620
|
readonly minItems: 1;
|
|
621
|
-
readonly description: "\nThe `flood_potential` field is an array representing different flood risk scenarios for a given \nlocation. The objects in the array can contain the following fields:\n\n- `min_reccurence`: The minimum expected recurrence interval for flooding, measured in years. \n This field is optional and can be `null` if the data is unavailable. A lower value indicates more \n frequent flooding.\n \n- `max_reccurence`: The maximum expected recurrence interval for flooding, also in years. This \n field is optional and can be `null`. If provided, this value represents the upper bound of the \n flood risk interval. This field allows the specification of a range of recurrence intervals.\n \n- `protection_against_floods`: A boolean flag indicating whether flood protection measures are in \n place for the area. This field is optional and can be `null` if the information is not available. \n A value of `true` means flood defenses are present, while `false` indicates the absence of such \n measures.\n\nIf this array is set to `null`, it means that no data regarding flood potential is available for the location
|
|
621
|
+
readonly description: "\nThe `flood_potential` field is an array representing different flood risk scenarios for a given \nlocation. The objects in the array can contain the following fields:\n\n- `min_reccurence`: The minimum expected recurrence interval for flooding, measured in years. \n This field is optional and can be `null` if the data is unavailable. A lower value indicates more \n frequent flooding.\n \n- `max_reccurence`: The maximum expected recurrence interval for flooding, also in years. This \n field is optional and can be `null`. If provided, this value represents the upper bound of the \n flood risk interval. This field allows the specification of a range of recurrence intervals.\n \n- `protection_against_floods`: A boolean flag indicating whether flood protection measures are in \n place for the area. This field is optional and can be `null` if the information is not available. \n A value of `true` means flood defenses are present, while `false` indicates the absence of such \n measures.\n\nIf this array is set to `null`, it means that no data regarding flood potential is available for the location.";
|
|
622
622
|
readonly example: readonly [{
|
|
623
623
|
readonly min_recurrence: 100;
|
|
624
624
|
readonly max_recurrence: null;
|
|
@@ -635,31 +635,31 @@ declare const $LookupPropertiesV3: {
|
|
|
635
635
|
readonly suitable_roof_area: {
|
|
636
636
|
readonly type: readonly ["number", "null"];
|
|
637
637
|
readonly minimum: 0;
|
|
638
|
-
readonly description: "\nThe `suitable_roof_area` field specifies the roof area suited for photovoltaics [m^2].\n\nThe field is set to `null` if the roof area suited for photovoltaics is unknown
|
|
638
|
+
readonly description: "\nThe `suitable_roof_area` field specifies the roof area suited for photovoltaics [m^2].\n\nThe field is set to `null` if the roof area suited for photovoltaics is unknown.";
|
|
639
639
|
readonly example: 77;
|
|
640
640
|
};
|
|
641
641
|
readonly gross_collector_area: {
|
|
642
642
|
readonly type: readonly ["number", "null"];
|
|
643
643
|
readonly minimum: 0;
|
|
644
|
-
readonly description: "\nThe `gross_collector_area` field specifies the maximal collector area for photovoltaics including module frames [m^2].\n\nThe field is set to `null` if the maximal collector area for photovoltaics is unknown
|
|
644
|
+
readonly description: "\nThe `gross_collector_area` field specifies the maximal collector area for photovoltaics including module frames [m^2].\n\nThe field is set to `null` if the maximal collector area for photovoltaics is unknown.";
|
|
645
645
|
readonly example: 48;
|
|
646
646
|
};
|
|
647
647
|
readonly net_collector_area: {
|
|
648
648
|
readonly type: readonly ["number", "null"];
|
|
649
649
|
readonly minimum: 0;
|
|
650
|
-
readonly description: "\nThe `net_collector_area` field specifies the maximal collector area for photovoltaics excluding module frames [m^2].\n\nThe field is set to `null` if the maximal collector area for photovoltaics excluding module frames is unknown
|
|
650
|
+
readonly description: "\nThe `net_collector_area` field specifies the maximal collector area for photovoltaics excluding module frames [m^2].\n\nThe field is set to `null` if the maximal collector area for photovoltaics excluding module frames is unknown.";
|
|
651
651
|
readonly example: 48;
|
|
652
652
|
};
|
|
653
653
|
readonly electricity_generation: {
|
|
654
654
|
readonly type: readonly ["number", "null"];
|
|
655
655
|
readonly minimum: 0;
|
|
656
|
-
readonly description: "\nThe `electricity_generation` field specifies the maximal electricity generation from photovoltaics of the building per year [kWh/a].\n\nThe field is set to `null` if the maximal electricity generation per year is unknown
|
|
656
|
+
readonly description: "\nThe `electricity_generation` field specifies the maximal electricity generation from photovoltaics of the building per year [kWh/a].\n\nThe field is set to `null` if the maximal electricity generation per year is unknown.";
|
|
657
657
|
readonly example: 6401;
|
|
658
658
|
};
|
|
659
659
|
readonly nominal_power: {
|
|
660
660
|
readonly type: readonly ["number", "null"];
|
|
661
661
|
readonly minimum: 0;
|
|
662
|
-
readonly description: "\nThe `nominal_power` field specifies the nominal power a photovoltaics system could have at this building per year [kWp].\n\nThe field is set to `null` if the the nominal power is unknown
|
|
662
|
+
readonly description: "\nThe `nominal_power` field specifies the nominal power a photovoltaics system could have at this building per year [kWp].\n\nThe field is set to `null` if the the nominal power is unknown.";
|
|
663
663
|
readonly example: 7.5;
|
|
664
664
|
};
|
|
665
665
|
};
|
|
@@ -671,19 +671,19 @@ declare const $LookupPropertiesV3: {
|
|
|
671
671
|
readonly suitable_roof_area: {
|
|
672
672
|
readonly type: readonly ["number", "null"];
|
|
673
673
|
readonly minimum: 0;
|
|
674
|
-
readonly description: "\nThe `st_suitable_roof_area` field specifies the roof area suited for solarthermie [m^2].\n\nThe field is set to `null` if the roof area suited for solarthermie is unknown
|
|
674
|
+
readonly description: "\nThe `st_suitable_roof_area` field specifies the roof area suited for solarthermie [m^2].\n\nThe field is set to `null` if the roof area suited for solarthermie is unknown.";
|
|
675
675
|
readonly example: 90;
|
|
676
676
|
};
|
|
677
677
|
readonly heat_generation: {
|
|
678
678
|
readonly type: readonly ["number", "null"];
|
|
679
679
|
readonly minimum: 0;
|
|
680
|
-
readonly description: "\nThe `st_heat_generation` field specifies the potential solarthermic heat generation on this bulding [kWh/a].\n\nThe field is set to `null` if the heat generation by solarthermie is unknown
|
|
680
|
+
readonly description: "\nThe `st_heat_generation` field specifies the potential solarthermic heat generation on this bulding [kWh/a].\n\nThe field is set to `null` if the heat generation by solarthermie is unknown.";
|
|
681
681
|
readonly example: 25201;
|
|
682
682
|
};
|
|
683
683
|
readonly net_collector_area: {
|
|
684
684
|
readonly type: readonly ["number", "null"];
|
|
685
685
|
readonly minimum: 0;
|
|
686
|
-
readonly description: "\nThe `st_net_collector_area` field specifies the maximal collector area for solarthermie [m^2].\n\nThe field is set to `null` if the maximal collector area for solarthermie is unknown
|
|
686
|
+
readonly description: "\nThe `st_net_collector_area` field specifies the maximal collector area for solarthermie [m^2].\n\nThe field is set to `null` if the maximal collector area for solarthermie is unknown.";
|
|
687
687
|
readonly example: 25201;
|
|
688
688
|
};
|
|
689
689
|
};
|
|
@@ -1064,6 +1064,18 @@ declare const $LookupPropertiesV3: {
|
|
|
1064
1064
|
readonly description: "\nThe `purchasing_power` field specifies the average purchasing power (German: *Kaufkraft*) of the households of the building, measured in euros (EUR). Purchasing power refers to the estimated disposable income or financial capacity available to the households for spending and consumption, after taxes and social security contributions have been deducted.\n\nThis value is typically expressed as an annual amount per person or household and provides insight into the economic strength and consumption potential of the building's population. Understanding purchasing power is valuable for market analysis, retail site selection, urban planning, and resource allocation.\n\nThe field is set to `null` if the purchasing power is unknown.";
|
|
1065
1065
|
readonly example: 14000;
|
|
1066
1066
|
};
|
|
1067
|
+
readonly building_volume_ratio_weighted: {
|
|
1068
|
+
readonly type: readonly ["number", "null"];
|
|
1069
|
+
readonly minimum: 0;
|
|
1070
|
+
readonly description: "\nThe `building_volume_ratio_weighted` field specifies the weighted building volume ratio (also known as \"Baumassezahl\") of the building. This value represents the density context a building is situated in, rather than isolating its individual volume contribution.\n\nThe building volume ratio is conceptually defined as building volume divided by parcel area, where building volume is calculated as footprint area multiplied by roof height (estimated as the average of ridge_above_ground_weighted and eave_above_ground_weighted).\n\nSince our data is associated with buildings rather than parcels, this weighted calculation accounts for cases where buildings share parcels. The value is computed by:\n1. Summing the building volume per parcel across all associated buildings\n2. Dividing by the sum of corresponding parcel areas across all associated buildings\n\nIf `number_parcels_per_building == 1`, then this value is equivalent to an unaggregated building volume ratio.\n\nThe field is set to `null` if the building volume ratio is unknown.";
|
|
1071
|
+
readonly example: 1.23;
|
|
1072
|
+
};
|
|
1073
|
+
readonly number_parcels_per_building: {
|
|
1074
|
+
readonly type: readonly ["number", "null"];
|
|
1075
|
+
readonly minimum: 0;
|
|
1076
|
+
readonly description: "\nThe `number_parcels_per_building` field specifies the number of parcels a building is associated with. This value provides context for the weighted nature of the `building_volume_ratio_weighted` attribute.\n\nWhen `number_parcels_per_building == 1`, the `building_volume_ratio_weighted` is equivalent to an unaggregated building volume ratio. When the value is greater than 1, it indicates that the building is situated on multiple parcels, and the weighted calculation accounts for this shared context.\n\nThis information is useful for understanding the density context of a building and interpreting the weighted building volume ratio calculation.\n\nThe field is set to `null` if the number of parcels is unknown.";
|
|
1077
|
+
readonly example: 2;
|
|
1078
|
+
};
|
|
1067
1079
|
};
|
|
1068
1080
|
readonly required: readonly ["street", "city", "street_number", "postcode", "roof_type", "type", "type_class", "water_protected", "heated", "heat_demand", "levels", "household_count", "net_area", "footprint_area", "characteristics", "characteristics_class", "development_layout", "development_layout_class", "construction_year_range", "construction_year_range_class", "construction_year", "heritage", "geo_conductivity_100", "heat_pump_air_possible", "heat_pump_maximal_distance_drillings", "heat_pump_maximal_distance_drillings_5m", "heat_pump_minimal_number_possible_drillings", "heat_pump_minimal_number_possible_drillings_5m", "heat_pump_minimal_number_possible_drillings_2m", "heat_pump_minimal_number_possible_drillings_no_distance", "heat_pump_collector_free_area", "flood_potential", "photovoltaic_potential", "solarthermal_potential", "matching_addresses", "eave_above_ground_weighted", "eave_above_ground_min", "eave_above_ground_max", "ridge_above_ground_weighted", "ridge_above_ground_min", "ridge_above_ground_max", "number_original_geometries", "roof_area", "outer_wall_area_free", "outer_wall_area_shared_heated", "outer_wall_area_shared_non_heated", "plinth_length_free", "plinth_length_shared_heated", "plinth_length_shared_non_heated", "ogc_fid", "esg", "fuelling_types", "location_rating"];
|
|
1069
1081
|
};
|
|
@@ -1071,11 +1083,9 @@ declare const $LookupPropertiesV3: {
|
|
|
1071
1083
|
type LookupPropertiesV2 = {
|
|
1072
1084
|
/**
|
|
1073
1085
|
*
|
|
1074
|
-
*
|
|
1086
|
+
* The `street` field specifies the street name of a building.
|
|
1075
1087
|
*
|
|
1076
|
-
*
|
|
1077
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1078
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1088
|
+
* The field is set to `null` if the street is unknown.
|
|
1079
1089
|
*/
|
|
1080
1090
|
street: string | null;
|
|
1081
1091
|
/**
|
|
@@ -1083,12 +1093,6 @@ type LookupPropertiesV2 = {
|
|
|
1083
1093
|
* The `city` field specifies the city name of a building.
|
|
1084
1094
|
*
|
|
1085
1095
|
* The field is set to `null` if the city is unknown.
|
|
1086
|
-
*
|
|
1087
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1088
|
-
*
|
|
1089
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1090
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1091
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1092
1096
|
*/
|
|
1093
1097
|
city: string | null;
|
|
1094
1098
|
/**
|
|
@@ -1096,12 +1100,6 @@ type LookupPropertiesV2 = {
|
|
|
1096
1100
|
* The `street_number` field specifies the street number name of a building.
|
|
1097
1101
|
*
|
|
1098
1102
|
* The field is set to `null` if the street number is unknown.
|
|
1099
|
-
*
|
|
1100
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1101
|
-
*
|
|
1102
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1103
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1104
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1105
1103
|
*/
|
|
1106
1104
|
street_number: string | null;
|
|
1107
1105
|
/**
|
|
@@ -1109,12 +1107,6 @@ type LookupPropertiesV2 = {
|
|
|
1109
1107
|
* The `postcode` field specifies the postcode of a building.
|
|
1110
1108
|
*
|
|
1111
1109
|
* The field is set to `null` if the postcode is unknown.
|
|
1112
|
-
*
|
|
1113
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1114
|
-
*
|
|
1115
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1116
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1117
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1118
1110
|
*/
|
|
1119
1111
|
postcode: string | null;
|
|
1120
1112
|
/**
|
|
@@ -1126,12 +1118,6 @@ type LookupPropertiesV2 = {
|
|
|
1126
1118
|
* - **mixed**: Mixed types of roofs
|
|
1127
1119
|
*
|
|
1128
1120
|
* The field is set to `null` if the building type is unknown.
|
|
1129
|
-
*
|
|
1130
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1131
|
-
*
|
|
1132
|
-
* - Solarthermal Potential (NRW) <br />
|
|
1133
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
1134
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
1135
1121
|
*/
|
|
1136
1122
|
roof_type: 'flat' | 'pitched' | 'mixed' | null;
|
|
1137
1123
|
/**
|
|
@@ -1144,12 +1130,6 @@ type LookupPropertiesV2 = {
|
|
|
1144
1130
|
* - **mixed_use**: Mixed-use building
|
|
1145
1131
|
*
|
|
1146
1132
|
* The field is set to `null` if the building type is unknown.
|
|
1147
|
-
*
|
|
1148
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1149
|
-
*
|
|
1150
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1151
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1152
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1153
1133
|
*/
|
|
1154
1134
|
type: 'single_family' | 'multi_family' | 'non_residential' | 'mixed_use' | null;
|
|
1155
1135
|
/**
|
|
@@ -1162,12 +1142,6 @@ type LookupPropertiesV2 = {
|
|
|
1162
1142
|
* - **4**: Mixed-use building
|
|
1163
1143
|
*
|
|
1164
1144
|
* The field is set to `null` if the building type is unknown.
|
|
1165
|
-
*
|
|
1166
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1167
|
-
*
|
|
1168
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1169
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1170
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1171
1145
|
*/
|
|
1172
1146
|
type_class: number | null;
|
|
1173
1147
|
/**
|
|
@@ -1175,21 +1149,6 @@ type LookupPropertiesV2 = {
|
|
|
1175
1149
|
* The `water_protected` field specifies whether the building is within a water protection area.
|
|
1176
1150
|
*
|
|
1177
1151
|
* If the field is set to `null`, no water protection area could be assigned.
|
|
1178
|
-
*
|
|
1179
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1180
|
-
*
|
|
1181
|
-
* - Water Protection Areas (Germany ex. Rheinland-Pfalz, Baden-Würtemberg, NRW) <br />
|
|
1182
|
-
* © WasserBLIcK/BfG & Zuständige Behörden der Länder (2024) <br />
|
|
1183
|
-
* [Datasources / Datenquellen](https://geoportal.bafg.de/inspire/download/AM/waterProtectionArea/datasetfeed.xml)
|
|
1184
|
-
* - Water Protection Areas (Rheinland-Pfalz) <br />
|
|
1185
|
-
* © Landesamt für Umwelt (LfU) (2024) <br />
|
|
1186
|
-
* [Datasources / Datenquellen](https://geodienste-wasser.rlp-umwelt.de/geonetwork/srv/ger/catalog.search;jsessionid=7E55E5AFBC8BF10DBE2ABEE3FA110723#/metadata/17a6a735-8bd0-4258-ae32-883c8a8f4af5)
|
|
1187
|
-
* - Water Protection Areas (Baden-Würtemberg) <br />
|
|
1188
|
-
* © Landesanstalt für Umwelt Baden-Würtemberg (LUBW) (2024) <br />
|
|
1189
|
-
* [Datasources / Datenquellen](https://rips-metadaten.lubw.de/trefferanzeige?docuuid=ec2d7bcc-1f56-4596-bbc0-459ddb6a1a82)
|
|
1190
|
-
* - Water Protection Areas (Nordrhein-Westfalen) <br />
|
|
1191
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW <br />
|
|
1192
|
-
* Fachbereich 56: Wasserwirtschaftlicher Datenverbund, ELWAS-Geschäftsstelle, 2024
|
|
1193
1152
|
*/
|
|
1194
1153
|
water_protected: boolean | null;
|
|
1195
1154
|
/**
|
|
@@ -1197,12 +1156,6 @@ type LookupPropertiesV2 = {
|
|
|
1197
1156
|
* The `heated` field specifies whether the building is heated or not.
|
|
1198
1157
|
*
|
|
1199
1158
|
* The field is set to `null` if the heating status is unknown.
|
|
1200
|
-
*
|
|
1201
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1202
|
-
*
|
|
1203
|
-
* - Gebäudefunktionsklasse (GFK) (Manual Assignment of the Heating Status) <br />
|
|
1204
|
-
* © Geodateninfrastruktur Deutschland (2024) <br />
|
|
1205
|
-
* [Datasources / Datenquellen](https://repository.gdi-de.org/schemas/adv/citygml/Codelisten/BuildingFunctionTypeAdV.xml)
|
|
1206
1159
|
*/
|
|
1207
1160
|
heated: boolean | null;
|
|
1208
1161
|
/**
|
|
@@ -1210,12 +1163,6 @@ type LookupPropertiesV2 = {
|
|
|
1210
1163
|
* The `heat_demand` field specifies the heat demand of the building in [kWh/m²a].
|
|
1211
1164
|
*
|
|
1212
1165
|
* The field is set to `null` if the heat demand is unknown.
|
|
1213
|
-
*
|
|
1214
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1215
|
-
*
|
|
1216
|
-
* - Kommunale Wärmeplanung NRW (KWP-NRW) <br />
|
|
1217
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024)<br />
|
|
1218
|
-
* [Datasources / Datenquellen]https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/kwp/)
|
|
1219
1166
|
*/
|
|
1220
1167
|
heat_demand: number | null;
|
|
1221
1168
|
/**
|
|
@@ -1234,12 +1181,6 @@ type LookupPropertiesV2 = {
|
|
|
1234
1181
|
*
|
|
1235
1182
|
* If the height category is unknown, the field is set to `null`.
|
|
1236
1183
|
*
|
|
1237
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1238
|
-
*
|
|
1239
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1240
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1241
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1242
|
-
*
|
|
1243
1184
|
* <br /><br />**Warning:**<br /><br />
|
|
1244
1185
|
*
|
|
1245
1186
|
* This field is deprecated and will be removed in future API versions. It is no longer actively supported and may be omitted from upcoming endpoints. We recommend updating your implementation to use the latest supported fields.
|
|
@@ -1263,12 +1204,6 @@ type LookupPropertiesV2 = {
|
|
|
1263
1204
|
*
|
|
1264
1205
|
* The field is set to `null` if the number of height category is unknown.
|
|
1265
1206
|
*
|
|
1266
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1267
|
-
*
|
|
1268
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1269
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1270
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1271
|
-
*
|
|
1272
1207
|
* <br /><br />**Warning:**<br /><br />
|
|
1273
1208
|
*
|
|
1274
1209
|
* This field is deprecated and will be no longer supported in future datasets.
|
|
@@ -1280,14 +1215,6 @@ type LookupPropertiesV2 = {
|
|
|
1280
1215
|
* The `levels` field specifies the number of levels in the building.
|
|
1281
1216
|
*
|
|
1282
1217
|
* The field is set to `null` if the number of levels is unknown.
|
|
1283
|
-
*
|
|
1284
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1285
|
-
*
|
|
1286
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1287
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1288
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1289
|
-
* - Additionally, this field is enhanced using a proprietary machine learning model developed to estimate levels
|
|
1290
|
-
* where explicit data is unavailable.
|
|
1291
1218
|
*/
|
|
1292
1219
|
levels: number | null;
|
|
1293
1220
|
/**
|
|
@@ -1295,12 +1222,6 @@ type LookupPropertiesV2 = {
|
|
|
1295
1222
|
* The `household_count` field specifies the number of households in the building.
|
|
1296
1223
|
*
|
|
1297
1224
|
* The field is set to `null` if the number of households is unknown.
|
|
1298
|
-
*
|
|
1299
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1300
|
-
*
|
|
1301
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1302
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1303
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1304
1225
|
*/
|
|
1305
1226
|
household_count: number | null;
|
|
1306
1227
|
/**
|
|
@@ -1331,12 +1252,6 @@ type LookupPropertiesV2 = {
|
|
|
1331
1252
|
*
|
|
1332
1253
|
* If the usage is unknown, the field is set to `null`.
|
|
1333
1254
|
*
|
|
1334
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1335
|
-
*
|
|
1336
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1337
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1338
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1339
|
-
*
|
|
1340
1255
|
* <br /><br />**Warning:**<br /><br />
|
|
1341
1256
|
*
|
|
1342
1257
|
* This field is deprecated and will be removed in future API versions. It is no longer actively supported and may be omitted from upcoming endpoints. We recommend updating your implementation to use the latest supported fields.
|
|
@@ -1353,12 +1268,6 @@ type LookupPropertiesV2 = {
|
|
|
1353
1268
|
*
|
|
1354
1269
|
* If the usage is unknown, the field is set to `null`.
|
|
1355
1270
|
*
|
|
1356
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1357
|
-
*
|
|
1358
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1359
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1360
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1361
|
-
*
|
|
1362
1271
|
* <br /><br />**Warning:**<br /><br />
|
|
1363
1272
|
*
|
|
1364
1273
|
* This field is deprecated and will be removed in future API versions. It is no longer actively supported and may be omitted from upcoming endpoints. We recommend updating your implementation to use the latest supported fields.
|
|
@@ -1381,12 +1290,6 @@ type LookupPropertiesV2 = {
|
|
|
1381
1290
|
* - **factory_warehouse**: Factory or warehouse building
|
|
1382
1291
|
*
|
|
1383
1292
|
* If the characteristics is unknown, the field is set to `null`.
|
|
1384
|
-
*
|
|
1385
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1386
|
-
*
|
|
1387
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1388
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1389
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1390
1293
|
*/
|
|
1391
1294
|
characteristics: 'single_two_family' | 'row_semi_detached' | 'multi_family' | 'residential_block' | 'high_rise' | 'terrace' | 'farmhouse' | 'office_other' | 'factory_warehouse' | null;
|
|
1392
1295
|
/**
|
|
@@ -1405,12 +1308,6 @@ type LookupPropertiesV2 = {
|
|
|
1405
1308
|
* - **9**: Factory or warehouse building
|
|
1406
1309
|
*
|
|
1407
1310
|
* If the characteristics_class is unknown, the field is set to `null`.
|
|
1408
|
-
*
|
|
1409
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1410
|
-
*
|
|
1411
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1412
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1413
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1414
1311
|
*/
|
|
1415
1312
|
characteristics_class: number | null;
|
|
1416
1313
|
/**
|
|
@@ -1470,12 +1367,6 @@ type LookupPropertiesV2 = {
|
|
|
1470
1367
|
* - **[2016, 2024]**
|
|
1471
1368
|
*
|
|
1472
1369
|
* If the construction year class is unknown, the field is set to `null`.
|
|
1473
|
-
*
|
|
1474
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1475
|
-
*
|
|
1476
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1477
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1478
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1479
1370
|
*/
|
|
1480
1371
|
construction_year_range: unknown[] | null;
|
|
1481
1372
|
/**
|
|
@@ -1496,12 +1387,6 @@ type LookupPropertiesV2 = {
|
|
|
1496
1387
|
* - **12**: 2016 - 2024
|
|
1497
1388
|
*
|
|
1498
1389
|
* If the construction year range class is unknown, the field is set to `null`.
|
|
1499
|
-
*
|
|
1500
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1501
|
-
*
|
|
1502
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1503
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1504
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1505
1390
|
*/
|
|
1506
1391
|
construction_year_range_class: number | null;
|
|
1507
1392
|
/**
|
|
@@ -1523,12 +1408,6 @@ type LookupPropertiesV2 = {
|
|
|
1523
1408
|
* The `geo_conductivity_100` field specifies the geothermal conductivity in 100 m depth.
|
|
1524
1409
|
*
|
|
1525
1410
|
* The field is set to `null` if the geothermal conductivity is unknown.
|
|
1526
|
-
*
|
|
1527
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1528
|
-
*
|
|
1529
|
-
* - Geothermic Potential in 100 m depth (NRW) <br />
|
|
1530
|
-
* © Geologischer Dienst (GD) NRW (2024) <br />
|
|
1531
|
-
* [Datasources / Datenquellen](https://open.nrw/dataset/912ad0a6-5eb4-4df3-a19f-908c33650964)
|
|
1532
1411
|
*/
|
|
1533
1412
|
geo_conductivity_100: number | null;
|
|
1534
1413
|
/**
|
|
@@ -1538,15 +1417,6 @@ type LookupPropertiesV2 = {
|
|
|
1538
1417
|
* - Set to `true` if an air-source heat pump is feasible.
|
|
1539
1418
|
* - Set to `false` if an air-source heat pump is not feasible.
|
|
1540
1419
|
* - Set to `null` if the information is unknown.
|
|
1541
|
-
*
|
|
1542
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1543
|
-
*
|
|
1544
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
1545
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1546
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1547
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
1548
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1549
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1550
1420
|
*/
|
|
1551
1421
|
heat_pump_air_possible: boolean | null;
|
|
1552
1422
|
/**
|
|
@@ -1555,15 +1425,6 @@ type LookupPropertiesV2 = {
|
|
|
1555
1425
|
* This field will be deprecated in future versions. Please use `heat_pump_maximal_distance_drillings_5m` instead.
|
|
1556
1426
|
*
|
|
1557
1427
|
* The field is set to `null` if the information is unknown.
|
|
1558
|
-
*
|
|
1559
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1560
|
-
*
|
|
1561
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
1562
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1563
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1564
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
1565
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1566
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1567
1428
|
*/
|
|
1568
1429
|
heat_pump_maximal_distance_drillings: number | null;
|
|
1569
1430
|
/**
|
|
@@ -1571,15 +1432,6 @@ type LookupPropertiesV2 = {
|
|
|
1571
1432
|
* The `heat_pump_maximal_distance_drillings_5m` field specifies the maximum allowable distance between drillings for a heat pump installation, measured in meters.
|
|
1572
1433
|
*
|
|
1573
1434
|
* The field is set to `null` if the information is unknown.
|
|
1574
|
-
*
|
|
1575
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1576
|
-
*
|
|
1577
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
1578
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1579
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1580
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
1581
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1582
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1583
1435
|
*/
|
|
1584
1436
|
heat_pump_maximal_distance_drillings_5m: number | null;
|
|
1585
1437
|
/**
|
|
@@ -1594,15 +1446,6 @@ type LookupPropertiesV2 = {
|
|
|
1594
1446
|
* <br /><br />**Deprecation Warning:**<br /><br />
|
|
1595
1447
|
*
|
|
1596
1448
|
* Please use `heat_pump_minimal_number_possible_drillings_5m` instead of this field.
|
|
1597
|
-
*
|
|
1598
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1599
|
-
*
|
|
1600
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
1601
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1602
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1603
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
1604
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1605
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1606
1449
|
* @deprecated
|
|
1607
1450
|
*/
|
|
1608
1451
|
heat_pump_minimal_number_possible_drillings: number | null;
|
|
@@ -1613,15 +1456,6 @@ type LookupPropertiesV2 = {
|
|
|
1613
1456
|
* to the parcel border.
|
|
1614
1457
|
*
|
|
1615
1458
|
* The field is set to `null` if the information is unknown.
|
|
1616
|
-
*
|
|
1617
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1618
|
-
*
|
|
1619
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
1620
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1621
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1622
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
1623
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1624
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1625
1459
|
*/
|
|
1626
1460
|
heat_pump_minimal_number_possible_drillings_5m: number | null;
|
|
1627
1461
|
/**
|
|
@@ -1631,15 +1465,6 @@ type LookupPropertiesV2 = {
|
|
|
1631
1465
|
* to the parcel border.
|
|
1632
1466
|
*
|
|
1633
1467
|
* The field is set to `null` if the information is unknown.
|
|
1634
|
-
*
|
|
1635
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1636
|
-
*
|
|
1637
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
1638
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1639
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1640
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
1641
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1642
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1643
1468
|
*/
|
|
1644
1469
|
heat_pump_minimal_number_possible_drillings_2m: number | null;
|
|
1645
1470
|
/**
|
|
@@ -1648,15 +1473,6 @@ type LookupPropertiesV2 = {
|
|
|
1648
1473
|
* number of drillings required for a heat pump installation with no distance to the parcel border.
|
|
1649
1474
|
*
|
|
1650
1475
|
* The field is set to `null` if the information is unknown.
|
|
1651
|
-
*
|
|
1652
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1653
|
-
*
|
|
1654
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
1655
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1656
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1657
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
1658
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1659
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1660
1476
|
*/
|
|
1661
1477
|
heat_pump_minimal_number_possible_drillings_no_distance: number | null;
|
|
1662
1478
|
/**
|
|
@@ -1665,16 +1481,6 @@ type LookupPropertiesV2 = {
|
|
|
1665
1481
|
* for a collector heat pump on parcels associated to a building.
|
|
1666
1482
|
*
|
|
1667
1483
|
* The field is set to `null` if the information is unknown.
|
|
1668
|
-
*
|
|
1669
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1670
|
-
*
|
|
1671
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
1672
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1673
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1674
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
1675
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1676
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1677
|
-
*
|
|
1678
1484
|
*/
|
|
1679
1485
|
heat_pump_collector_free_area: number | null;
|
|
1680
1486
|
/**
|
|
@@ -1696,12 +1502,6 @@ type LookupPropertiesV2 = {
|
|
|
1696
1502
|
* measures.
|
|
1697
1503
|
*
|
|
1698
1504
|
* If this array is set to `null`, it means that no data regarding flood potential is available for the location.
|
|
1699
|
-
*
|
|
1700
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1701
|
-
*
|
|
1702
|
-
* - Flood hazard area (Überflutungsflächen-DE) <br />
|
|
1703
|
-
* © WasserBLIcK/BfG & Zuständige Behörden der Länder (2022) <br />
|
|
1704
|
-
* [Terms of Use / Nutzungsbedingungen](https://www.gesetze-im-internet.de/geonutzv/GeoNutzV.pdf)
|
|
1705
1505
|
*/
|
|
1706
1506
|
flood_potential: Array<{
|
|
1707
1507
|
min_recurrence?: number | null;
|
|
@@ -1714,12 +1514,6 @@ type LookupPropertiesV2 = {
|
|
|
1714
1514
|
* The `suitable_roof_area` field specifies the roof area suited for photovoltaics [m^2].
|
|
1715
1515
|
*
|
|
1716
1516
|
* The field is set to `null` if the roof area suited for photovoltaics is unknown.
|
|
1717
|
-
*
|
|
1718
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1719
|
-
*
|
|
1720
|
-
* - Photovoltaics Potential on Roofs (NRW) <br />
|
|
1721
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
1722
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
1723
1517
|
*/
|
|
1724
1518
|
suitable_roof_area: number | null;
|
|
1725
1519
|
/**
|
|
@@ -1727,12 +1521,6 @@ type LookupPropertiesV2 = {
|
|
|
1727
1521
|
* The `gross_collector_area` field specifies the maximal collector area for photovoltaics including module frames [m^2].
|
|
1728
1522
|
*
|
|
1729
1523
|
* The field is set to `null` if the maximal collector area for photovoltaics is unknown.
|
|
1730
|
-
*
|
|
1731
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1732
|
-
*
|
|
1733
|
-
* - Photovoltaics Potential on Roofs (NRW) <br />
|
|
1734
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
1735
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
1736
1524
|
*/
|
|
1737
1525
|
gross_collector_area: number | null;
|
|
1738
1526
|
/**
|
|
@@ -1740,12 +1528,6 @@ type LookupPropertiesV2 = {
|
|
|
1740
1528
|
* The `net_collector_area` field specifies the maximal collector area for photovoltaics excluding module frames [m^2].
|
|
1741
1529
|
*
|
|
1742
1530
|
* The field is set to `null` if the maximal collector area for photovoltaics excluding module frames is unknown.
|
|
1743
|
-
*
|
|
1744
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1745
|
-
*
|
|
1746
|
-
* - Photovoltaics Potential on Roofs (NRW) <br />
|
|
1747
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
1748
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
1749
1531
|
*/
|
|
1750
1532
|
net_collector_area: number | null;
|
|
1751
1533
|
/**
|
|
@@ -1753,12 +1535,6 @@ type LookupPropertiesV2 = {
|
|
|
1753
1535
|
* The `electricity_generation` field specifies the maximal electricity generation from photovoltaics of the building per year [kWh/a].
|
|
1754
1536
|
*
|
|
1755
1537
|
* The field is set to `null` if the maximal electricity generation per year is unknown.
|
|
1756
|
-
*
|
|
1757
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1758
|
-
*
|
|
1759
|
-
* - Photovoltaics Potential on Roofs (NRW) <br />
|
|
1760
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
1761
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
1762
1538
|
*/
|
|
1763
1539
|
electricity_generation: number | null;
|
|
1764
1540
|
/**
|
|
@@ -1766,12 +1542,6 @@ type LookupPropertiesV2 = {
|
|
|
1766
1542
|
* The `nominal_power` field specifies the nominal power a photovoltaics system could have at this building per year [kWp].
|
|
1767
1543
|
*
|
|
1768
1544
|
* The field is set to `null` if the the nominal power is unknown.
|
|
1769
|
-
*
|
|
1770
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1771
|
-
*
|
|
1772
|
-
* - Photovoltaics Potential on Roofs (NRW) <br />
|
|
1773
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
1774
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
1775
1545
|
*/
|
|
1776
1546
|
nominal_power: number | null;
|
|
1777
1547
|
};
|
|
@@ -1781,12 +1551,6 @@ type LookupPropertiesV2 = {
|
|
|
1781
1551
|
* The `st_suitable_roof_area` field specifies the roof area suited for solarthermie [m^2].
|
|
1782
1552
|
*
|
|
1783
1553
|
* The field is set to `null` if the roof area suited for solarthermie is unknown.
|
|
1784
|
-
*
|
|
1785
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1786
|
-
*
|
|
1787
|
-
* - Solarthermal Potential (NRW) <br />
|
|
1788
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
1789
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
1790
1554
|
*/
|
|
1791
1555
|
suitable_roof_area: number | null;
|
|
1792
1556
|
/**
|
|
@@ -1794,12 +1558,6 @@ type LookupPropertiesV2 = {
|
|
|
1794
1558
|
* The `st_heat_generation` field specifies the potential solarthermic heat generation on this bulding [kWh/a].
|
|
1795
1559
|
*
|
|
1796
1560
|
* The field is set to `null` if the heat generation by solarthermie is unknown.
|
|
1797
|
-
*
|
|
1798
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1799
|
-
*
|
|
1800
|
-
* - Solarthermal Potential (NRW) <br />
|
|
1801
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
1802
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
1803
1561
|
*/
|
|
1804
1562
|
heat_generation: number | null;
|
|
1805
1563
|
/**
|
|
@@ -1807,12 +1565,6 @@ type LookupPropertiesV2 = {
|
|
|
1807
1565
|
* The `st_net_collector_area` field specifies the maximal collector area for solarthermie [m^2].
|
|
1808
1566
|
*
|
|
1809
1567
|
* The field is set to `null` if the maximal collector area for solarthermie is unknown.
|
|
1810
|
-
*
|
|
1811
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1812
|
-
*
|
|
1813
|
-
* - Solarthermal Potential (NRW) <br />
|
|
1814
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
1815
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
1816
1568
|
*/
|
|
1817
1569
|
net_collector_area: number | null;
|
|
1818
1570
|
};
|
|
@@ -1952,12 +1704,6 @@ type LookupPropertiesV2 = {
|
|
|
1952
1704
|
* - **mixed**: Mixed types of roofs
|
|
1953
1705
|
*
|
|
1954
1706
|
* The field is set to `null` if the building type is unknown.
|
|
1955
|
-
*
|
|
1956
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1957
|
-
*
|
|
1958
|
-
* - Solarthermal Potential (NRW) <br />
|
|
1959
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
1960
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
1961
1707
|
*/
|
|
1962
1708
|
type roof_type = 'flat' | 'pitched' | 'mixed';
|
|
1963
1709
|
/**
|
|
@@ -1970,12 +1716,6 @@ type roof_type = 'flat' | 'pitched' | 'mixed';
|
|
|
1970
1716
|
* - **mixed_use**: Mixed-use building
|
|
1971
1717
|
*
|
|
1972
1718
|
* The field is set to `null` if the building type is unknown.
|
|
1973
|
-
*
|
|
1974
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1975
|
-
*
|
|
1976
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1977
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1978
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1979
1719
|
*/
|
|
1980
1720
|
type type = 'single_family' | 'multi_family' | 'non_residential' | 'mixed_use';
|
|
1981
1721
|
/**
|
|
@@ -1994,12 +1734,6 @@ type type = 'single_family' | 'multi_family' | 'non_residential' | 'mixed_use';
|
|
|
1994
1734
|
*
|
|
1995
1735
|
* If the height category is unknown, the field is set to `null`.
|
|
1996
1736
|
*
|
|
1997
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1998
|
-
*
|
|
1999
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
2000
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
2001
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
2002
|
-
*
|
|
2003
1737
|
* <br /><br />**Warning:**<br /><br />
|
|
2004
1738
|
*
|
|
2005
1739
|
* This field is deprecated and will be removed in future API versions. It is no longer actively supported and may be omitted from upcoming endpoints. We recommend updating your implementation to use the latest supported fields.
|
|
@@ -2017,12 +1751,6 @@ type height_category = '<= 5m' | '<= 7.5m' | '<= 10m' | '<= 12.5m' | '<= 15m' |
|
|
|
2017
1751
|
*
|
|
2018
1752
|
* If the usage is unknown, the field is set to `null`.
|
|
2019
1753
|
*
|
|
2020
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2021
|
-
*
|
|
2022
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
2023
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
2024
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
2025
|
-
*
|
|
2026
1754
|
* <br /><br />**Warning:**<br /><br />
|
|
2027
1755
|
*
|
|
2028
1756
|
* This field is deprecated and will be removed in future API versions. It is no longer actively supported and may be omitted from upcoming endpoints. We recommend updating your implementation to use the latest supported fields.
|
|
@@ -2045,12 +1773,6 @@ type usage = 'residential' | 'non_residential' | 'mixed_use';
|
|
|
2045
1773
|
* - **factory_warehouse**: Factory or warehouse building
|
|
2046
1774
|
*
|
|
2047
1775
|
* If the characteristics is unknown, the field is set to `null`.
|
|
2048
|
-
*
|
|
2049
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2050
|
-
*
|
|
2051
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
2052
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
2053
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
2054
1776
|
*/
|
|
2055
1777
|
type characteristics = 'single_two_family' | 'row_semi_detached' | 'multi_family' | 'residential_block' | 'high_rise' | 'terrace' | 'farmhouse' | 'office_other' | 'factory_warehouse';
|
|
2056
1778
|
/**
|
|
@@ -2075,11 +1797,9 @@ type development_layout = 'non_detached' | 'semi_detached' | 'detached';
|
|
|
2075
1797
|
type LookupPropertiesV3 = {
|
|
2076
1798
|
/**
|
|
2077
1799
|
*
|
|
2078
|
-
*
|
|
1800
|
+
* The `street` field specifies the street name of a building.
|
|
2079
1801
|
*
|
|
2080
|
-
*
|
|
2081
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
2082
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1802
|
+
* The field is set to `null` if the street is unknown.
|
|
2083
1803
|
*/
|
|
2084
1804
|
street: string | null;
|
|
2085
1805
|
/**
|
|
@@ -2087,12 +1807,6 @@ type LookupPropertiesV3 = {
|
|
|
2087
1807
|
* The `city` field specifies the city name of a building.
|
|
2088
1808
|
*
|
|
2089
1809
|
* The field is set to `null` if the city is unknown.
|
|
2090
|
-
*
|
|
2091
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2092
|
-
*
|
|
2093
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
2094
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
2095
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
2096
1810
|
*/
|
|
2097
1811
|
city: string | null;
|
|
2098
1812
|
/**
|
|
@@ -2100,12 +1814,6 @@ type LookupPropertiesV3 = {
|
|
|
2100
1814
|
* The `street_number` field specifies the street number name of a building.
|
|
2101
1815
|
*
|
|
2102
1816
|
* The field is set to `null` if the street number is unknown.
|
|
2103
|
-
*
|
|
2104
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2105
|
-
*
|
|
2106
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
2107
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
2108
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
2109
1817
|
*/
|
|
2110
1818
|
street_number: string | null;
|
|
2111
1819
|
/**
|
|
@@ -2113,12 +1821,6 @@ type LookupPropertiesV3 = {
|
|
|
2113
1821
|
* The `postcode` field specifies the postcode of a building.
|
|
2114
1822
|
*
|
|
2115
1823
|
* The field is set to `null` if the postcode is unknown.
|
|
2116
|
-
*
|
|
2117
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2118
|
-
*
|
|
2119
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
2120
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
2121
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
2122
1824
|
*/
|
|
2123
1825
|
postcode: string | null;
|
|
2124
1826
|
/**
|
|
@@ -2130,12 +1832,6 @@ type LookupPropertiesV3 = {
|
|
|
2130
1832
|
* - **mixed**: Mixed types of roofs
|
|
2131
1833
|
*
|
|
2132
1834
|
* The field is set to `null` if the building type is unknown.
|
|
2133
|
-
*
|
|
2134
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2135
|
-
*
|
|
2136
|
-
* - Solarthermal Potential (NRW) <br />
|
|
2137
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
2138
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
2139
1835
|
*/
|
|
2140
1836
|
roof_type: 'flat' | 'pitched' | 'mixed' | null;
|
|
2141
1837
|
/**
|
|
@@ -2148,12 +1844,6 @@ type LookupPropertiesV3 = {
|
|
|
2148
1844
|
* - **mixed_use**: Mixed-use building
|
|
2149
1845
|
*
|
|
2150
1846
|
* The field is set to `null` if the building type is unknown.
|
|
2151
|
-
*
|
|
2152
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2153
|
-
*
|
|
2154
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
2155
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
2156
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
2157
1847
|
*/
|
|
2158
1848
|
type: 'single_family' | 'multi_family' | 'non_residential' | 'mixed_use' | null;
|
|
2159
1849
|
/**
|
|
@@ -2166,12 +1856,6 @@ type LookupPropertiesV3 = {
|
|
|
2166
1856
|
* - **4**: Mixed-use building
|
|
2167
1857
|
*
|
|
2168
1858
|
* The field is set to `null` if the building type is unknown.
|
|
2169
|
-
*
|
|
2170
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2171
|
-
*
|
|
2172
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
2173
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
2174
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
2175
1859
|
*/
|
|
2176
1860
|
type_class: number | null;
|
|
2177
1861
|
/**
|
|
@@ -2179,21 +1863,6 @@ type LookupPropertiesV3 = {
|
|
|
2179
1863
|
* The `water_protected` field specifies whether the building is within a water protection area.
|
|
2180
1864
|
*
|
|
2181
1865
|
* If the field is set to `null`, no water protection area could be assigned.
|
|
2182
|
-
*
|
|
2183
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2184
|
-
*
|
|
2185
|
-
* - Water Protection Areas (Germany ex. Rheinland-Pfalz, Baden-Würtemberg, NRW) <br />
|
|
2186
|
-
* © WasserBLIcK/BfG & Zuständige Behörden der Länder (2024) <br />
|
|
2187
|
-
* [Datasources / Datenquellen](https://geoportal.bafg.de/inspire/download/AM/waterProtectionArea/datasetfeed.xml)
|
|
2188
|
-
* - Water Protection Areas (Rheinland-Pfalz) <br />
|
|
2189
|
-
* © Landesamt für Umwelt (LfU) (2024) <br />
|
|
2190
|
-
* [Datasources / Datenquellen](https://geodienste-wasser.rlp-umwelt.de/geonetwork/srv/ger/catalog.search;jsessionid=7E55E5AFBC8BF10DBE2ABEE3FA110723#/metadata/17a6a735-8bd0-4258-ae32-883c8a8f4af5)
|
|
2191
|
-
* - Water Protection Areas (Baden-Würtemberg) <br />
|
|
2192
|
-
* © Landesanstalt für Umwelt Baden-Würtemberg (LUBW) (2024) <br />
|
|
2193
|
-
* [Datasources / Datenquellen](https://rips-metadaten.lubw.de/trefferanzeige?docuuid=ec2d7bcc-1f56-4596-bbc0-459ddb6a1a82)
|
|
2194
|
-
* - Water Protection Areas (Nordrhein-Westfalen) <br />
|
|
2195
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW <br />
|
|
2196
|
-
* Fachbereich 56: Wasserwirtschaftlicher Datenverbund, ELWAS-Geschäftsstelle, 2024
|
|
2197
1866
|
*/
|
|
2198
1867
|
water_protected: boolean | null;
|
|
2199
1868
|
/**
|
|
@@ -2201,12 +1870,6 @@ type LookupPropertiesV3 = {
|
|
|
2201
1870
|
* The `heated` field specifies whether the building is heated or not.
|
|
2202
1871
|
*
|
|
2203
1872
|
* The field is set to `null` if the heating status is unknown.
|
|
2204
|
-
*
|
|
2205
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2206
|
-
*
|
|
2207
|
-
* - Gebäudefunktionsklasse (GFK) (Manual Assignment of the Heating Status) <br />
|
|
2208
|
-
* © Geodateninfrastruktur Deutschland (2024) <br />
|
|
2209
|
-
* [Datasources / Datenquellen](https://repository.gdi-de.org/schemas/adv/citygml/Codelisten/BuildingFunctionTypeAdV.xml)
|
|
2210
1873
|
*/
|
|
2211
1874
|
heated: boolean | null;
|
|
2212
1875
|
/**
|
|
@@ -2214,12 +1877,6 @@ type LookupPropertiesV3 = {
|
|
|
2214
1877
|
* The `heat_demand` field specifies the heat demand of the building in [kWh/m²a].
|
|
2215
1878
|
*
|
|
2216
1879
|
* The field is set to `null` if the heat demand is unknown.
|
|
2217
|
-
*
|
|
2218
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2219
|
-
*
|
|
2220
|
-
* - Kommunale Wärmeplanung NRW (KWP-NRW) <br />
|
|
2221
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024)<br />
|
|
2222
|
-
* [Datasources / Datenquellen]https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/kwp/)
|
|
2223
1880
|
*/
|
|
2224
1881
|
heat_demand: number | null;
|
|
2225
1882
|
/**
|
|
@@ -2227,14 +1884,6 @@ type LookupPropertiesV3 = {
|
|
|
2227
1884
|
* The `levels` field specifies the number of levels in the building.
|
|
2228
1885
|
*
|
|
2229
1886
|
* The field is set to `null` if the number of levels is unknown.
|
|
2230
|
-
*
|
|
2231
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2232
|
-
*
|
|
2233
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
2234
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
2235
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
2236
|
-
* - Additionally, this field is enhanced using a proprietary machine learning model developed to estimate levels
|
|
2237
|
-
* where explicit data is unavailable.
|
|
2238
1887
|
*/
|
|
2239
1888
|
levels: number | null;
|
|
2240
1889
|
/**
|
|
@@ -2242,12 +1891,6 @@ type LookupPropertiesV3 = {
|
|
|
2242
1891
|
* The `household_count` field specifies the number of households in the building.
|
|
2243
1892
|
*
|
|
2244
1893
|
* The field is set to `null` if the number of households is unknown.
|
|
2245
|
-
*
|
|
2246
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2247
|
-
*
|
|
2248
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
2249
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
2250
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
2251
1894
|
*/
|
|
2252
1895
|
household_count: number | null;
|
|
2253
1896
|
/**
|
|
@@ -2284,12 +1927,6 @@ type LookupPropertiesV3 = {
|
|
|
2284
1927
|
* - **factory_warehouse**: Factory or warehouse building
|
|
2285
1928
|
*
|
|
2286
1929
|
* If the characteristics is unknown, the field is set to `null`.
|
|
2287
|
-
*
|
|
2288
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2289
|
-
*
|
|
2290
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
2291
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
2292
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
2293
1930
|
*/
|
|
2294
1931
|
characteristics: 'single_two_family' | 'row_semi_detached' | 'multi_family' | 'residential_block' | 'high_rise' | 'terrace' | 'farmhouse' | 'office_other' | 'factory_warehouse' | null;
|
|
2295
1932
|
/**
|
|
@@ -2308,12 +1945,6 @@ type LookupPropertiesV3 = {
|
|
|
2308
1945
|
* - **9**: Factory or warehouse building
|
|
2309
1946
|
*
|
|
2310
1947
|
* If the characteristics_class is unknown, the field is set to `null`.
|
|
2311
|
-
*
|
|
2312
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2313
|
-
*
|
|
2314
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
2315
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
2316
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
2317
1948
|
*/
|
|
2318
1949
|
characteristics_class: number | null;
|
|
2319
1950
|
/**
|
|
@@ -2373,12 +2004,6 @@ type LookupPropertiesV3 = {
|
|
|
2373
2004
|
* - **[2016, 2024]**
|
|
2374
2005
|
*
|
|
2375
2006
|
* If the construction year class is unknown, the field is set to `null`.
|
|
2376
|
-
*
|
|
2377
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2378
|
-
*
|
|
2379
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
2380
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
2381
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
2382
2007
|
*/
|
|
2383
2008
|
construction_year_range: unknown[] | null;
|
|
2384
2009
|
/**
|
|
@@ -2399,12 +2024,6 @@ type LookupPropertiesV3 = {
|
|
|
2399
2024
|
* - **12**: 2016 - 2024
|
|
2400
2025
|
*
|
|
2401
2026
|
* If the construction year range class is unknown, the field is set to `null`.
|
|
2402
|
-
*
|
|
2403
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2404
|
-
*
|
|
2405
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
2406
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
2407
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
2408
2027
|
*/
|
|
2409
2028
|
construction_year_range_class: number | null;
|
|
2410
2029
|
/**
|
|
@@ -2426,12 +2045,6 @@ type LookupPropertiesV3 = {
|
|
|
2426
2045
|
* The `geo_conductivity_100` field specifies the geothermal conductivity in 100 m depth.
|
|
2427
2046
|
*
|
|
2428
2047
|
* The field is set to `null` if the geothermal conductivity is unknown.
|
|
2429
|
-
*
|
|
2430
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2431
|
-
*
|
|
2432
|
-
* - Geothermic Potential in 100 m depth (NRW) <br />
|
|
2433
|
-
* © Geologischer Dienst (GD) NRW (2024) <br />
|
|
2434
|
-
* [Datasources / Datenquellen](https://open.nrw/dataset/912ad0a6-5eb4-4df3-a19f-908c33650964)
|
|
2435
2048
|
*/
|
|
2436
2049
|
geo_conductivity_100: number | null;
|
|
2437
2050
|
/**
|
|
@@ -2441,15 +2054,6 @@ type LookupPropertiesV3 = {
|
|
|
2441
2054
|
* - Set to `true` if an air-source heat pump is feasible.
|
|
2442
2055
|
* - Set to `false` if an air-source heat pump is not feasible.
|
|
2443
2056
|
* - Set to `null` if the information is unknown.
|
|
2444
|
-
*
|
|
2445
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2446
|
-
*
|
|
2447
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
2448
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2449
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2450
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
2451
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2452
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2453
2057
|
*/
|
|
2454
2058
|
heat_pump_air_possible: boolean | null;
|
|
2455
2059
|
/**
|
|
@@ -2458,15 +2062,6 @@ type LookupPropertiesV3 = {
|
|
|
2458
2062
|
* This field will be deprecated in future versions. Please use `heat_pump_maximal_distance_drillings_5m` instead.
|
|
2459
2063
|
*
|
|
2460
2064
|
* The field is set to `null` if the information is unknown.
|
|
2461
|
-
*
|
|
2462
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2463
|
-
*
|
|
2464
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
2465
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2466
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2467
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
2468
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2469
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2470
2065
|
*/
|
|
2471
2066
|
heat_pump_maximal_distance_drillings: number | null;
|
|
2472
2067
|
/**
|
|
@@ -2474,15 +2069,6 @@ type LookupPropertiesV3 = {
|
|
|
2474
2069
|
* The `heat_pump_maximal_distance_drillings_5m` field specifies the maximum allowable distance between drillings for a heat pump installation, measured in meters.
|
|
2475
2070
|
*
|
|
2476
2071
|
* The field is set to `null` if the information is unknown.
|
|
2477
|
-
*
|
|
2478
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2479
|
-
*
|
|
2480
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
2481
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2482
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2483
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
2484
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2485
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2486
2072
|
*/
|
|
2487
2073
|
heat_pump_maximal_distance_drillings_5m: number | null;
|
|
2488
2074
|
/**
|
|
@@ -2497,15 +2083,6 @@ type LookupPropertiesV3 = {
|
|
|
2497
2083
|
* <br /><br />**Deprecation Warning:**<br /><br />
|
|
2498
2084
|
*
|
|
2499
2085
|
* Please use `heat_pump_minimal_number_possible_drillings_5m` instead of this field.
|
|
2500
|
-
*
|
|
2501
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2502
|
-
*
|
|
2503
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
2504
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2505
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2506
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
2507
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2508
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2509
2086
|
* @deprecated
|
|
2510
2087
|
*/
|
|
2511
2088
|
heat_pump_minimal_number_possible_drillings: number | null;
|
|
@@ -2516,15 +2093,6 @@ type LookupPropertiesV3 = {
|
|
|
2516
2093
|
* to the parcel border.
|
|
2517
2094
|
*
|
|
2518
2095
|
* The field is set to `null` if the information is unknown.
|
|
2519
|
-
*
|
|
2520
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2521
|
-
*
|
|
2522
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
2523
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2524
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2525
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
2526
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2527
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2528
2096
|
*/
|
|
2529
2097
|
heat_pump_minimal_number_possible_drillings_5m: number | null;
|
|
2530
2098
|
/**
|
|
@@ -2534,15 +2102,6 @@ type LookupPropertiesV3 = {
|
|
|
2534
2102
|
* to the parcel border.
|
|
2535
2103
|
*
|
|
2536
2104
|
* The field is set to `null` if the information is unknown.
|
|
2537
|
-
*
|
|
2538
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2539
|
-
*
|
|
2540
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
2541
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2542
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2543
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
2544
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2545
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2546
2105
|
*/
|
|
2547
2106
|
heat_pump_minimal_number_possible_drillings_2m: number | null;
|
|
2548
2107
|
/**
|
|
@@ -2551,15 +2110,6 @@ type LookupPropertiesV3 = {
|
|
|
2551
2110
|
* number of drillings required for a heat pump installation with no distance to the parcel border.
|
|
2552
2111
|
*
|
|
2553
2112
|
* The field is set to `null` if the information is unknown.
|
|
2554
|
-
*
|
|
2555
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2556
|
-
*
|
|
2557
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
2558
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2559
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2560
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
2561
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2562
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2563
2113
|
*/
|
|
2564
2114
|
heat_pump_minimal_number_possible_drillings_no_distance: number | null;
|
|
2565
2115
|
/**
|
|
@@ -2568,16 +2118,6 @@ type LookupPropertiesV3 = {
|
|
|
2568
2118
|
* for a collector heat pump on parcels associated to a building.
|
|
2569
2119
|
*
|
|
2570
2120
|
* The field is set to `null` if the information is unknown.
|
|
2571
|
-
*
|
|
2572
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2573
|
-
*
|
|
2574
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
2575
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2576
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2577
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
2578
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2579
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2580
|
-
*
|
|
2581
2121
|
*/
|
|
2582
2122
|
heat_pump_collector_free_area: number | null;
|
|
2583
2123
|
/**
|
|
@@ -2599,12 +2139,6 @@ type LookupPropertiesV3 = {
|
|
|
2599
2139
|
* measures.
|
|
2600
2140
|
*
|
|
2601
2141
|
* If this array is set to `null`, it means that no data regarding flood potential is available for the location.
|
|
2602
|
-
*
|
|
2603
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2604
|
-
*
|
|
2605
|
-
* - Flood hazard area (Überflutungsflächen-DE) <br />
|
|
2606
|
-
* © WasserBLIcK/BfG & Zuständige Behörden der Länder (2022) <br />
|
|
2607
|
-
* [Terms of Use / Nutzungsbedingungen](https://www.gesetze-im-internet.de/geonutzv/GeoNutzV.pdf)
|
|
2608
2142
|
*/
|
|
2609
2143
|
flood_potential: Array<{
|
|
2610
2144
|
min_recurrence?: number | null;
|
|
@@ -2617,12 +2151,6 @@ type LookupPropertiesV3 = {
|
|
|
2617
2151
|
* The `suitable_roof_area` field specifies the roof area suited for photovoltaics [m^2].
|
|
2618
2152
|
*
|
|
2619
2153
|
* The field is set to `null` if the roof area suited for photovoltaics is unknown.
|
|
2620
|
-
*
|
|
2621
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2622
|
-
*
|
|
2623
|
-
* - Photovoltaics Potential on Roofs (NRW) <br />
|
|
2624
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
2625
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
2626
2154
|
*/
|
|
2627
2155
|
suitable_roof_area: number | null;
|
|
2628
2156
|
/**
|
|
@@ -2630,12 +2158,6 @@ type LookupPropertiesV3 = {
|
|
|
2630
2158
|
* The `gross_collector_area` field specifies the maximal collector area for photovoltaics including module frames [m^2].
|
|
2631
2159
|
*
|
|
2632
2160
|
* The field is set to `null` if the maximal collector area for photovoltaics is unknown.
|
|
2633
|
-
*
|
|
2634
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2635
|
-
*
|
|
2636
|
-
* - Photovoltaics Potential on Roofs (NRW) <br />
|
|
2637
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
2638
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
2639
2161
|
*/
|
|
2640
2162
|
gross_collector_area: number | null;
|
|
2641
2163
|
/**
|
|
@@ -2643,12 +2165,6 @@ type LookupPropertiesV3 = {
|
|
|
2643
2165
|
* The `net_collector_area` field specifies the maximal collector area for photovoltaics excluding module frames [m^2].
|
|
2644
2166
|
*
|
|
2645
2167
|
* The field is set to `null` if the maximal collector area for photovoltaics excluding module frames is unknown.
|
|
2646
|
-
*
|
|
2647
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2648
|
-
*
|
|
2649
|
-
* - Photovoltaics Potential on Roofs (NRW) <br />
|
|
2650
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
2651
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
2652
2168
|
*/
|
|
2653
2169
|
net_collector_area: number | null;
|
|
2654
2170
|
/**
|
|
@@ -2656,12 +2172,6 @@ type LookupPropertiesV3 = {
|
|
|
2656
2172
|
* The `electricity_generation` field specifies the maximal electricity generation from photovoltaics of the building per year [kWh/a].
|
|
2657
2173
|
*
|
|
2658
2174
|
* The field is set to `null` if the maximal electricity generation per year is unknown.
|
|
2659
|
-
*
|
|
2660
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2661
|
-
*
|
|
2662
|
-
* - Photovoltaics Potential on Roofs (NRW) <br />
|
|
2663
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
2664
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
2665
2175
|
*/
|
|
2666
2176
|
electricity_generation: number | null;
|
|
2667
2177
|
/**
|
|
@@ -2669,12 +2179,6 @@ type LookupPropertiesV3 = {
|
|
|
2669
2179
|
* The `nominal_power` field specifies the nominal power a photovoltaics system could have at this building per year [kWp].
|
|
2670
2180
|
*
|
|
2671
2181
|
* The field is set to `null` if the the nominal power is unknown.
|
|
2672
|
-
*
|
|
2673
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2674
|
-
*
|
|
2675
|
-
* - Photovoltaics Potential on Roofs (NRW) <br />
|
|
2676
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
2677
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
2678
2182
|
*/
|
|
2679
2183
|
nominal_power: number | null;
|
|
2680
2184
|
};
|
|
@@ -2684,12 +2188,6 @@ type LookupPropertiesV3 = {
|
|
|
2684
2188
|
* The `st_suitable_roof_area` field specifies the roof area suited for solarthermie [m^2].
|
|
2685
2189
|
*
|
|
2686
2190
|
* The field is set to `null` if the roof area suited for solarthermie is unknown.
|
|
2687
|
-
*
|
|
2688
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2689
|
-
*
|
|
2690
|
-
* - Solarthermal Potential (NRW) <br />
|
|
2691
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
2692
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
2693
2191
|
*/
|
|
2694
2192
|
suitable_roof_area: number | null;
|
|
2695
2193
|
/**
|
|
@@ -2697,12 +2195,6 @@ type LookupPropertiesV3 = {
|
|
|
2697
2195
|
* The `st_heat_generation` field specifies the potential solarthermic heat generation on this bulding [kWh/a].
|
|
2698
2196
|
*
|
|
2699
2197
|
* The field is set to `null` if the heat generation by solarthermie is unknown.
|
|
2700
|
-
*
|
|
2701
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2702
|
-
*
|
|
2703
|
-
* - Solarthermal Potential (NRW) <br />
|
|
2704
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
2705
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
2706
2198
|
*/
|
|
2707
2199
|
heat_generation: number | null;
|
|
2708
2200
|
/**
|
|
@@ -2710,12 +2202,6 @@ type LookupPropertiesV3 = {
|
|
|
2710
2202
|
* The `st_net_collector_area` field specifies the maximal collector area for solarthermie [m^2].
|
|
2711
2203
|
*
|
|
2712
2204
|
* The field is set to `null` if the maximal collector area for solarthermie is unknown.
|
|
2713
|
-
*
|
|
2714
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2715
|
-
*
|
|
2716
|
-
* - Solarthermal Potential (NRW) <br />
|
|
2717
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
2718
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
2719
2205
|
*/
|
|
2720
2206
|
net_collector_area: number | null;
|
|
2721
2207
|
};
|
|
@@ -3246,6 +2732,32 @@ type LookupPropertiesV3 = {
|
|
|
3246
2732
|
* The field is set to `null` if the purchasing power is unknown.
|
|
3247
2733
|
*/
|
|
3248
2734
|
purchasing_power?: number | null;
|
|
2735
|
+
/**
|
|
2736
|
+
*
|
|
2737
|
+
* The `building_volume_ratio_weighted` field specifies the weighted building volume ratio (also known as "Baumassezahl") of the building. This value represents the density context a building is situated in, rather than isolating its individual volume contribution.
|
|
2738
|
+
*
|
|
2739
|
+
* The building volume ratio is conceptually defined as building volume divided by parcel area, where building volume is calculated as footprint area multiplied by roof height (estimated as the average of ridge_above_ground_weighted and eave_above_ground_weighted).
|
|
2740
|
+
*
|
|
2741
|
+
* Since our data is associated with buildings rather than parcels, this weighted calculation accounts for cases where buildings share parcels. The value is computed by:
|
|
2742
|
+
* 1. Summing the building volume per parcel across all associated buildings
|
|
2743
|
+
* 2. Dividing by the sum of corresponding parcel areas across all associated buildings
|
|
2744
|
+
*
|
|
2745
|
+
* If `number_parcels_per_building == 1`, then this value is equivalent to an unaggregated building volume ratio.
|
|
2746
|
+
*
|
|
2747
|
+
* The field is set to `null` if the building volume ratio is unknown.
|
|
2748
|
+
*/
|
|
2749
|
+
building_volume_ratio_weighted?: number | null;
|
|
2750
|
+
/**
|
|
2751
|
+
*
|
|
2752
|
+
* The `number_parcels_per_building` field specifies the number of parcels a building is associated with. This value provides context for the weighted nature of the `building_volume_ratio_weighted` attribute.
|
|
2753
|
+
*
|
|
2754
|
+
* When `number_parcels_per_building == 1`, the `building_volume_ratio_weighted` is equivalent to an unaggregated building volume ratio. When the value is greater than 1, it indicates that the building is situated on multiple parcels, and the weighted calculation accounts for this shared context.
|
|
2755
|
+
*
|
|
2756
|
+
* This information is useful for understanding the density context of a building and interpreting the weighted building volume ratio calculation.
|
|
2757
|
+
*
|
|
2758
|
+
* The field is set to `null` if the number of parcels is unknown.
|
|
2759
|
+
*/
|
|
2760
|
+
number_parcels_per_building?: number | null;
|
|
3249
2761
|
};
|
|
3250
2762
|
/**
|
|
3251
2763
|
*
|