Skip to content

Observation point .ini files

The observation point module provides the specific logic for accessing observation point files for a D-Flow FM model.

Generic parsing and serializing functionality comes from the generic hydrolib.core.io.ini modules.

An observation point .ini file is described by the classes below.

Model

ObservationPoint (INIBasedModel) pydantic-model

An observation point that is included in the observation point file.

All lowercased attributes match with the observation point input as described in UM Sec.F.2.2.1.

ObservationPointGeneral (INIGeneral) pydantic-model

The observation point file's [General] section with file meta data.

ObservationPointModel (INIModel) pydantic-model

The overall observation point model that contains the contents of one observation point file.

This model is typically referenced under a FMModel.output.obsfile[..].

Attributes:

Name Type Description
general ObservationPointGeneral

[General] block with file metadata.

observationpoint List[ObservationPoint]

List of [ObservationPoint] blocks for all observation points.

Back to top