Metadata-Version: 2.1
Name: hf_hydrodata
Version: 0.9.7
Summary: hydroframe tools and utilities
License: MIT
Author: William M. Hasling
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: dask (>=2022.51)
Requires-Dist: importlib-resources (>=5.10.0)
Requires-Dist: netcdf4 (>=1.6.0)
Requires-Dist: numpy (>=1.22.1)
Requires-Dist: pftools (>=1.3.7)
Requires-Dist: pyproj (>=3.5.0)
Requires-Dist: requests (>=2.28.2)
Requires-Dist: rioxarray (>=0.13.4)
Requires-Dist: scipy (>=1.10.0)
Requires-Dist: xarray (>=0.21.0)
Description-Content-Type: text/markdown

# hf_hydrodata

Tools and utility to access data in the hydrodata hydrology file share.

## Installation

```bash
You can install the python package with the API to access files using pip with::


    pip install git+https://github.com/hydroframe/hf_hydrodata.git
```

## Usage

    from hf_hydrodata.data_access import get_numpy_data

    filters = ["dataset":"NLDAS2", "variable":"precipitation", period="daily", "start_time": "2005-03-01", "file_type": "pfb"]
    data = get_numpy_data(filters)
    print(data.shape)

    # Get the metadata about the returned data
    emtry = get_data_catalog_entry(filters)
    print(entry)


## License

`hydroframe` was created by William M. Hasling, Laura Cosondon, Reed Maxwell, George Artavanis, Will Lytle, Amy M. Johnson, Amy C. Defnet. It is licensed under the terms of the MIT license.



