RadGEEToolbox 1.7.4__tar.gz → 1.7.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.
- {radgeetoolbox-1.7.4 → radgeetoolbox-1.7.5}/PKG-INFO +6 -6
- {radgeetoolbox-1.7.4 → radgeetoolbox-1.7.5}/README.md +5 -5
- {radgeetoolbox-1.7.4 → radgeetoolbox-1.7.5}/RadGEEToolbox/GenericCollection.py +568 -168
- {radgeetoolbox-1.7.4 → radgeetoolbox-1.7.5}/RadGEEToolbox/LandsatCollection.py +569 -168
- {radgeetoolbox-1.7.4 → radgeetoolbox-1.7.5}/RadGEEToolbox/Sentinel1Collection.py +556 -168
- {radgeetoolbox-1.7.4 → radgeetoolbox-1.7.5}/RadGEEToolbox/Sentinel2Collection.py +571 -170
- {radgeetoolbox-1.7.4 → radgeetoolbox-1.7.5}/RadGEEToolbox/__init__.py +1 -1
- {radgeetoolbox-1.7.4 → radgeetoolbox-1.7.5}/RadGEEToolbox.egg-info/PKG-INFO +6 -6
- {radgeetoolbox-1.7.4 → radgeetoolbox-1.7.5}/pyproject.toml +1 -1
- {radgeetoolbox-1.7.4 → radgeetoolbox-1.7.5}/setup.py +1 -1
- {radgeetoolbox-1.7.4 → radgeetoolbox-1.7.5}/LICENSE.txt +0 -0
- {radgeetoolbox-1.7.4 → radgeetoolbox-1.7.5}/RadGEEToolbox/CollectionStitch.py +0 -0
- {radgeetoolbox-1.7.4 → radgeetoolbox-1.7.5}/RadGEEToolbox/Export.py +0 -0
- {radgeetoolbox-1.7.4 → radgeetoolbox-1.7.5}/RadGEEToolbox/GetPalette.py +0 -0
- {radgeetoolbox-1.7.4 → radgeetoolbox-1.7.5}/RadGEEToolbox/VisParams.py +0 -0
- {radgeetoolbox-1.7.4 → radgeetoolbox-1.7.5}/RadGEEToolbox.egg-info/SOURCES.txt +0 -0
- {radgeetoolbox-1.7.4 → radgeetoolbox-1.7.5}/RadGEEToolbox.egg-info/dependency_links.txt +0 -0
- {radgeetoolbox-1.7.4 → radgeetoolbox-1.7.5}/RadGEEToolbox.egg-info/requires.txt +0 -0
- {radgeetoolbox-1.7.4 → radgeetoolbox-1.7.5}/RadGEEToolbox.egg-info/top_level.txt +0 -0
- {radgeetoolbox-1.7.4 → radgeetoolbox-1.7.5}/setup.cfg +0 -0
- {radgeetoolbox-1.7.4 → radgeetoolbox-1.7.5}/tests/test_landsat_collection.py +0 -0
- {radgeetoolbox-1.7.4 → radgeetoolbox-1.7.5}/tests/test_sentinel1_collection.py +0 -0
- {radgeetoolbox-1.7.4 → radgeetoolbox-1.7.5}/tests/test_sentinel2_collection.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: RadGEEToolbox
|
|
3
|
-
Version: 1.7.
|
|
3
|
+
Version: 1.7.5
|
|
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.
|
|
46
|
+
As of version `1.7.5`, `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
|
|
|
@@ -185,15 +185,15 @@ _____________
|
|
|
185
185
|
|
|
186
186
|
### Installing via pip
|
|
187
187
|
|
|
188
|
-
To install `RadGEEToolbox` version 1.7.
|
|
188
|
+
To install `RadGEEToolbox` version 1.7.5 using pip (NOTE: it is recommended to create a new virtual environment):
|
|
189
189
|
|
|
190
190
|
```bash
|
|
191
|
-
pip install RadGEEToolbox==1.7.
|
|
191
|
+
pip install RadGEEToolbox==1.7.5
|
|
192
192
|
```
|
|
193
193
|
|
|
194
194
|
### Installing via Conda
|
|
195
195
|
|
|
196
|
-
To install `RadGEEToolbox` version 1.7.
|
|
196
|
+
To install `RadGEEToolbox` version 1.7.5 using conda-forge (NOTE: it is recommended to create a new virtual environment):
|
|
197
197
|
|
|
198
198
|
```bash
|
|
199
199
|
conda install conda-forge::radgeetoolbox
|
|
@@ -224,7 +224,7 @@ To verify that `RadGEEToolbox` was installed correctly:
|
|
|
224
224
|
python -c "import RadGEEToolbox; print(RadGEEToolbox.__version__)"
|
|
225
225
|
```
|
|
226
226
|
|
|
227
|
-
You should see `1.7.
|
|
227
|
+
You should see `1.7.5` printed as the version number.
|
|
228
228
|
|
|
229
229
|
### Want to Visualize Data? Install These Too
|
|
230
230
|
|
|
@@ -14,7 +14,7 @@ Designed for both new and advanced users of Google Earth Engine, RadGEEToolbox m
|
|
|
14
14
|
|
|
15
15
|
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.
|
|
16
16
|
|
|
17
|
-
As of version `1.7.
|
|
17
|
+
As of version `1.7.5`, `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`.
|
|
18
18
|
|
|
19
19
|
***Table 1.*** *Comparison of functionality between RadGEEToolbox, eemont, and geetools.*
|
|
20
20
|
|
|
@@ -156,15 +156,15 @@ _____________
|
|
|
156
156
|
|
|
157
157
|
### Installing via pip
|
|
158
158
|
|
|
159
|
-
To install `RadGEEToolbox` version 1.7.
|
|
159
|
+
To install `RadGEEToolbox` version 1.7.5 using pip (NOTE: it is recommended to create a new virtual environment):
|
|
160
160
|
|
|
161
161
|
```bash
|
|
162
|
-
pip install RadGEEToolbox==1.7.
|
|
162
|
+
pip install RadGEEToolbox==1.7.5
|
|
163
163
|
```
|
|
164
164
|
|
|
165
165
|
### Installing via Conda
|
|
166
166
|
|
|
167
|
-
To install `RadGEEToolbox` version 1.7.
|
|
167
|
+
To install `RadGEEToolbox` version 1.7.5 using conda-forge (NOTE: it is recommended to create a new virtual environment):
|
|
168
168
|
|
|
169
169
|
```bash
|
|
170
170
|
conda install conda-forge::radgeetoolbox
|
|
@@ -195,7 +195,7 @@ To verify that `RadGEEToolbox` was installed correctly:
|
|
|
195
195
|
python -c "import RadGEEToolbox; print(RadGEEToolbox.__version__)"
|
|
196
196
|
```
|
|
197
197
|
|
|
198
|
-
You should see `1.7.
|
|
198
|
+
You should see `1.7.5` printed as the version number.
|
|
199
199
|
|
|
200
200
|
### Want to Visualize Data? Install These Too
|
|
201
201
|
|