geoai-py 0.1.0__tar.gz → 0.1.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.
Files changed (69) hide show
  1. geoai_py-0.1.5/.editorconfig +21 -0
  2. geoai_py-0.1.5/.github/ISSUE_TEMPLATE/bug_report.md +25 -0
  3. geoai_py-0.1.5/.github/ISSUE_TEMPLATE/config.yml +10 -0
  4. geoai_py-0.1.5/.github/ISSUE_TEMPLATE/feature_request.md +18 -0
  5. geoai_py-0.1.5/.github/dependabot.yml +19 -0
  6. geoai_py-0.1.5/.github/workflows/docs-build.yml +70 -0
  7. geoai_py-0.1.5/.github/workflows/docs.yml +50 -0
  8. geoai_py-0.1.5/.github/workflows/macos.yml +37 -0
  9. geoai_py-0.1.5/.github/workflows/pypi.yml +30 -0
  10. geoai_py-0.1.5/.github/workflows/ubuntu.yml +49 -0
  11. geoai_py-0.1.5/.github/workflows/windows.yml +33 -0
  12. geoai_py-0.1.5/.gitignore +110 -0
  13. geoai_py-0.1.5/.pre-commit-config.yaml +32 -0
  14. {geoai-py-0.1.0/geoai_py.egg-info → geoai_py-0.1.5}/PKG-INFO +18 -10
  15. {geoai-py-0.1.0 → geoai_py-0.1.5}/README.md +1 -1
  16. geoai_py-0.1.5/docs/CNAME +1 -0
  17. geoai_py-0.1.5/docs/changelog.md +5 -0
  18. geoai_py-0.1.5/docs/common.md +3 -0
  19. geoai_py-0.1.5/docs/contributing.md +108 -0
  20. geoai_py-0.1.5/docs/examples/dataviz/lidar_viz.ipynb +356 -0
  21. geoai_py-0.1.5/docs/examples/dataviz/raster_viz.ipynb +479 -0
  22. geoai_py-0.1.5/docs/examples/dataviz/vector_viz.ipynb +691 -0
  23. geoai_py-0.1.5/docs/examples/rastervision/semantic_segmentation.ipynb +425 -0
  24. geoai_py-0.1.5/docs/examples/samgeo/arcgis.ipynb +464 -0
  25. geoai_py-0.1.5/docs/examples/samgeo/automatic_mask_generator.ipynb +386 -0
  26. geoai_py-0.1.5/docs/examples/samgeo/automatic_mask_generator_hq.ipynb +388 -0
  27. geoai_py-0.1.5/docs/examples/samgeo/box_prompts.ipynb +357 -0
  28. geoai_py-0.1.5/docs/examples/samgeo/fast_sam.ipynb +267 -0
  29. geoai_py-0.1.5/docs/examples/samgeo/input_prompts.ipynb +267 -0
  30. geoai_py-0.1.5/docs/examples/samgeo/input_prompts_hq.ipynb +265 -0
  31. geoai_py-0.1.5/docs/examples/samgeo/maxar_open_data.ipynb +323 -0
  32. geoai_py-0.1.5/docs/examples/samgeo/satellite-predictor.ipynb +318 -0
  33. geoai_py-0.1.5/docs/examples/samgeo/satellite.ipynb +320 -0
  34. geoai_py-0.1.5/docs/examples/samgeo/swimming_pools.ipynb +367 -0
  35. geoai_py-0.1.5/docs/examples/samgeo/text_prompts.ipynb +360 -0
  36. geoai_py-0.1.5/docs/examples/samgeo/text_prompts_batch.ipynb +260 -0
  37. geoai_py-0.1.5/docs/faq.md +1 -0
  38. geoai_py-0.1.5/docs/geoai.md +4 -0
  39. geoai_py-0.1.5/docs/index.md +15 -0
  40. geoai_py-0.1.5/docs/installation.md +21 -0
  41. geoai_py-0.1.5/docs/overrides/main.html +11 -0
  42. geoai_py-0.1.5/docs/segmentation.md +3 -0
  43. geoai_py-0.1.5/docs/usage.md +7 -0
  44. {geoai-py-0.1.0 → geoai_py-0.1.5}/geoai/__init__.py +2 -2
  45. geoai_py-0.1.5/geoai/common.py +6 -0
  46. geoai_py-0.1.5/geoai/segmentation.py +349 -0
  47. {geoai-py-0.1.0 → geoai_py-0.1.5/geoai_py.egg-info}/PKG-INFO +18 -10
  48. geoai_py-0.1.5/geoai_py.egg-info/SOURCES.txt +60 -0
  49. geoai_py-0.1.5/geoai_py.egg-info/entry_points.txt +2 -0
  50. geoai_py-0.1.5/geoai_py.egg-info/requires.txt +11 -0
  51. geoai_py-0.1.5/mkdocs.yml +102 -0
  52. geoai_py-0.1.5/pyproject.toml +82 -0
  53. geoai_py-0.1.5/requirements.txt +5 -0
  54. geoai_py-0.1.5/requirements_docs.txt +24 -0
  55. geoai_py-0.1.5/setup.cfg +4 -0
  56. geoai_py-0.1.5/tests/__init__.py +1 -0
  57. geoai_py-0.1.5/tests/test_geoai.py +21 -0
  58. geoai-py-0.1.0/geoai/common.py +0 -7
  59. geoai-py-0.1.0/geoai_py.egg-info/SOURCES.txt +0 -15
  60. geoai-py-0.1.0/geoai_py.egg-info/dependency_links.txt +0 -1
  61. geoai-py-0.1.0/geoai_py.egg-info/requires.txt +0 -1
  62. geoai-py-0.1.0/requirements.txt +0 -1
  63. geoai-py-0.1.0/setup.cfg +0 -25
  64. geoai-py-0.1.0/setup.py +0 -57
  65. {geoai-py-0.1.0 → geoai_py-0.1.5}/LICENSE +0 -0
  66. {geoai-py-0.1.0 → geoai_py-0.1.5}/MANIFEST.in +0 -0
  67. {geoai-py-0.1.0 → geoai_py-0.1.5}/geoai/geoai.py +0 -0
  68. /geoai-py-0.1.0/geoai_py.egg-info/not-zip-safe → /geoai_py-0.1.5/geoai_py.egg-info/dependency_links.txt +0 -0
  69. {geoai-py-0.1.0 → geoai_py-0.1.5}/geoai_py.egg-info/top_level.txt +0 -0
