RadGEEToolbox 1.6.8__py3-none-any.whl → 1.6.10__py3-none-any.whl

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.
RadGEEToolbox/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
- __version__ = "1.6.8"
1
+ __version__ = "1.6.10"
2
2
 
3
3
  from .CollectionStitch import CollectionStitch, MosaicByDate
4
4
  from .GetPalette import get_palette
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: RadGEEToolbox
3
- Version: 1.6.8
3
+ Version: 1.6.10
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
@@ -37,7 +37,7 @@ Dynamic: requires-python
37
37
 
38
38
  ### [See documentation here](https://radgeetoolbox.readthedocs.io/en/latest/)
39
39
 
40
- **RadGEEToolbox** is an open-source Python package that simplifies the processing and analysis of satellite imagery using the Google Earth Engine Python API. It provides ready-to-use tools for filtering, masking, mosaicking, spectral index calculations, and extracting statistics from multispectral (Landsat, Sentinel-2) and SAR (Sentinel-1) datasets.
40
+ **RadGEEToolbox** is an open-source Python package that **simplifies the processing and analysis of satellite imagery using the Google Earth Engine Python API**. It provides **ready-to-use tools for filtering, masking, mosaicking, image/band management, spectral index calculations, and extracting statistics** from multispectral (Landsat, Sentinel-2) and SAR (Sentinel-1) datasets.
41
41
 
42
42
  Designed for both new and advanced users of Google Earth Engine, RadGEEToolbox minimizes repetitive scripting, accelerates common remote sensing workflows, and aims to maximize efficiency within the constraints of the Google Earth Engine API. Whether you’re building a time series of vegetation indices or extracting surface properties along transects, this package helps get results faster.
43
43
 
@@ -53,13 +53,16 @@ Although similar packages exist (eemont, geetools, etc.), `RadGEEToolbox` extend
53
53
  | **Area Time-series Extraction** | **YES** | NO | NO |
54
54
  | **Transect Time-series Extraction** | **YES** | NO | NO |
55
55
  | **Comprehensive Preprocessing Operations** | **YES** | **YES** | **YES** |
56
- | **Reflectance Scaling (DN to ρ)** | **YES** | **YES** | **YES** |
56
+ | **Reflectance Scaling** | **YES** | **YES** | **YES** |
57
+ | **Land Surface Temperature Calculation (Landsat)** | **YES** | NO | NO |
57
58
  | **Narrowband to Broadband Albedo Calculation** | **YES** | NO | NO |
58
59
  | **Built-in Spectral Index Calculations** | **YES** | **YES** | **YES** |
59
- | **Land Surface Temperature Calculation (Landsat)** | **YES** | NO | NO |
60
+ | **Anomaly (Deviation from Mean) Calculations** | **YES** | NO | NO |
61
+ | **Image Masking for Classified Images** | **YES** | NO | NO |
62
+ | **Merging of Multiple Collections** | **YES** | NO | NO |
60
63
  | **Image Selection by Date or Index** | **YES** | **YES** | NO |
61
64
  | **Visualization Presets/Tools** | **YES** | NO | NO |
62
-
65
+ | **Batch Export to GEE Asset** | **YES** | **YES** | **YES** |
63
66
  _________
64
67
  ## Getting Started with Google Earth Engine
65
68
 
@@ -128,12 +131,16 @@ _________
128
131
  ## Key Features
129
132
 
130
133
  - Modular tools for processing **Landsat, Sentinel-1 SAR, and Sentinel-2** imagery
131
- - Efficient filtering, masking, and mosaicking of Earth Engine image collections
134
+ - Efficient filtering, **cloud/shadow/water masking, threshold masking, spectral classification, and mosaicking** of Earth Engine image collections
135
+ - Collection management such as **collection merging and band renaming**
132
136
  - Built-in support for computing **spectral indices** (see below for complete list)
