RadGEEToolbox 1.4.2__tar.gz → 1.4.4__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.4.4/LICENSE.txt +21 -0
- {RadGEEToolbox-1.4.2 → RadGEEToolbox-1.4.4}/PKG-INFO +6 -5
- {RadGEEToolbox-1.4.2 → RadGEEToolbox-1.4.4}/README.md +4 -4
- {RadGEEToolbox-1.4.2 → RadGEEToolbox-1.4.4}/RadGEEToolbox.egg-info/PKG-INFO +6 -5
- {RadGEEToolbox-1.4.2 → RadGEEToolbox-1.4.4}/RadGEEToolbox.egg-info/SOURCES.txt +1 -0
- RadGEEToolbox-1.4.4/RadGEEToolbox.egg-info/requires.txt +1 -0
- {RadGEEToolbox-1.4.2 → RadGEEToolbox-1.4.4}/setup.py +2 -2
- RadGEEToolbox-1.4.2/RadGEEToolbox.egg-info/requires.txt +0 -1
- {RadGEEToolbox-1.4.2 → RadGEEToolbox-1.4.4}/RadGEEToolbox/CollectionStitch.py +0 -0
- {RadGEEToolbox-1.4.2 → RadGEEToolbox-1.4.4}/RadGEEToolbox/GetPalette.py +0 -0
- {RadGEEToolbox-1.4.2 → RadGEEToolbox-1.4.4}/RadGEEToolbox/LandsatCollection.py +0 -0
- {RadGEEToolbox-1.4.2 → RadGEEToolbox-1.4.4}/RadGEEToolbox/Sentinel2Collection.py +0 -0
- {RadGEEToolbox-1.4.2 → RadGEEToolbox-1.4.4}/RadGEEToolbox/VisParams.py +0 -0
- {RadGEEToolbox-1.4.2 → RadGEEToolbox-1.4.4}/RadGEEToolbox/__init__.py +0 -0
- {RadGEEToolbox-1.4.2 → RadGEEToolbox-1.4.4}/RadGEEToolbox.egg-info/dependency_links.txt +0 -0
- {RadGEEToolbox-1.4.2 → RadGEEToolbox-1.4.4}/RadGEEToolbox.egg-info/top_level.txt +0 -0
- {RadGEEToolbox-1.4.2 → RadGEEToolbox-1.4.4}/setup.cfg +0 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023 Mark Radwin
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: RadGEEToolbox
|
|
3
|
-
Version: 1.4.
|
|
3
|
+
Version: 1.4.4
|
|
4
4
|
Summary: Python package simplifying large-scale operations using Google Earth Engine (GEE) for users who utilize Landsat and Sentinel
|
|
5
5
|
Home-page: https://github.com/radwinskis/RadGEEToolbox
|
|
6
6
|
Author: Mark Radwin
|
|
@@ -10,6 +10,7 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
|
11
11
|
Requires-Python: >=3.6
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
|
+
License-File: LICENSE.txt
|
|
13
14
|
|
|
14
15
|
[](https://pypi.org/project/RadGEEToolbox/)
|
|
15
16
|
# RadGEEToolbox 🛠️
|
|
@@ -109,15 +110,15 @@ latest_NDWI_image = NDWI_collection.image_grab(-1)
|
|
|
109
110
|
|
|
110
111
|
### 📦 Installing via pip
|
|
111
112
|
|
|
112
|
-
To install `RadGEEToolbox` version 1.4.
|
|
113
|
+
To install `RadGEEToolbox` version 1.4.4 using pip (NOTE: it is recommended to create a new virtual environment):
|
|
113
114
|
|
|
114
115
|
```bash
|
|
115
|
-
pip install RadGEEToolbox==1.4.
|
|
116
|
+
pip install RadGEEToolbox==1.4.4
|
|
116
117
|
```
|
|
117
118
|
|
|
118
119
|
### 📦 Installing via Conda (Coming soon...)
|
|
119
120
|
|
|
120
|
-
To install `RadGEEToolbox` version 1.4.
|
|
121
|
+
To install `RadGEEToolbox` version 1.4.4 using conda-forge (NOTE: it is recommended to create a new virtual environment):
|
|
121
122
|
|
|
122
123
|
```bash
|
|
123
124
|
conda install -c conda-forge RadGEEToolbox
|
|
@@ -148,4 +149,4 @@ To verify that `RadGEEToolbox` was installed correctly:
|
|
|
148
149
|
python -c "import RadGEEToolbox; print(RadGEEToolbox.__version__)"
|
|
149
150
|
```
|
|
150
151
|
|
|
151
|
-
You should see `1.4.
|
|
152
|
+
You should see `1.4.4` printed as the version number.
|
|
@@ -96,15 +96,15 @@ latest_NDWI_image = NDWI_collection.image_grab(-1)
|
|
|
96
96
|
|
|
97
97
|
### 📦 Installing via pip
|
|
98
98
|
|
|
99
|
-
To install `RadGEEToolbox` version 1.4.
|
|
99
|
+
To install `RadGEEToolbox` version 1.4.4 using pip (NOTE: it is recommended to create a new virtual environment):
|
|
100
100
|
|
|
101
101
|
```bash
|
|
102
|
-
pip install RadGEEToolbox==1.4.
|
|
102
|
+
pip install RadGEEToolbox==1.4.4
|
|
103
103
|
```
|
|
104
104
|
|
|
105
105
|
### 📦 Installing via Conda (Coming soon...)
|
|
106
106
|
|
|
107
|
-
To install `RadGEEToolbox` version 1.4.
|
|
107
|
+
To install `RadGEEToolbox` version 1.4.4 using conda-forge (NOTE: it is recommended to create a new virtual environment):
|
|
108
108
|
|
|
109
109
|
```bash
|
|
110
110
|
conda install -c conda-forge RadGEEToolbox
|
|
@@ -135,4 +135,4 @@ To verify that `RadGEEToolbox` was installed correctly:
|
|
|
135
135
|
python -c "import RadGEEToolbox; print(RadGEEToolbox.__version__)"
|
|
136
136
|
```
|
|
137
137
|
|
|
138
|
-
You should see `1.4.
|
|
138
|
+
You should see `1.4.4` printed as the version number.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: RadGEEToolbox
|
|
3
|
-
Version: 1.4.
|
|
3
|
+
Version: 1.4.4
|
|
4
4
|
Summary: Python package simplifying large-scale operations using Google Earth Engine (GEE) for users who utilize Landsat and Sentinel
|
|
5
5
|
Home-page: https://github.com/radwinskis/RadGEEToolbox
|
|
6
6
|
Author: Mark Radwin
|
|
@@ -10,6 +10,7 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
|
11
11
|
Requires-Python: >=3.6
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
|
+
License-File: LICENSE.txt
|
|
13
14
|
|
|
14
15
|
[](https://pypi.org/project/RadGEEToolbox/)
|
|
15
16
|
# RadGEEToolbox 🛠️
|
|
@@ -109,15 +110,15 @@ latest_NDWI_image = NDWI_collection.image_grab(-1)
|
|
|
109
110
|
|
|
110
111
|
### 📦 Installing via pip
|
|
111
112
|
|
|
112
|
-
To install `RadGEEToolbox` version 1.4.
|
|
113
|
+
To install `RadGEEToolbox` version 1.4.4 using pip (NOTE: it is recommended to create a new virtual environment):
|
|
113
114
|
|
|
114
115
|
```bash
|
|
115
|
-
pip install RadGEEToolbox==1.4.
|
|
116
|
+
pip install RadGEEToolbox==1.4.4
|
|
116
117
|
```
|
|
117
118
|
|
|
118
119
|
### 📦 Installing via Conda (Coming soon...)
|
|
119
120
|
|
|
120
|
-
To install `RadGEEToolbox` version 1.4.
|
|
121
|
+
To install `RadGEEToolbox` version 1.4.4 using conda-forge (NOTE: it is recommended to create a new virtual environment):
|
|
121
122
|
|
|
122
123
|
```bash
|
|
123
124
|
conda install -c conda-forge RadGEEToolbox
|
|
@@ -148,4 +149,4 @@ To verify that `RadGEEToolbox` was installed correctly:
|
|
|
148
149
|
python -c "import RadGEEToolbox; print(RadGEEToolbox.__version__)"
|
|
149
150
|
```
|
|
150
151
|
|
|
151
|
-
You should see `1.4.
|
|
152
|
+
You should see `1.4.4` printed as the version number.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
earthengine-api
|
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name="RadGEEToolbox",
|
|
5
|
-
version="1.4.
|
|
5
|
+
version="1.4.4",
|
|
6
6
|
author="Mark Radwin",
|
|
7
7
|
author_email="markradwin@gmail.com",
|
|
8
8
|
description="Python package simplifying large-scale operations using Google Earth Engine (GEE) for users who utilize Landsat and Sentinel",
|
|
@@ -19,7 +19,7 @@ setup(
|
|
|
19
19
|
"Operating System :: OS Independent",
|
|
20
20
|
],
|
|
21
21
|
install_requires=[
|
|
22
|
-
"
|
|
22
|
+
"earthengine-api"
|
|
23
23
|
],
|
|
24
24
|
python_requires=">=3.6",
|
|
25
25
|
)
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
ee
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|