geoai-py 0.19.0__tar.gz → 0.21.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.
Files changed (82) hide show
  1. {geoai_py-0.19.0 → geoai_py-0.21.0}/PKG-INFO +8 -2
  2. {geoai_py-0.19.0 → geoai_py-0.21.0}/README.md +7 -1
  3. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai/__init__.py +1 -1
  4. geoai_py-0.21.0/geoai/auto.py +1982 -0
  5. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai_py.egg-info/PKG-INFO +8 -2
  6. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai_py.egg-info/SOURCES.txt +20 -0
  7. {geoai_py-0.19.0 → geoai_py-0.21.0}/mkdocs.yml +3 -0
  8. {geoai_py-0.19.0 → geoai_py-0.21.0}/pyproject.toml +2 -2
  9. geoai_py-0.21.0/qgis_plugin/README.md +256 -0
  10. geoai_py-0.21.0/qgis_plugin/geoai_plugin/LICENSE +21 -0
  11. geoai_py-0.21.0/qgis_plugin/geoai_plugin/__init__.py +21 -0
  12. geoai_py-0.21.0/qgis_plugin/geoai_plugin/_geoai_lib.py +173 -0
  13. geoai_py-0.21.0/qgis_plugin/geoai_plugin/dialogs/__init__.py +13 -0
  14. geoai_py-0.21.0/qgis_plugin/geoai_plugin/dialogs/map_tools.py +172 -0
  15. geoai_py-0.21.0/qgis_plugin/geoai_plugin/dialogs/moondream.py +654 -0
  16. geoai_py-0.21.0/qgis_plugin/geoai_plugin/dialogs/samgeo.py +1440 -0
  17. geoai_py-0.21.0/qgis_plugin/geoai_plugin/dialogs/segmentation.py +1458 -0
  18. geoai_py-0.21.0/qgis_plugin/geoai_plugin/geoai_plugin.py +510 -0
  19. geoai_py-0.21.0/qgis_plugin/geoai_plugin/icons/about.svg +5 -0
  20. geoai_py-0.21.0/qgis_plugin/geoai_plugin/icons/gpu.svg +12 -0
  21. geoai_py-0.21.0/qgis_plugin/geoai_plugin/icons/icon.png +0 -0
  22. geoai_py-0.21.0/qgis_plugin/geoai_plugin/icons/moondream.svg +6 -0
  23. geoai_py-0.21.0/qgis_plugin/geoai_plugin/icons/samgeo.png +0 -0
  24. geoai_py-0.21.0/qgis_plugin/geoai_plugin/icons/segment.svg +6 -0
  25. geoai_py-0.21.0/qgis_plugin/geoai_plugin/metadata.txt +52 -0
  26. geoai_py-0.21.0/qgis_plugin/install.py +156 -0
  27. geoai_py-0.21.0/qgis_plugin/install.sh +42 -0
  28. {geoai_py-0.19.0 → geoai_py-0.21.0}/.dockerignore +0 -0
  29. {geoai_py-0.19.0 → geoai_py-0.21.0}/.editorconfig +0 -0
  30. {geoai_py-0.19.0 → geoai_py-0.21.0}/.gitignore +0 -0
  31. {geoai_py-0.19.0 → geoai_py-0.21.0}/.pre-commit-config.yaml +0 -0
  32. {geoai_py-0.19.0 → geoai_py-0.21.0}/CITATION.cff +0 -0
  33. {geoai_py-0.19.0 → geoai_py-0.21.0}/Dockerfile +0 -0
  34. {geoai_py-0.19.0 → geoai_py-0.21.0}/LICENSE +0 -0
  35. {geoai_py-0.19.0 → geoai_py-0.21.0}/MANIFEST.in +0 -0
  36. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai/agents/__init__.py +0 -0
  37. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai/agents/catalog_models.py +0 -0
  38. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai/agents/catalog_tools.py +0 -0
  39. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai/agents/geo_agents.py +0 -0
  40. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai/agents/map_tools.py +0 -0
  41. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai/agents/stac_models.py +0 -0
  42. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai/agents/stac_tools.py +0 -0
  43. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai/change_detection.py +0 -0
  44. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai/classify.py +0 -0
  45. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai/detectron2.py +0 -0
  46. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai/dinov3.py +0 -0
  47. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai/download.py +0 -0
  48. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai/extract.py +0 -0
  49. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai/geoai.py +0 -0
  50. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai/hf.py +0 -0
  51. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai/landcover_train.py +0 -0
  52. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai/landcover_utils.py +0 -0
  53. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai/map_widgets.py +0 -0
  54. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai/moondream.py +0 -0
  55. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai/sam.py +0 -0
  56. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai/segment.py +0 -0
  57. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai/segmentation.py +0 -0
  58. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai/timm_segment.py +0 -0
  59. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai/timm_train.py +0 -0
  60. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai/tools/__init__.py +0 -0
  61. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai/tools/cloudmask.py +0 -0
  62. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai/tools/multiclean.py +0 -0
  63. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai/tools/sr.py +0 -0
  64. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai/train.py +0 -0
  65. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai/utils.py +0 -0
  66. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai_py.egg-info/dependency_links.txt +0 -0
  67. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai_py.egg-info/entry_points.txt +0 -0
  68. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai_py.egg-info/requires.txt +0 -0
  69. {geoai_py-0.19.0 → geoai_py-0.21.0}/geoai_py.egg-info/top_level.txt +0 -0
  70. {geoai_py-0.19.0 → geoai_py-0.21.0}/pytest.ini +0 -0
  71. {geoai_py-0.19.0 → geoai_py-0.21.0}/requirements.txt +0 -0
  72. {geoai_py-0.19.0 → geoai_py-0.21.0}/requirements_docs.txt +0 -0
  73. {geoai_py-0.19.0 → geoai_py-0.21.0}/setup.cfg +0 -0
  74. {geoai_py-0.19.0 → geoai_py-0.21.0}/tests/__init__.py +0 -0
  75. {geoai_py-0.19.0 → geoai_py-0.21.0}/tests/create_test_data.py +0 -0
  76. {geoai_py-0.19.0 → geoai_py-0.21.0}/tests/test_classify.py +0 -0
  77. {geoai_py-0.19.0 → geoai_py-0.21.0}/tests/test_download.py +0 -0
  78. {geoai_py-0.19.0 → geoai_py-0.21.0}/tests/test_extract.py +0 -0
  79. {geoai_py-0.19.0 → geoai_py-0.21.0}/tests/test_fixtures.py +0 -0
  80. {geoai_py-0.19.0 → geoai_py-0.21.0}/tests/test_geoai.py +0 -0
  81. {geoai_py-0.19.0 → geoai_py-0.21.0}/tests/test_segment.py +0 -0
  82. {geoai_py-0.19.0 → geoai_py-0.21.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.19.0
3
+ Version: 0.21.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
@@ -103,7 +103,7 @@ The package's design philosophy emphasizes simplicity without sacrificing functi
103
103
 
104
104
  If you find GeoAI useful in your research, please consider citing the following paper to support my work. Thank you for your support.
105
105
 
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.09025/joss.09025/10.21105.joss.09025.pdf) (Under Review)
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.09605/joss.09605/10.21105.joss.09605.pdf) (Under Review)
107
107
 
