@viadukt/connect 2.5.0 → 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 +76 -602
- package/dist/index.js +70 -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
|
};
|
|
@@ -1083,11 +1083,9 @@ declare const $LookupPropertiesV3: {
|
|
|
1083
1083
|
type LookupPropertiesV2 = {
|
|
1084
1084
|
/**
|
|
1085
1085
|
*
|
|
1086
|
-
*
|
|
1086
|
+
* The `street` field specifies the street name of a building.
|
|
1087
1087
|
*
|
|
1088
|
-
*
|
|
1089
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1090
|
-
* [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.
|
|
1091
1089
|
*/
|
|
1092
1090
|
street: string | null;
|
|
1093
1091
|
/**
|
|
@@ -1095,12 +1093,6 @@ type LookupPropertiesV2 = {
|
|
|
1095
1093
|
* The `city` field specifies the city name of a building.
|
|
1096
1094
|
*
|
|
1097
1095
|
* The field is set to `null` if the city is unknown.
|
|
1098
|
-
*
|
|
1099
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1100
|
-
*
|
|
1101
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1102
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1103
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1104
1096
|
*/
|
|
1105
1097
|
city: string | null;
|
|
1106
1098
|
/**
|
|
@@ -1108,12 +1100,6 @@ type LookupPropertiesV2 = {
|
|
|
1108
1100
|
* The `street_number` field specifies the street number name of a building.
|
|
1109
1101
|
*
|
|
1110
1102
|
* The field is set to `null` if the street number is unknown.
|
|
1111
|
-
*
|
|
1112
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1113
|
-
*
|
|
1114
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1115
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1116
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1117
1103
|
*/
|
|
1118
1104
|
street_number: string | null;
|
|
1119
1105
|
/**
|
|
@@ -1121,12 +1107,6 @@ type LookupPropertiesV2 = {
|
|
|
1121
1107
|
* The `postcode` field specifies the postcode of a building.
|
|
1122
1108
|
*
|
|
1123
1109
|
* The field is set to `null` if the postcode is unknown.
|
|
1124
|
-
*
|
|
1125
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1126
|
-
*
|
|
1127
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1128
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1129
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1130
1110
|
*/
|
|
1131
1111
|
postcode: string | null;
|
|
1132
1112
|
/**
|
|
@@ -1138,12 +1118,6 @@ type LookupPropertiesV2 = {
|
|
|
1138
1118
|
* - **mixed**: Mixed types of roofs
|
|
1139
1119
|
*
|
|
1140
1120
|
* The field is set to `null` if the building type is unknown.
|
|
1141
|
-
*
|
|
1142
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1143
|
-
*
|
|
1144
|
-
* - Solarthermal Potential (NRW) <br />
|
|
1145
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
1146
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
1147
1121
|
*/
|
|
1148
1122
|
roof_type: 'flat' | 'pitched' | 'mixed' | null;
|
|
1149
1123
|
/**
|
|
@@ -1156,12 +1130,6 @@ type LookupPropertiesV2 = {
|
|
|
1156
1130
|
* - **mixed_use**: Mixed-use building
|
|
1157
1131
|
*
|
|
1158
1132
|
* The field is set to `null` if the building type is unknown.
|
|
1159
|
-
*
|
|
1160
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1161
|
-
*
|
|
1162
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1163
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1164
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1165
1133
|
*/
|
|
1166
1134
|
type: 'single_family' | 'multi_family' | 'non_residential' | 'mixed_use' | null;
|
|
1167
1135
|
/**
|
|
@@ -1174,12 +1142,6 @@ type LookupPropertiesV2 = {
|
|
|
1174
1142
|
* - **4**: Mixed-use building
|
|
1175
1143
|
*
|
|
1176
1144
|
* The field is set to `null` if the building type is unknown.
|
|
1177
|
-
*
|
|
1178
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1179
|
-
*
|
|
1180
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1181
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1182
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1183
1145
|
*/
|
|
1184
1146
|
type_class: number | null;
|
|
1185
1147
|
/**
|
|
@@ -1187,21 +1149,6 @@ type LookupPropertiesV2 = {
|
|
|
1187
1149
|
* The `water_protected` field specifies whether the building is within a water protection area.
|
|
1188
1150
|
*
|
|
1189
1151
|
* If the field is set to `null`, no water protection area could be assigned.
|
|
1190
|
-
*
|
|
1191
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1192
|
-
*
|
|
1193
|
-
* - Water Protection Areas (Germany ex. Rheinland-Pfalz, Baden-Würtemberg, NRW) <br />
|
|
1194
|
-
* © WasserBLIcK/BfG & Zuständige Behörden der Länder (2024) <br />
|
|
1195
|
-
* [Datasources / Datenquellen](https://geoportal.bafg.de/inspire/download/AM/waterProtectionArea/datasetfeed.xml)
|
|
1196
|
-
* - Water Protection Areas (Rheinland-Pfalz) <br />
|
|
1197
|
-
* © Landesamt für Umwelt (LfU) (2024) <br />
|
|
1198
|
-
* [Datasources / Datenquellen](https://geodienste-wasser.rlp-umwelt.de/geonetwork/srv/ger/catalog.search;jsessionid=7E55E5AFBC8BF10DBE2ABEE3FA110723#/metadata/17a6a735-8bd0-4258-ae32-883c8a8f4af5)
|
|
1199
|
-
* - Water Protection Areas (Baden-Würtemberg) <br />
|
|
1200
|
-
* © Landesanstalt für Umwelt Baden-Würtemberg (LUBW) (2024) <br />
|
|
1201
|
-
* [Datasources / Datenquellen](https://rips-metadaten.lubw.de/trefferanzeige?docuuid=ec2d7bcc-1f56-4596-bbc0-459ddb6a1a82)
|
|
1202
|
-
* - Water Protection Areas (Nordrhein-Westfalen) <br />
|
|
1203
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW <br />
|
|
1204
|
-
* Fachbereich 56: Wasserwirtschaftlicher Datenverbund, ELWAS-Geschäftsstelle, 2024
|
|
1205
1152
|
*/
|
|
1206
1153
|
water_protected: boolean | null;
|
|
1207
1154
|
/**
|
|
@@ -1209,12 +1156,6 @@ type LookupPropertiesV2 = {
|
|
|
1209
1156
|
* The `heated` field specifies whether the building is heated or not.
|
|
1210
1157
|
*
|
|
1211
1158
|
* The field is set to `null` if the heating status is unknown.
|
|
1212
|
-
*
|
|
1213
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1214
|
-
*
|
|
1215
|
-
* - Gebäudefunktionsklasse (GFK) (Manual Assignment of the Heating Status) <br />
|
|
1216
|
-
* © Geodateninfrastruktur Deutschland (2024) <br />
|
|
1217
|
-
* [Datasources / Datenquellen](https://repository.gdi-de.org/schemas/adv/citygml/Codelisten/BuildingFunctionTypeAdV.xml)
|
|
1218
1159
|
*/
|
|
1219
1160
|
heated: boolean | null;
|
|
1220
1161
|
/**
|
|
@@ -1222,12 +1163,6 @@ type LookupPropertiesV2 = {
|
|
|
1222
1163
|
* The `heat_demand` field specifies the heat demand of the building in [kWh/m²a].
|
|
1223
1164
|
*
|
|
1224
1165
|
* The field is set to `null` if the heat demand is unknown.
|
|
1225
|
-
*
|
|
1226
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1227
|
-
*
|
|
1228
|
-
* - Kommunale Wärmeplanung NRW (KWP-NRW) <br />
|
|
1229
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024)<br />
|
|
1230
|
-
* [Datasources / Datenquellen]https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/kwp/)
|
|
1231
1166
|
*/
|
|
1232
1167
|
heat_demand: number | null;
|
|
1233
1168
|
/**
|
|
@@ -1246,12 +1181,6 @@ type LookupPropertiesV2 = {
|
|
|
1246
1181
|
*
|
|
1247
1182
|
* If the height category is unknown, the field is set to `null`.
|
|
1248
1183
|
*
|
|
1249
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1250
|
-
*
|
|
1251
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1252
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1253
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1254
|
-
*
|
|
1255
1184
|
* <br /><br />**Warning:**<br /><br />
|
|
1256
1185
|
*
|
|
1257
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.
|
|
@@ -1275,12 +1204,6 @@ type LookupPropertiesV2 = {
|
|
|
1275
1204
|
*
|
|
1276
1205
|
* The field is set to `null` if the number of height category is unknown.
|
|
1277
1206
|
*
|
|
1278
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1279
|
-
*
|
|
1280
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1281
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1282
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1283
|
-
*
|
|
1284
1207
|
* <br /><br />**Warning:**<br /><br />
|
|
1285
1208
|
*
|
|
1286
1209
|
* This field is deprecated and will be no longer supported in future datasets.
|
|
@@ -1292,14 +1215,6 @@ type LookupPropertiesV2 = {
|
|
|
1292
1215
|
* The `levels` field specifies the number of levels in the building.
|
|
1293
1216
|
*
|
|
1294
1217
|
* The field is set to `null` if the number of levels is unknown.
|
|
1295
|
-
*
|
|
1296
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1297
|
-
*
|
|
1298
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1299
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1300
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1301
|
-
* - Additionally, this field is enhanced using a proprietary machine learning model developed to estimate levels
|
|
1302
|
-
* where explicit data is unavailable.
|
|
1303
1218
|
*/
|
|
1304
1219
|
levels: number | null;
|
|
1305
1220
|
/**
|
|
@@ -1307,12 +1222,6 @@ type LookupPropertiesV2 = {
|
|
|
1307
1222
|
* The `household_count` field specifies the number of households in the building.
|
|
1308
1223
|
*
|
|
1309
1224
|
* The field is set to `null` if the number of households is unknown.
|
|
1310
|
-
*
|
|
1311
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1312
|
-
*
|
|
1313
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1314
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1315
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1316
1225
|
*/
|
|
1317
1226
|
household_count: number | null;
|
|
1318
1227
|
/**
|
|
@@ -1343,12 +1252,6 @@ type LookupPropertiesV2 = {
|
|
|
1343
1252
|
*
|
|
1344
1253
|
* If the usage is unknown, the field is set to `null`.
|
|
1345
1254
|
*
|
|
1346
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1347
|
-
*
|
|
1348
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1349
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1350
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1351
|
-
*
|
|
1352
1255
|
* <br /><br />**Warning:**<br /><br />
|
|
1353
1256
|
*
|
|
1354
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.
|
|
@@ -1365,12 +1268,6 @@ type LookupPropertiesV2 = {
|
|
|
1365
1268
|
*
|
|
1366
1269
|
* If the usage is unknown, the field is set to `null`.
|
|
1367
1270
|
*
|
|
1368
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1369
|
-
*
|
|
1370
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1371
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1372
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1373
|
-
*
|
|
1374
1271
|
* <br /><br />**Warning:**<br /><br />
|
|
1375
1272
|
*
|
|
1376
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.
|
|
@@ -1393,12 +1290,6 @@ type LookupPropertiesV2 = {
|
|
|
1393
1290
|
* - **factory_warehouse**: Factory or warehouse building
|
|
1394
1291
|
*
|
|
1395
1292
|
* If the characteristics is unknown, the field is set to `null`.
|
|
1396
|
-
*
|
|
1397
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1398
|
-
*
|
|
1399
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1400
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1401
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1402
1293
|
*/
|
|
1403
1294
|
characteristics: 'single_two_family' | 'row_semi_detached' | 'multi_family' | 'residential_block' | 'high_rise' | 'terrace' | 'farmhouse' | 'office_other' | 'factory_warehouse' | null;
|
|
1404
1295
|
/**
|
|
@@ -1417,12 +1308,6 @@ type LookupPropertiesV2 = {
|
|
|
1417
1308
|
* - **9**: Factory or warehouse building
|
|
1418
1309
|
*
|
|
1419
1310
|
* If the characteristics_class is unknown, the field is set to `null`.
|
|
1420
|
-
*
|
|
1421
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1422
|
-
*
|
|
1423
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1424
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1425
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1426
1311
|
*/
|
|
1427
1312
|
characteristics_class: number | null;
|
|
1428
1313
|
/**
|
|
@@ -1482,12 +1367,6 @@ type LookupPropertiesV2 = {
|
|
|
1482
1367
|
* - **[2016, 2024]**
|
|
1483
1368
|
*
|
|
1484
1369
|
* If the construction year class is unknown, the field is set to `null`.
|
|
1485
|
-
*
|
|
1486
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1487
|
-
*
|
|
1488
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1489
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1490
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1491
1370
|
*/
|
|
1492
1371
|
construction_year_range: unknown[] | null;
|
|
1493
1372
|
/**
|
|
@@ -1508,12 +1387,6 @@ type LookupPropertiesV2 = {
|
|
|
1508
1387
|
* - **12**: 2016 - 2024
|
|
1509
1388
|
*
|
|
1510
1389
|
* If the construction year range class is unknown, the field is set to `null`.
|
|
1511
|
-
*
|
|
1512
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1513
|
-
*
|
|
1514
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1515
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1516
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1517
1390
|
*/
|
|
1518
1391
|
construction_year_range_class: number | null;
|
|
1519
1392
|
/**
|
|
@@ -1535,12 +1408,6 @@ type LookupPropertiesV2 = {
|
|
|
1535
1408
|
* The `geo_conductivity_100` field specifies the geothermal conductivity in 100 m depth.
|
|
1536
1409
|
*
|
|
1537
1410
|
* The field is set to `null` if the geothermal conductivity is unknown.
|
|
1538
|
-
*
|
|
1539
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1540
|
-
*
|
|
1541
|
-
* - Geothermic Potential in 100 m depth (NRW) <br />
|
|
1542
|
-
* © Geologischer Dienst (GD) NRW (2024) <br />
|
|
1543
|
-
* [Datasources / Datenquellen](https://open.nrw/dataset/912ad0a6-5eb4-4df3-a19f-908c33650964)
|
|
1544
1411
|
*/
|
|
1545
1412
|
geo_conductivity_100: number | null;
|
|
1546
1413
|
/**
|
|
@@ -1550,15 +1417,6 @@ type LookupPropertiesV2 = {
|
|
|
1550
1417
|
* - Set to `true` if an air-source heat pump is feasible.
|
|
1551
1418
|
* - Set to `false` if an air-source heat pump is not feasible.
|
|
1552
1419
|
* - Set to `null` if the information is unknown.
|
|
1553
|
-
*
|
|
1554
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1555
|
-
*
|
|
1556
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
1557
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1558
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1559
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
1560
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1561
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1562
1420
|
*/
|
|
1563
1421
|
heat_pump_air_possible: boolean | null;
|
|
1564
1422
|
/**
|
|
@@ -1567,15 +1425,6 @@ type LookupPropertiesV2 = {
|
|
|
1567
1425
|
* This field will be deprecated in future versions. Please use `heat_pump_maximal_distance_drillings_5m` instead.
|
|
1568
1426
|
*
|
|
1569
1427
|
* The field is set to `null` if the information is unknown.
|
|
1570
|
-
*
|
|
1571
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1572
|
-
*
|
|
1573
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
1574
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1575
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1576
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
1577
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1578
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1579
1428
|
*/
|
|
1580
1429
|
heat_pump_maximal_distance_drillings: number | null;
|
|
1581
1430
|
/**
|
|
@@ -1583,15 +1432,6 @@ type LookupPropertiesV2 = {
|
|
|
1583
1432
|
* The `heat_pump_maximal_distance_drillings_5m` field specifies the maximum allowable distance between drillings for a heat pump installation, measured in meters.
|
|
1584
1433
|
*
|
|
1585
1434
|
* The field is set to `null` if the information is unknown.
|
|
1586
|
-
*
|
|
1587
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1588
|
-
*
|
|
1589
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
1590
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1591
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1592
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
1593
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1594
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1595
1435
|
*/
|
|
1596
1436
|
heat_pump_maximal_distance_drillings_5m: number | null;
|
|
1597
1437
|
/**
|
|
@@ -1606,15 +1446,6 @@ type LookupPropertiesV2 = {
|
|
|
1606
1446
|
* <br /><br />**Deprecation Warning:**<br /><br />
|
|
1607
1447
|
*
|
|
1608
1448
|
* Please use `heat_pump_minimal_number_possible_drillings_5m` instead of this field.
|
|
1609
|
-
*
|
|
1610
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1611
|
-
*
|
|
1612
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
1613
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1614
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1615
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
1616
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1617
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1618
1449
|
* @deprecated
|
|
1619
1450
|
*/
|
|
1620
1451
|
heat_pump_minimal_number_possible_drillings: number | null;
|
|
@@ -1625,15 +1456,6 @@ type LookupPropertiesV2 = {
|
|
|
1625
1456
|
* to the parcel border.
|
|
1626
1457
|
*
|
|
1627
1458
|
* The field is set to `null` if the information is unknown.
|
|
1628
|
-
*
|
|
1629
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1630
|
-
*
|
|
1631
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
1632
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1633
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1634
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
1635
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1636
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1637
1459
|
*/
|
|
1638
1460
|
heat_pump_minimal_number_possible_drillings_5m: number | null;
|
|
1639
1461
|
/**
|
|
@@ -1643,15 +1465,6 @@ type LookupPropertiesV2 = {
|
|
|
1643
1465
|
* to the parcel border.
|
|
1644
1466
|
*
|
|
1645
1467
|
* The field is set to `null` if the information is unknown.
|
|
1646
|
-
*
|
|
1647
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1648
|
-
*
|
|
1649
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
1650
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1651
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1652
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
1653
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1654
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1655
1468
|
*/
|
|
1656
1469
|
heat_pump_minimal_number_possible_drillings_2m: number | null;
|
|
1657
1470
|
/**
|
|
@@ -1660,15 +1473,6 @@ type LookupPropertiesV2 = {
|
|
|
1660
1473
|
* number of drillings required for a heat pump installation with no distance to the parcel border.
|
|
1661
1474
|
*
|
|
1662
1475
|
* The field is set to `null` if the information is unknown.
|
|
1663
|
-
*
|
|
1664
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1665
|
-
*
|
|
1666
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
1667
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1668
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1669
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
1670
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1671
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1672
1476
|
*/
|
|
1673
1477
|
heat_pump_minimal_number_possible_drillings_no_distance: number | null;
|
|
1674
1478
|
/**
|
|
@@ -1677,16 +1481,6 @@ type LookupPropertiesV2 = {
|
|
|
1677
1481
|
* for a collector heat pump on parcels associated to a building.
|
|
1678
1482
|
*
|
|
1679
1483
|
* The field is set to `null` if the information is unknown.
|
|
1680
|
-
*
|
|
1681
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1682
|
-
*
|
|
1683
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
1684
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1685
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1686
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
1687
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
1688
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
1689
|
-
*
|
|
1690
1484
|
*/
|
|
1691
1485
|
heat_pump_collector_free_area: number | null;
|
|
1692
1486
|
/**
|
|
@@ -1708,12 +1502,6 @@ type LookupPropertiesV2 = {
|
|
|
1708
1502
|
* measures.
|
|
1709
1503
|
*
|
|
1710
1504
|
* If this array is set to `null`, it means that no data regarding flood potential is available for the location.
|
|
1711
|
-
*
|
|
1712
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1713
|
-
*
|
|
1714
|
-
* - Flood hazard area (Überflutungsflächen-DE) <br />
|
|
1715
|
-
* © WasserBLIcK/BfG & Zuständige Behörden der Länder (2022) <br />
|
|
1716
|
-
* [Terms of Use / Nutzungsbedingungen](https://www.gesetze-im-internet.de/geonutzv/GeoNutzV.pdf)
|
|
1717
1505
|
*/
|
|
1718
1506
|
flood_potential: Array<{
|
|
1719
1507
|
min_recurrence?: number | null;
|
|
@@ -1726,12 +1514,6 @@ type LookupPropertiesV2 = {
|
|
|
1726
1514
|
* The `suitable_roof_area` field specifies the roof area suited for photovoltaics [m^2].
|
|
1727
1515
|
*
|
|
1728
1516
|
* The field is set to `null` if the roof area suited for photovoltaics is unknown.
|
|
1729
|
-
*
|
|
1730
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1731
|
-
*
|
|
1732
|
-
* - Photovoltaics Potential on Roofs (NRW) <br />
|
|
1733
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
1734
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
1735
1517
|
*/
|
|
1736
1518
|
suitable_roof_area: number | null;
|
|
1737
1519
|
/**
|
|
@@ -1739,12 +1521,6 @@ type LookupPropertiesV2 = {
|
|
|
1739
1521
|
* The `gross_collector_area` field specifies the maximal collector area for photovoltaics including module frames [m^2].
|
|
1740
1522
|
*
|
|
1741
1523
|
* The field is set to `null` if the maximal collector area for photovoltaics is unknown.
|
|
1742
|
-
*
|
|
1743
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1744
|
-
*
|
|
1745
|
-
* - Photovoltaics Potential on Roofs (NRW) <br />
|
|
1746
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
1747
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
1748
1524
|
*/
|
|
1749
1525
|
gross_collector_area: number | null;
|
|
1750
1526
|
/**
|
|
@@ -1752,12 +1528,6 @@ type LookupPropertiesV2 = {
|
|
|
1752
1528
|
* The `net_collector_area` field specifies the maximal collector area for photovoltaics excluding module frames [m^2].
|
|
1753
1529
|
*
|
|
1754
1530
|
* The field is set to `null` if the maximal collector area for photovoltaics excluding module frames is unknown.
|
|
1755
|
-
*
|
|
1756
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1757
|
-
*
|
|
1758
|
-
* - Photovoltaics Potential on Roofs (NRW) <br />
|
|
1759
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
1760
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
1761
1531
|
*/
|
|
1762
1532
|
net_collector_area: number | null;
|
|
1763
1533
|
/**
|
|
@@ -1765,12 +1535,6 @@ type LookupPropertiesV2 = {
|
|
|
1765
1535
|
* The `electricity_generation` field specifies the maximal electricity generation from photovoltaics of the building per year [kWh/a].
|
|
1766
1536
|
*
|
|
1767
1537
|
* The field is set to `null` if the maximal electricity generation per year is unknown.
|
|
1768
|
-
*
|
|
1769
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1770
|
-
*
|
|
1771
|
-
* - Photovoltaics Potential on Roofs (NRW) <br />
|
|
1772
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
1773
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
1774
1538
|
*/
|
|
1775
1539
|
electricity_generation: number | null;
|
|
1776
1540
|
/**
|
|
@@ -1778,12 +1542,6 @@ type LookupPropertiesV2 = {
|
|
|
1778
1542
|
* The `nominal_power` field specifies the nominal power a photovoltaics system could have at this building per year [kWp].
|
|
1779
1543
|
*
|
|
1780
1544
|
* The field is set to `null` if the the nominal power is unknown.
|
|
1781
|
-
*
|
|
1782
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1783
|
-
*
|
|
1784
|
-
* - Photovoltaics Potential on Roofs (NRW) <br />
|
|
1785
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
1786
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
1787
1545
|
*/
|
|
1788
1546
|
nominal_power: number | null;
|
|
1789
1547
|
};
|
|
@@ -1793,12 +1551,6 @@ type LookupPropertiesV2 = {
|
|
|
1793
1551
|
* The `st_suitable_roof_area` field specifies the roof area suited for solarthermie [m^2].
|
|
1794
1552
|
*
|
|
1795
1553
|
* The field is set to `null` if the roof area suited for solarthermie is unknown.
|
|
1796
|
-
*
|
|
1797
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1798
|
-
*
|
|
1799
|
-
* - Solarthermal Potential (NRW) <br />
|
|
1800
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
1801
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
1802
1554
|
*/
|
|
1803
1555
|
suitable_roof_area: number | null;
|
|
1804
1556
|
/**
|
|
@@ -1806,12 +1558,6 @@ type LookupPropertiesV2 = {
|
|
|
1806
1558
|
* The `st_heat_generation` field specifies the potential solarthermic heat generation on this bulding [kWh/a].
|
|
1807
1559
|
*
|
|
1808
1560
|
* The field is set to `null` if the heat generation by solarthermie is unknown.
|
|
1809
|
-
*
|
|
1810
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1811
|
-
*
|
|
1812
|
-
* - Solarthermal Potential (NRW) <br />
|
|
1813
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
1814
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
1815
1561
|
*/
|
|
1816
1562
|
heat_generation: number | null;
|
|
1817
1563
|
/**
|
|
@@ -1819,12 +1565,6 @@ type LookupPropertiesV2 = {
|
|
|
1819
1565
|
* The `st_net_collector_area` field specifies the maximal collector area for solarthermie [m^2].
|
|
1820
1566
|
*
|
|
1821
1567
|
* The field is set to `null` if the maximal collector area for solarthermie is unknown.
|
|
1822
|
-
*
|
|
1823
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1824
|
-
*
|
|
1825
|
-
* - Solarthermal Potential (NRW) <br />
|
|
1826
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
1827
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
1828
1568
|
*/
|
|
1829
1569
|
net_collector_area: number | null;
|
|
1830
1570
|
};
|
|
@@ -1964,12 +1704,6 @@ type LookupPropertiesV2 = {
|
|
|
1964
1704
|
* - **mixed**: Mixed types of roofs
|
|
1965
1705
|
*
|
|
1966
1706
|
* The field is set to `null` if the building type is unknown.
|
|
1967
|
-
*
|
|
1968
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1969
|
-
*
|
|
1970
|
-
* - Solarthermal Potential (NRW) <br />
|
|
1971
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
1972
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
1973
1707
|
*/
|
|
1974
1708
|
type roof_type = 'flat' | 'pitched' | 'mixed';
|
|
1975
1709
|
/**
|
|
@@ -1982,12 +1716,6 @@ type roof_type = 'flat' | 'pitched' | 'mixed';
|
|
|
1982
1716
|
* - **mixed_use**: Mixed-use building
|
|
1983
1717
|
*
|
|
1984
1718
|
* The field is set to `null` if the building type is unknown.
|
|
1985
|
-
*
|
|
1986
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
1987
|
-
*
|
|
1988
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
1989
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
1990
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
1991
1719
|
*/
|
|
1992
1720
|
type type = 'single_family' | 'multi_family' | 'non_residential' | 'mixed_use';
|
|
1993
1721
|
/**
|
|
@@ -2006,12 +1734,6 @@ type type = 'single_family' | 'multi_family' | 'non_residential' | 'mixed_use';
|
|
|
2006
1734
|
*
|
|
2007
1735
|
* If the height category is unknown, the field is set to `null`.
|
|
2008
1736
|
*
|
|
2009
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2010
|
-
*
|
|
2011
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
2012
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
2013
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
2014
|
-
*
|
|
2015
1737
|
* <br /><br />**Warning:**<br /><br />
|
|
2016
1738
|
*
|
|
2017
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.
|
|
@@ -2029,12 +1751,6 @@ type height_category = '<= 5m' | '<= 7.5m' | '<= 10m' | '<= 12.5m' | '<= 15m' |
|
|
|
2029
1751
|
*
|
|
2030
1752
|
* If the usage is unknown, the field is set to `null`.
|
|
2031
1753
|
*
|
|
2032
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2033
|
-
*
|
|
2034
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
2035
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
2036
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
2037
|
-
*
|
|
2038
1754
|
* <br /><br />**Warning:**<br /><br />
|
|
2039
1755
|
*
|
|
2040
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.
|
|
@@ -2057,12 +1773,6 @@ type usage = 'residential' | 'non_residential' | 'mixed_use';
|
|
|
2057
1773
|
* - **factory_warehouse**: Factory or warehouse building
|
|
2058
1774
|
*
|
|
2059
1775
|
* If the characteristics is unknown, the field is set to `null`.
|
|
2060
|
-
*
|
|
2061
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2062
|
-
*
|
|
2063
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
2064
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
2065
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
2066
1776
|
*/
|
|
2067
1777
|
type characteristics = 'single_two_family' | 'row_semi_detached' | 'multi_family' | 'residential_block' | 'high_rise' | 'terrace' | 'farmhouse' | 'office_other' | 'factory_warehouse';
|
|
2068
1778
|
/**
|
|
@@ -2087,11 +1797,9 @@ type development_layout = 'non_detached' | 'semi_detached' | 'detached';
|
|
|
2087
1797
|
type LookupPropertiesV3 = {
|
|
2088
1798
|
/**
|
|
2089
1799
|
*
|
|
2090
|
-
*
|
|
1800
|
+
* The `street` field specifies the street name of a building.
|
|
2091
1801
|
*
|
|
2092
|
-
*
|
|
2093
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
2094
|
-
* [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.
|
|
2095
1803
|
*/
|
|
2096
1804
|
street: string | null;
|
|
2097
1805
|
/**
|
|
@@ -2099,12 +1807,6 @@ type LookupPropertiesV3 = {
|
|
|
2099
1807
|
* The `city` field specifies the city name of a building.
|
|
2100
1808
|
*
|
|
2101
1809
|
* The field is set to `null` if the city is unknown.
|
|
2102
|
-
*
|
|
2103
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2104
|
-
*
|
|
2105
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
2106
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
2107
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
2108
1810
|
*/
|
|
2109
1811
|
city: string | null;
|
|
2110
1812
|
/**
|
|
@@ -2112,12 +1814,6 @@ type LookupPropertiesV3 = {
|
|
|
2112
1814
|
* The `street_number` field specifies the street number name of a building.
|
|
2113
1815
|
*
|
|
2114
1816
|
* The field is set to `null` if the street number is unknown.
|
|
2115
|
-
*
|
|
2116
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2117
|
-
*
|
|
2118
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
2119
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
2120
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
2121
1817
|
*/
|
|
2122
1818
|
street_number: string | null;
|
|
2123
1819
|
/**
|
|
@@ -2125,12 +1821,6 @@ type LookupPropertiesV3 = {
|
|
|
2125
1821
|
* The `postcode` field specifies the postcode of a building.
|
|
2126
1822
|
*
|
|
2127
1823
|
* The field is set to `null` if the postcode is unknown.
|
|
2128
|
-
*
|
|
2129
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2130
|
-
*
|
|
2131
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
2132
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
2133
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
2134
1824
|
*/
|
|
2135
1825
|
postcode: string | null;
|
|
2136
1826
|
/**
|
|
@@ -2142,12 +1832,6 @@ type LookupPropertiesV3 = {
|
|
|
2142
1832
|
* - **mixed**: Mixed types of roofs
|
|
2143
1833
|
*
|
|
2144
1834
|
* The field is set to `null` if the building type is unknown.
|
|
2145
|
-
*
|
|
2146
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2147
|
-
*
|
|
2148
|
-
* - Solarthermal Potential (NRW) <br />
|
|
2149
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
2150
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
2151
1835
|
*/
|
|
2152
1836
|
roof_type: 'flat' | 'pitched' | 'mixed' | null;
|
|
2153
1837
|
/**
|
|
@@ -2160,12 +1844,6 @@ type LookupPropertiesV3 = {
|
|
|
2160
1844
|
* - **mixed_use**: Mixed-use building
|
|
2161
1845
|
*
|
|
2162
1846
|
* The field is set to `null` if the building type is unknown.
|
|
2163
|
-
*
|
|
2164
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2165
|
-
*
|
|
2166
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
2167
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
2168
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
2169
1847
|
*/
|
|
2170
1848
|
type: 'single_family' | 'multi_family' | 'non_residential' | 'mixed_use' | null;
|
|
2171
1849
|
/**
|
|
@@ -2178,12 +1856,6 @@ type LookupPropertiesV3 = {
|
|
|
2178
1856
|
* - **4**: Mixed-use building
|
|
2179
1857
|
*
|
|
2180
1858
|
* The field is set to `null` if the building type is unknown.
|
|
2181
|
-
*
|
|
2182
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2183
|
-
*
|
|
2184
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
2185
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
2186
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
2187
1859
|
*/
|
|
2188
1860
|
type_class: number | null;
|
|
2189
1861
|
/**
|
|
@@ -2191,21 +1863,6 @@ type LookupPropertiesV3 = {
|
|
|
2191
1863
|
* The `water_protected` field specifies whether the building is within a water protection area.
|
|
2192
1864
|
*
|
|
2193
1865
|
* If the field is set to `null`, no water protection area could be assigned.
|
|
2194
|
-
*
|
|
2195
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2196
|
-
*
|
|
2197
|
-
* - Water Protection Areas (Germany ex. Rheinland-Pfalz, Baden-Würtemberg, NRW) <br />
|
|
2198
|
-
* © WasserBLIcK/BfG & Zuständige Behörden der Länder (2024) <br />
|
|
2199
|
-
* [Datasources / Datenquellen](https://geoportal.bafg.de/inspire/download/AM/waterProtectionArea/datasetfeed.xml)
|
|
2200
|
-
* - Water Protection Areas (Rheinland-Pfalz) <br />
|
|
2201
|
-
* © Landesamt für Umwelt (LfU) (2024) <br />
|
|
2202
|
-
* [Datasources / Datenquellen](https://geodienste-wasser.rlp-umwelt.de/geonetwork/srv/ger/catalog.search;jsessionid=7E55E5AFBC8BF10DBE2ABEE3FA110723#/metadata/17a6a735-8bd0-4258-ae32-883c8a8f4af5)
|
|
2203
|
-
* - Water Protection Areas (Baden-Würtemberg) <br />
|
|
2204
|
-
* © Landesanstalt für Umwelt Baden-Würtemberg (LUBW) (2024) <br />
|
|
2205
|
-
* [Datasources / Datenquellen](https://rips-metadaten.lubw.de/trefferanzeige?docuuid=ec2d7bcc-1f56-4596-bbc0-459ddb6a1a82)
|
|
2206
|
-
* - Water Protection Areas (Nordrhein-Westfalen) <br />
|
|
2207
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW <br />
|
|
2208
|
-
* Fachbereich 56: Wasserwirtschaftlicher Datenverbund, ELWAS-Geschäftsstelle, 2024
|
|
2209
1866
|
*/
|
|
2210
1867
|
water_protected: boolean | null;
|
|
2211
1868
|
/**
|
|
@@ -2213,12 +1870,6 @@ type LookupPropertiesV3 = {
|
|
|
2213
1870
|
* The `heated` field specifies whether the building is heated or not.
|
|
2214
1871
|
*
|
|
2215
1872
|
* The field is set to `null` if the heating status is unknown.
|
|
2216
|
-
*
|
|
2217
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2218
|
-
*
|
|
2219
|
-
* - Gebäudefunktionsklasse (GFK) (Manual Assignment of the Heating Status) <br />
|
|
2220
|
-
* © Geodateninfrastruktur Deutschland (2024) <br />
|
|
2221
|
-
* [Datasources / Datenquellen](https://repository.gdi-de.org/schemas/adv/citygml/Codelisten/BuildingFunctionTypeAdV.xml)
|
|
2222
1873
|
*/
|
|
2223
1874
|
heated: boolean | null;
|
|
2224
1875
|
/**
|
|
@@ -2226,12 +1877,6 @@ type LookupPropertiesV3 = {
|
|
|
2226
1877
|
* The `heat_demand` field specifies the heat demand of the building in [kWh/m²a].
|
|
2227
1878
|
*
|
|
2228
1879
|
* The field is set to `null` if the heat demand is unknown.
|
|
2229
|
-
*
|
|
2230
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2231
|
-
*
|
|
2232
|
-
* - Kommunale Wärmeplanung NRW (KWP-NRW) <br />
|
|
2233
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024)<br />
|
|
2234
|
-
* [Datasources / Datenquellen]https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/kwp/)
|
|
2235
1880
|
*/
|
|
2236
1881
|
heat_demand: number | null;
|
|
2237
1882
|
/**
|
|
@@ -2239,14 +1884,6 @@ type LookupPropertiesV3 = {
|
|
|
2239
1884
|
* The `levels` field specifies the number of levels in the building.
|
|
2240
1885
|
*
|
|
2241
1886
|
* The field is set to `null` if the number of levels is unknown.
|
|
2242
|
-
*
|
|
2243
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2244
|
-
*
|
|
2245
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
2246
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
2247
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
2248
|
-
* - Additionally, this field is enhanced using a proprietary machine learning model developed to estimate levels
|
|
2249
|
-
* where explicit data is unavailable.
|
|
2250
1887
|
*/
|
|
2251
1888
|
levels: number | null;
|
|
2252
1889
|
/**
|
|
@@ -2254,12 +1891,6 @@ type LookupPropertiesV3 = {
|
|
|
2254
1891
|
* The `household_count` field specifies the number of households in the building.
|
|
2255
1892
|
*
|
|
2256
1893
|
* The field is set to `null` if the number of households is unknown.
|
|
2257
|
-
*
|
|
2258
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2259
|
-
*
|
|
2260
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
2261
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
2262
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
2263
1894
|
*/
|
|
2264
1895
|
household_count: number | null;
|
|
2265
1896
|
/**
|
|
@@ -2296,12 +1927,6 @@ type LookupPropertiesV3 = {
|
|
|
2296
1927
|
* - **factory_warehouse**: Factory or warehouse building
|
|
2297
1928
|
*
|
|
2298
1929
|
* If the characteristics is unknown, the field is set to `null`.
|
|
2299
|
-
*
|
|
2300
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2301
|
-
*
|
|
2302
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
2303
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
2304
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
2305
1930
|
*/
|
|
2306
1931
|
characteristics: 'single_two_family' | 'row_semi_detached' | 'multi_family' | 'residential_block' | 'high_rise' | 'terrace' | 'farmhouse' | 'office_other' | 'factory_warehouse' | null;
|
|
2307
1932
|
/**
|
|
@@ -2320,12 +1945,6 @@ type LookupPropertiesV3 = {
|
|
|
2320
1945
|
* - **9**: Factory or warehouse building
|
|
2321
1946
|
*
|
|
2322
1947
|
* If the characteristics_class is unknown, the field is set to `null`.
|
|
2323
|
-
*
|
|
2324
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2325
|
-
*
|
|
2326
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
2327
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
2328
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
2329
1948
|
*/
|
|
2330
1949
|
characteristics_class: number | null;
|
|
2331
1950
|
/**
|
|
@@ -2385,12 +2004,6 @@ type LookupPropertiesV3 = {
|
|
|
2385
2004
|
* - **[2016, 2024]**
|
|
2386
2005
|
*
|
|
2387
2006
|
* If the construction year class is unknown, the field is set to `null`.
|
|
2388
|
-
*
|
|
2389
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2390
|
-
*
|
|
2391
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
2392
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
2393
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
2394
2007
|
*/
|
|
2395
2008
|
construction_year_range: unknown[] | null;
|
|
2396
2009
|
/**
|
|
@@ -2411,12 +2024,6 @@ type LookupPropertiesV3 = {
|
|
|
2411
2024
|
* - **12**: 2016 - 2024
|
|
2412
2025
|
*
|
|
2413
2026
|
* If the construction year range class is unknown, the field is set to `null`.
|
|
2414
|
-
*
|
|
2415
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2416
|
-
*
|
|
2417
|
-
* - HH-EW-Bund (Haushalte Einwohner Bund) <br />
|
|
2418
|
-
* © Bundesamt für Kartographie und Geodäsie (2024) <br />
|
|
2419
|
-
* [Datasources / Datenquellen](https://sg.geodatenzentrum.de/web_public/Datenquellen_HH-EW-Bund.pdf)
|
|
2420
2027
|
*/
|
|
2421
2028
|
construction_year_range_class: number | null;
|
|
2422
2029
|
/**
|
|
@@ -2438,12 +2045,6 @@ type LookupPropertiesV3 = {
|
|
|
2438
2045
|
* The `geo_conductivity_100` field specifies the geothermal conductivity in 100 m depth.
|
|
2439
2046
|
*
|
|
2440
2047
|
* The field is set to `null` if the geothermal conductivity is unknown.
|
|
2441
|
-
*
|
|
2442
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2443
|
-
*
|
|
2444
|
-
* - Geothermic Potential in 100 m depth (NRW) <br />
|
|
2445
|
-
* © Geologischer Dienst (GD) NRW (2024) <br />
|
|
2446
|
-
* [Datasources / Datenquellen](https://open.nrw/dataset/912ad0a6-5eb4-4df3-a19f-908c33650964)
|
|
2447
2048
|
*/
|
|
2448
2049
|
geo_conductivity_100: number | null;
|
|
2449
2050
|
/**
|
|
@@ -2453,15 +2054,6 @@ type LookupPropertiesV3 = {
|
|
|
2453
2054
|
* - Set to `true` if an air-source heat pump is feasible.
|
|
2454
2055
|
* - Set to `false` if an air-source heat pump is not feasible.
|
|
2455
2056
|
* - Set to `null` if the information is unknown.
|
|
2456
|
-
*
|
|
2457
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2458
|
-
*
|
|
2459
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
2460
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2461
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2462
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
2463
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2464
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2465
2057
|
*/
|
|
2466
2058
|
heat_pump_air_possible: boolean | null;
|
|
2467
2059
|
/**
|
|
@@ -2470,15 +2062,6 @@ type LookupPropertiesV3 = {
|
|
|
2470
2062
|
* This field will be deprecated in future versions. Please use `heat_pump_maximal_distance_drillings_5m` instead.
|
|
2471
2063
|
*
|
|
2472
2064
|
* The field is set to `null` if the information is unknown.
|
|
2473
|
-
*
|
|
2474
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2475
|
-
*
|
|
2476
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
2477
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2478
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2479
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
2480
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2481
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2482
2065
|
*/
|
|
2483
2066
|
heat_pump_maximal_distance_drillings: number | null;
|
|
2484
2067
|
/**
|
|
@@ -2486,15 +2069,6 @@ type LookupPropertiesV3 = {
|
|
|
2486
2069
|
* The `heat_pump_maximal_distance_drillings_5m` field specifies the maximum allowable distance between drillings for a heat pump installation, measured in meters.
|
|
2487
2070
|
*
|
|
2488
2071
|
* The field is set to `null` if the information is unknown.
|
|
2489
|
-
*
|
|
2490
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2491
|
-
*
|
|
2492
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
2493
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2494
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2495
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
2496
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2497
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2498
2072
|
*/
|
|
2499
2073
|
heat_pump_maximal_distance_drillings_5m: number | null;
|
|
2500
2074
|
/**
|
|
@@ -2509,15 +2083,6 @@ type LookupPropertiesV3 = {
|
|
|
2509
2083
|
* <br /><br />**Deprecation Warning:**<br /><br />
|
|
2510
2084
|
*
|
|
2511
2085
|
* Please use `heat_pump_minimal_number_possible_drillings_5m` instead of this field.
|
|
2512
|
-
*
|
|
2513
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2514
|
-
*
|
|
2515
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
2516
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2517
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2518
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
2519
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2520
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2521
2086
|
* @deprecated
|
|
2522
2087
|
*/
|
|
2523
2088
|
heat_pump_minimal_number_possible_drillings: number | null;
|
|
@@ -2528,15 +2093,6 @@ type LookupPropertiesV3 = {
|
|
|
2528
2093
|
* to the parcel border.
|
|
2529
2094
|
*
|
|
2530
2095
|
* The field is set to `null` if the information is unknown.
|
|
2531
|
-
*
|
|
2532
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2533
|
-
*
|
|
2534
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
2535
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2536
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2537
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
2538
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2539
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2540
2096
|
*/
|
|
2541
2097
|
heat_pump_minimal_number_possible_drillings_5m: number | null;
|
|
2542
2098
|
/**
|
|
@@ -2546,15 +2102,6 @@ type LookupPropertiesV3 = {
|
|
|
2546
2102
|
* to the parcel border.
|
|
2547
2103
|
*
|
|
2548
2104
|
* The field is set to `null` if the information is unknown.
|
|
2549
|
-
*
|
|
2550
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2551
|
-
*
|
|
2552
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
2553
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2554
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2555
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
2556
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2557
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2558
2105
|
*/
|
|
2559
2106
|
heat_pump_minimal_number_possible_drillings_2m: number | null;
|
|
2560
2107
|
/**
|
|
@@ -2563,15 +2110,6 @@ type LookupPropertiesV3 = {
|
|
|
2563
2110
|
* number of drillings required for a heat pump installation with no distance to the parcel border.
|
|
2564
2111
|
*
|
|
2565
2112
|
* The field is set to `null` if the information is unknown.
|
|
2566
|
-
*
|
|
2567
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2568
|
-
*
|
|
2569
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
2570
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2571
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2572
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
2573
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2574
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2575
2113
|
*/
|
|
2576
2114
|
heat_pump_minimal_number_possible_drillings_no_distance: number | null;
|
|
2577
2115
|
/**
|
|
@@ -2580,16 +2118,6 @@ type LookupPropertiesV3 = {
|
|
|
2580
2118
|
* for a collector heat pump on parcels associated to a building.
|
|
2581
2119
|
*
|
|
2582
2120
|
* The field is set to `null` if the information is unknown.
|
|
2583
|
-
*
|
|
2584
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2585
|
-
*
|
|
2586
|
-
* - 3D-Gebäudemodelle LoD2 Deutschland (LoD2-DE) <br />
|
|
2587
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2588
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2589
|
-
* - Flurstücksinformationen Deutschland (FS-DE) <br />
|
|
2590
|
-
* © GeoBasis-DE / BKG (2024)<br />
|
|
2591
|
-
* [Terms of Use](https://sg.geodatenzentrum.de/web_public/nutzungsbedingungen.pdf)
|
|
2592
|
-
*
|
|
2593
2121
|
*/
|
|
2594
2122
|
heat_pump_collector_free_area: number | null;
|
|
2595
2123
|
/**
|
|
@@ -2611,12 +2139,6 @@ type LookupPropertiesV3 = {
|
|
|
2611
2139
|
* measures.
|
|
2612
2140
|
*
|
|
2613
2141
|
* If this array is set to `null`, it means that no data regarding flood potential is available for the location.
|
|
2614
|
-
*
|
|
2615
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2616
|
-
*
|
|
2617
|
-
* - Flood hazard area (Überflutungsflächen-DE) <br />
|
|
2618
|
-
* © WasserBLIcK/BfG & Zuständige Behörden der Länder (2022) <br />
|
|
2619
|
-
* [Terms of Use / Nutzungsbedingungen](https://www.gesetze-im-internet.de/geonutzv/GeoNutzV.pdf)
|
|
2620
2142
|
*/
|
|
2621
2143
|
flood_potential: Array<{
|
|
2622
2144
|
min_recurrence?: number | null;
|
|
@@ -2629,12 +2151,6 @@ type LookupPropertiesV3 = {
|
|
|
2629
2151
|
* The `suitable_roof_area` field specifies the roof area suited for photovoltaics [m^2].
|
|
2630
2152
|
*
|
|
2631
2153
|
* The field is set to `null` if the roof area suited for photovoltaics is unknown.
|
|
2632
|
-
*
|
|
2633
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2634
|
-
*
|
|
2635
|
-
* - Photovoltaics Potential on Roofs (NRW) <br />
|
|
2636
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
2637
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
2638
2154
|
*/
|
|
2639
2155
|
suitable_roof_area: number | null;
|
|
2640
2156
|
/**
|
|
@@ -2642,12 +2158,6 @@ type LookupPropertiesV3 = {
|
|
|
2642
2158
|
* The `gross_collector_area` field specifies the maximal collector area for photovoltaics including module frames [m^2].
|
|
2643
2159
|
*
|
|
2644
2160
|
* The field is set to `null` if the maximal collector area for photovoltaics is unknown.
|
|
2645
|
-
*
|
|
2646
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2647
|
-
*
|
|
2648
|
-
* - Photovoltaics Potential on Roofs (NRW) <br />
|
|
2649
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
2650
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
2651
2161
|
*/
|
|
2652
2162
|
gross_collector_area: number | null;
|
|
2653
2163
|
/**
|
|
@@ -2655,12 +2165,6 @@ type LookupPropertiesV3 = {
|
|
|
2655
2165
|
* The `net_collector_area` field specifies the maximal collector area for photovoltaics excluding module frames [m^2].
|
|
2656
2166
|
*
|
|
2657
2167
|
* The field is set to `null` if the maximal collector area for photovoltaics excluding module frames is unknown.
|
|
2658
|
-
*
|
|
2659
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2660
|
-
*
|
|
2661
|
-
* - Photovoltaics Potential on Roofs (NRW) <br />
|
|
2662
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
2663
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
2664
2168
|
*/
|
|
2665
2169
|
net_collector_area: number | null;
|
|
2666
2170
|
/**
|
|
@@ -2668,12 +2172,6 @@ type LookupPropertiesV3 = {
|
|
|
2668
2172
|
* The `electricity_generation` field specifies the maximal electricity generation from photovoltaics of the building per year [kWh/a].
|
|
2669
2173
|
*
|
|
2670
2174
|
* The field is set to `null` if the maximal electricity generation per year is unknown.
|
|
2671
|
-
*
|
|
2672
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2673
|
-
*
|
|
2674
|
-
* - Photovoltaics Potential on Roofs (NRW) <br />
|
|
2675
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
2676
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
2677
2175
|
*/
|
|
2678
2176
|
electricity_generation: number | null;
|
|
2679
2177
|
/**
|
|
@@ -2681,12 +2179,6 @@ type LookupPropertiesV3 = {
|
|
|
2681
2179
|
* The `nominal_power` field specifies the nominal power a photovoltaics system could have at this building per year [kWp].
|
|
2682
2180
|
*
|
|
2683
2181
|
* The field is set to `null` if the the nominal power is unknown.
|
|
2684
|
-
*
|
|
2685
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2686
|
-
*
|
|
2687
|
-
* - Photovoltaics Potential on Roofs (NRW) <br />
|
|
2688
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
2689
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
2690
2182
|
*/
|
|
2691
2183
|
nominal_power: number | null;
|
|
2692
2184
|
};
|
|
@@ -2696,12 +2188,6 @@ type LookupPropertiesV3 = {
|
|
|
2696
2188
|
* The `st_suitable_roof_area` field specifies the roof area suited for solarthermie [m^2].
|
|
2697
2189
|
*
|
|
2698
2190
|
* The field is set to `null` if the roof area suited for solarthermie is unknown.
|
|
2699
|
-
*
|
|
2700
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2701
|
-
*
|
|
2702
|
-
* - Solarthermal Potential (NRW) <br />
|
|
2703
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
2704
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
2705
2191
|
*/
|
|
2706
2192
|
suitable_roof_area: number | null;
|
|
2707
2193
|
/**
|
|
@@ -2709,12 +2195,6 @@ type LookupPropertiesV3 = {
|
|
|
2709
2195
|
* The `st_heat_generation` field specifies the potential solarthermic heat generation on this bulding [kWh/a].
|
|
2710
2196
|
*
|
|
2711
2197
|
* The field is set to `null` if the heat generation by solarthermie is unknown.
|
|
2712
|
-
*
|
|
2713
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2714
|
-
*
|
|
2715
|
-
* - Solarthermal Potential (NRW) <br />
|
|
2716
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
2717
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
2718
2198
|
*/
|
|
2719
2199
|
heat_generation: number | null;
|
|
2720
2200
|
/**
|
|
@@ -2722,12 +2202,6 @@ type LookupPropertiesV3 = {
|
|
|
2722
2202
|
* The `st_net_collector_area` field specifies the maximal collector area for solarthermie [m^2].
|
|
2723
2203
|
*
|
|
2724
2204
|
* The field is set to `null` if the maximal collector area for solarthermie is unknown.
|
|
2725
|
-
*
|
|
2726
|
-
* <br /><br />**Datasources / Datenquellen:**<br /><br />
|
|
2727
|
-
*
|
|
2728
|
-
* - Solarthermal Potential (NRW) <br />
|
|
2729
|
-
* © Landesamt für Natur, Umwelt und Verbraucherschutz (LANUV) NRW (2024) <br />
|
|
2730
|
-
* [Datasources / Datenquellen](https://www.opengeodata.nrw.de/produkte/umwelt_klima/klima/solarkataster/photovoltaik/)
|
|
2731
2205
|
*/
|
|
2732
2206
|
net_collector_area: number | null;
|
|
2733
2207
|
};
|