veriflow.datasources.netcdf#

Read and write NetCDF files in a fews compatible format.

Classes

NetCDF(config)

A datasource for reading NetCDF files compatible with the internal datamodel.

NetCDFConfig(*, directory, filename_glob, ...)

A NetCDF config element.

class veriflow.datasources.netcdf.NetCDF(config)[source]#

A datasource for reading NetCDF files compatible with the internal datamodel.

You can validate that the NetCDF file satisfies the internal datamodel using the following example:

import xarray as xr
from veriflow.datasources import validate_input_data

dataset = xr.open_dataset("path/to/netcdf/file/example.nc")
validated_data = validate_input_data(dataset)

Note

The data variables in the NetCDF file represent the physical variables to be verified. Each data variable should carry a units attribute. The dataset must carry a data_type attribute that matches one of the supported data types (it will be set from the configuration if missing).

Parameters:

config (NetCDFConfig)

kind: str = 'netcdf'#
config_class#

alias of NetCDFConfig

supported_data_types: ClassVar[set[DataType]] = {DataType.observed_historical, DataType.simulated_forecast_ensemble, DataType.simulated_forecast_probabilistic, DataType.simulated_forecast_single, DataType.threshold}#
config: NetCDFConfig#
property configured_stations: set[str] | None#

Return the internal station identifiers configured for this datasource.

This is needed for standardization of station identifiers across sources.

property cache: ZarrCache | None#

Return the cache instance if caching is enabled, otherwise None.

property configured_variables: set[str] | None#

Return the internal variable identifiers configured for this datasource.

This is needed for standardization of variable identifiers across sources.

property configured_variables_internal: set[str] | None#

Return the standardized internal variable identifiers configured for this datasource.

This standardized format is needed for caching across different datasources. If your datasource implementation does not have any configurable variables, return None.

create_cache_request(cached_dataset)#

Get the cache request based on the cached dataset and the config.

Parameters:

cached_dataset (Dataset)

Return type:

CacheRequest

property data_type: DataType#

Whether the instance represents sim or obs data.

fetch_validate_filter_cache(*, clear_cache=False)#

High-level wrapper to fetch, validate, filter and apply id mapping to the dataset.

Parameters:

clear_cache (bool)

Return type:

Self

filter_dataset(dataset)#

Filter the dataset on lead times and times outside the verification period.

Parameters:

dataset (Dataset)

Return type:

Dataset

classmethod from_config(raw_config)#

Initialize class from config dict.

Parameters:

raw_config (dict[str, Any])

Return type:

Self

static get_cached_data(cached_dataset, datasource)#

Get the dataset from the cache based on the datasource configuration.

Parameters:
Return type:

Dataset

get_data()#

Get data and make use of cache if configured.

Return type:

Self

validate_fetched_data()#

Validate that the dataset is consistent with the config.

Return type:

None

dataset: Dataset#
fetch_data()[source]#

Retrieve NetCDF file content as an xarray Dataset.

Return type:

Self

class veriflow.datasources.netcdf.NetCDFConfig(*, directory, filename_glob, import_adapter, source, data_type, general, id_mapping=None, stations=None, variables=None, **extra_data)[source]#

A NetCDF config element.

Parameters:
import_adapter: Literal[DataSourceKind.NETCDF]#
stations: Annotated[list[str] | None, FieldInfo(annotation=NoneType, required=True, metadata=[MinLen(min_length=1)])]#
variables: Annotated[list[str] | None, FieldInfo(annotation=NoneType, required=True, metadata=[MinLen(min_length=1)])]#
property lead_times: LeadTimes | None#
property paths: Iterator[Path]#

Return all filepaths as Path objects in a deterministic sorted order.

property verification_period: TimePeriod#
property verification_period_on_frt: TimePeriod#
property verification_period_on_time: TimePeriod#
source#
data_type#
general#
id_mapping#
directory#
filename_glob#