get_load_zone_characteristics#
Query | API Key Required
Accepts a free-text address and optional filters — load_zone_type, standard, annex, and layer_id — to narrow results to a specific zone type or country annex. Returns resolved address details, the matched zone value, and an ordered list of structural load characteristics grouped by standard and annex.
The response code field can be OK, COUNTRY_CHANGED (server auto-selected a more appropriate standard), ANNEX_CHANGED, or ERROR.
from dlubal.api import geo_zone_tool
geo_zone = geo_zone_tool.GeoZoneTool("<your-token>")
result = geo_zone.get_load_zone_characteristics(
address="Munich, Germany",
load_zone_type=geo_zone_tool.LoadZoneType.SNOW,
standard="EN 1991-1-3",
annex="Germany",
layer_id=1,
language=geo_zone_tool.Language.EN,
)
print(result)
using GeoZoneTool;
using GeoZoneTool.Models;
using var client = new GeoZone("your-token");
var result = await client.GetLoadZoneCharacteristicsAsync(
new GetZoneCharacteristicsRequest
{
Address = "Munich, Germany",
Type = LoadzoneTypeEnum.Snow,
Standard = "EN 1991-1-3",
Annex = "Germany",
LayerId = 1,
Language = LanguageEnum.En
});
Console.WriteLine(result?.Message ?? "no data");
query {
getLoadZoneCharacteristics(
input: {
address: "Munich, Germany"
type: SNOW
standard: "EN 1991-1-3"
annex: "Germany"
layerId: 1
}
language: EN
) {
code
message
geoLocation {
latitude longitude altitude
street zip city state country countryCode
}
characteristics {
standard
annex
zoneCharacteristics {
id
zone { value }
characteristics {
name calculatedValue
nameHtml unitsHtml description
decimalPlaces sequence
}
}
}
noLiability
}
}
Input#
Parameter |
Type |
Required |
Description |
|---|---|---|---|
|
str |
Yes |
Free-text address or place name |
|
LoadZoneType |
Yes |
Zone type (SNOW, WIND, EARTHQUAKE, TORNADO) |
|
str |
Yes |
Standard name (e.g. “EN 1991-1-3”) |
|
str |
Yes |
National annex name (e.g. “Germany”) |
|
int |
Yes |
Layer ID within the standard |
|
Language |
No |
Response language (default EN) |
Response#
Returns CharacteristicsResponseMiaType with resolved location, zone value, and load characteristics.