RadGEEToolbox 1.6.6__tar.gz → 1.6.8__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.
Files changed (22) hide show
  1. {radgeetoolbox-1.6.6 → radgeetoolbox-1.6.8}/PKG-INFO +33 -10
  2. {radgeetoolbox-1.6.6 → radgeetoolbox-1.6.8}/README.md +32 -9
  3. {radgeetoolbox-1.6.6 → radgeetoolbox-1.6.8}/RadGEEToolbox/LandsatCollection.py +1043 -207
  4. {radgeetoolbox-1.6.6 → radgeetoolbox-1.6.8}/RadGEEToolbox/Sentinel1Collection.py +543 -210
  5. {radgeetoolbox-1.6.6 → radgeetoolbox-1.6.8}/RadGEEToolbox/Sentinel2Collection.py +937 -216
  6. radgeetoolbox-1.6.8/RadGEEToolbox/VisParams.py +221 -0
  7. {radgeetoolbox-1.6.6 → radgeetoolbox-1.6.8}/RadGEEToolbox/__init__.py +1 -1
  8. {radgeetoolbox-1.6.6 → radgeetoolbox-1.6.8}/RadGEEToolbox.egg-info/PKG-INFO +33 -10
  9. {radgeetoolbox-1.6.6 → radgeetoolbox-1.6.8}/RadGEEToolbox.egg-info/SOURCES.txt +4 -1
  10. {radgeetoolbox-1.6.6 → radgeetoolbox-1.6.8}/pyproject.toml +1 -1
  11. {radgeetoolbox-1.6.6 → radgeetoolbox-1.6.8}/setup.py +1 -1
  12. radgeetoolbox-1.6.8/tests/test_landsat_collection.py +15 -0
  13. radgeetoolbox-1.6.8/tests/test_sentinel1_collection.py +30 -0
  14. radgeetoolbox-1.6.8/tests/test_sentinel2_collection.py +15 -0
  15. radgeetoolbox-1.6.6/RadGEEToolbox/VisParams.py +0 -133
  16. {radgeetoolbox-1.6.6 → radgeetoolbox-1.6.8}/LICENSE.txt +0 -0
  17. {radgeetoolbox-1.6.6 → radgeetoolbox-1.6.8}/RadGEEToolbox/CollectionStitch.py +0 -0
  18. {radgeetoolbox-1.6.6 → radgeetoolbox-1.6.8}/RadGEEToolbox/GetPalette.py +0 -0
  19. {radgeetoolbox-1.6.6 → radgeetoolbox-1.6.8}/RadGEEToolbox.egg-info/dependency_links.txt +0 -0
  20. {radgeetoolbox-1.6.6 → radgeetoolbox-1.6.8}/RadGEEToolbox.egg-info/requires.txt +0 -0
  21. {radgeetoolbox-1.6.6 → radgeetoolbox-1.6.8}/RadGEEToolbox.egg-info/top_level.txt +0 -0
  22. {radgeetoolbox-1.6.6 → radgeetoolbox-1.6.8}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: RadGEEToolbox
3
- Version: 1.6.6
3
+ Version: 1.6.8
4
4
  Summary: Streamlined Multispectral & SAR Analysis for Google Earth Engine Python API
5
5
  Home-page: https://github.com/radwinskis/RadGEEToolbox
6
6
  Author: Mark Radwin
@@ -46,7 +46,7 @@ Although similar packages exist (eemont, geetools, etc.), `RadGEEToolbox` extend
46
46
  ***Table 1.*** *Comparison of functionality between RadGEEToolbox, eemont, and geetools.*
47
47
 
48
48
  | Capability | **RadGEEToolbox** | **eemont** | **geetools** |
49
- |---|:---:|:---:|:---:|
49
+ |:--------------:|:---:|:---:|:---:|
50
50
  | **Dataset & Workflow Specific API's** | **YES** | NO | NO |
51
51
  | **Synthetic Aperture Radar (S1) Support** | **YES** | NO | NO |
52
52
  | **Zonal Time-series Extraction** | **YES** | **YES** | **YES** |
@@ -54,6 +54,8 @@ Although similar packages exist (eemont, geetools, etc.), `RadGEEToolbox` extend
54
54
  | **Transect Time-series Extraction** | **YES** | NO | NO |
55
55
  | **Comprehensive Preprocessing Operations** | **YES** | **YES** | **YES** |
56
56
  | **Reflectance Scaling (DN to ρ)** | **YES** | **YES** | **YES** |
57
+ | **Narrowband to Broadband Albedo Calculation** | **YES** | NO | NO |
58
+ | **Built-in Spectral Index Calculations** | **YES** | **YES** | **YES** |
57
59
  | **Land Surface Temperature Calculation (Landsat)** | **YES** | NO | NO |
58
60
  | **Image Selection by Date or Index** | **YES** | **YES** | NO |
59
61
  | **Visualization Presets/Tools** | **YES** | NO | NO |
@@ -127,11 +129,32 @@ _________
127
129
 
