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)
using GeoZoneTool;
using GeoZoneTool.Models;
using var client = new GeoZone("your-token");
var standards = await client.GetLoadZoneStandardsAsync(
new GetLoadZoneStandardsRequest
{
CountryCode = "DE",
Language = LanguageEnum.En
});
Console.WriteLine($"Standards groups: {standards?.Types.Count ?? 0}");
query {
getLoadZoneStandards(
countryCode: "DE"
language: EN
) {
name
standards {
name
annexes {
name
actual
layers { id name }
}
}
}
}
Input#
Parameter |
Type |
Required |
Description |
|---|---|---|---|
|
str |
Yes |
ISO country code (e.g. “DE”, “CH”, “US”) |
|
Language |
No |
Response language (default EN) |
Response#
Returns LoadZoneTypes containing a list of LoadZoneGroupType objects with standards, annexes, and layers.