SIMBI¶
Overview¶
SIMBI is a hydrological dataset for Multiple Regions. Multi-region dataset providing hydrological data from diverse global catchments.
Dataset Information¶
- Region: Multiple Regions
- Module:
hydrodataset.simbi - Class:
simbi
Features¶
Static Attributes¶
Static catchment attributes include: - Basin area - Mean precipitation - Topographic characteristics - Land cover information - Soil properties - Climate indices
Dynamic Variables¶
Timeseries variables available:
- Streamflow
- Precipitation
- Temperature (min, max, mean)
- Potential evapotranspiration
- And additional variables depending on the dataset
Usage¶
Basic Usage¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | |
Reading Specific Variables¶
1 2 3 4 5 6 7 8 9 10 11 12 | |
Working with Multiple Data Sources¶
If the dataset provides multiple sources for variables:
1 2 3 4 5 6 7 8 9 | |
API Reference¶
hydrodataset.simbi.simbi
¶
Bases: HydroDataset
simbi dataset class extending RainfallRunoff.
This class provides access to the simbi dataset, which contains hourly hydrological and meteorological data for various watersheds.
Attributes:
| Name | Type | Description |
|---|---|---|
region |
Geographic region identifier |
|
download |
Whether to download data automatically |
|
ds_description |
Dictionary containing dataset file paths |
Source code in hydrodataset/simbi.py
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | |
default_t_range
property
¶
__init__(data_path, region=None, download=False)
¶
Initialize simbi dataset.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data_path
|
str
|
Path to the simbi data directory |
required |
region
|
Optional[str]
|
Geographic region identifier (optional) |
None
|
download
|
bool
|
Whether to download data automatically (default: False) |
False
|
Source code in hydrodataset/simbi.py
19 20 21 22 23 24 25 26 27 28 29 30 31 32 | |