@@ -0,0 +1,21 @@
1
+ # http://editorconfig.org
2
+
3
+ root = true
4
+
5
+ [*]
6
+ indent_style = space
7
+ indent_size = 4
8
+ trim_trailing_whitespace = true
9
+ insert_final_newline = true
10
+ charset = utf-8
11
+ end_of_line = lf
12
+
13
+ [*.bat]
14
+ indent_style = tab
15
+ end_of_line = crlf
16
+
17
+ [LICENSE]
18
+ insert_final_newline = false
19
+
20
+ [Makefile]
21
+ indent_style = tab
@@ -0,0 +1,25 @@
1
+ ---
2
+ name: Bug Report
3
+ about: Create a bug report to help us improve
4
+ labels: bug
5
+ ---
6
+
7
+ <!-- Please search existing issues to avoid creating duplicates. -->
8
+
9
+ ### Environment Information
10
+
11
+ - geoai version:
12
+ - Python version:
13
+ - Operating System:
14
+
15
+ ### Description
16
+
17
+ Describe what you were trying to get done.
18
+ Tell us what happened, what went wrong, and what you expected to happen.
19
+
20
+ ### What I Did
21
+
22
+ ```
23
+ Paste the command(s) you ran and the output.
24
+ If there was a crash, please include the traceback here.
25
+ ```
@@ -0,0 +1,10 @@
1
+ contact_links:
2
+ - name: Ask questions
3
+ url: https://github.com/opengeos/geoai/discussions/categories/q-a
4
+ about: Please ask and answer questions here.
5
+ - name: Ideas
6
+ url: https://github.com/opengeos/geoai/discussions/categories/ideas
7
+ about: Please share your ideas here.
8
+ - name: Ask questions from the GIS community
9
+ url: https://gis.stackexchange.com
10
+ about: To get answers from questions in the GIS community, please ask and answer questions here.
@@ -0,0 +1,18 @@
1
+ ---
2
+ name: Feature Request
3
+ about: Submit a feature request to help us improve
4
+ labels: Feature Request
5
+ ---
6
+
7
+ <!-- Please search existing issues to avoid creating duplicates. -->
8
+
9
+ ### Description
10
+
11
+ Describe the feature (e.g., new functions/tutorials) you would like to propose.
12
+ Tell us what can be achieved with this new feature and what's the expected outcome.
13
+
14
+ ### Source code
15
+
16
+ ```
17
+ Paste your source code here if have sample code to share.
18
+ ```
@@ -0,0 +1,19 @@
1
+ # To get started with Dependabot version updates, you'll need to specify which
2
+ # package ecosystems to update and where the package manifests are located.
3
+ # Please see the documentation for all configuration options:
4
+ # https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5
+
6
+ version: 2
7
+ updates:
8
+ - package-ecosystem: "docker"
9
+ directory: "/"
10
+ schedule:
11
+ interval: "weekly"
12
+ - package-ecosystem: "pip"
13
+ directory: "/"
14
+ schedule:
15
+ interval: "weekly"
16
+ - package-ecosystem: "github-actions"
17
+ directory: "/"
18
+ schedule:
19
+ interval: "weekly"
@@ -0,0 +1,70 @@
1
+ name: docs-build
2
+ on:
3
+ pull_request:
4
+ branches:
5
+ - main
6
+
7
+ jobs:
8
+ docs-build:
9
+ runs-on: ubuntu-latest
10
+ strategy:
11
+ matrix:
12
+ python-version: ["3.12"]
13
+
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ with:
17
+ fetch-depth: 0
18
+
19
+ - name: Install uv
20
+ uses: astral-sh/setup-uv@v5
21
+ with:
22
+ version: "0.4.16"
23
+ enable-cache: false
24
+
25
+ - name: Set up Python ${{ matrix.python-version }}
26
+ run: uv python install ${{ matrix.python-version }}
27
+
28
+ - name: Install dependencies
29
+ run: |
30
+ uv venv --python ${{ matrix.python-version }}
31
+ uv pip install .
32
+
33
+ - name: Install optional dependencies
34
+ run: |
35
+ uv pip install --find-links https://girder.github.io/large_image_wheels GDAL pyproj
36
+ uv pip install pytest
37
+
38
+ - name: Test import
39
+ run: |
40
+ uv run python -c "import geoai; print('geoai import successful')"
41
+ uv run python -c "from osgeo import gdal; print('gdal import successful')"
42
+ uv run gdalinfo --version
43
+
44
+ - name: Running pytest
45
+ run: |
46
+ uv run pytest . --verbose
47
+
48
+ - name: Install mkdocs
49
+ run: |
50
+ uv pip install -r requirements_docs.txt
51
+ uv run mkdocs build
52
+
53
+ - name: Deploy to Netlify
54
+ uses: nwtgck/actions-netlify@v3.0
55
+ with:
56
+ publish-dir: "./site"
57
+ production-branch: master
58
+ github-token: ${{ secrets.GITHUB_TOKEN }}
59
+ deploy-message: "Deploy from GitHub Actions"
60
+ enable-pull-request-comment: true
61
+ enable-commit-comment: false
62
+ overwrites-pull-request-comment: true
63
+ env:
64
+ NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
65
+ NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
66
+
67
+ - name: Cleanup
68
+ if: always()
69
+ run: |
70
+ echo "Cleaning up resources."
@@ -0,0 +1,50 @@
1
+ name: docs
2
+ on:
3
+ push:
4
+ branches:
5
+ - main
6
+ jobs:
7
+ deploy:
8
+ runs-on: ubuntu-latest
9
+ strategy:
10
+ matrix:
11
+ python-version: ["3.12"]
12
+
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ with:
16
+ fetch-depth: 0
17
+
18
+ - name: Install uv
19
+ uses: astral-sh/setup-uv@v5
20
+ with:
21
+ version: "0.4.16"
22
+ enable-cache: false
23
+
24
+ - name: Set up Python ${{ matrix.python-version }}
25
+ run: uv python install ${{ matrix.python-version }}
26
+
27
+ - name: Install dependencies
28
+ run: |
29
+ uv venv --python ${{ matrix.python-version }}
30
+ uv pip install .
31
+
32
+ - name: Install optional dependencies
33
+ run: |
34
+ uv pip install --find-links https://girder.github.io/large_image_wheels GDAL pyproj
35
+ uv pip install pytest
36
+
37
+ - name: Test import
38
+ run: |
39
+ uv run python -c "import geoai; print('geoai import successful')"
40
+ uv run python -c "from osgeo import gdal; print('gdal import successful')"
41
+ uv run gdalinfo --version
42
+
43
+ - name: Running pytest
44
+ run: |
45
+ uv run pytest . --verbose
46
+
47
+ - name: Install mkdocs
48
+ run: |
49
+ uv pip install -r requirements_docs.txt
50
+ uv run mkdocs gh-deploy --force
@@ -0,0 +1,37 @@
1
+ on:
2
+ push:
3
+ branches:
4
+ - main
5
+ pull_request:
6
+ branches:
7
+ - main
8
+
9
+ name: macOS build
10
+ jobs:
11
+ test-macOS:
12
+ runs-on: ${{ matrix.config.os }}
13
+ name: ${{ matrix.config.os }} (${{ matrix.config.py }})
14
+ strategy:
15
+ fail-fast: false
16
+ matrix:
17
+ config:
18
+ - { os: macOS-latest, py: "3.12" }
19
+ env:
20
+ SDKROOT: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk
21
+ steps:
22
+ - uses: actions/checkout@v4
23
+
24
+ - name: Install uv
25
+ uses: astral-sh/setup-uv@v5
26
+ with:
27
+ version: "0.4.16"
28
+ enable-cache: false
29
+
30
+ - name: Install dependencies
31
+ run: |
32
+ uv venv --python ${{ matrix.config.py }}
33
+ uv pip install .
34
+
35
+ - name: Test import
36
+ run: |
37
+ uv run python -c "import geoai; print('geoai import successful')"
@@ -0,0 +1,30 @@
1
+ # This workflows will upload a Python Package using Twine when a release is created
2
+ # For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
3
+
4
+ name: pypi
5
+
6
+ on:
7
+ release:
8
+ types: [created]
9
+
10
+ jobs:
11
+ deploy:
12
+ runs-on: ubuntu-latest
13
+
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - name: Set up Python
17
+ uses: actions/setup-python@v5
18
+ with:
19
+ python-version: "3.x"
20
+ - name: Install dependencies
21
+ run: |
22
+ python -m pip install --upgrade pip
23
+ pip install setuptools wheel twine build
24
+ - name: Build and publish
25
+ env:
26
+ TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
27
+ TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
28
+ run: |
29
+ python -m build
30
+ twine upload dist/*
@@ -0,0 +1,49 @@
1
+ on:
2
+ push:
3
+ branches:
4
+ - main
5
+ pull_request:
6
+ branches:
7
+ - main
8
+
9
+ name: Linux build
10
+ jobs:
11
+ test-ubuntu:
12
+ runs-on: ubuntu-latest
13
+
14
+ strategy:
15
+ fail-fast: false
16
+ matrix:
17
+ python-version: ["3.9", "3.10", "3.11", "3.12"]
18
+
19
+ steps:
20
+ - uses: actions/checkout@v4
21
+
22
+ - name: Install uv
23
+ uses: astral-sh/setup-uv@v5
24
+ with:
25
+ version: "0.4.16"
26
+ enable-cache: false
27
+
28
+ - name: Set up Python ${{ matrix.python-version }}
29
+ run: uv python install ${{ matrix.python-version }}
30
+
31
+ - name: Install dependencies
32
+ run: |
33
+ uv venv --python ${{ matrix.python-version }}
34
+ uv pip install .
35
+
36
+ - name: Install optional dependencies
37
+ run: |
38
+ uv pip install --find-links https://girder.github.io/large_image_wheels gdal pyproj
39
+ uv pip install pytest
40
+
41
+ - name: Test import
42
+ run: |
43
+ uv run python -c "import geoai; print('geoai import successful')"
44
+ uv run python -c "from osgeo import gdal; print('gdal import successful')"
45
+ uv run gdalinfo --version
46
+
47
+ - name: Running pytest
48
+ run: |
49
+ uv run pytest . --verbose
@@ -0,0 +1,33 @@
1
+ on:
2
+ push:
3
+ branches:
4
+ - main
5
+ pull_request:
6
+ branches:
7
+ - main
8
+
9
+ name: Windows build
10
+ jobs:
11
+ test-windows:
12
+ runs-on: windows-latest
13
+ strategy:
14
+ matrix:
15
+ python-version: ["3.12"]
16
+
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+
20
+ - name: Install uv
21
+ uses: astral-sh/setup-uv@v5
22
+ with:
23
+ version: "0.4.16"
24
+ enable-cache: false
25
+
26
+ - name: Install dependencies
27
+ run: |
28
+ uv venv --python ${{ matrix.python-version }}
29
+ uv pip install .
30
+
31
+ - name: Test import
32
+ run: |
33
+ uv run python -c "import geoai; print('geoai import successful')"
@@ -0,0 +1,110 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ private/
4
+ *.py[cod]
5
+ *$py.class
6
+
7
+ # C extensions
8
+ *.so
9
+ **/*.tif
10
+ **/*.zip
11
+ **/*.las
12
+
13
+ # Distribution / packaging
14
+ .Python
15
+ env/
16
+ build/
17
+ develop-eggs/
18
+ dist/
19
+ downloads/
20
+ eggs/
21
+ .eggs/
22
+ lib/
23
+ lib64/
24
+ parts/
25
+ sdist/
26
+ var/
27
+ wheels/
28
+ *.egg-info/
29
+ .installed.cfg
30
+ *.egg
31
+
32
+ # PyInstaller
33
+ # Usually these files are written by a python script from a template
34
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
35
+ *.manifest
36
+ *.spec
37
+
38
+ # Installer logs
39
+ pip-log.txt
40
+ pip-delete-this-directory.txt
41
+
42
+ # Unit test / coverage reports
43
+ htmlcov/
44
+ .tox/
45
+ .coverage
46
+ .coverage.*
47
+ .cache
48
+ nosetests.xml
49
+ coverage.xml
50
+ *.cover
51
+ .hypothesis/
52
+ .pytest_cache/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+
62
+ # Flask stuff:
63
+ instance/
64
+ .webassets-cache
65
+
66
+ # Scrapy stuff:
67
+ .scrapy
68
+
69
+ # Sphinx documentation
70
+ docs/_build/
71
+
72
+ # PyBuilder
73
+ target/
74
+
75
+ # Jupyter Notebook
76
+ .ipynb_checkpoints
77
+
78
+ # pyenv
79
+ .python-version
80
+
81
+ # celery beat schedule file
82
+ celerybeat-schedule
83
+
84
+ # SageMath parsed files
85
+ *.sage.py
86
+
87
+ # dotenv
88
+ .env
89
+
90
+ # virtualenv
91
+ .venv
92
+ venv/
93
+ ENV/
94
+
95
+ # Spyder project settings
96
+ .spyderproject
97
+ .spyproject
98
+
99
+ # Rope project settings
100
+ .ropeproject
101
+
102
+ # mkdocs documentation
103
+ /site
104
+
105
+ # mypy
106
+ .mypy_cache/
107
+
108
+ # IDE settings
109
+ .vscode/
110
+ .DS_Store
@@ -0,0 +1,32 @@
1
+ repos:
2
+ - repo: https://github.com/pre-commit/pre-commit-hooks
3
+ rev: v5.0.0
4
+ hooks:
5
+ - id: check-toml
6
+ - id: check-yaml
7
+ - id: end-of-file-fixer
8
+ types: [python]
9
+ - id: trailing-whitespace
10
+ - id: requirements-txt-fixer
11
+ - id: check-added-large-files
12
+ args: ["--maxkb=500"]
13
+
14
+ - repo: https://github.com/psf/black
15
+ rev: 25.1.0
16
+ hooks:
17
+ - id: black-jupyter
18
+
19
+ - repo: https://github.com/codespell-project/codespell
20
+ rev: v2.4.1
21
+ hooks:
22
+ - id: codespell
23
+ args:
24
+ [
25
+ "--ignore-words-list=aci,acount,acounts,fallow,ges,hart,hist,nd,ned,ois,wqs,watermask,tre,mape",
26
+ "--skip=*.csv,*.geojson,*.json,*.yml*.js,*.html,*cff,*.pdf",
27
+ ]
28
+
29
+ - repo: https://github.com/kynan/nbstripout
30
+ rev: 0.8.1
31
+ hooks:
32
+ - id: nbstripout
@@ -1,28 +1,35 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: geoai-py
3
- Version: 0.1.0
3
+ Version: 0.1.5
4
4
  Summary: A Python package for using Artificial Intelligence (AI) with geospatial data
