geoai-py 0.20.0__tar.gz → 0.22.0__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.
- {geoai_py-0.20.0 → geoai_py-0.22.0}/PKG-INFO +9 -2
- {geoai_py-0.20.0 → geoai_py-0.22.0}/README.md +8 -1
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai/__init__.py +1 -1
- geoai_py-0.22.0/geoai/auto.py +1982 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai_py.egg-info/PKG-INFO +9 -2
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai_py.egg-info/SOURCES.txt +4 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/mkdocs.yml +3 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/pyproject.toml +2 -2
- geoai_py-0.22.0/qgis_plugin/README.md +292 -0
- geoai_py-0.22.0/qgis_plugin/geoai_plugin/LICENSE +21 -0
- geoai_py-0.22.0/qgis_plugin/geoai_plugin/_geoai_lib.py +173 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/qgis_plugin/geoai_plugin/dialogs/__init__.py +2 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/qgis_plugin/geoai_plugin/dialogs/moondream.py +4 -1
- {geoai_py-0.20.0 → geoai_py-0.22.0}/qgis_plugin/geoai_plugin/dialogs/samgeo.py +274 -27
- {geoai_py-0.20.0 → geoai_py-0.22.0}/qgis_plugin/geoai_plugin/dialogs/segmentation.py +12 -4
- geoai_py-0.22.0/qgis_plugin/geoai_plugin/dialogs/update_checker.py +494 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/qgis_plugin/geoai_plugin/geoai_plugin.py +55 -2
- {geoai_py-0.20.0 → geoai_py-0.22.0}/qgis_plugin/geoai_plugin/metadata.txt +13 -3
- geoai_py-0.20.0/qgis_plugin/README.md +0 -188
- {geoai_py-0.20.0 → geoai_py-0.22.0}/.dockerignore +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/.editorconfig +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/.gitignore +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/.pre-commit-config.yaml +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/CITATION.cff +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/Dockerfile +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/LICENSE +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/MANIFEST.in +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai/agents/__init__.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai/agents/catalog_models.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai/agents/catalog_tools.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai/agents/geo_agents.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai/agents/map_tools.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai/agents/stac_models.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai/agents/stac_tools.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai/change_detection.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai/classify.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai/detectron2.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai/dinov3.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai/download.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai/extract.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai/geoai.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai/hf.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai/landcover_train.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai/landcover_utils.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai/map_widgets.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai/moondream.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai/sam.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai/segment.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai/segmentation.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai/timm_segment.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai/timm_train.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai/tools/__init__.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai/tools/cloudmask.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai/tools/multiclean.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai/tools/sr.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai/train.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai/utils.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai_py.egg-info/dependency_links.txt +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai_py.egg-info/entry_points.txt +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai_py.egg-info/requires.txt +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/geoai_py.egg-info/top_level.txt +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/pytest.ini +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/qgis_plugin/geoai_plugin/__init__.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/qgis_plugin/geoai_plugin/dialogs/map_tools.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/qgis_plugin/geoai_plugin/icons/about.svg +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/qgis_plugin/geoai_plugin/icons/gpu.svg +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/qgis_plugin/geoai_plugin/icons/icon.png +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/qgis_plugin/geoai_plugin/icons/moondream.svg +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/qgis_plugin/geoai_plugin/icons/samgeo.png +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/qgis_plugin/geoai_plugin/icons/segment.svg +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/qgis_plugin/install.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/qgis_plugin/install.sh +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/requirements.txt +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/requirements_docs.txt +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/setup.cfg +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/tests/__init__.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/tests/create_test_data.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/tests/test_classify.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/tests/test_download.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/tests/test_extract.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/tests/test_fixtures.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/tests/test_geoai.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/tests/test_segment.py +0 -0
- {geoai_py-0.20.0 → geoai_py-0.22.0}/tests/test_utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: geoai-py
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.22.0
|
|
4
4
|
Summary: A Python package for using Artificial Intelligence (AI) with geospatial data
|
|
5
5
|
Author-email: Qiusheng Wu <giswqs@gmail.com>
|
|
6
6
|
License: MIT License
|
|
@@ -70,6 +70,7 @@ Dynamic: license-file
|
|
|
70
70
|
[](https://github.com/conda-forge/geoai-py-feedstock)
|
|
71
71
|
[](https://opensource.org/licenses/MIT)
|
|
72
72
|
[](https://tinyurl.com/GeoAI-Tutorials)
|
|
73
|
+
[](https://opengeoai.org/qgis_plugin)
|
|
73
74
|
|
|
74
75
|
[](https://github.com/opengeos/geoai/blob/master/docs/assets/logo.png)
|
|
75
76
|
|
|
@@ -103,7 +104,7 @@ The package's design philosophy emphasizes simplicity without sacrificing functi
|
|
|
103
104
|
|
|
104
105
|
If you find GeoAI useful in your research, please consider citing the following paper to support my work. Thank you for your support.
|
|
105
106
|
|
|
106
|
-
- Wu, Q. (2025). GeoAI: A Python package for integrating artificial intelligence with geospatial data analysis and visualization. _Journal of Open Source Software_, 9025. [https://doi.org/10.21105/joss.09025](https://github.com/openjournals/joss-papers/blob/joss.
|
|
107
|
+
- Wu, Q. (2025). GeoAI: A Python package for integrating artificial intelligence with geospatial data analysis and visualization. _Journal of Open Source Software_, 9025. [https://doi.org/10.21105/joss.09025](https://github.com/openjournals/joss-papers/blob/joss.09605/joss.09605/10.21105.joss.09605.pdf) (Under Review)
|
|
107
108
|
|
|
108
109
|
## 🚀 Key Features
|
|
109
110
|
|
|
@@ -162,6 +163,12 @@ conda install -c conda-forge geoai
|
|
|
162
163
|
mamba install -c conda-forge geoai
|
|
163
164
|
```
|
|
164
165
|
|
|
166
|
+
## ⚙️ QGIS Plugin
|
|
167
|
+
|
|
168
|
+
Check out the [QGIS Plugin](https://opengeoai.org/qgis_plugin/) page if you are interested in using GeoAI with QGIS.
|
|
169
|
+
|
|
170
|
+
[](https://youtu.be/8-OhlqeoyiY)
|
|
171
|
+
|
|
165
172
|
## 📋 Documentation
|
|
166
173
|
|
|
167
174
|
Comprehensive documentation is available at [https://opengeoai.org](https://opengeoai.org), including:
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
[](https://github.com/conda-forge/geoai-py-feedstock)
|
|
8
8
|
[](https://opensource.org/licenses/MIT)
|
|
9
9
|
[](https://tinyurl.com/GeoAI-Tutorials)
|
|
10
|
+
[](https://opengeoai.org/qgis_plugin)
|
|
10
11
|
|
|
11
12
|
[](https://github.com/opengeos/geoai/blob/master/docs/assets/logo.png)
|
|
12
13
|
|
|
@@ -40,7 +41,7 @@ The package's design philosophy emphasizes simplicity without sacrificing functi
|
|
|
40
41
|
|
|
41
42
|
If you find GeoAI useful in your research, please consider citing the following paper to support my work. Thank you for your support.
|
|
42
43
|
|
|
43
|
-
- Wu, Q. (2025). GeoAI: A Python package for integrating artificial intelligence with geospatial data analysis and visualization. _Journal of Open Source Software_, 9025. [https://doi.org/10.21105/joss.09025](https://github.com/openjournals/joss-papers/blob/joss.
|
|
44
|
+
- Wu, Q. (2025). GeoAI: A Python package for integrating artificial intelligence with geospatial data analysis and visualization. _Journal of Open Source Software_, 9025. [https://doi.org/10.21105/joss.09025](https://github.com/openjournals/joss-papers/blob/joss.09605/joss.09605/10.21105.joss.09605.pdf) (Under Review)
|
|
44
45
|
|
|
45
46
|
## 🚀 Key Features
|
|
46
47
|
|
|
@@ -99,6 +100,12 @@ conda install -c conda-forge geoai
|
|
|
99
100
|
mamba install -c conda-forge geoai
|
|
100
101
|
```
|
|
101
102
|
|
|
103
|
+
## ⚙️ QGIS Plugin
|
|
104
|
+
|
|
105
|
+
Check out the [QGIS Plugin](https://opengeoai.org/qgis_plugin/) page if you are interested in using GeoAI with QGIS.
|
|
106
|
+
|
|
107
|
+
[](https://youtu.be/8-OhlqeoyiY)
|
|
108
|
+
|
|
102
109
|
## 📋 Documentation
|
|
103
110
|
|
|
104
111
|
Comprehensive documentation is available at [https://opengeoai.org](https://opengeoai.org), including:
|