137
+ - **Temporal reductions** (mean, median, min, etc.) and **monthly median** functionality
138
+ - Image anomaly calculation
133
139
  - SAR utilities for **multilooking**, **speckle filtering**, and **backscatter conversion**
134
- - Automated and flexible extraction of **transect and zonal statistics** across image collections
140
+ - Automated and flexible extraction of **transect and zonal statistics (supporting multiple coordinates or geometries)** across image collections
135
141
  - Easy conversion between RadGEEToolbox and standard Earth Engine objects
136
142
  - Server-side–friendly workflows and caching for **faster, scalable** processing
143
+ - Automatically **batch export image collections to GEE assets**
137
144
 
138
145
  **List of all spectral index calculations available for
139
146
  Landsat (TM & OLI) and Sentinel-2 (MSI) imagery:**
@@ -158,7 +165,7 @@ Landsat (TM & OLI) and Sentinel-2 (MSI) imagery:**
158
165
 
159
166
  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.
160
167
 
161
- 🔍 For a full breakdown of available tools, see the [RadGEEToolbox documentation »](https://radgeetoolbox.readthedocs.io/en/latest/)
168
+ 🔍 For a full breakdown of available features and tools, see the [RadGEEToolbox documentation »](https://radgeetoolbox.readthedocs.io/en/latest/)
162
169
 
163
170
  _____________
164
171
 
@@ -172,15 +179,15 @@ _____________
172
179
 
173
180
  ### Installing via pip
174
181
 
175
- To install `RadGEEToolbox` version 1.6.8 using pip (NOTE: it is recommended to create a new virtual environment):
182
+ To install `RadGEEToolbox` version 1.6.9 using pip (NOTE: it is recommended to create a new virtual environment):
176
183
 
177
184
  ```bash
178
- pip install RadGEEToolbox==1.6.8
185
+ pip install RadGEEToolbox==1.6.9
179
186
  ```
180
187
 
181
188
  ### Installing via Conda
182
189
 
183
- To install `RadGEEToolbox` version 1.6.8 using conda-forge (NOTE: it is recommended to create a new virtual environment):
190
+ To install `RadGEEToolbox` version 1.6.9 using conda-forge (NOTE: it is recommended to create a new virtual environment):
184
191
 
185
192
  ```bash
186
193
  conda install conda-forge::radgeetoolbox
@@ -211,7 +218,7 @@ To verify that `RadGEEToolbox` was installed correctly:
211
218
  python -c "import RadGEEToolbox; print(RadGEEToolbox.__version__)"
212
219
  ```
213
220
 
214
- You should see `1.6.8` printed as the version number.
221
+ You should see `1.6.9` printed as the version number.
215
222
 
216
223
  ### Want to Visualize Data? Install These Too
217
224
 
@@ -288,6 +295,7 @@ water_classification_maps = cloud_masked_collection.ndwi_collection(
288
295
  threshold=0
289
296
  )
290
297
  ```
298
+ Then, explore images from `water_classification_maps` as shown below either by exporting to a GEE asset for download, or by using `geemap` 👇
291
299
 
292
300
  ![Visualization of true color and classified water (in blue) from one of the dates in the collection](LakePowellNDWI.png)
293
301
 
@@ -302,8 +310,9 @@ calculate_water_area = cloud_masked_NDWI_collection.PixelAreaSumCollection(
302
310
  scale=90 #pixel size for zonal statistics
303
311
  )
304
312
  water_area_time_series = calculate_water_area.ExtractProperties('ndwi')
305
- print('List of square meters of water in images:', water_area_time_series)
306
313
  ```
314
+ Then, directly plot `water_area_time_series` using Matplotlib as shown below 👇
315
+
307
316
 
308
317
  ![Plotted Results from Above Example - All Processed in Less Than 5 Seconds!](LakePowellPlot.png)
309
318
 
@@ -0,0 +1,12 @@
1
+ RadGEEToolbox/CollectionStitch.py,sha256=dLRzJZLZ1QTJqqbWPElyTjxb1m0T_WuBTo6wNzcCXq4,3884
2
+ RadGEEToolbox/GetPalette.py,sha256=YpAE9lzI5aXWHJKs1SXwZ62e8nKo8zfjKSpz5oJQSA8,2872
3
+ RadGEEToolbox/LandsatCollection.py,sha256=F7h-xthoulnrFgGHn3V9rrldwEZ7V5KPKIlAHvOirm4,177817
4
+ RadGEEToolbox/Sentinel1Collection.py,sha256=w18ebXjhgBgh2_ZBbThd1xlT-C3gGtREFUpcqWlbdh0,93333
5
+ RadGEEToolbox/Sentinel2Collection.py,sha256=V1N8q4sk_GvoJUUonEcBYEvHI4beTaNFl2GBbG03ozY,147513
6
+ RadGEEToolbox/VisParams.py,sha256=4aQV4l_IA-CjMBUXYDDLQ2fQyA3USSRN0A3VY07dGQ8,8571
7
+ RadGEEToolbox/__init__.py,sha256=1b4xRQPEFKSIXvhaeEK_HehUb3kifb8goj6crRR_QyQ,531
8
+ radgeetoolbox-1.6.10.dist-info/licenses/LICENSE.txt,sha256=5Xj9dwVkawz6d8zhCwJy0SmXvm0U4K_msJnOrkHLO1w,1089
9
+ radgeetoolbox-1.6.10.dist-info/METADATA,sha256=jixh30J6joFrz0kUCfnQw_A-1HtUPQTxHoM13NBjeP8,16394
10
+ radgeetoolbox-1.6.10.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
11
+ radgeetoolbox-1.6.10.dist-info/top_level.txt,sha256=W2E520tugQoptDkhctKFbzsheL2l_DyYLKqKXkD9G_E,14
12
+ radgeetoolbox-1.6.10.dist-info/RECORD,,
@@ -1,12 +0,0 @@
1
- RadGEEToolbox/CollectionStitch.py,sha256=dLRzJZLZ1QTJqqbWPElyTjxb1m0T_WuBTo6wNzcCXq4,3884
2
- RadGEEToolbox/GetPalette.py,sha256=YpAE9lzI5aXWHJKs1SXwZ62e8nKo8zfjKSpz5oJQSA8,2872
3
- RadGEEToolbox/LandsatCollection.py,sha256=_ATVLz_7NDYbPZeg1mpk9RVltI9RA9H001phS71uHns,145106
4
- RadGEEToolbox/Sentinel1Collection.py,sha256=zd5XlxOZk80SeCN7OlOlpJfYstfXD90EawIWD9Mvghs,86192
5
- RadGEEToolbox/Sentinel2Collection.py,sha256=EGKq2bREsge7LCXrBmcVNFUafHIzykj9QajZmLmimb8,115660
6
- RadGEEToolbox/VisParams.py,sha256=4aQV4l_IA-CjMBUXYDDLQ2fQyA3USSRN0A3VY07dGQ8,8571
7
- RadGEEToolbox/__init__.py,sha256=Ij9uuIlvwFR39Ms6xYq5kih7AdjmO0366kYnME_KTsI,530
8
- radgeetoolbox-1.6.8.dist-info/licenses/LICENSE.txt,sha256=5Xj9dwVkawz6d8zhCwJy0SmXvm0U4K_msJnOrkHLO1w,1089
9
- radgeetoolbox-1.6.8.dist-info/METADATA,sha256=xAnfdPUVfPG54h5dJIiiYxHodaECGTeOMN5NmdVMvjw,15571
10
- radgeetoolbox-1.6.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
11
- radgeetoolbox-1.6.8.dist-info/top_level.txt,sha256=W2E520tugQoptDkhctKFbzsheL2l_DyYLKqKXkD9G_E,14
12
- radgeetoolbox-1.6.8.dist-info/RECORD,,