geomind-ai 1.0.0__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.
@@ -0,0 +1,85 @@
1
+ Metadata-Version: 2.4
2
+ Name: geomind-ai
3
+ Version: 1.0.0
4
+ Summary: AI agent for geospatial analysis
5
+ Author: Harsh Shinde
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://harshshinde0.github.io/GeoMind/
8
+ Project-URL: Repository, https://github.com/HarshShinde0/GeoMind
9
+ Project-URL: Documentation, https://github.com/HarshShinde0/GeoMind#readme
10
+ Project-URL: Issues, https://github.com/HarshShinde0/GeoMind/issues
11
+ Keywords: geospatial,satellite-imagery,sentinel-2,ai-agent,remote-sensing,earth-observation
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Intended Audience :: Science/Research
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Topic :: Scientific/Engineering
19
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
20
+ Requires-Python: >=3.10
21
+ Description-Content-Type: text/markdown
22
+ License-File: LICENSE
23
+ Requires-Dist: openai>=1.0.0
24
+ Requires-Dist: pystac-client>=0.8.0
25
+ Requires-Dist: pystac>=1.10.0
26
+ Requires-Dist: xarray>=2024.1.0
27
+ Requires-Dist: zarr>=2.18.0
28
+ Requires-Dist: dask>=2024.1.0
29
+ Requires-Dist: geopy>=2.4.0
30
+ Requires-Dist: fsspec>=2024.1.0
31
+ Requires-Dist: aiohttp>=3.9.0
32
+ Requires-Dist: requests>=2.31.0
33
+ Requires-Dist: s3fs>=2024.1.0
34
+ Requires-Dist: matplotlib>=3.8.0
35
+ Requires-Dist: numpy>=1.26.0
36
+ Requires-Dist: python-dotenv>=1.0.0
37
+ Dynamic: license-file
38
+
39
+ ### 1. Install Dependencies
40
+
41
+ ```bash
42
+ pip install -r requirements.txt
43
+ ```
44
+
45
+ ### 2. Set Up API Key
46
+
47
+ Set your HuggingFace API key in the environment or update `config.py`:
48
+
49
+ ```python
50
+ # In geomind/config.py
51
+ HF_API_KEY = "your_huggingface_api_key"
52
+ ```
53
+
54
+ Get a free API key from [HuggingFace](https://huggingface.co/settings/tokens).
55
+
56
+ ### 3. Run the Agent
57
+
58
+ ```bash
59
+ python main.py
60
+ ```
61
+
62
+ ## Example Queries
63
+
64
+ ```
65
+
66
+ 💬 "Create an RGB composite for the most recent image of London"
67
+
68
+ 💬 "Calculate NDVI for Central Park, New York"
69
+
70
+ 💬 "What images are available for Tokyo with less than 10% cloud cover?"
71
+ ```
72
+
73
+ ## Approach
74
+
75
+ ### Traditional Approach
76
+ ```
77
+ Full Scene Download → Local Storage → Process → Result
78
+ ~720 MB Disk I/O Slow
79
+ ```
80
+
81
+ ### GeoMind Approach (Zarr + fsspec)
82
+ ```
83
+ HTTP Range Request → Stream Chunks → Process in Memory → Result
84
+ ~1-5 MB No disk Fast
85
+ ```
@@ -0,0 +1,14 @@
1
+ geomind/__init__.py,sha256=ID2iX-nI4mf0RqErFeJm2buXYowD1EMDW-zk2lxNBA0,162
2
+ geomind/agent.py,sha256=Go4ilgUXYLSWMNxAe_zYT-hB6lMJWkD2LUsPGrR-y5I,15816
3
+ geomind/cli.py,sha256=Xu83Mn3rT4CpeHYCKPts3Kl-Y7XDLXVmjH_7hZd8QaY,3408
4
+ geomind/config.py,sha256=E97f1yooN2NqUlREPhO3RKFQXwnvLUrTAdxuqjH6RCk,2066
5
+ geomind/tools/__init__.py,sha256=C_7XGAMNkoapEpQ-5wkrMlskb_Nhew-VUjVZaYQo_Ks,747
6
+ geomind/tools/geocoding.py,sha256=0tHschi3jSwyWPzkxNtrw6ziZwUxMtiElElsnRVcsYQ,3115
7
+ geomind/tools/processing.py,sha256=3-sydyOfvjkz_-B9cEATAqcSEv4EXVR3bIA42H-eIv0,10275
8
+ geomind/tools/stac_search.py,sha256=KpznD91Z6WlhC3JAjl0i1IQ3AnF-wWoiyvymy8xRKJw,6586
9
+ geomind_ai-1.0.0.dist-info/licenses/LICENSE,sha256=wVJsn_q_iEJVaeb9LpHj1v5Ljg14FkTR-AhRPQqwj_g,1090
10
+ geomind_ai-1.0.0.dist-info/METADATA,sha256=3mHcocB4-vFl2HHZa8ptX8mVGxtoJ_zRcuvFR8jPdvU,2466
11
+ geomind_ai-1.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
12
+ geomind_ai-1.0.0.dist-info/entry_points.txt,sha256=2nPR3faYKl0-1epccvzMJ2xdi-Q1Vt7aOSvA84oIWnw,45
13
+ geomind_ai-1.0.0.dist-info/top_level.txt,sha256=rjKWNSNRhq4R9xJoZGsG-eAaH7BmTVNvfrrbcaJMIIs,8
14
+ geomind_ai-1.0.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ geomind = geomind.cli:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Harsh Shinde
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ geomind