get_load_zone_standards#

Type: Query | Auth Required: No (Public)

Returns the full hierarchy of load zone types, standards, national annexes, and layers available for a given country code. Use this to populate selectors or discover valid standard, annex, and layer combinations.

from dlubal.api.geo_zone_tool import GeoZoneTool, Language

gzt = GeoZoneTool(token="YOUR_TOKEN")

result = gzt.get_load_zone_standards(
    country_code="DE",
    language=Language.EN,
)

for zone_type in result.types:
    print(zone_type.name)
    for std in zone_type.standards:
        print(f"  {std.name}")
        for annex in std.annexes:
            print(f"    {annex.name} (actual: {annex.actual})")
            for layer in annex.layers:
                print(f"      Layer {layer.id}: {layer.name}")

Input#

Parameter

Type

Required

Description

country_code

str

Yes

ISO country code (e.g. “DE”, “CH”, “US”)

language

Language

No

Response language (default EN)

Response#

Returns LoadZoneTypes containing a list of LoadZoneGroupType objects with standards, annexes, and layers.