ECOv002-calval-tables 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ecov002_calval_tables-1.0.0/ECOv002_calval_tables/ECOv002_calval_tables.py +22 -0
- ecov002_calval_tables-1.0.0/ECOv002_calval_tables/__init__.py +3 -0
- ecov002_calval_tables-1.0.0/ECOv002_calval_tables/combined_eco_flux_EC_filtered.csv +1066 -0
- ecov002_calval_tables-1.0.0/ECOv002_calval_tables/metadata_ebc_filt.csv +122 -0
- ecov002_calval_tables-1.0.0/ECOv002_calval_tables.egg-info/PKG-INFO +79 -0
- ecov002_calval_tables-1.0.0/ECOv002_calval_tables.egg-info/SOURCES.txt +12 -0
- ecov002_calval_tables-1.0.0/ECOv002_calval_tables.egg-info/dependency_links.txt +1 -0
- ecov002_calval_tables-1.0.0/ECOv002_calval_tables.egg-info/requires.txt +10 -0
- ecov002_calval_tables-1.0.0/ECOv002_calval_tables.egg-info/top_level.txt +1 -0
- ecov002_calval_tables-1.0.0/LICENSE +201 -0
- ecov002_calval_tables-1.0.0/PKG-INFO +79 -0
- ecov002_calval_tables-1.0.0/README.md +57 -0
- ecov002_calval_tables-1.0.0/pyproject.toml +37 -0
- ecov002_calval_tables-1.0.0/setup.cfg +4 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
|
|
2
|
+
import pandas as pd
|
|
3
|
+
import os
|
|
4
|
+
|
|
5
|
+
def load_combined_eco_flux_ec_filtered() -> pd.DataFrame:
|
|
6
|
+
"""
|
|
7
|
+
Load the filtered eddy covariance (EC) flux dataset used for ECOSTRESS Collection 2 ET product validation.
|
|
8
|
+
This dataset contains site-level, quality-controlled flux measurements that serve as ground truth for evaluating ECOSTRESS evapotranspiration estimates.
|
|
9
|
+
Returns:
|
|
10
|
+
pd.DataFrame: DataFrame of filtered EC flux data for validation analysis.
|
|
11
|
+
"""
|
|
12
|
+
return pd.read_csv(os.path.join(os.path.dirname(__file__), 'combined_eco_flux_EC_filtered.csv'))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
def load_metadata_ebc_filt() -> pd.DataFrame:
|
|
16
|
+
"""
|
|
17
|
+
Load the metadata for the filtered eddy covariance (EC) flux sites used in the ECOSTRESS Collection 2 validation study.
|
|
18
|
+
This table provides site information (location, climate, land cover, etc.) for interpreting and grouping the flux data in the validation analysis.
|
|
19
|
+
Returns:
|
|
20
|
+
pd.DataFrame: DataFrame of site metadata for the filtered EC flux dataset.
|
|
21
|
+
"""
|
|
22
|
+
return pd.read_csv(os.path.join(os.path.dirname(__file__), 'metadata_ebc_filt.csv'))
|