geeviz 2024.3.1__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 (77) hide show
  1. geeViz-2024.3.1/LICENSE +10 -0
  2. geeViz-2024.3.1/PKG-INFO +89 -0
  3. geeViz-2024.3.1/README.md +62 -0
  4. geeViz-2024.3.1/geeViz/__init__.py +5 -0
  5. geeViz-2024.3.1/geeViz/assetManagerLib.py +729 -0
  6. geeViz-2024.3.1/geeViz/changeDetectionLib.py +2930 -0
  7. geeViz-2024.3.1/geeViz/cloudStorageManagerLib.py +87 -0
  8. geeViz-2024.3.1/geeViz/examples/CCDCViz.py +104 -0
  9. geeViz-2024.3.1/geeViz/examples/CCDCVizNotebook.ipynb +319 -0
  10. geeViz-2024.3.1/geeViz/examples/CCDCWrapper.py +173 -0
  11. geeViz-2024.3.1/geeViz/examples/GFSTimeLapse.py +83 -0
  12. geeViz-2024.3.1/geeViz/examples/LANDTRENDRViz.py +117 -0
  13. geeViz-2024.3.1/geeViz/examples/LANDTRENDRWrapper.py +234 -0
  14. geeViz-2024.3.1/geeViz/examples/LANDTRENDRWrapperNotebook.ipynb +507 -0
  15. geeViz-2024.3.1/geeViz/examples/LCMAP_and_LCMS_Viewer.py +203 -0
  16. geeViz-2024.3.1/geeViz/examples/LCMAP_and_LCMS_Viewer_Notebook.ipynb +460 -0
  17. geeViz-2024.3.1/geeViz/examples/__init__.py +5 -0
  18. geeViz-2024.3.1/geeViz/examples/data/gadm41_CHE_shp/gadm41_CHE_0.cpg +1 -0
  19. geeViz-2024.3.1/geeViz/examples/data/gadm41_CHE_shp/gadm41_CHE_0.dbf +0 -0
  20. geeViz-2024.3.1/geeViz/examples/data/gadm41_CHE_shp/gadm41_CHE_0.geojson +115341 -0
  21. geeViz-2024.3.1/geeViz/examples/data/gadm41_CHE_shp/gadm41_CHE_0.prj +1 -0
  22. geeViz-2024.3.1/geeViz/examples/data/gadm41_CHE_shp/gadm41_CHE_0.shp +0 -0
  23. geeViz-2024.3.1/geeViz/examples/data/gadm41_CHE_shp/gadm41_CHE_0.shx +0 -0
  24. geeViz-2024.3.1/geeViz/examples/foliumViewerExample.py +47 -0
  25. geeViz-2024.3.1/geeViz/examples/gee2PandasExample.ipynb +530 -0
  26. geeViz-2024.3.1/geeViz/examples/geeViewExample.py +101 -0
  27. geeViz-2024.3.1/geeViz/examples/geeViewExampleNotebook.ipynb +446 -0
  28. geeViz-2024.3.1/geeViz/examples/geeViewVSFoliumViewerExampleNotebook.ipynb +734 -0
  29. geeViz-2024.3.1/geeViz/examples/geeViz_and_geemap.py +48 -0
  30. geeViz-2024.3.1/geeViz/examples/getClimateWrapper.py +127 -0
  31. geeViz-2024.3.1/geeViz/examples/getCombinedLandsatSentinel2Wrapper.py +304 -0
  32. geeViz-2024.3.1/geeViz/examples/getLandsatWrapper.py +275 -0
  33. geeViz-2024.3.1/geeViz/examples/getLandsatWrapperNotebook.ipynb +468 -0
  34. geeViz-2024.3.1/geeViz/examples/getSentinel2Wrapper.py +264 -0
  35. geeViz-2024.3.1/geeViz/examples/harmonicRegressionWrapper.py +205 -0
  36. geeViz-2024.3.1/geeViz/examples/lcmsViewerExample.py +300 -0
  37. geeViz-2024.3.1/geeViz/examples/lcmsViewerExampleNotebook.ipynb +501 -0
  38. geeViz-2024.3.1/geeViz/examples/mapBiomasViewerExample.py +243 -0
  39. geeViz-2024.3.1/geeViz/examples/phEEnoVizWrapper.py +273 -0
  40. geeViz-2024.3.1/geeViz/examples/taskTrackerExample.py +26 -0
  41. geeViz-2024.3.1/geeViz/examples/timeLapseExample.py +148 -0
  42. geeViz-2024.3.1/geeViz/foliumView.py +255 -0
  43. geeViz-2024.3.1/geeViz/gcpLib.py +36 -0
  44. geeViz-2024.3.1/geeViz/gee2Pandas.py +490 -0
  45. geeViz-2024.3.1/geeViz/geeView/foliumView.html +132 -0
  46. geeViz-2024.3.1/geeViz/geeView/index.html +66 -0
  47. geeViz-2024.3.1/geeViz/geeView/src/assets/images/EE-logo-150.png +0 -0
  48. geeViz-2024.3.1/geeViz/geeView/src/assets/images/GEE.png +0 -0
  49. geeViz-2024.3.1/geeViz/geeView/src/assets/images/GEE_logo_transparent.png +0 -0
  50. geeViz-2024.3.1/geeViz/geeView/src/assets/images/RCR-logo.jpg +0 -0
  51. geeViz-2024.3.1/geeViz/geeView/src/assets/images/Thumbs.db +0 -0
  52. geeViz-2024.3.1/geeViz/geeView/src/assets/images/cumulative_icon.png +0 -0
  53. geeViz-2024.3.1/geeViz/geeView/src/assets/images/layer_icon.png +0 -0
  54. geeViz-2024.3.1/geeViz/geeView/src/assets/images/logos_usda-fs.svg +1948 -0
  55. geeViz-2024.3.1/geeViz/geeView/src/assets/images/logos_usda-fs_bn-dk-01.svg +1936 -0
  56. geeViz-2024.3.1/geeViz/geeView/src/assets/images/menu-hamburger_ffffff.svg +17 -0
  57. geeViz-2024.3.1/geeViz/geeView/src/assets/images/usdalogo.png +0 -0
  58. geeViz-2024.3.1/geeViz/geeView/src/assets/images/usfslogo.png +0 -0
  59. geeViz-2024.3.1/geeViz/geeView/src/gee/gee-libraries/changeDetectionLib.js +137 -0
  60. geeViz-2024.3.1/geeViz/geeView/src/gee/gee-libraries/getImagesLib.js +240 -0
  61. geeViz-2024.3.1/geeViz/geeView/src/gee/gee-run/runGeeViz.js +8 -0
  62. geeViz-2024.3.1/geeViz/geeView/src/js/gena-gee-palettes.js +261 -0
  63. geeViz-2024.3.1/geeViz/geeView/src/js/lcms-viewer.min.js +2443 -0
  64. geeViz-2024.3.1/geeViz/geeView/src/js/load.min.js +1 -0
  65. geeViz-2024.3.1/geeViz/geeView/src/styles/style.min.css +1516 -0
  66. geeViz-2024.3.1/geeViz/geeView.py +1182 -0
  67. geeViz-2024.3.1/geeViz/getImagesLib.py +8318 -0
  68. geeViz-2024.3.1/geeViz/migrateGEEAssets.py +196 -0
  69. geeViz-2024.3.1/geeViz/phEEnoViz.py +652 -0
  70. geeViz-2024.3.1/geeViz/taskManagerLib.py +292 -0
  71. geeViz-2024.3.1/geeViz.egg-info/PKG-INFO +89 -0
  72. geeViz-2024.3.1/geeViz.egg-info/SOURCES.txt +75 -0
  73. geeViz-2024.3.1/geeViz.egg-info/dependency_links.txt +1 -0
  74. geeViz-2024.3.1/geeViz.egg-info/requires.txt +10 -0
  75. geeViz-2024.3.1/geeViz.egg-info/top_level.txt +1 -0
  76. geeViz-2024.3.1/setup.cfg +4 -0
  77. geeViz-2024.3.1/setup.py +82 -0
