Metadata-Version: 2.4
Name: ECOv002-calval-tables
Version: 1.0.0
Summary: Priestley-Taylor Jet Propulsion Laboratory Soil Moisutre Evapotranspiration Model
Author-email: Gregory Halverson <gregory.h.halverson@jpl.nasa.gov>, Zoe Pierrat <zoe.a.pierrat@jpl.nasa.gov>
Project-URL: Homepage, https://github.com/gregory-halverson/ECOv002-calval-tables
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas
Requires-Dist: geopandas
Provides-Extra: dev
Requires-Dist: build; extra == "dev"
Requires-Dist: pytest>=6.0; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Requires-Dist: jupyter; extra == "dev"
Requires-Dist: pytest; extra == "dev"
Requires-Dist: twine; extra == "dev"
Dynamic: license-file


# ECOSTRESS Collection 2 Calibration/Validation Data Tables (Python Package)

This Python package provides calibration and validation data tables used in the evaluation of the ECOSTRESS Collection 2 Evapotranspiration (ET) data products. The included datasets and loader functions support reproducible research and validation workflows for ET modeling and remote sensing studies.

## Authors

Zoe Pierrat (she/her)  
[zoe.a.pierrat@jpl.nasa.gov](mailto:zoe.a.pierrat@jpl.nasa.gov)  
NASA Jet Propulsion Laboratory 329G

Gregory H. Halverson (they/them)  
[gregory.h.halverson@jpl.nasa.gov](mailto:gregory.h.halverson@jpl.nasa.gov)  
NASA Jet Propulsion Laboratory 329G

## Installation

Install the package directly from PyPI using pip. Note that the package name uses dashes (`-`) for installation:

```bash
pip install ECOv002-calval-tables
```

## Usage


Import the loader functions to access the data tables as pandas DataFrames. Note that the importable package name uses underscores (`_`):

```python
from ECOv002_calval_tables import load_combined_eco_flux_ec_filtered, load_metadata_ebc_filt

df_flux = load_combined_eco_flux_ec_filtered()
df_metadata = load_metadata_ebc_filt()
```

## Data Tables

- `combined_eco_flux_EC_filtered`: Filtered eddy covariance flux data for ECOSTRESS validation.
- `metadata_ebc_filt`: Metadata for the filtered flux sites.

## Citation

If you use these data tables or code in your research, please cite:

> Pierrat, Zoe A.; Purdy, Adam J.; Halverson, Gregory H.; Fisher, Joshua B.; et al. (2024). Evaluation of ECOSTRESS Collection 2 Evapotranspiration Products: Strengths and Uncertainties for Evapotranspiration Modeling. *Water Resources Research*. https://doi.org/10.1029/2024WR039404

BibTeX:

```bibtex
@article{Pierrat2024,
  author       = {Pierrat, Zoe A. and Purdy, Adam J. and Halverson, Gregory H. and Fisher, Joshua B. and et al.},
  title        = {Evaluation of ECOSTRESS Collection 2 Evapotranspiration Products: Strengths and Uncertainties for Evapotranspiration Modeling},
  journal      = {Water Resources Research},
  year         = {2024},
  doi          = {10.1029/2024WR039404}
}
```
