Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

hydrodatasource

image image

Overview

While libraries like hydrodataset exist for accessing standardized, public hydrological datasets (e.g., CAMELS), a common challenge is working with data that isn't in a ready-to-use format. This includes non-public industry data, data from local authorities, or custom datasets compiled for specific research projects.

hydrodatasource is designed to solve this problem. It provides a flexible framework to read, process, and clean these custom datasets, preparing them for hydrological modeling and analysis.

hydrodatasource uses a unified URI-only design: every reader is constructed by pointing it at a directory or an s3:// URI, and a one-line open_dataset() factory resolves a dataset id to a ready-to-use reader. The design is compatible with hydrodataset.

Quick Start

If you have a registered dataset and a ~/hydro_setting.yml (see Configuration), resolve and open it in one line:

from hydrodatasource.configs.data_resolver import open_dataset

# "songliao_event" is a hydrodatasource-registered dataset (flood-event reader)
ds = open_dataset("songliao_event")

To open a custom dataset by path, construct the reader directly:

from hydrodatasource.reader.data_source import SelfMadeHydroDataset

reader = SelfMadeHydroDataset(uri="/path/to/my_dataset", time_unit=["1D"])

Reading Custom Datasets

This is the primary use case for hydrodatasource. If you have your own basin-level time series and attribute data, you can use SelfMadeHydroDataset to load it seamlessly.

1. Prepare Your Data Directory

First, organize your data into the following folder structure:

/path/to/my_dataset/
├── attributes/
│   └── attributes.csv
├── shapes/
│   └── basins.shp
└── timeseries/
    ├── 1D/                     # Sub-folder for each time resolution (e.g., daily)
    │   ├── basin_01.csv
    │   ├── basin_02.csv
    │   └── ...
    └── 1D_units_info.json      # JSON file with unit information
  • attributes/attributes.csv: A CSV file containing static basin attributes (e.g., area, mean elevation). Must include a basin_id column that matches the filenames in the timeseries folder.
  • shapes/basins.shp: A shapefile with the polygon geometry for each basin.
  • timeseries/1D/: A folder for each time resolution (1h, 3h, 1D, 8D, 1M). Inside, each CSV file should contain the time series data for a single basin and be named after its basin_id.
  • timeseries/1D_units_info.json: A JSON file defining the units for each variable in your time series CSVs (e.g., {"precipitation": "mm/d", "streamflow": "m3/s", "temperature": "degC"}). Every variable you read must be listed here.

Extended datasets may add optional directories:

  • intermediate/ — interval-basin (区间流域) data with topological relationships (attributes/, timeseries/, shapes/), used by the TG basin reader.
  • stations/ — gauging-station data and adjacency matrices, used by the station reader.
  • forecasts/ — forecast time series, used by the forecast reader.

2. Read the Data in Python

Once your data is organized, point a URI-only reader at it:

from hydrodatasource.reader.data_source import SelfMadeHydroDataset

# Pass the absolute path (or s3:// URI) of your dataset directory as `uri`
reader = SelfMadeHydroDataset(uri="/path/to/my_dataset", time_unit=["1D"])

# Get a list of all available basin IDs
basin_ids = reader.read_object_ids()

# Define the time range and variables you want to load
t_range = ["2000-01-01", "2010-12-31"]
variables_to_read = ["precipitation", "streamflow", "temperature"]

# Read the time series data (a dict of xarray.Datasets keyed by time unit)
timeseries_data = reader.read_ts_xrdataset(
    gage_id_lst=basin_ids,
    t_range=t_range,
    var_lst=variables_to_read,
    time_units=["1D"],
)

daily_data = timeseries_data["1D"]

print("Successfully loaded data:")
print(daily_data)

# Static attributes are equally easy to read
attributes_data = reader.read_attr_xrdataset(gage_id_lst=basin_ids, var_lst=["area", "mean_elevation"])
print("\nAttributes:")
print(attributes_data)

Note on the old API. Earlier versions accepted data_path= / dataset_name= constructor arguments. These were removed in favor of the unified uri= interface and now raise ValueError.

Reader Aliases

All hydrodatasource readers are registered as aliases in READER_ALIASES, which downstream projects (e.g. hydromodel) consume alongside hydrodataset's aliases:

