geoai-py 0.1.7__py2.py3-none-any.whl → 0.2.1__py2.py3-none-any.whl
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/__init__.py +28 -1
- geoai/common.py +158 -1
- geoai/download.py +9 -0
- geoai/extract.py +832 -0
- geoai/preprocess.py +2008 -0
- geoai_py-0.2.1.dist-info/METADATA +136 -0
- geoai_py-0.2.1.dist-info/RECORD +13 -0
- geoai_py-0.1.7.dist-info/METADATA +0 -51
- geoai_py-0.1.7.dist-info/RECORD +0 -11
- {geoai_py-0.1.7.dist-info → geoai_py-0.2.1.dist-info}/LICENSE +0 -0
- {geoai_py-0.1.7.dist-info → geoai_py-0.2.1.dist-info}/WHEEL +0 -0
- {geoai_py-0.1.7.dist-info → geoai_py-0.2.1.dist-info}/entry_points.txt +0 -0
- {geoai_py-0.1.7.dist-info → geoai_py-0.2.1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: geoai-py
|
|
3
|
+
Version: 0.2.1
|
|
4
|
+
Summary: A Python package for using Artificial Intelligence (AI) with geospatial data
|
|
5
|
+
Author-email: Qiusheng Wu <giswqs@gmail.com>
|
|
6
|
+
License: MIT License
|
|
7
|
+
Project-URL: Homepage, https://github.com/opengeos/geoai
|
|
8
|
+
Keywords: geoai
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Natural Language :: English
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
17
|
+
Requires-Python: >=3.9
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
License-File: LICENSE
|
|
20
|
+
Requires-Dist: albumentations
|
|
21
|
+
Requires-Dist: geopandas
|
|
22
|
+
Requires-Dist: huggingface_hub
|
|
23
|
+
Requires-Dist: jupyter-server-proxy
|
|
24
|
+
Requires-Dist: leafmap
|
|
25
|
+
Requires-Dist: localtileserver
|
|
26
|
+
Requires-Dist: overturemaps
|
|
27
|
+
Requires-Dist: planetary-computer
|
|
28
|
+
Requires-Dist: pystac-client
|
|
29
|
+
Requires-Dist: rasterio
|
|
30
|
+
Requires-Dist: rioxarray
|
|
31
|
+
Requires-Dist: scikit-learn
|
|
32
|
+
Requires-Dist: segment-geospatial
|
|
33
|
+
Requires-Dist: torch
|
|
34
|
+
Requires-Dist: torchgeo
|
|
35
|
+
Requires-Dist: tqdm
|
|
36
|
+
Requires-Dist: transformers
|
|
37
|
+
Provides-Extra: download
|
|
38
|
+
Requires-Dist: pystac_client; extra == "download"
|
|
39
|
+
Requires-Dist: planetary_computer; extra == "download"
|
|
40
|
+
Requires-Dist: tqdm; extra == "download"
|
|
41
|
+
Requires-Dist: overturemaps; extra == "download"
|
|
42
|
+
Provides-Extra: all
|
|
43
|
+
Requires-Dist: geoai[download]; extra == "all"
|
|
44
|
+
|
|
45
|
+
# GeoAI: Artificial Intelligence for Geospatial Data
|
|
46
|
+
|
|
47
|
+
[](https://pypi.python.org/pypi/geoai-py)
|
|
48
|
+
[](https://pepy.tech/project/geoai-py)
|
|
49
|
+
[](https://anaconda.org/conda-forge/geoai)
|
|
50
|
+
[](https://anaconda.org/conda-forge/geoai)
|
|
51
|
+
[](https://github.com/conda-forge/geoai-py-feedstock)
|
|
52
|
+
[](https://opensource.org/licenses/MIT)
|
|
53
|
+
[](https://youtube.com/@giswqs)
|
|
54
|
+
|
|
55
|
+
**A powerful Python package for integrating Artificial Intelligence with geospatial data analysis and visualization**
|
|
56
|
+
|
|
57
|
+
GeoAI bridges the gap between AI and geospatial analysis, providing tools for processing, analyzing, and visualizing geospatial data using advanced machine learning techniques. Whether you're working with satellite imagery, LiDAR point clouds, or vector data, GeoAI offers intuitive interfaces to apply cutting-edge AI models.
|
|
58
|
+
|
|
59
|
+
- 📖 **Documentation:** [https://geoai.gishub.org](https://geoai.gishub.org)
|
|
60
|
+
- 💬 **Community:** [GitHub Discussions](https://github.com/opengeos/geoai/discussions)
|
|
61
|
+
- 🐛 **Issue Tracker:** [GitHub Issues](https://github.com/opengeos/geoai/issues)
|
|
62
|
+
|
|
63
|
+
## 🚀 Key Features
|
|
64
|
+
|
|
65
|
+
### 📊 Advanced Geospatial Data Visualization
|
|
66
|
+
|
|
67
|
+
- Interactive multi-layer visualization of vector, raster, and point cloud data
|
|
68
|
+
- Customizable styling and symbology
|
|
69
|
+
- Time-series data visualization capabilities
|
|
70
|
+
|
|
71
|
+
### 🛠️ Data Preparation & Processing
|
|
72
|
+
|
|
73
|
+
- Streamlined access to satellite and aerial imagery from providers like Sentinel, Landsat, NAIP, and other open datasets
|
|
74
|
+
- Tools for downloading, mosaicking, and preprocessing remote sensing data
|
|
75
|
+
- Automated generation of training datasets with image chips and corresponding labels
|
|
76
|
+
- Vector-to-raster and raster-to-vector conversion utilities optimized for AI workflows
|
|
77
|
+
- Data augmentation techniques specific to geospatial data
|
|
78
|
+
- Support for integrating Overture Maps data and other open datasets for training and validation
|
|
79
|
+
|
|
80
|
+
### 🖼️ Image Segmentation
|
|
81
|
+
|
|
82
|
+
- Integration with Meta's Segment Anything Model (SAM) for automatic feature extraction
|
|
83
|
+
- Specialized segmentation algorithms optimized for satellite and aerial imagery
|
|
84
|
+
- Streamlined workflows for segmenting buildings, roads, vegetation, and water bodies
|
|
85
|
+
- Export capabilities to standard geospatial formats (GeoJSON, Shapefile, GeoPackage)
|
|
86
|
+
|
|
87
|
+
### 🔍 Image Classification
|
|
88
|
+
|
|
89
|
+
- Pre-trained models for land cover and land use classification
|
|
90
|
+
- Transfer learning utilities for fine-tuning models with your own data
|
|
91
|
+
- Multi-temporal classification support for change detection
|
|
92
|
+
- Accuracy assessment and validation tools
|
|
93
|
+
|
|
94
|
+
### 🌍 Additional Capabilities
|
|
95
|
+
|
|
96
|
+
- Terrain analysis with AI-enhanced feature extraction
|
|
97
|
+
- Point cloud classification and segmentation
|
|
98
|
+
- Object detection in aerial and satellite imagery
|
|
99
|
+
- Georeferencing utilities for AI model outputs
|
|
100
|
+
|
|
101
|
+
## 📦 Installation
|
|
102
|
+
|
|
103
|
+
### Using pip
|
|
104
|
+
|
|
105
|
+
```bash
|
|
106
|
+
pip install geoai-py
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
### Using conda
|
|
110
|
+
|
|
111
|
+
```bash
|
|
112
|
+
conda install -c conda-forge geoai
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
### Using mamba
|
|
116
|
+
|
|
117
|
+
```bash
|
|
118
|
+
mamba install -c conda-forge geoai
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
## 📋 Documentation
|
|
122
|
+
|
|
123
|
+
Comprehensive documentation is available at [https://geoai.gishub.org](https://geoai.gishub.org), including:
|
|
124
|
+
|
|
125
|
+
- Detailed API reference
|
|
126
|
+
- Tutorials and example notebooks
|
|
127
|
+
- Explanation of algorithms and models
|
|
128
|
+
- Best practices for geospatial AI
|
|
129
|
+
|
|
130
|
+
## 🤝 Contributing
|
|
131
|
+
|
|
132
|
+
We welcome contributions of all kinds! See our [contributing guide](https://geoai.gishub.org/contributing) for ways to get started.
|
|
133
|
+
|
|
134
|
+
## 📄 License
|
|
135
|
+
|
|
136
|
+
GeoAI is free and open source software, licensed under the MIT License.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
geoai/__init__.py,sha256=VK7J2Y0GS1zFvaA61lVyGcGPHyyavg1tAiPOMhormGc,923
|
|
2
|
+
geoai/common.py,sha256=Q_KTGUtJj3RwBGdQLTNGjjtBh_beJ8iBkDg3xR7yx6c,15131
|
|
3
|
+
geoai/download.py,sha256=4GiDmLrp2wKslgfm507WeZrwOdYcMekgQXxWGbl5cBw,13094
|
|
4
|
+
geoai/extract.py,sha256=Fh29d5Fj60YiqhMs62lzkd9T_ONTp2UZ4j98We769sg,31563
|
|
5
|
+
geoai/geoai.py,sha256=TmR7x1uL51G5oAjw0AQWnC5VQtLWDygyFLrDIj46xNc,86
|
|
6
|
+
geoai/preprocess.py,sha256=dI3N-xdtDUXYY46nb_SSC7c5G_F1qvGC0HF0bUWKb8A,82824
|
|
7
|
+
geoai/segmentation.py,sha256=Vcymnhwl_xikt4v9x8CYJq_vId9R1gB7-YzLfwg-F9M,11372
|
|
8
|
+
geoai_py-0.2.1.dist-info/LICENSE,sha256=vN2L5U7cZ6ZkOHFmc8WiGlsogWsZc5dllMeNxnKVOZg,1070
|
|
9
|
+
geoai_py-0.2.1.dist-info/METADATA,sha256=FvpsWwkFLOQXf-ay6hKDkeMQ1okhD93eSWw_RO6OmSE,5438
|
|
10
|
+
geoai_py-0.2.1.dist-info/WHEEL,sha256=rF4EZyR2XVS6irmOHQIJx2SUqXLZKRMUrjsg8UwN-XQ,109
|
|
11
|
+
geoai_py-0.2.1.dist-info/entry_points.txt,sha256=uGp3Az3HURIsRHP9v-ys0hIbUuBBNUfXv6VbYHIXeg4,41
|
|
12
|
+
geoai_py-0.2.1.dist-info/top_level.txt,sha256=1YkCUWu-ii-0qIex7kbwAvfei-gos9ycyDyUCJPNWHY,6
|
|
13
|
+
geoai_py-0.2.1.dist-info/RECORD,,
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.2
|
|
2
|
-
Name: geoai-py
|
|
3
|
-
Version: 0.1.7
|
|
4
|
-
Summary: A Python package for using Artificial Intelligence (AI) with geospatial data
|
|
5
|
-
Author-email: Qiusheng Wu <giswqs@gmail.com>
|
|
6
|
-
License: MIT License
|
|
7
|
-
Project-URL: Homepage, https://github.com/opengeos/geoai
|
|
8
|
-
Keywords: geoai
|
|
9
|
-
Classifier: Intended Audience :: Developers
|
|
10
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
-
Classifier: Natural Language :: English
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.13
|
|
17
|
-
Requires-Python: >=3.9
|
|
18
|
-
Description-Content-Type: text/markdown
|
|
19
|
-
License-File: LICENSE
|
|
20
|
-
Requires-Dist: albumentations
|
|
21
|
-
Requires-Dist: jupyter-server-proxy
|
|
22
|
-
Requires-Dist: leafmap
|
|
23
|
-
Requires-Dist: localtileserver
|
|
24
|
-
Requires-Dist: scikit-learn
|
|
25
|
-
Requires-Dist: segment-geospatial
|
|
26
|
-
Requires-Dist: torch
|
|
27
|
-
Requires-Dist: torchgeo
|
|
28
|
-
Requires-Dist: transformers
|
|
29
|
-
Provides-Extra: download
|
|
30
|
-
Requires-Dist: pystac_client; extra == "download"
|
|
31
|
-
Requires-Dist: planetary_computer; extra == "download"
|
|
32
|
-
Requires-Dist: tqdm; extra == "download"
|
|
33
|
-
Requires-Dist: overturemaps; extra == "download"
|
|
34
|
-
Provides-Extra: all
|
|
35
|
-
Requires-Dist: geoai[download]; extra == "all"
|
|
36
|
-
|
|
37
|
-
# geoai
|
|
38
|
-
|
|
39
|
-
[](https://pypi.python.org/pypi/geoai-py)
|
|
40
|
-
[](https://anaconda.org/conda-forge/geoai)
|
|
41
|
-
|
|
42
|
-
**A Python package for using Artificial Intelligence (AI) with geospatial data**
|
|
43
|
-
|
|
44
|
-
- Free software: MIT license
|
|
45
|
-
- Documentation: <https://geoai.gishub.org>
|
|
46
|
-
|
|
47
|
-
## Features
|
|
48
|
-
|
|
49
|
-
- Visualizing geospatial data, including vector, raster, and LiDAR data
|
|
50
|
-
- Segmenting remote sensing imagery with the Segment Anything Model
|
|
51
|
-
- Classifying remote sensing imagery with deep learning models
|
geoai_py-0.1.7.dist-info/RECORD
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
geoai/__init__.py,sha256=pHMpntXI_R7c_vTJ6VbyS8iAx1uVyDP5HwYauOonZ3s,143
|
|
2
|
-
geoai/common.py,sha256=6h6mtUBO428P3IZppWyCVo04Ohzc3VhmnH0tvVh479g,9675
|
|
3
|
-
geoai/download.py,sha256=wzmLvrbrX9tTAkLYZInFnW-Yextr3Appcg0DPhQWHYU,12738
|
|
4
|
-
geoai/geoai.py,sha256=TmR7x1uL51G5oAjw0AQWnC5VQtLWDygyFLrDIj46xNc,86
|
|
5
|
-
geoai/segmentation.py,sha256=Vcymnhwl_xikt4v9x8CYJq_vId9R1gB7-YzLfwg-F9M,11372
|
|
6
|
-
geoai_py-0.1.7.dist-info/LICENSE,sha256=vN2L5U7cZ6ZkOHFmc8WiGlsogWsZc5dllMeNxnKVOZg,1070
|
|
7
|
-
geoai_py-0.1.7.dist-info/METADATA,sha256=I3hYR-8dPERNmz_FsLLUeVVFXsPzAHK09HNZMRxss0A,1886
|
|
8
|
-
geoai_py-0.1.7.dist-info/WHEEL,sha256=rF4EZyR2XVS6irmOHQIJx2SUqXLZKRMUrjsg8UwN-XQ,109
|
|
9
|
-
geoai_py-0.1.7.dist-info/entry_points.txt,sha256=uGp3Az3HURIsRHP9v-ys0hIbUuBBNUfXv6VbYHIXeg4,41
|
|
10
|
-
geoai_py-0.1.7.dist-info/top_level.txt,sha256=1YkCUWu-ii-0qIex7kbwAvfei-gos9ycyDyUCJPNWHY,6
|
|
11
|
-
geoai_py-0.1.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|