pyTSEB 2.1.0__tar.gz → 2.5__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.
- {pytseb-2.1.0 → pytseb-2.5}/PKG-INFO +24 -12
- {pytseb-2.1.0 → pytseb-2.5}/README.md +21 -10
- {pytseb-2.1.0 → pytseb-2.5}/pyTSEB/PyTSEB.py +320 -131
- {pytseb-2.1.0 → pytseb-2.5}/pyTSEB/TSEB.py +109 -101
- {pytseb-2.1.0 → pytseb-2.5}/pyTSEB/TSEBConfigFileInterface.py +12 -1
- {pytseb-2.1.0 → pytseb-2.5}/pyTSEB/TSEBIPythonInterface.py +427 -69
- {pytseb-2.1.0 → pytseb-2.5}/pyTSEB/energy_combination_ET.py +30 -6
- {pytseb-2.1.0 → pytseb-2.5}/pyTSEB/net_radiation.py +43 -0
- {pytseb-2.1.0 → pytseb-2.5}/pyTSEB/physiology.py +35 -24
- {pytseb-2.1.0 → pytseb-2.5}/pyTSEB.egg-info/PKG-INFO +24 -12
- {pytseb-2.1.0 → pytseb-2.5}/pyproject.toml +3 -1
- {pytseb-2.1.0 → pytseb-2.5}/LICENSE +0 -0
- {pytseb-2.1.0 → pytseb-2.5}/pyTSEB/MO_similarity.py +0 -0
- {pytseb-2.1.0 → pytseb-2.5}/pyTSEB/__init__.py +0 -0
- {pytseb-2.1.0 → pytseb-2.5}/pyTSEB/clumping_index.py +0 -0
- {pytseb-2.1.0 → pytseb-2.5}/pyTSEB/dis_TSEB.py +0 -0
- {pytseb-2.1.0 → pytseb-2.5}/pyTSEB/meteo_utils.py +0 -0
- {pytseb-2.1.0 → pytseb-2.5}/pyTSEB/resistances.py +0 -0
- {pytseb-2.1.0 → pytseb-2.5}/pyTSEB/wind_profile.py +0 -0
- {pytseb-2.1.0 → pytseb-2.5}/pyTSEB.egg-info/SOURCES.txt +0 -0
- {pytseb-2.1.0 → pytseb-2.5}/pyTSEB.egg-info/dependency_links.txt +0 -0
- {pytseb-2.1.0 → pytseb-2.5}/pyTSEB.egg-info/requires.txt +0 -0
- {pytseb-2.1.0 → pytseb-2.5}/pyTSEB.egg-info/top_level.txt +0 -0
- {pytseb-2.1.0 → pytseb-2.5}/setup.cfg +0 -0
- {pytseb-2.1.0 → pytseb-2.5}/tests/test_image.py +0 -0
- {pytseb-2.1.0 → pytseb-2.5}/tests/test_point_time_series.py +0 -0
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pyTSEB
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.5
|
|
4
4
|
Summary: Two Source Energy Balance (TSEB) Models to estimate sensible and latent heat flux (evapotranspiration) from radiometric surface temperature data
|
|
5
5
|
Author-email: Héctor Nieto <hector.nieto@csic.es>, Radoslaw Guzinski <rmgu@dhigroup.com>, "Willam P. Kustas" <bill.kustas@usda.gov>
|
|
6
|
-
Maintainer-email: Héctor Nieto <hector.nieto@csic.es>, Radoslaw Guzinski <rmgu@dhigroup.com>
|
|
6
|
+
Maintainer-email: Héctor Nieto <hector.nieto@csic.es>, Radoslaw Guzinski <rmgu@dhigroup.com>, Tarike Aziz <a02455826@usu.edu>
|
|
7
7
|
License-Expression: GPL-3.0-or-later
|
|
8
8
|
Project-URL: Homepage, https://github.com/hectornieto/pyTSEB
|
|
9
9
|
Project-URL: Documentation, https://pytseb.readthedocs.io
|
|
10
10
|
Keywords: TSEB,Two Source Energy Balance,Resistance Energy Balance,OSEB,One Source Energy Balance,DTD,Dual Time Differenced,Remote Sensing
|
|
11
11
|
Classifier: Development Status :: 5 - Production/Stable
|
|
12
12
|
Classifier: Intended Audience :: Science/Research
|
|
13
|
+
Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
|
|
13
14
|
Classifier: Topic :: Scientific/Engineering :: Hydrology
|
|
14
15
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
15
16
|
Classifier: Programming Language :: Python
|
|
@@ -53,14 +54,26 @@ To give us a better overview of the use of the model in different landscapes, cl
|
|
|
53
54
|
Nieto, H., Guzinski, R., & Kustas, W. P. (2018). pyTSEB: A python Two Source Energy Balance model for estimation of evapotranspiration with remote sensing data (Version 2.2) [Computer software]. https://doi.org/10.5281/zenodo.594732
|
|
54
55
|
|
|
55
56
|
## Installation
|
|
57
|
+
To install pyTSEB follow these steps:
|
|
56
58
|
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
59
|
+
1. Make sure GDAL is installed on your system. This is a required dependency for geospatial data processing. You can use conda to create a specific Python environment:
|
|
60
|
+
```bash
|
|
61
|
+
conda create -n pytseb
|
|
62
|
+
conda install -c conda-forge gdal
|
|
63
|
+
```
|
|
60
64
|
|
|
61
|
-
|
|
65
|
+
2. Install pyTSEB package from PyPi:
|
|
66
|
+
```bash
|
|
67
|
+
conda activate pytseb
|
|
68
|
+
pip install pytseb
|
|
69
|
+
```
|
|
70
|
+
or directly from the downloaded/cloned pyTSEB local directory
|
|
71
|
+
```bash
|
|
72
|
+
conda activate pytseb
|
|
73
|
+
pip install ./
|
|
74
|
+
```
|
|
62
75
|
|
|
63
|
-
The following Python libraries will be
|
|
76
|
+
The following Python libraries are required and will be installed during this process:
|
|
64
77
|
|
|
65
78
|
- Numpy
|
|
66
79
|
- Pandas
|
|
@@ -70,10 +83,6 @@ The following Python libraries will be required:
|
|
|
70
83
|
- netCDF4
|
|
71
84
|
- bokeh
|
|
72
85
|
|
|
73
|
-
With `conda`, you can create a complete environment with
|
|
74
|
-
```
|
|
75
|
-
conda env create -f environment.yml
|
|
76
|
-
```
|
|
77
86
|
|
|
78
87
|
## Code Example
|
|
79
88
|
### High-level example
|
|
@@ -175,6 +184,8 @@ http://pytseb.readthedocs.org/en/latest/index.html
|
|
|
175
184
|
- Kustas, W. P. and Norman, J. M.: Evaluation of soil and vegetation heat flux prediction using a simple two-source model with radiometric temperatures for partial canopy cover, Agr. Forest Meteorol., 94, 13–29, 199
|
|
176
185
|
- Guzinski, R., Nieto, H., Stisen, S., and Fensholt, R.: Inter-comparison of energy balance and hydrological models for land surface energy flux estimation over a whole river catchment, Hydrol. Earth Syst. Sci., 19, 2017-2036, doi:10.5194/hess-19-2017-2015, 2015.
|
|
177
186
|
- William P. Kustas, Hector Nieto, Laura Morillas, Martha C. Anderson, Joseph G. Alfieri, Lawrence E. Hipps, Luis Villagarcía, Francisco Domingo, Monica Garcia: Revisiting the paper “Using radiometric surface temperature for surface energy flux estimation in Mediterranean drylands from a two-source perspective”, Remote Sensing of Environment, In Press. doi:10.1016/j.rse.2016.07.024.
|
|
187
|
+
- Colaizzi, P. D., N. Agam, J. A. Tolk, et al. 2014. “Two-Source Energy Balance Model to Calculate E, T, and ET: Comparison of Priestley-Taylor and Penman-Monteith Formulations and Two Time Scaling Methods.” Transactions of the ASABE 57: 479–98.
|
|
188
|
+
- Kustas, W. P., H. Nieto, O. Garcia-Tejera, et al. 2022. “Impact of Advection on Two-Source Energy Balance (TSEB) Canopy Transpiration Parameterization for Vineyards in the California Central Valley.” Irrigation Science, ahead of print. Scopus. https://doi.org/10.1007/s00271-022-00778-y.
|
|
178
189
|
|
|
179
190
|
|
|
180
191
|
## Tests
|
|
@@ -183,8 +194,9 @@ and in an image (*ExampleImage_\< variable >.tif*). Just run the high-level scri
|
|
|
183
194
|
provided by default and compare the resulting outputs with the files stored in *./Output/*
|
|
184
195
|
|
|
185
196
|
## Contributors
|
|
186
|
-
- **Hector Nieto** <hnieto@
|
|
197
|
+
- **Hector Nieto** <hnieto@csic.es> <hector.nieto.solana@gmail.com> main developer
|
|
187
198
|
- **Radoslaw Guzinski** main developer, tester
|
|
199
|
+
- **Tarique Aziz** developer, tester
|
|
188
200
|
- **William P. Kustas** TSEB modeling, tester
|
|
189
201
|
- **Ana Andreu** tester
|
|
190
202
|
|
|
@@ -22,14 +22,26 @@ To give us a better overview of the use of the model in different landscapes, cl
|
|
|
22
22
|
Nieto, H., Guzinski, R., & Kustas, W. P. (2018). pyTSEB: A python Two Source Energy Balance model for estimation of evapotranspiration with remote sensing data (Version 2.2) [Computer software]. https://doi.org/10.5281/zenodo.594732
|
|
23
23
|
|
|
24
24
|
## Installation
|
|
25
|
+
To install pyTSEB follow these steps:
|
|
25
26
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
27
|
+
1. Make sure GDAL is installed on your system. This is a required dependency for geospatial data processing. You can use conda to create a specific Python environment:
|
|
28
|
+
```bash
|
|
29
|
+
conda create -n pytseb
|
|
30
|
+
conda install -c conda-forge gdal
|
|
31
|
+
```
|
|
29
32
|
|
|
30
|
-
|
|
33
|
+
2. Install pyTSEB package from PyPi:
|
|
34
|
+
```bash
|
|
35
|
+
conda activate pytseb
|
|
36
|
+
pip install pytseb
|
|
37
|
+
```
|
|
38
|
+
or directly from the downloaded/cloned pyTSEB local directory
|
|
39
|
+
```bash
|
|
40
|
+
conda activate pytseb
|
|
41
|
+
pip install ./
|
|
42
|
+
```
|
|
31
43
|
|
|
32
|
-
The following Python libraries will be
|
|
44
|
+
The following Python libraries are required and will be installed during this process:
|
|
33
45
|
|
|
34
46
|
- Numpy
|
|
35
47
|
- Pandas
|
|
@@ -39,10 +51,6 @@ The following Python libraries will be required:
|
|
|
39
51
|
- netCDF4
|
|
40
52
|
- bokeh
|
|
41
53
|
|
|
42
|
-
With `conda`, you can create a complete environment with
|
|
43
|
-
```
|
|
44
|
-
conda env create -f environment.yml
|
|
45
|
-
```
|
|
46
54
|
|
|
47
55
|
## Code Example
|
|
48
56
|
### High-level example
|
|
@@ -144,6 +152,8 @@ http://pytseb.readthedocs.org/en/latest/index.html
|
|
|
144
152
|
- Kustas, W. P. and Norman, J. M.: Evaluation of soil and vegetation heat flux prediction using a simple two-source model with radiometric temperatures for partial canopy cover, Agr. Forest Meteorol., 94, 13–29, 199
|
|
145
153
|
- Guzinski, R., Nieto, H., Stisen, S., and Fensholt, R.: Inter-comparison of energy balance and hydrological models for land surface energy flux estimation over a whole river catchment, Hydrol. Earth Syst. Sci., 19, 2017-2036, doi:10.5194/hess-19-2017-2015, 2015.
|
|
146
154
|
- William P. Kustas, Hector Nieto, Laura Morillas, Martha C. Anderson, Joseph G. Alfieri, Lawrence E. Hipps, Luis Villagarcía, Francisco Domingo, Monica Garcia: Revisiting the paper “Using radiometric surface temperature for surface energy flux estimation in Mediterranean drylands from a two-source perspective”, Remote Sensing of Environment, In Press. doi:10.1016/j.rse.2016.07.024.
|
|
155
|
+
- Colaizzi, P. D., N. Agam, J. A. Tolk, et al. 2014. “Two-Source Energy Balance Model to Calculate E, T, and ET: Comparison of Priestley-Taylor and Penman-Monteith Formulations and Two Time Scaling Methods.” Transactions of the ASABE 57: 479–98.
|
|
156
|
+
- Kustas, W. P., H. Nieto, O. Garcia-Tejera, et al. 2022. “Impact of Advection on Two-Source Energy Balance (TSEB) Canopy Transpiration Parameterization for Vineyards in the California Central Valley.” Irrigation Science, ahead of print. Scopus. https://doi.org/10.1007/s00271-022-00778-y.
|
|
147
157
|
|
|
148
158
|
|
|
149
159
|
## Tests
|
|
@@ -152,8 +162,9 @@ and in an image (*ExampleImage_\< variable >.tif*). Just run the high-level scri
|
|
|
152
162
|
provided by default and compare the resulting outputs with the files stored in *./Output/*
|
|
153
163
|
|
|
154
164
|
## Contributors
|
|
155
|
-
- **Hector Nieto** <hnieto@
|
|
165
|
+
- **Hector Nieto** <hnieto@csic.es> <hector.nieto.solana@gmail.com> main developer
|
|
156
166
|
- **Radoslaw Guzinski** main developer, tester
|
|
167
|
+
- **Tarique Aziz** developer, tester
|
|
157
168
|
- **William P. Kustas** TSEB modeling, tester
|
|
158
169
|
- **Ana Andreu** tester
|
|
159
170
|
|