get_load_zone_standards#

Query | 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 import geo_zone_tool

geo_zone = geo_zone_tool.GeoZoneTool()
standards = geo_zone.get_load_zone_standards(
    country_code="DE",
    language=geo_zone_tool.Language.EN,
)

for group in standards.types:
    print(group.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.