108
108
  ## 🚀 Key Features
109
109
 
@@ -162,6 +162,12 @@ conda install -c conda-forge geoai
162
162
  mamba install -c conda-forge geoai
163
163
  ```
164
164
 
165
+ ## ⚙️ QGIS Plugin
166
+
167
+ Check out the [QGIS Plugin](https://opengeoai.org/qgis_plugin/) page if you are interested in using GeoAI with QGIS.
168
+
169
+ [![demo](https://github.com/user-attachments/assets/557feb58-ca58-4e27-800f-f3e8a8d3d362)](https://github.com/user-attachments/assets/557feb58-ca58-4e27-800f-f3e8a8d3d362)
170
+
165
171
  ## 📋 Documentation
166
172
 
167
173
  Comprehensive documentation is available at [https://opengeoai.org](https://opengeoai.org), including:
@@ -40,7 +40,7 @@ The package's design philosophy emphasizes simplicity without sacrificing functi
40
40
 
41
41
  If you find GeoAI useful in your research, please consider citing the following paper to support my work. Thank you for your support.
42
42
 
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.09025/joss.09025/10.21105.joss.09025.pdf) (Under Review)
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.09605/joss.09605/10.21105.joss.09605.pdf) (Under Review)
44
44
 
45
45
  ## 🚀 Key Features
46
46
 
@@ -99,6 +99,12 @@ conda install -c conda-forge geoai
99
99
  mamba install -c conda-forge geoai
100
100
  ```
101
101
 
102
+ ## ⚙️ QGIS Plugin
103
+
104
+ Check out the [QGIS Plugin](https://opengeoai.org/qgis_plugin/) page if you are interested in using GeoAI with QGIS.
105
+
106
+ [![demo](https://github.com/user-attachments/assets/557feb58-ca58-4e27-800f-f3e8a8d3d362)](https://github.com/user-attachments/assets/557feb58-ca58-4e27-800f-f3e8a8d3d362)
107
+
102
108
  ## 📋 Documentation
103
109
 
104
110
  Comprehensive documentation is available at [https://opengeoai.org](https://opengeoai.org), including:
@@ -2,7 +2,7 @@
2
2
 
3
3
  __author__ = """Qiusheng Wu"""
4
4
  __email__ = "giswqs@gmail.com"
5
- __version__ = "0.19.0"
5
+ __version__ = "0.21.0"
6
6
 
7
7
 
8
8
  import os