Skip to content

CAMELS-US

Overview

CAMELS-US is the United States hydrological dataset implementation. United States CAMELS dataset, one of the largest and most comprehensive hydrological datasets.

Dataset Information

  • Region: United States
  • Module: hydrodataset.camels_us
  • Class: CamelsUs

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 (varies by dataset): - Streamflow - Precipitation - Temperature (min, max, mean) - Potential evapotranspiration - Solar radiation - And more...

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
from hydrodataset.camels_us import CamelsUs
from hydrodataset import resolve_data_path

# Initialize dataset
data_path = resolve_data_path("camels_us")
ds = CamelsUs(data_path)

# Get basin IDs
basin_ids = ds.read_object_ids()
print(f"Number of basins: {len(basin_ids)}")

# Check available features
print("Static features:", ds.available_static_features)
print("Dynamic features:", ds.available_dynamic_features)

# Read timeseries data
timeseries = ds.read_ts_xrdataset(
    gage_id_lst=basin_ids[:5],
    t_range=ds.default_t_range,
    var_lst=["streamflow", "precipitation"]
)
print(timeseries)

# Read attribute data
attributes = ds.read_attr_xrdataset(
    gage_id_lst=basin_ids[:5],
    var_lst=["area", "p_mean"]
)
print(attributes)

Reading Specific Variables

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
# Read with specific time range
ts_data = ds.read_ts_xrdataset(
    gage_id_lst=basin_ids[:10],
    t_range=["1990-01-01", "1995-12-31"],
    var_lst=["streamflow", "precipitation", "temperature_mean"]
)

# Read basin area
areas = ds.read_area(gage_id_lst=basin_ids[:10])

# Read mean precipitation
mean_precip = ds.read_mean_prcp(gage_id_lst=basin_ids[:10])

Data Sources

The dataset supports multiple data sources for certain variables. Check the class documentation for available sources and use tuple notation to specify:

1
2
3
4
5
6
7
8
9
# Request specific data source
ts_data = ds.read_ts_xrdataset(
    gage_id_lst=basin_ids[:5],
    t_range=["1990-01-01", "1995-12-31"],
    var_lst=[
        ("precipitation", "era5land"),  # Specify ERA5-Land source
        "streamflow"  # Use default source
    ]
)

API Reference

hydrodataset.camels_us.CamelsUs

Bases: HydroDataset

CAMELS_US dataset class.

This class is a wrapper around the CAMELS_US class from the aqua_fetch package. It standardizes the dataset into a NetCDF format for easy use with hydrological models. It also includes custom logic to read the PET variable from model output files.