@@ -0,0 +1,10 @@
1
+ Copyright (C) 2023 RedCastle Resources Inc.
2
+ Licensed under the Apache License, Version 2.0 (the "License");
3
+ you may not use this file except in compliance with the License.
4
+ You may obtain a copy of the License at
5
+ http://www.apache.org/licenses/LICENSE-2.0
6
+ Unless required by applicable law or agreed to in writing, software
7
+ distributed under the License is distributed on an "AS IS" BASIS,
8
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9
+ See the License for the specific language governing permissions and
10
+ limitations under the License.
@@ -0,0 +1,89 @@
1
+ Metadata-Version: 2.1
2
+ Name: geeViz
3
+ Version: 2024.3.1
4
+ Summary: A package to help with GEE data processing, analysis, and visualization
5
+ Home-page: https://github.com/gee-community/geeViz
6
+ Author: Ian Housman
7
+ Author-email: ian.housman@gmail.com
8
+ License: Apache
9
+ Keywords: earthengine google remote sensing landsat sentinel modis forestry forest
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Intended Audience :: Science/Research
12
+ Classifier: License :: OSI Approved :: Apache Software License
13
+ Classifier: Operating System :: OS Independent
14
+ Classifier: Development Status :: 4 - Beta
15
+ Description-Content-Type: text/markdown
16
+ License-File: LICENSE
17
+ Requires-Dist: earthengine-api
18
+ Requires-Dist: oauth2client
19
+ Requires-Dist: google-cloud-storage
20
+ Requires-Dist: pandas
21
+ Requires-Dist: geemap
22
+ Requires-Dist: matplotlib
23
+ Requires-Dist: IPython
24
+ Requires-Dist: requests
25
+ Requires-Dist: folium
26
+ Requires-Dist: simpledbf
27
+
28
+ # GTAC GEE Visualization Python Modules
29
+
30
+ > A repository of GEE Python code modules for general data processing, analysis, and visualization
31
+
32
+ > > geeViz is a powerful tool for exploring and analyzing Earth observation data like Landsat images within Google Earth Engine. It simplifies complex Earth Engine code into user-friendly Python functions.
33
+
34
+ > [Can be accessed from the GEE Community Repository](https://github.com/gee-community/geeViz) > [Or within the internal Forest Service GitHub instance](https://code.fs.usda.gov/forest-service/geeViz)
35
+ >
36
+ > [A javaScript equivalent can be accessed in the GEE Playground](https://earthengine.googlesource.com/users/aaronkamoske/GTAC-Modules) > [on GitHub](https://github.com/rcr-usfs/gtac-rcr-gee-js-modules.git) > [Or within the Forest Service GitHub instance](https://code.fs.usda.gov/forest-service/gtac-gee-js-modules.git)
37
+
38
+ ## Primary POCs
39
+
40
+ Ian Housman- ian.housman@usda.gov
41
+
42
+ Josh Heyer- joshua.heyer@usda.gov
43
+
44
+ Bonnie Ruefenacht- bonnie.ruefenacht@usda.gov
45
+
46
+ <iframe src='https://gee-community.github.io/geeViz/build/html/index.html#' width='100%' height='500' title='geeViz documentation'></iframe>
47
+
48
+ ## Installing
49
+
50
+ 1. Become a trusted Google Earth Engine (GEE) tester (<https://signup.earthengine.google.com/#!/>)
51
+ 2. Install package using pip (`pip install geeViz`)
52
+ folder
53
+ 3. Authenticate using the GEE cli in a cmd prompt (`earthengine authenticate`)
54
+
55
+ 4. You can also install with git. If installing this way, first install the Python GEE package (`pip install earthengine-api`)
56
+ 5. Then clone this repository (`git clone https://github.com/rcr-usfs/geeViz`) into your Python's site-packages
57
+ 6. To stay up to date, upgrade via PIP (`pip install geeViz --upgrade`) or pull the latest commit (`git pull origin master`)
58
+ 7. This repository is also available within the FS gitHub instance (<https://code.fs.usda.gov/forest-service/geeViz>)
59
+
60
+ ## Using
61
+
62
+ - Several examples are available within the examples module to help you get started. To test, enter the following command within the Python build you installed geeViz in:
63
+
64
+ - `from geeViz.examples import geeViewExample`
65
+
66
+ - Other examples are:
67
+
68
+ - `from geeViz.examples import timeLapseExample`
69
+ - `from geeViz.examples import getLandsatWrapper`
70
+ - `from geeViz.examples import getSentinel2Wrapper`
71
+ - `from geeViz.examples import getCombinedLandsatSentinel2Wrapper`
72
+ - `from geeViz.examples import harmonicRegressionWrapper`
73
+ - `from geeViz.examples import LANDTRENDRWrapper`
74
+ - `from geeViz.examples import LANDTRENDRViz`
75
+ - `from geeViz.examples import CCDCViz`
76
+ - `from geeViz.examples import lcmsViewerExample`
77
+ - `from geeViz.examples import LCMAP_and_LCMS_Viewer`
78
+ - `from geeViz.examples import phEEnoVizWrapper`
79
+ - `from geeViz.examples import LANDTRENDRViz`
80
+ - `from geeViz.examples import GFSTimeLapse`
81
+
82
+ - These examples are a great way of getting started. In order to use them for your work, go to you Python site-packages folder `PythonNN\Lib\site-packages\geeViz`
83
+ - There are several notebook eamples also available. These are very similar to their script counterparts, but are better for learning how to use the tool.
84
+ - When these examples are run, a viewer should open in your default browser. It will show any data that was added to the map.
85
+ - Layers can be toggled on/off and opacity changed. They can also be measured and queried under the TOOLS pane.
86
+
87
+ ## Contributing
88
+
89
+ 1. If you have a great piece of GEE code to share, please contact a POC listed above.
@@ -0,0 +1,62 @@
1
+ # GTAC GEE Visualization Python Modules
2
+
3
+ > A repository of GEE Python code modules for general data processing, analysis, and visualization
4
+
5
+ > > geeViz is a powerful tool for exploring and analyzing Earth observation data like Landsat images within Google Earth Engine. It simplifies complex Earth Engine code into user-friendly Python functions.
6
+
7
+ > [Can be accessed from the GEE Community Repository](https://github.com/gee-community/geeViz) > [Or within the internal Forest Service GitHub instance](https://code.fs.usda.gov/forest-service/geeViz)
8
+ >
9
+ > [A javaScript equivalent can be accessed in the GEE Playground](https://earthengine.googlesource.com/users/aaronkamoske/GTAC-Modules) > [on GitHub](https://github.com/rcr-usfs/gtac-rcr-gee-js-modules.git) > [Or within the Forest Service GitHub instance](https://code.fs.usda.gov/forest-service/gtac-gee-js-modules.git)
10
+
11
+ ## Primary POCs
12
+
13
+ Ian Housman- ian.housman@usda.gov
14
+
15
+ Josh Heyer- joshua.heyer@usda.gov
16
+
17
+ Bonnie Ruefenacht- bonnie.ruefenacht@usda.gov
18
+
19
+ <iframe src='https://gee-community.github.io/geeViz/build/html/index.html#' width='100%' height='500' title='geeViz documentation'></iframe>
20
+
21
+ ## Installing
22
+
23
+ 1. Become a trusted Google Earth Engine (GEE) tester (<https://signup.earthengine.google.com/#!/>)
24
+ 2. Install package using pip (`pip install geeViz`)
25
+ folder
26
+ 3. Authenticate using the GEE cli in a cmd prompt (`earthengine authenticate`)
27
+
28
+ 4. You can also install with git. If installing this way, first install the Python GEE package (`pip install earthengine-api`)
29
+ 5. Then clone this repository (`git clone https://github.com/rcr-usfs/geeViz`) into your Python's site-packages
30
+ 6. To stay up to date, upgrade via PIP (`pip install geeViz --upgrade`) or pull the latest commit (`git pull origin master`)
31
+ 7. This repository is also available within the FS gitHub instance (<https://code.fs.usda.gov/forest-service/geeViz>)
32
+
33
+ ## Using
34
+
35
+ - Several examples are available within the examples module to help you get started. To test, enter the following command within the Python build you installed geeViz in:
36
+
37
+ - `from geeViz.examples import geeViewExample`
38
+
39
+ - Other examples are:
40
+
41
+ - `from geeViz.examples import timeLapseExample`
42
+ - `from geeViz.examples import getLandsatWrapper`
43
+ - `from geeViz.examples import getSentinel2Wrapper`
44
+ - `from geeViz.examples import getCombinedLandsatSentinel2Wrapper`
45
+ - `from geeViz.examples import harmonicRegressionWrapper`
46
+ - `from geeViz.examples import LANDTRENDRWrapper`
47
+ - `from geeViz.examples import LANDTRENDRViz`
48
+ - `from geeViz.examples import CCDCViz`
49
+ - `from geeViz.examples import lcmsViewerExample`
50
+ - `from geeViz.examples import LCMAP_and_LCMS_Viewer`
51
+ - `from geeViz.examples import phEEnoVizWrapper`
52
+ - `from geeViz.examples import LANDTRENDRViz`
53
+ - `from geeViz.examples import GFSTimeLapse`
54
+
55
+ - These examples are a great way of getting started. In order to use them for your work, go to you Python site-packages folder `PythonNN\Lib\site-packages\geeViz`
56
+ - There are several notebook eamples also available. These are very similar to their script counterparts, but are better for learning how to use the tool.
57
+ - When these examples are run, a viewer should open in your default browser. It will show any data that was added to the map.
58
+ - Layers can be toggled on/off and opacity changed. They can also be measured and queried under the TOOLS pane.
59
+
60
+ ## Contributing
61
+
62
+ 1. If you have a great piece of GEE code to share, please contact a POC listed above.
@@ -0,0 +1,5 @@
1
+ __author__ = "Ian Housman"
2
+ __email__ = "ian.housman@gmail.com"
3
+
4
+ # Version format yyyy.m.n
5
+ __version__ = "2024.3.1"