Alias Class Directory convention
selfmade SelfMadeHydroDataset standard dataset (attributes/, timeseries/, shapes/)
longterm LongTermDataset self-made dataset with long-term support
forecast SelfMadeForecastDataset standard + forecasts/
station StationHydroDataset standard + stations/
tghydro TgHydroDatasource standard + intermediate/ + LSTM predictions
floodevent FloodEventDatasource flood-event data with per-basin event markers
gages Gages GAGES-II public dataset
grdc Grdc GRDC public dataset
rainfall RainfallReader cleaned station rainfall
crd Crd China reservoir database
rsvrinflow RsvrInflowReader reservoir inflow data

hydrodataset's public datasets (e.g. camels_us) are also resolvable through the same open_dataset() / resolve_data_path() interface.

Configuration

hydrodatasource reads a shared ~/hydro_setting.yml (same file used by hydrodataset and hydromodel) using the unified storage.* format:

storage:
  default_source: local      # 'local' or 'cloud' — fallback when source is not given
  local:
    root: 'D:\data\hydrodatasource'   # main data root
  cache: data\cache
  s3:                        # optional — cloud (MinIO/S3) access
    endpoint_url: 'http://minio:9000'
    key: 'access_key'
    secret: 'secret_key'
    bucket: hydro-data
    prefix: hydromodel
  • When default_source: local, resolve_data_path() / open_dataset() resolve against storage.local.root.
  • When default_source: cloud, they resolve against storage.s3.
  • If ~/hydro_setting.yml is missing, a default root ~/hydrodatasource_data is used (with a warning).

Other Features

Beyond reading data, hydrodatasource also includes modules for:

  • processor: Perform advanced calculations like identifying rainfall-runoff events (dmca_esr.py) and calculating basin-wide mean rainfall from station data (basin_mean_rainfall.py).
  • cleaner: Clean raw time series data. This includes tools for smoothing noisy streamflow data, correcting anomalies in rainfall and water level records, and back-calculating reservoir inflow.

The usage of these modules is described in the API Reference. We will add more examples in the future.

Installation

For standard use, install the package from PyPI:

pip install hydrodatasource

Development Setup

For developers, it is recommended to use uv to manage the environment, as this project has local dependencies (e.g., hydroutils>=0.2.0, hydrodataset>=0.3.0).

  1. Clone the repository:

    git clone https://github.com/iHeadWater/hydrodatasource.git
    cd hydrodatasource
    
  2. Sync the environment with uv (installs all extras, including dev tooling):

    uv sync --all-extras
    

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hydrodatasource-0.3.1.dev0.tar.gz (159.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

hydrodatasource-0.3.1.dev0-py3-none-any.whl (117.7 kB view details)

Uploaded Python 3

File details

Details for the file hydrodatasource-0.3.1.dev0.tar.gz.

File metadata

  • Download URL: hydrodatasource-0.3.1.dev0.tar.gz
  • Upload date:
  • Size: 159.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hydrodatasource-0.3.1.dev0.tar.gz
Algorithm Hash digest
SHA256 7a5b46de3a9b53d5a525fdfb88b39aa76d0f767117e6e78bdf3b4be9d146c518
MD5 a2d8f43c6f7b29950e16f6d9d88f1be0
BLAKE2b-256 6995e3fce67eae7cd08f074bb1be5ddc9e185772c8e7d09ef6c861db29ba14b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for hydrodatasource-0.3.1.dev0.tar.gz:

Publisher: pypi.yml on iHeadWater/hydrodatasource

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hydrodatasource-0.3.1.dev0-py3-none-any.whl.

File metadata

File hashes

Hashes for hydrodatasource-0.3.1.dev0-py3-none-any.whl
Algorithm Hash digest
SHA256 904fdd0f4342ba1bb961a4825afdaeb34bb3754acab98503cf1bb59c92cf7c63
MD5 f9dbdc51852d41dd59ca5ff5350aca78
BLAKE2b-256 9517d6c83fa7d4143408d1cbc30b7e68027b9076e17e1f9bf9c58ac915dbb424

See more details on using hashes here.

Provenance

The following attestation bundles were made for hydrodatasource-0.3.1.dev0-py3-none-any.whl:

Publisher: pypi.yml on iHeadWater/hydrodatasource

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.3.1.dev0 This release

2 files

0.3.0

2 files

0.2.0

2 files

0.1.1

1 file

0.1.0

1 file

0.0.10

2 files

0.0.8

2 files

0.0.7

2 files

0.0.6

2 files

0.0.5

2 files

0.0.4

2 files

0.0.3

2 files

0.0.2

2 files

0.0.1

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page