128
130
  - Modular tools for processing **Landsat, Sentinel-1 SAR, and Sentinel-2** imagery
129
131
  - Efficient filtering, masking, and mosaicking of Earth Engine image collections
130
- - Built-in support for computing **spectral indices** (NDWI, NDVI, LST, turbidity, chlorophyll, etc.)
132
+ - Built-in support for computing **spectral indices** (see below for complete list)
131
133
  - SAR utilities for **multilooking**, **speckle filtering**, and **backscatter conversion**
132
- - Automated extraction of **transect and zonal statistics** across image collections
134
+ - Automated and flexible extraction of **transect and zonal statistics** across image collections
133
135
  - Easy conversion between RadGEEToolbox and standard Earth Engine objects
134
- - Server-side–friendly workflows and caching for faster, scalable processing
136
+ - Server-side–friendly workflows and caching for **faster, scalable** processing
137
+
138
+ **List of all spectral index calculations available for
139
+ Landsat (TM & OLI) and Sentinel-2 (MSI) imagery:**
140
+
141
+ - Normalized Difference Water Index (NDWI)
142
+ - Modified Normalized Difference Water Index (MNDWI)
143
+ - Normalized Difference Vegetation Index (NDVI)
144
+ - Enhanced Vegetation Index (EVI)
145
+ - Soil Adjusted Vegetation Index (SAVI)
146
+ - Modified Soil Adjusted Vegetation Index (MSAVI)
147
+ - Normalized Difference Moisture Index (NDMI)
148
+ - Normalized Difference Turbidity Index (NDTI)
149
+ - Chlorophyll-a Index (different for Landsat vs Sentinel-2)
150
+ - Normalized Burn Ratio (NBR)
151
+ - Normalized Difference Snow Index (NDSI)
152
+ - Land Surface Temperature (LST) in Celsius (Landsat only)
153
+ - Halite Index (Radwin & Bowen, 2021)
154
+ - Gypsum Index (modified from Radwin & Bowen, 2021)
155
+ - Broadband Albedo
156
+
157
+
135
158
 
136
159
  Features of `RadGEEToolbox` will be expanded in the future - if there is something you would like to see implemented in `RadGEEToolbox`, please open an issue or discussion on GitHub.
137
160
 
@@ -149,15 +172,15 @@ _____________
149
172
 
150
173
  ### Installing via pip
151
174
 
152
- To install `RadGEEToolbox` version 1.6.6 using pip (NOTE: it is recommended to create a new virtual environment):
175
+ To install `RadGEEToolbox` version 1.6.8 using pip (NOTE: it is recommended to create a new virtual environment):
153
176
 
154
177
  ```bash
155
- pip install RadGEEToolbox==1.6.6
178
+ pip install RadGEEToolbox==1.6.8
156
179
  ```
157
180
 
158
181
  ### Installing via Conda
159
182
 
160
- To install `RadGEEToolbox` version 1.6.6 using conda-forge (NOTE: it is recommended to create a new virtual environment):
183
+ To install `RadGEEToolbox` version 1.6.8 using conda-forge (NOTE: it is recommended to create a new virtual environment):
161
184
 
162
185
  ```bash
163
186
  conda install conda-forge::radgeetoolbox
@@ -188,7 +211,7 @@ To verify that `RadGEEToolbox` was installed correctly:
188
211
  python -c "import RadGEEToolbox; print(RadGEEToolbox.__version__)"
189
212
  ```
190
213
 
191
- You should see `1.6.6` printed as the version number.
214
+ You should see `1.6.8` printed as the version number.
192
215
 
193
216
  ### Want to Visualize Data? Install These Too
194
217
 
@@ -278,7 +301,7 @@ calculate_water_area = cloud_masked_NDWI_collection.PixelAreaSumCollection(
278
301
  threshold=0, #binary classification threshold for unclassified rasters,
279
302
  scale=90 #pixel size for zonal statistics
280
303
  )
281
- water_area_time_series = calculate_water_area.aggregate_array('ndwi').getInfo()
304
+ water_area_time_series = calculate_water_area.ExtractProperties('ndwi')
282
305
  print('List of square meters of water in images:', water_area_time_series)