Source code in hydrodataset/camels_us.py
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
class CamelsUs(HydroDataset):
    """CAMELS_US dataset class.

    This class is a wrapper around the CAMELS_US class from the `aqua_fetch` package.
    It standardizes the dataset into a NetCDF format for easy use with hydrological models.
    It also includes custom logic to read the PET variable from model output files.
    """

    def __init__(
        self, uri: str, region: Optional[str] = None, download: bool = False
    ) -> None:
        """Initialize CAMELS_US dataset.

        Args:
            uri: Path to the data directory. This is where the data will be stored.
            region: Geographic region identifier (optional, defaults to US).
            download: Whether to download data automatically (not used, handled by aqua_fetch).
        """
        super().__init__(uri)
        self.region = "US" if region is None else region

        # aqua_fetch only supports local paths
        if not str(uri).startswith("s3://"):
            self.aqua_fetch = CAMELS_US(uri)

    @property
    def _attributes_cache_filename(self):
        return "camels_us_attributes.nc"

    @property
    def _timeseries_cache_filename(self):
        return "camels_us_timeseries.nc"

    @property
    def default_t_range(self):
        return ["1980-01-01", "2014-12-31"]

    def read_object_ids(self) -> np.ndarray:
        uri = str(self.data_source_dir).rstrip("/")
        flow_suffix = "/".join([
            "CAMELS_US",
            "basin_timeseries_v1p2_metForcing_obsFlow",
            "basin_dataset_public_v1p2",
            "usgs_streamflow",
        ])
        _exclude = {"06775500", "06846500", "09535100"}

        if self._is_cloud():
            fs = self._make_s3fs()
            flow_dir = f"{uri}/{flow_suffix}"

            def _ls(path):
                return [p.split("/")[-1] for p in fs.ls(path.removeprefix("s3://"))]

            def _join(*parts):
                return "/".join(p.rstrip("/") for p in parts)

            stns = [
                fname.split("_")[0]
                for huc in _ls(flow_dir)
                for fname in _ls(_join(flow_dir, huc))
                if fname.endswith(".txt")
            ]
        else:
            flow_dir = os.path.join(uri, *flow_suffix.split("/"))
            stns = [
                fname.split("_")[0]
                for huc in os.listdir(flow_dir)
                for fname in os.listdir(os.path.join(flow_dir, huc))
                if fname.endswith(".txt")
            ]

        return np.sort(np.array([s for s in stns if s not in _exclude]))

    def _dynamic_features(self) -> list:
        """
        Overrides the base method to include 'PET' as a dynamic feature.
        """
        # Get the default features from the parent class (from aquafetch)
        features = super()._dynamic_features()
        # Add the custom PET and ET variables
        features.extend(["PET", "ET"])
        return features

    def read_camels_us_model_output_data(
        self,
        gage_id_lst: list = None,
        t_range: list = None,
        var_lst: list = None,
        forcing_type="daymet",
    ) -> np.array:
        """
        Read model output data of CAMELS-US, including PET.
        This is a legacy function migrated from the old camels.py.
        """
        # Fetch HUC codes for the requested basins on-the-fly
        try:
            huc_ds = self.read_attr_xrdataset(
                gage_id_lst=gage_id_lst, var_lst=["huc_02"], to_numeric=False
            )
            huc_df = huc_ds.to_dataframe()
        except Exception as e:
            raise RuntimeError(
                f"Could not read HUC attributes to get model output data: {e}"
            )

        t_range_list = pd.date_range(start=t_range[0], end=t_range[1], freq="D").values
        model_out_put_var_lst = [
            "SWE",
            "PRCP",
            "RAIM",
            "TAIR",
            "PET",
            "ET",
            "MOD_RUN",
            "OBS_RUN",
        ]
        if not set(var_lst).issubset(set(model_out_put_var_lst)):
            raise RuntimeError(
                f"Requested variables not in model output list: {var_lst}"
            )

        nt = len(t_range_list)
        chosen_camels_mods = np.full([len(gage_id_lst), nt, len(var_lst)], np.nan)

        for i, usgs_id in enumerate(
            tqdm(gage_id_lst, desc="Read model output data (PET and ET) for CAMELS-US")
        ):
            try:
                huc02_ = huc_df.loc[usgs_id, "huc_02"]
                # Convert to 2-digit string with leading zeros if needed
                huc02_ = f"{int(huc02_):02d}"
            except KeyError:
                print(
                    f"Warning: No HUC attribute found for {usgs_id}, skipping PET and ET reading."
                )
                continue

            # Construct path to model output files
            file_path_dir = os.path.join(
                self.data_source_dir,
                "CAMELS_US",
                "basin_timeseries_v1p2_modelOutput_" + forcing_type,
                "model_output_" + forcing_type,
                "model_output",
                "flow_timeseries",
                forcing_type,
                huc02_,
            )

            if not os.path.isdir(file_path_dir):
                # This warning is kept for cases where the directory might be missing for a valid HUC
                # print(f"Warning: Model output directory not found: {file_path_dir}")
                continue

            sac_random_seeds = [
                "05",
                "11",
                "27",
                "33",
                "48",
                "59",
                "66",
                "72",
                "80",
                "94",
            ]
            files = [
                os.path.join(file_path_dir, f"{usgs_id}_{seed}_model_output.txt")
                for seed in sac_random_seeds
            ]

            results = []
            for file in files:
                if not os.path.exists(file):
                    continue
                try:
                    result = pd.read_csv(file, sep=r"\s+")
                    df_date = result[["YR", "MNTH", "DY"]]
                    df_date.columns = ["year", "month", "day"]
                    date = pd.to_datetime(df_date).values.astype("datetime64[D]")

                    c, ind1, ind2 = np.intersect1d(
                        date, t_range_list, return_indices=True
                    )
                    if len(c) > 0:
                        temp_data = np.full([nt, len(var_lst)], np.nan)
                        temp_data[ind2, :] = result[var_lst].values[ind1]
                        results.append(temp_data)
                except Exception as e:
                    print(f"Warning: Failed to read {file}: {e}")

            if results:
                result_np = np.array(results)
                # Calculate mean across different random seeds
                with np.errstate(
                    invalid="ignore"
                ):  # Ignore warnings from all-NaN slices
                    chosen_camels_mods[i, :, :] = np.nanmean(result_np, axis=0)

        return chosen_camels_mods

    def cache_timeseries_xrdataset(self):
        """
        Overrides the base method to create a complete cache file including PET.

        This method first calls the parent implementation to create the base cache
        from aquafetch data, then reads the custom PET data and merges it into the
        same cache file.
        """
        # First, create the base cache file using the parent method
        print("Creating base time-series cache from aquafetch...")
        super().cache_timeseries_xrdataset()

        # Now, read the PET and ET data for all basins for the default time range
        print("Reading PET and ET data to add to the cache...")
        gage_id_lst = self.read_object_ids().tolist()
        model_output_data = self.read_camels_us_model_output_data(
            gage_id_lst=gage_id_lst, t_range=self.default_t_range, var_lst=["PET", "ET"]
        )

        cache_file = self.cache_dir.joinpath(self._timeseries_cache_filename)

        # Use a with statement to ensure the dataset is closed before writing
        with xr.open_dataset(cache_file) as ds:
            print(f"Variables in base cache: {list(ds.data_vars.keys())}")
            # Create xarray.DataArrays for PET and ET
            pet_da = xr.DataArray(
                model_output_data[:, :, 0],  # PET data
                coords={"basin": gage_id_lst, "time": ds.time},
                dims=["basin", "time"],
                attrs={"units": "mm/day", "source": "SAC-SMA Model Output"},
                name="PET",
            )
            et_da = xr.DataArray(
                model_output_data[:, :, 1],  # ET data
                coords={"basin": gage_id_lst, "time": ds.time},
                dims=["basin", "time"],
                attrs={"units": "mm/day", "source": "SAC-SMA Model Output"},
                name="ET",
            )
            # Merge PET and ET into the main dataset
            # Load the dataset into memory to avoid issues with lazy loading
            merged_ds = ds.load().merge(pet_da).merge(et_da)

        # Now that the original file is closed, we can safely overwrite it
        print("Saving final cache file with merged PET and ET data...")
        print(f"Variables in merged dataset: {list(merged_ds.data_vars.keys())}")
        merged_ds.to_netcdf(cache_file, mode="w")
        print(f"Successfully saved final cache to: {cache_file}")

    def cache_attributes_to_zarr(self) -> None:
        """Read raw CAMELS-US txt files from OSS and write attributes zarr to OSS."""
        fs = self._make_s3fs()
        uri = str(self.data_source_dir).rstrip("/")
        raw_dir = f"{uri}/CAMELS_US"
        bucket_prefix = raw_dir.removeprefix("s3://")
        txts = sorted(
            f"s3://{p}" for p in fs.glob(f"{bucket_prefix}/*.txt")
            if not p.endswith("readme.txt")
        )
        dfs = []
        for f in txts:
            with fs.open(f) as fh:
                df = pd.read_csv(fh, sep=";", index_col="gauge_id",
                                 dtype={"gauge_id": str})
            dfs.append(df)

        static = pd.concat(dfs, axis=1)
        static.index = static.index.astype(str)
        static.rename(columns={
            "area_gages2": "area_km2",
            "gauge_lat": "lat",
            "gauge_lon": "long",
            "slope_mean": "slope_mkm-1",
        }, inplace=True)
        static.columns = self._clean_feature_names(static.columns)
        zarr_name = self._attributes_cache_filename.replace(".nc", ".zarr")
        out, opts = self._zarr_path_and_opts(zarr_name)

        import zarr
        ids = static.index.tolist()
        n = len(ids)
        root = zarr.open_group(out, mode="w", storage_options=opts, zarr_format=2)
        for col in static.columns:
            vals = static[col].values.astype(str) if static[col].dtype == object else static[col].values
            arr = root.create_array(col, shape=(n,), chunks=(n,), dtype=vals.dtype)
            arr[:] = vals
            arr.attrs["_ARRAY_DIMENSIONS"] = ["basin"]
        basin_arr = root.create_array("basin", shape=(n,), chunks=(n,), dtype=str)
        basin_arr[:] = ids
        basin_arr.attrs["_ARRAY_DIMENSIONS"] = ["basin"]
        root.attrs["coordinates"] = "basin"
        self._write_zarr_units(root, "static")
        zarr.consolidate_metadata(root.store)
        print(f"Attributes zarr written to: {out}")

    def cache_timeseries_to_zarr(self) -> None:
        """Read raw CAMELS-US txt timeseries from OSS and write chunked zarr to OSS."""
        import zarr

        fs = self._make_s3fs()
        uri = str(self.data_source_dir).rstrip("/")
        ts_base = "/".join([
            uri, "CAMELS_US",
            "basin_timeseries_v1p2_metForcing_obsFlow",
            "basin_dataset_public_v1p2",
        ])

        def _ls(path):
            return [p.split("/")[-1] for p in fs.ls(path.removeprefix("s3://"))]

        def _join(*parts):
            return "/".join(p.rstrip("/") for p in parts)

        # Streamflow: usgs_streamflow/{HUC}/{station}_streamflow_qc.txt
        flow_records: dict = {}
        flow_dir = _join(ts_base, "usgs_streamflow")
        for huc in sorted(_ls(flow_dir)):
            huc_dir = _join(flow_dir, huc)
            for fname in _ls(huc_dir):
                if not fname.endswith(".txt"):
                    continue
                station = fname.split("_")[0]
                with fs.open(_join(huc_dir, fname).removeprefix("s3://")) as fh:
                    df = pd.read_csv(
                        fh, sep=r"\s+",
                        names=["year", "month", "day", "q_obs", "flag"],
                        dtype={"year": int, "month": int, "day": int, "q_obs": float},
                    )
                df["date"] = pd.to_datetime(df[["year", "month", "day"]])
                # Replace -999 missing values with NaN (same as the local cache)
                # before converting from cfs to cms.
                flow = df.set_index("date")["q_obs"].replace(-999.0, np.nan)
                flow_records[station] = flow * 0.0283168

        # Daymet forcing — raw column names from file
        _fm_raw = ["dayl", "prcp_mm", "srad_wm2", "swe_mm", "tmax_c", "tmin_c", "vp_pa"]
        # Rename to match _dynamic_variable_mapping specific names so reading works without remapping
        _fm_rename = {
            "prcp_mm": "pcp_mm",
            "srad_wm2": "solrad_wm2",
            "tmax_c": "airtemp_c_max",
            "tmin_c": "airtemp_c_min",
            "vp_pa": "vp_hpa",
        }
        fm_cols: dict = {v: {} for v in _fm_raw}
        fm_dir = _join(ts_base, "basin_mean_forcing", "daymet")
        for huc in sorted(_ls(fm_dir)):
            huc_dir = _join(fm_dir, huc)
            for fname in _ls(huc_dir):
                if not fname.endswith(".txt"):
                    continue
                station = fname.split("_")[0]
                try:
                    with fs.open(_join(huc_dir, fname).removeprefix("s3://")) as fh:
                        df = pd.read_csv(
                            fh, sep=r"\s+", skiprows=4,
                            names=["year", "month", "day", "hour"] + _fm_raw,
                            dtype={"year": int, "month": int, "day": int},
                        )
                    df["date"] = pd.to_datetime(df[["year", "month", "day"]])
                    for v in _fm_raw:
                        fm_cols[v][station] = df.set_index("date")[v]
                except Exception:
                    pass

        # Model output PET/ET — mean across SAC-SMA random seeds, mirroring
        # read_camels_us_model_output_data (the local NC cache adds these too).
        # One fs.cat per HUC fetches that HUC's ~hundreds of small files
        # concurrently (latency-bound), bounding peak memory to one HUC.
        import io
        pet_records: dict = {}
        et_records: dict = {}
        mo_dir = _join(
            uri, "CAMELS_US",
            "basin_timeseries_v1p2_modelOutput_daymet",
            "model_output_daymet", "model_output",
            "flow_timeseries", "daymet",
        )
        for huc in sorted(_ls(mo_dir)):
            huc_dir = _join(mo_dir, huc)
            fnames = [f for f in _ls(huc_dir) if f.endswith("_model_output.txt")]
            if not fnames:
                continue
            paths = [_join(huc_dir, f).removeprefix("s3://") for f in fnames]
            try:
                blobs = fs.cat(paths)  # concurrent multi-get -> {path: bytes}
            except Exception:
                continue
            by_base = {p.rsplit("/", 1)[-1]: b for p, b in blobs.items()}
            station_pet: dict = {}
            station_et: dict = {}
            for fname in fnames:
                raw = by_base.get(fname)
                if raw is None:
                    continue
                station = fname.split("_")[0]
                try:
                    df = pd.read_csv(io.BytesIO(raw), sep=r"\s+")
                    df["date"] = pd.to_datetime(
                        df[["YR", "MNTH", "DY"]].rename(
                            columns={"YR": "year", "MNTH": "month", "DY": "day"}
                        )
                    )
                    df = df.set_index("date")
                    station_pet.setdefault(station, []).append(df["PET"])
                    station_et.setdefault(station, []).append(df["ET"])
                except Exception:
                    pass
            for station, series in station_pet.items():
                pet_records[station] = pd.concat(series, axis=1).mean(axis=1)
            for station, series in station_et.items():
                et_records[station] = pd.concat(series, axis=1).mean(axis=1)

        # Build xr.Dataset with correct variable names
        stations = sorted(flow_records.keys())
        all_times = sorted(set().union(*(s.index for s in flow_records.values())))
        ds_vars: dict = {}
        ds_vars["q_cms_obs"] = xr.concat(
            [xr.DataArray(flow_records[s].reindex(all_times).values,
                          dims=["time"], coords={"time": all_times})
             for s in stations], dim="basin")
        for raw_vn in _fm_raw:
            zarr_vn = _fm_rename.get(raw_vn, raw_vn)
            ds_vars[zarr_vn] = xr.concat(
                [xr.DataArray(
                    fm_cols[raw_vn].get(s, pd.Series(np.nan, index=all_times)).reindex(all_times).values,
                    dims=["time"], coords={"time": all_times})
                 for s in stations], dim="basin")
        # PET/ET keep their raw names so read_ts_xrdataset (which matches on the
        # specific_name "PET"/"ET" verbatim) finds them, matching the local NC.
        for name, records in (("PET", pet_records), ("ET", et_records)):
            ds_vars[name] = xr.concat(
                [xr.DataArray(
                    records.get(s, pd.Series(np.nan, index=all_times)).reindex(all_times).values,
                    dims=["time"], coords={"time": all_times})
                 for s in stations], dim="basin")

        nb, nt = len(stations), len(all_times)
        # Encode time as int64 nanoseconds so xr.open_zarr decodes it as datetime64
        times_ns = pd.DatetimeIndex(all_times).asi8

        import zarr
        zarr_name = self._timeseries_cache_filename.replace(".nc", ".zarr")
        out, opts = self._zarr_path_and_opts(zarr_name)
        root = zarr.open_group(out, mode="w", storage_options=opts, zarr_format=2)

        for name, da in ds_vars.items():
            # All basins in one basin-chunk, 10-year time chunks (~18.8 MiB/chunk):
            # near-peak throughput without over-fetching on partial-time reads.
            arr = root.create_array(name, shape=(nb, nt),
                                    chunks=(nb, 3650), dtype="float64")
            arr[:] = da.values
            arr.attrs["_ARRAY_DIMENSIONS"] = ["basin", "time"]

        time_arr = root.create_array("time", shape=(nt,), chunks=(3650,), dtype="int64")
        time_arr[:] = times_ns
        time_arr.attrs["_ARRAY_DIMENSIONS"] = ["time"]
        time_arr.attrs["units"] = "nanoseconds since 1970-01-01"
        time_arr.attrs["calendar"] = "proleptic_gregorian"

        basin_arr = root.create_array("basin", shape=(nb,), chunks=(nb,), dtype=str)
        basin_arr[:] = stations
        basin_arr.attrs["_ARRAY_DIMENSIONS"] = ["basin"]

        root.attrs["coordinates"] = "basin time"
        self._write_zarr_units(root, "dynamic")
        # PET/ET are named with the raw specific_name, which _write_zarr_units'
        # cleaned lookup ("pet"/"et") misses, so set their units explicitly.
        for name in ("PET", "ET"):
            if name in list(root.array_keys()):
                root[name].attrs["units"] = "mm/day"
        zarr.consolidate_metadata(root.store)
        print(f"Timeseries zarr written to: {out}")

    _subclass_static_definitions = {
        "huc_02": {"specific_name": "huc_02", "unit": "dimensionless"},
        "gauge_lat": {"specific_name": "lat", "unit": "degree"},
        "gauge_lon": {"specific_name": "long", "unit": "degree"},
        "elev_mean": {"specific_name": "elev_mean", "unit": "m"},
        "slope_mean": {"specific_name": "slope_mkm1", "unit": "m/km"},
        "area": {"specific_name": "area_km2", "unit": "km^2"},
        "geol_1st_class": {"specific_name": "geol_1st_class", "unit": "dimensionless"},
        "geol_2nd_class": {"specific_name": "geol_2nd_class", "unit": "dimensionless"},
        "geol_porostiy": {"specific_name": "geol_porostiy", "unit": "dimensionless"},
        "geol_permeability": {"specific_name": "geol_permeability", "unit": "m^2"},
        "frac_forest": {"specific_name": "frac_forest", "unit": "dimensionless"},
        "lai_max": {"specific_name": "lai_max", "unit": "dimensionless"},
        "lai_diff": {"specific_name": "lai_diff", "unit": "dimensionless"},
        "dom_land_cover_frac": {
            "specific_name": "dom_land_cover_frac",
            "unit": "dimensionless",
        },
        "dom_land_cover": {"specific_name": "dom_land_cover", "unit": "dimensionless"},
        "root_depth_50": {"specific_name": "root_depth_50", "unit": "m"},
        "root_depth_99": {"specific_name": "root_depth_99", "unit": "m"},
        "soil_depth_statsgo": {"specific_name": "soil_depth_statsgo", "unit": "m"},
        "soil_porosity": {"specific_name": "soil_porosity", "unit": "dimensionless"},
        "soil_conductivity": {"specific_name": "soil_conductivity", "unit": "cm/hr"},
        "max_water_content": {"specific_name": "max_water_content", "unit": "m"},
        "pet_mean": {"specific_name": "pet_mean", "unit": "mm/day"},
    }
    _dynamic_variable_mapping = {
        StandardVariable.STREAMFLOW: {
            "default_source": "usgs",
            "sources": {"usgs": {"specific_name": "q_cms_obs", "unit": "m^3/s"}},
        },
        # TODO: For maurer and nldas, we have not checked the specific names and units.
        StandardVariable.PRECIPITATION: {
            "default_source": "daymet",
            "sources": {
                "daymet": {"specific_name": "pcp_mm", "unit": "mm/day"},
                "maurer": {"specific_name": "prcp_maurer", "unit": "mm/day"},
                "nldas": {"specific_name": "prcp_nldas", "unit": "mm/day"},
            },
        },
        StandardVariable.TEMPERATURE_MAX: {
            "default_source": "daymet",
            "sources": {
                "daymet": {"specific_name": "airtemp_c_max", "unit": "°C"},
                "maurer": {"specific_name": "tmax_maurer", "unit": "°C"},
                "nldas": {"specific_name": "tmax_nldas", "unit": "°C"},
            },
        },
        StandardVariable.TEMPERATURE_MIN: {
            "default_source": "daymet",
            "sources": {
                "daymet": {"specific_name": "airtemp_c_min", "unit": "°C"},
                "maurer": {"specific_name": "tmin_maurer", "unit": "°C"},
                "nldas": {"specific_name": "tmin_nldas", "unit": "°C"},
            },
        },
        StandardVariable.DAYLIGHT_DURATION: {
            "default_source": "daymet",
            "sources": {
                "daymet": {"specific_name": "dayl", "unit": "s"},
                "maurer": {"specific_name": "dayl_maurer", "unit": "s"},
                "nldas": {"specific_name": "dayl_nldas", "unit": "s"},
            },
        },
        StandardVariable.SOLAR_RADIATION: {
            "default_source": "daymet",
            "sources": {
                "daymet": {"specific_name": "solrad_wm2", "unit": "W/m^2"},
                "maurer": {"specific_name": "srad_maurer", "unit": "W/m^2"},
                "nldas": {"specific_name": "srad_nldas", "unit": "W/m^2"},
            },
        },
        StandardVariable.SNOW_WATER_EQUIVALENT: {
            "default_source": "daymet",
            "sources": {
                "daymet": {"specific_name": "swe_mm", "unit": "mm/day"},
                "maurer": {"specific_name": "swe_maurer", "unit": "mm/day"},
                "nldas": {"specific_name": "swe_nldas", "unit": "mm/day"},
            },
        },
        StandardVariable.VAPOR_PRESSURE: {
            "default_source": "daymet",
            "sources": {
                "daymet": {"specific_name": "vp_hpa", "unit": "hPa"},
                "maurer": {"specific_name": "vp_maurer", "unit": "hPa"},
                "nldas": {"specific_name": "vp_nldas", "unit": "hPa"},
            },
        },
        StandardVariable.POTENTIAL_EVAPOTRANSPIRATION: {
            "default_source": "sac-sma",
            "sources": {"sac-sma": {"specific_name": "PET", "unit": "mm/day"}},
        },
        StandardVariable.EVAPOTRANSPIRATION: {
            "default_source": "sac-sma",
            "sources": {"sac-sma": {"specific_name": "ET", "unit": "mm/day"}},
        },
    }