5
- Home-page: https://github.com/opengeos/geoai
6
- Author: Qiusheng Wu
7
- Author-email: giswqs@gmail.com
8
- License: MIT license
5
+ Author-email: Qiusheng Wu <giswqs@gmail.com>
6
+ License: MIT License
7
+ Project-URL: Homepage, https://github.com/giswqs/geoai
9
8
  Keywords: geoai
10
9
  Classifier: Intended Audience :: Developers
11
10
  Classifier: License :: OSI Approved :: MIT License
12
11
  Classifier: Natural Language :: English
13
- Classifier: Programming Language :: Python :: 3
14
- Classifier: Programming Language :: Python :: 3.8
15
12
  Classifier: Programming Language :: Python :: 3.9
16
13
  Classifier: Programming Language :: Python :: 3.10
17
14
  Classifier: Programming Language :: Python :: 3.11
18
- Requires-Python: >=3.8
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Requires-Python: >=3.9
19
18
  Description-Content-Type: text/markdown
20
19
  License-File: LICENSE
20
+ Requires-Dist: albumentations
21
+ Requires-Dist: scikit-learn
22
+ Requires-Dist: segment-geospatial
23
+ Requires-Dist: torch
24
+ Requires-Dist: transformers
25
+ Provides-Extra: all
26
+ Requires-Dist: geoai[extra]; extra == "all"
27
+ Provides-Extra: extra
28
+ Requires-Dist: pandas; extra == "extra"
21
29
 
