hydromodpy.data.schemas.validation#

Warn-only Pandera validation helper used by ingestion adapters.

V1 wires the existing hydromodpy.data.schemas contracts into the ingestion path in warn-only mode: a failed validation logs a warning and the original DataFrame is returned unchanged. V2 will switch to strict-raise by default; an opt-in escape hatch is already provided via the HMP_PANDERA_STRICT=1 environment variable.

Functions

validate_warn_only(df, schema, *, schema_name)

Validate df against schema and log a warning on failure.