283
306
  ```
284
307
 
@@ -17,7 +17,7 @@ Although similar packages exist (eemont, geetools, etc.), `RadGEEToolbox` extend
17
17
  ***Table 1.*** *Comparison of functionality between RadGEEToolbox, eemont, and geetools.*
18
18
 
19
19
  | Capability | **RadGEEToolbox** | **eemont** | **geetools** |
20
- |---|:---:|:---:|:---:|
20
+ |:--------------:|:---:|:---:|:---:|
21
21
  | **Dataset & Workflow Specific API's** | **YES** | NO | NO |
22
22
  | **Synthetic Aperture Radar (S1) Support** | **YES** | NO | NO |
23
23
  | **Zonal Time-series Extraction** | **YES** | **YES** | **YES** |
@@ -25,6 +25,8 @@ Although similar packages exist (eemont, geetools, etc.), `RadGEEToolbox` extend
25
25
  | **Transect Time-series Extraction** | **YES** | NO | NO |
26
26
  | **Comprehensive Preprocessing Operations** | **YES** | **YES** | **YES** |
27
27
  | **Reflectance Scaling (DN to ρ)** | **YES** | **YES** | **YES** |
28
+ | **Narrowband to Broadband Albedo Calculation** | **YES** | NO | NO |
29
+ | **Built-in Spectral Index Calculations** | **YES** | **YES** | **YES** |
28
30
  | **Land Surface Temperature Calculation (Landsat)** | **YES** | NO | NO |
29
31
  | **Image Selection by Date or Index** | **YES** | **YES** | NO |
30
32
  | **Visualization Presets/Tools** | **YES** | NO | NO |
@@ -98,11 +100,32 @@ _________
98
100
 
99
101
  - Modular tools for processing **Landsat, Sentinel-1 SAR, and Sentinel-2** imagery
100
102
  - Efficient filtering, masking, and mosaicking of Earth Engine image collections
101
- - Built-in support for computing **spectral indices** (NDWI, NDVI, LST, turbidity, chlorophyll, etc.)
103
+ - Built-in support for computing **spectral indices** (see below for complete list)
102
104
  - SAR utilities for **multilooking**, **speckle filtering**, and **backscatter conversion**
103
- - Automated extraction of **transect and zonal statistics** across image collections
105
+ - Automated and flexible extraction of **transect and zonal statistics** across image collections
104
106
  - Easy conversion between RadGEEToolbox and standard Earth Engine objects
105
- - Server-side–friendly workflows and caching for faster, scalable processing
107
+ - Server-side–friendly workflows and caching for **faster, scalable** processing
108
+
109
+ **List of all spectral index calculations available for
110
+ Landsat (TM & OLI) and Sentinel-2 (MSI) imagery:**
111
+
112
+ - Normalized Difference Water Index (NDWI)
113
+ - Modified Normalized Difference Water Index (MNDWI)
114
+ - Normalized Difference Vegetation Index (NDVI)
115
+ - Enhanced Vegetation Index (EVI)
116
+ - Soil Adjusted Vegetation Index (SAVI)
117
+ - Modified Soil Adjusted Vegetation Index (MSAVI)
118
+ - Normalized Difference Moisture Index (NDMI)
119
+ - Normalized Difference Turbidity Index (NDTI)
120
+ - Chlorophyll-a Index (different for Landsat vs Sentinel-2)
121
+ - Normalized Burn Ratio (NBR)
122
+ - Normalized Difference Snow Index (NDSI)
123
+ - Land Surface Temperature (LST) in Celsius (Landsat only)
124
+ - Halite Index (Radwin & Bowen, 2021)
125
+ - Gypsum Index (modified from Radwin & Bowen, 2021)
126
+ - Broadband Albedo
127
+
128
+
106
129
 
107
130
  Features of `RadGEEToolbox` will be expanded in the future - if there is something you would like to see implemented in `RadGEEToolbox`, please open an issue or discussion on GitHub.
108
131
 
@@ -120,15 +143,15 @@ _____________
120
143
 
121
144
  ### Installing via pip
122
145
 
123
- To install `RadGEEToolbox` version 1.6.6 using pip (NOTE: it is recommended to create a new virtual environment):
146
+ To install `RadGEEToolbox` version 1.6.8 using pip (NOTE: it is recommended to create a new virtual environment):
124
147
 
125
148
  ```bash
126
- pip install RadGEEToolbox==1.6.6
149
+ pip install RadGEEToolbox==1.6.8
127
150
  ```
128
151
 
129
152
  ### Installing via Conda
130
153
 
131
- To install `RadGEEToolbox` version 1.6.6 using conda-forge (NOTE: it is recommended to create a new virtual environment):
154
+ To install `RadGEEToolbox` version 1.6.8 using conda-forge (NOTE: it is recommended to create a new virtual environment):
132
155
 
133
156
  ```bash
134
157
  conda install conda-forge::radgeetoolbox
@@ -159,7 +182,7 @@ To verify that `RadGEEToolbox` was installed correctly:
159
182
  python -c "import RadGEEToolbox; print(RadGEEToolbox.__version__)"
160
183
  ```
161
184
 
162
- You should see `1.6.6` printed as the version number.
185
+ You should see `1.6.8` printed as the version number.
163
186
 
164
187
  ### Want to Visualize Data? Install These Too
165
188
 
@@ -249,7 +272,7 @@ calculate_water_area = cloud_masked_NDWI_collection.PixelAreaSumCollection(
249
272
  threshold=0, #binary classification threshold for unclassified rasters,
250
273
  scale=90 #pixel size for zonal statistics
251
274
  )
252
- water_area_time_series = calculate_water_area.aggregate_array('ndwi').getInfo()
275
+ water_area_time_series = calculate_water_area.ExtractProperties('ndwi')
253
276
  print('List of square meters of water in images:', water_area_time_series)
254
277
  ```
255
278