Skip to content

Commit abf5959

Browse files
authored
Update coops_cat.py
propagated changes to this file
1 parent 249a84b commit abf5959

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

intake_coops/coops_cat.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def __init__(
2323
self,
2424
station_list,
2525
# verbose: bool = False,
26-
process_adcp: bool = False,
26+
process_adcp: Union[str,bool] = False,
2727
name: str = "catalog",
2828
description: str = "Catalog of NOAA CO-OPS assets.",
2929
metadata: dict = None,
@@ -35,8 +35,13 @@ def __init__(
3535
3636
Parameters
3737
----------
38-
process_adcp : bool, False
39-
If True, for ADCP stations, calculate and save to Dataset along- and across-channel velocities.
38+
process_adcp: str, bool
39+
40+
* "process_uv": process adcp to include `u`/`v` in dataset
41+
* "process_along": process adcp to include `u`/`v` and `ualong`/`vacross` in dataset
42+
* "process_subtidal": process adcp to include `u`/`v`, `ualong`/`vacross`, and `ualong_subtidal`/`vacross_subtidal` in dataset
43+
* True is equivalent to "process_subtidal"
44+
4045
verbose : bool, optional
4146
Set to True for helpful information.
4247
ttl : int, optional

0 commit comments

Comments
 (0)