RadGEEToolbox 1.7.2__py3-none-any.whl → 1.7.3__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,6 +1,7 @@
1
- __version__ = "1.7.2"
1
+ __version__ = "1.7.3"
2
2
 
3
3
  from .CollectionStitch import CollectionStitch, MosaicByDate
4
+ from .Export import ExportToDrive
4
5
  from .GetPalette import get_palette
5
6
  from .LandsatCollection import LandsatCollection
6
7
  from .Sentinel1Collection import Sentinel1Collection
@@ -10,6 +11,7 @@ from .VisParams import get_visualization_params
10
11
 
11
12
  __all__ = [
12
13
  "CollectionStitch",
14
+ "ExportToDrive",
13
15
  "MosaicByDate",
14
16
  "get_palette",
15
17
  "LandsatCollection",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: RadGEEToolbox
3
- Version: 1.7.2
3
+ Version: 1.7.3
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
@@ -43,7 +43,7 @@ Designed for both new and advanced users of Google Earth Engine, RadGEEToolbox m
43
43
 
44
44
  Although similar packages exist (eemont, geetools, etc.), `RadGEEToolbox` extends functionality and provides cohesive, chainable methods for research oriented projects working with Landsat TM & OLI, Sentinel-1 SAR, and/or Sentinel-2 MSI datasets (Table 1). The ultimate goal of `RadGEEToolbox` is to make satellite image processing easier and faster for real world applications relying on the most commonly utilized remote sensing platforms.
45
45
 
46
- As of version `1.7.2`, `RadGEEToolbox` supports any generic image collection via the `GenericCollection` module which allows for utilization of the same data management, temporal reduction, zonal statistics, and data export tools available for the `LandsatCollection`, `Sentinel1Collection`, and `Sentinel2Collection` modules. This allows users to provide their own image collection of choice, such as PRISM or MODIS data, to benefit from the tools available with `RadGEEToolbox`.
46
+ As of version `1.7.3`, `RadGEEToolbox` supports any generic image collection via the `GenericCollection` module which allows for utilization of the same data management, temporal reduction, zonal statistics, and data export tools available for the `LandsatCollection`, `Sentinel1Collection`, and `Sentinel2Collection` modules. This allows users to provide their own image collection of choice, such as PRISM or MODIS data, to benefit from the tools available with `RadGEEToolbox`.
47
47
 
48
48
  ***Table 1.*** *Comparison of functionality between RadGEEToolbox, eemont, and geetools.*
49
49
 
@@ -54,6 +54,7 @@ As of version `1.7.2`, `RadGEEToolbox` supports any generic image collection via
54
54
  | **Zonal Time-series Extraction** | **YES** | **YES** | **YES** |
55
55
  | **Area Time-series Extraction** | **YES** | NO | NO |
56
56
  | **Transect Time-series Extraction** | **YES** | NO | NO |
57
+ | **Mann-Kendall & Sen's Slope Trend Analysis** | **YES** | NO | NO |
57
58
  | **Comprehensive Preprocessing Operations** | **YES** | **YES** | **YES** |
58
59
  | **Reflectance Scaling** | **YES** | **YES** | **YES** |
59
60
  | **Land Surface Temperature Calculation (Landsat)** | **YES** | NO | NO |
@@ -65,6 +66,8 @@ As of version `1.7.2`, `RadGEEToolbox` supports any generic image collection via
65
66
  | **Image Selection by Date or Index** | **YES** | **YES** | NO |
66
67
  | **Visualization Presets/Tools** | **YES** | NO | NO |
67
68
  | **Batch Export to GEE Asset** | **YES** | **YES** | **YES** |
69
+ | **Batch Export to Google Drive** | **YES** | **YES** | **YES** |
70
+
68
71
  _________
69
72
  ## Getting Started with Google Earth Engine
70
73
 
@@ -140,9 +143,10 @@ _________
140
143
  - Image anomaly calculation
141
144
  - SAR utilities for **multilooking**, **speckle filtering**, and **backscatter conversion**
142
145
  - Automated and flexible extraction of **transect and zonal statistics (supporting multiple coordinates or geometries)** across image collections
146
+ - Calculation of Mann-Kendall and Sen's Slope timeseries trend analysis
143
147
  - Easy conversion between RadGEEToolbox and standard Earth Engine objects
144
148
  - Server-side–friendly workflows and caching for **faster, scalable** processing
145
- - Automatically **batch export image collections to GEE assets**
149
+ - Automatically **batch export image collections to GEE assets or to Google Drive**
146
150
 
147
151
  **List of all spectral index calculations available for
148
152
  Landsat (TM & OLI) and Sentinel-2 (MSI) imagery:**
@@ -181,15 +185,15 @@ _____________
181
185
 
182
186
  ### Installing via pip
183
187
 
184
- To install `RadGEEToolbox` version 1.7.2 using pip (NOTE: it is recommended to create a new virtual environment):
188
+ To install `RadGEEToolbox` version 1.7.3 using pip (NOTE: it is recommended to create a new virtual environment):
185
189
 
186
190
  ```bash
187
- pip install RadGEEToolbox==1.7.2
191
+ pip install RadGEEToolbox==1.7.3
188
192
  ```
189
193
 
190
194
  ### Installing via Conda
191
195
 
192
- To install `RadGEEToolbox` version 1.7.2 using conda-forge (NOTE: it is recommended to create a new virtual environment):
196
+ To install `RadGEEToolbox` version 1.7.3 using conda-forge (NOTE: it is recommended to create a new virtual environment):
193
197
 
194
198
  ```bash
195
199
  conda install conda-forge::radgeetoolbox
@@ -220,7 +224,7 @@ To verify that `RadGEEToolbox` was installed correctly:
220
224
  python -c "import RadGEEToolbox; print(RadGEEToolbox.__version__)"
221
225
  ```
222
226
 
223
- You should see `1.7.2` printed as the version number.
227
+ You should see `1.7.3` printed as the version number.
224
228
 
225
229
  ### Want to Visualize Data? Install These Too
226
230
 
@@ -0,0 +1,14 @@
1
+ RadGEEToolbox/CollectionStitch.py,sha256=dLRzJZLZ1QTJqqbWPElyTjxb1m0T_WuBTo6wNzcCXq4,3884
2
+ RadGEEToolbox/Export.py,sha256=H815I3uqs3M-pPcStRiseDbK1y3VWhIMRmH0XuCqGA4,10470
3
+ RadGEEToolbox/GenericCollection.py,sha256=MF8kBNEf1PjlzVTKMQ9IKVGISrxDgudvxrOMpxv7KMI,169993
4
+ RadGEEToolbox/GetPalette.py,sha256=Ve7vYzs0EYHZyvFwaB_k8FR4uo5RRDy4pcq7eBK9yM0,7145
5
+ RadGEEToolbox/LandsatCollection.py,sha256=JhkTfISIvSCHQ853MKi7Lgh8bv9vpwZC018pwzkzo6s,237720
6
+ RadGEEToolbox/Sentinel1Collection.py,sha256=IZqC33vW3m5pO8zRuKanISElB10dEVgCZEYAt_v_qhY,158637
7
+ RadGEEToolbox/Sentinel2Collection.py,sha256=bKwfSccjX-mvIf3awiSLBVGKFXaVZEXAMEu9O39aBy4,206150
8
+ RadGEEToolbox/VisParams.py,sha256=ONjnJd83jfaM1r-hbtlcIxiBOGMoJGtdHF0mw1iaw5c,8183
9
+ RadGEEToolbox/__init__.py,sha256=cWtHRpPpNh1vo3DWsp_4d96QRZwMe25mS-Zz0bvoOSE,663
10
+ radgeetoolbox-1.7.3.dist-info/licenses/LICENSE.txt,sha256=5Xj9dwVkawz6d8zhCwJy0SmXvm0U4K_msJnOrkHLO1w,1089
11
+ radgeetoolbox-1.7.3.dist-info/METADATA,sha256=vQig4v_Ie9opc7LCvXjXPCDRpxMW-G1qUKXh5vGQu5k,17737
12
+ radgeetoolbox-1.7.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
13
+ radgeetoolbox-1.7.3.dist-info/top_level.txt,sha256=W2E520tugQoptDkhctKFbzsheL2l_DyYLKqKXkD9G_E,14
14
+ radgeetoolbox-1.7.3.dist-info/RECORD,,
@@ -1,13 +0,0 @@
1
- RadGEEToolbox/CollectionStitch.py,sha256=dLRzJZLZ1QTJqqbWPElyTjxb1m0T_WuBTo6wNzcCXq4,3884
2
- RadGEEToolbox/GenericCollection.py,sha256=7ykideokw3zRi27Hiq6PwhgQeAs9Ju_3-HY8UInnWjo,136872
3
- RadGEEToolbox/GetPalette.py,sha256=Ve7vYzs0EYHZyvFwaB_k8FR4uo5RRDy4pcq7eBK9yM0,7145
4
- RadGEEToolbox/LandsatCollection.py,sha256=nJOwA_vNOFV_cVrLEbV-BOoDwbhMiOY1T2ryeIS4kOM,201385
5
- RadGEEToolbox/Sentinel1Collection.py,sha256=zKc3oKcglYjXyV856u40Jc9ldm-zBNA79tQgq7NhiRQ,125524
6
- RadGEEToolbox/Sentinel2Collection.py,sha256=69cGZxkbZdpQQB9UatSUrYc8b3CzTw6ynOwe4E9nFV8,171243
7
- RadGEEToolbox/VisParams.py,sha256=ONjnJd83jfaM1r-hbtlcIxiBOGMoJGtdHF0mw1iaw5c,8183
8
- RadGEEToolbox/__init__.py,sha256=4Rfpi4T4AyZMfK4TujNXdlCqCWdlvdHItwPWgkqypDk,606
9
- radgeetoolbox-1.7.2.dist-info/licenses/LICENSE.txt,sha256=5Xj9dwVkawz6d8zhCwJy0SmXvm0U4K_msJnOrkHLO1w,1089
10
- radgeetoolbox-1.7.2.dist-info/METADATA,sha256=0L-GFe_BUd_pp3nAIySE3u88bGyuzR7zUs8Na0Bie6k,17504
11
- radgeetoolbox-1.7.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
12
- radgeetoolbox-1.7.2.dist-info/top_level.txt,sha256=W2E520tugQoptDkhctKFbzsheL2l_DyYLKqKXkD9G_E,14
13
- radgeetoolbox-1.7.2.dist-info/RECORD,,