default_t_range property

__init__(uri, region=None, download=False)

Initialize CAMELS_US dataset.

Parameters:

Name Type Description Default
uri str

Path to the data directory. This is where the data will be stored.

required
region Optional[str]

Geographic region identifier (optional, defaults to US).

None
download bool

Whether to download data automatically (not used, handled by aqua_fetch).

False
Source code in hydrodataset/camels_us.py
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
def __init__(
    self, uri: str, region: Optional[str] = None, download: bool = False
) -> None:
    """Initialize CAMELS_US dataset.

    Args:
        uri: Path to the data directory. This is where the data will be stored.
        region: Geographic region identifier (optional, defaults to US).
        download: Whether to download data automatically (not used, handled by aqua_fetch).
    """
    super().__init__(uri)
    self.region = "US" if region is None else region

    # aqua_fetch only supports local paths
    if not str(uri).startswith("s3://"):
        self.aqua_fetch = CAMELS_US(uri)

read_object_ids()

Source code in hydrodataset/camels_us.py
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
def read_object_ids(self) -> np.ndarray:
    uri = str(self.data_source_dir).rstrip("/")
    flow_suffix = "/".join([
        "CAMELS_US",
        "basin_timeseries_v1p2_metForcing_obsFlow",
        "basin_dataset_public_v1p2",
        "usgs_streamflow",
    ])
    _exclude = {"06775500", "06846500", "09535100"}

    if self._is_cloud():
        fs = self._make_s3fs()
        flow_dir = f"{uri}/{flow_suffix}"

        def _ls(path):
            return [p.split("/")[-1] for p in fs.ls(path.removeprefix("s3://"))]

        def _join(*parts):
            return "/".join(p.rstrip("/") for p in parts)

        stns = [
            fname.split("_")[0]
            for huc in _ls(flow_dir)
            for fname in _ls(_join(flow_dir, huc))
            if fname.endswith(".txt")
        ]
    else:
        flow_dir = os.path.join(uri, *flow_suffix.split("/"))
        stns = [
            fname.split("_")[0]
            for huc in os.listdir(flow_dir)
            for fname in os.listdir(os.path.join(flow_dir, huc))
            if fname.endswith(".txt")
        ]

    return np.sort(np.array([s for s in stns if s not in _exclude]))