[hydrometry] HydrometryConfig#
TOML section: [hydrometry]
Pydantic model: HydrometryConfig defined in hydromodpy.data.variables.hydrometry.config.
Top-level hydrometry configuration.
The section groups hydrometric sources and the optional simulation date
window inherited from BaseVariableConfig. Loaded data is stored as
station time series for calibration, boundary checks, or reporting.
Fields#
date_start
str | None default = None user source
Start of the data window (ISO date, e.g. ‘2019-01-01’). Optional: when neither bound is declared, the loader inherits [simulation.time].start_datetime, or [overview].date_start in overview mode. Declare it only to fetch a window WIDER than the simulation, typically a cache shared by several runs. Must be declared together with date_end.
Example: "2019-01-01"
date_end
str | None default = None user source
End of the data window (ISO date, e.g. ‘2025-12-31’). Optional: when neither bound is declared, the loader inherits [simulation.time].end_datetime, or [overview].date_end in overview mode. Declare it only to fetch a window WIDER than the simulation, typically a cache shared by several runs. Must be declared together with date_start.
Example: "2025-12-31"
sources
in TOML:
[[hydrometry.sources]]
list[HydrometrySourceConfig] required user source
At least one data source.