22
30
  # geoai
23
31
 
24
32
  [![image](https://img.shields.io/pypi/v/geoai-py.svg)](https://pypi.python.org/pypi/geoai-py)
25
-
26
33
  [![image](https://img.shields.io/conda/vn/conda-forge/geoai.svg)](https://anaconda.org/conda-forge/geoai)
27
34
 
28
35
  **A Python package for using Artificial Intelligence (AI) with geospatial data**
@@ -32,5 +39,6 @@ License-File: LICENSE
32
39
 
33
40
  ## Features
34
41
 
42
+ - Visualizing geospatial data, including vector, raster, and LiDAR data
35
43
  - Segmenting remote sensing imagery with the Segment Anything Model
36
44
  - Classifying remote sensing imagery with deep learning models
@@ -1,7 +1,6 @@
1
1
  # geoai
2
2
 
3
3
  [![image](https://img.shields.io/pypi/v/geoai-py.svg)](https://pypi.python.org/pypi/geoai-py)
4
-
5
4
  [![image](https://img.shields.io/conda/vn/conda-forge/geoai.svg)](https://anaconda.org/conda-forge/geoai)
6
5
 
7
6
  **A Python package for using Artificial Intelligence (AI) with geospatial data**
@@ -11,5 +10,6 @@
11
10
 
12
11
  ## Features
13
12
 
13
+ - Visualizing geospatial data, including vector, raster, and LiDAR data
14
14
  - Segmenting remote sensing imagery with the Segment Anything Model
15
15
  - Classifying remote sensing imagery with deep learning models
@@ -0,0 +1 @@
1
+ geoai.gishub.org
@@ -0,0 +1,5 @@
1
+ # Changelog
2
+
3
+ ## v0.0.1 - Aug 11, 2023
4
+
5
+ Initial release
@@ -0,0 +1,3 @@
1
+ # common module
2
+
3
+ ::: geoai.common