File size: 17,166 Bytes
4851501 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 |
# GeoQuery Architecture
## System Overview
GeoQuery is a **Territorial Intelligence Platform** that combines Large Language Models (LLMs) with geospatial analysis to enable natural language querying of geographic datasets. The system translates conversational queries into SQL, executes spatial operations, and presents results through interactive maps and data visualizations.
### Design Philosophy
1. **Natural Language First**: Users interact through conversational queries, not SQL or GIS interfaces
2. **Dynamic Data Discovery**: No fixed schemaβthe system adapts to any GeoJSON dataset added to the catalog
3. **Streaming Intelligence**: Real-time thought processes and incremental results via Server-Sent Events
4. **Spatial Native**: PostGIS-compatible spatial operations in DuckDB for performant geospatial analysis
5. **Visual by Default**: Automatic map visualization, choropleth generation, and data presentation
---
## High-Level Architecture
```
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Frontend β
β ββββββββββββββββ ββββββββββββββββ ββββββββββββββββ β
β β ChatPanel β β MapViewer β β DataExplorer β β
β β (React) β β (Leaflet) β β (Table) β β
β ββββββββββββββββ ββββββββββββββββ ββββββββββββββββ β
β β β β β
β ββββββββββββββββββββ΄βββββββββββββββββββ β
β β (SSE/HTTP) β
βββββββββββββββββββββββββββββΌββββββββββββββββββββββββββββββββββ
β
βββββββββββββββββββββββββββββΌββββββββββββββββββββββββββββββββββ
β API Layer β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β FastAPI Endpoints β β
β β /api/chat (SSE) β /api/catalog β /api/schema β β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β β
βββββββββββββββββββββββββββββΌββββββββββββββββββββββββββββββββββ
β
βββββββββββββββββββββββββββββΌββββββββββββββββββββββββββββββββββ
β Service Layer β
β ββββββββββββββββ ββββββββββββββββ ββββββββββββββββ β
β β QueryExecutorβ β LLMGateway β β GeoEngine β β
β β β β (Gemini) β β (DuckDB) β β
β ββββββββββββββββ ββββββββββββββββ ββββββββββββββββ β
β ββββββββββββββββ ββββββββββββββββ ββββββββββββββββ β
β β DataCatalog β βSemanticSearchβ β SessionStore β β
β β (Embeddings) β β (Vectors) β β (Layers) β β
β ββββββββββββββββ ββββββββββββββββ ββββββββββββββββ β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β
βββββββββββββββββββββββββββββΌββββββββββββββββββββββββββββββββββ
β Data Layer β
β ββββββββββββββββ ββββββββββββββββ ββββββββββββββββ β
β β catalog.json β β GeoJSON β β embeddings β β
β β (Metadata) β β (Datasets) β β (.npy) β β
β ββββββββββββββββ ββββββββββββββββ ββββββββββββββββ β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β DuckDB In-Memory Database β β
β β (Spatial Tables, Temporary Layers, Indexes) β β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββ β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
```
---
## Core Components
### 1. Frontend (Next.js + React)
**Location**: `frontend/src/`
The frontend is a single-page application built with Next.js that provides:
- **ChatPanel**: Conversational interface with streaming responses
- **MapViewer**: Interactive Leaflet map with layer management
- **DataExplorer**: Tabular data view with export capabilities
**Key Technologies**:
- Next.js 14 (App Router)
- React 18 with hooks
- Leaflet for map rendering
- Server-Sent Events (SSE) for streaming
- dnd-kit for drag-and-drop layer reordering
### 2. API Layer (FastAPI)
**Location**: `backend/api/`
RESTful API with streaming support:
- **`/api/chat`** (POST): Main query endpoint with SSE streaming
- **`/api/catalog`** (GET): Returns available datasets
- **`/api/schema`** (GET): Returns database schema
**Key Technologies**:
- FastAPI for async HTTP
- Starlette for SSE streaming
- CORS middleware for cross-origin requests
### 3. Service Layer
#### QueryExecutor (`backend/services/executor.py`)
Orchestrates the entire query pipeline:
1. Intent detection
2. Data discovery
3. SQL generation
4. Query execution
5. Response formatting
6. Explanation generation
#### LLMGateway (`backend/core/llm_gateway.py`)
Interfaces with Gemini API:
- Intent detection with thinking
- Text-to-SQL generation
- Natural language explanations
- Layer naming and styling
- Error correction
- Streaming support
#### GeoEngine (`backend/core/geo_engine.py`)
Manages spatial database:
- DuckDB connection with Spatial extension
- Lazy table loading from GeoJSON
- SQL query execution
- Result formatting to GeoJSON
- Temporary layer registration
#### DataCatalog (`backend/core/data_catalog.py`)
Dataset discovery system:
- Loads `catalog.json` metadata
- Generates table summaries for LLM context
- Provides schema information
- Manages dataset metadata
#### SemanticSearch (`backend/core/semantic_search.py`)
Vector-based dataset discovery:
- Generates embeddings for dataset descriptions
- Performs cosine similarity search
- Returns top-k relevant datasets
- Scales to large catalogs (100+ datasets)
#### SessionStore (`backend/core/session_store.py`)
User session management:
- Tracks created map layers per session
- Enables spatial operations on user layers
- Maintains layer metadata
### 4. Data Layer
#### Catalog System (`backend/data/catalog.json`)
Central metadata registry:
- Dataset paths and descriptions
- Semantic descriptions for AI discovery
- Categories and tags
- Schema information
- Data provenance
#### GeoJSON Datasets (`backend/data/`)
Organized by source:
- `osm/` - OpenStreetMap data (roads, buildings, POI)
- `admin/` - Administrative boundaries (HDX)
- `global/` - Global datasets (Kontur, Natural Earth)
- `socioeconomic/` - World Bank, MPI data
- `stri/` - STRI GIS Portal datasets
#### Vector Embeddings (`backend/data/embeddings.npy`)
Sentence transformer embeddings for semantic search
---
## Data Flow: User Query to Response
### Step 1: User Input
```
User: "Show me hospitals in Panama City"
```
### Step 2: Frontend β Backend
```
POST /api/chat
{
"message": "Show me hospitals in Panama City",
"history": []
}
```
### Step 3: Intent Detection (LLM)
```python
# QueryExecutor calls LLMGateway.detect_intent()
intent = await llm.detect_intent(query, history)
# Returns: "MAP_REQUEST"
```
### Step 4: Semantic Discovery
```python
# SemanticSearch finds relevant tables
candidates = semantic_search.search_table_names(query, top_k=15)
# Returns: ["panama_healthsites_geojson", "osm_amenities", ...]
```
### Step 5: Table Schema Retrieval
```python
# GeoEngine loads relevant tables
geo_engine.ensure_table_loaded("panama_healthsites_geojson")
schema = geo_engine.get_table_schemas()
# Returns: "Table: panama_healthsites_geojson\nColumns: name, amenity, geom..."
```
### Step 6: SQL Generation (LLM)
```python
# LLMGateway generates SQL
sql = await llm.generate_analytical_sql(query, schema, history)
# Returns: "SELECT name, amenity, geom FROM panama_healthsites_geojson
# WHERE amenity = 'hospital' AND ST_Intersects(geom, ...)"
```
### Step 7: Query Execution
```python
# GeoEngine executes spatial query
geojson = geo_engine.execute_spatial_query(sql)
# Returns: GeoJSON with 45 hospital features
```
### Step 8: Response Formatting
```python
# Add layer metadata, generate name, configure visualization
layer_info = await llm.generate_layer_name(query, sql)
# Returns: {"name": "Hospitals in Panama City", "emoji": "π₯", "pointStyle": "icon"}
geojson = format_geojson_layer(query, geojson, features,
layer_info["name"],
layer_info["emoji"],
layer_info["pointStyle"])
```
### Step 9: Explanation Generation (Streaming)
```python
# LLMGateway generates explanation with streaming
async for chunk in llm.stream_explanation(query, sql, data_summary, history):
if chunk["type"] == "thought":
# Stream thinking process to frontend
elif chunk["type"] == "content":
# Stream actual response text
```
### Step 10: Frontend Rendering
- ChatPanel displays streamed explanation
- MapViewer renders GeoJSON layer with hospital icons
- DataExplorer shows tabular data
---
## Key Design Decisions
### 1. Why DuckDB Instead of PostgreSQL?
**Chosen**: DuckDB with Spatial extension
**Rationale**:
- **Zero Configuration**: Embedded database, no separate server
- **Fast Analytics**: Columnar storage optimized for analytical queries
- **Spatial Support**: Full PostGIS compatibility via spatial extension
- **GeoJSON Native**: Direct GeoJSON import/export
- **Lightweight**: Perfect for development and small deployments
**Trade-off**: Limited concurrency compared to PostgreSQL (acceptable for our use case)
### 2. Why Semantic Search for Dataset Discovery?
**Chosen**: Sentence transformer embeddings + cosine similarity
**Rationale**:
- **Scalability**: Works with 100+ datasets without overwhelming LLM context
- **Accuracy**: Better matches than keyword search
- **Token Efficiency**: Only sends relevant table schemas to LLM
**Example**:
- Query: "Where can I find doctors?"
- Semantic search finds: `panama_healthsites_geojson` (closest match)
- LLM then generates SQL using only relevant schema
### 3. Why Server-Sent Events for Streaming?
**Chosen**: SSE instead of WebSockets
**Rationale**:
- **Simpler Protocol**: One-way communication (server β client)
- **HTTP Compatible**: Works through firewalls and proxies
- **Auto Reconnect**: Built-in browser support
- **Event Types**: Named events for different message types
**Trade-off**: No client β server streaming (not needed for our use case)
### 4. Why Lazy Table Loading?
**Chosen**: Load GeoJSON only when needed
**Rationale**:
- **Fast Startup**: Don't load all datasets on initialization
- **Memory Efficient**: Only keep active tables in memory
- **Flexible**: Easy to add new datasets without restart
**Implementation**:
```python
def ensure_table_loaded(self, table_name: str) -> bool:
if table_name not in self.loaded_tables:
self.load_geojson_to_table(table_name)
return table_name in self.loaded_tables
```
### 5. Why Choropleth Auto-Detection?
**Chosen**: Automatic choropleth configuration based on data
**Rationale**:
- **User Friendly**: No manual configuration needed
- **Intelligent**: Prioritizes meaningful columns (population, area, density)
- **Adaptive**: Works with any numeric column
**Logic**:
1. Find numeric columns
2. Prioritize keywords (population, area, count)
3. Check value variance (skip if all same)
4. Enable choropleth with appropriate scale (linear/log)
---
##Error Handling & Resilience
### SQL Error Correction
When a generated SQL query fails:
1. Extract error message
2. Send to LLM with original query and schema
3. LLM generates corrected SQL
4. Execute repaired query
5. If still fails, return error to user
### Data Unavailable Handling
When requested data doesn't exist:
1. LLM returns special error marker: `-- ERROR: DATA_UNAVAILABLE`
2. System extracts "Requested" and "Available" from response
3. Returns helpful message to user with alternatives
### Missing Tables
- Catalog lists all datasets but not all loaded
- Lazy loading attempts to load on demand
- If file missing, logs warning and continues
---
## Performance Considerations
### Query Optimization
- **Spatial Indexes**: DuckDB automatically indexes geometry columns
- **Top-K Limits**: Large result sets limited to prevent memory issues
- **Lazy Evaluation**: Stream results when possible
### Embedding Cache
- Embeddings pre-computed and stored in `.npy` file
- Only regenerated when catalog changes
- Fast cosine similarity via NumPy vectorization
### Frontend Rendering
- **Layer Virtualization**: Large point datasets use circle markers for performance
- **Choropleth Colors**: Pre-computed color palettes
- **Lazy Map Loading**: Only render visible layers
---
## Security Considerations
### LLM Prompt Injection
- **Mitigation**: Clear separation of user query and system instructions
- **Validation**: SQL parsing and column name verification
- **Sandboxing**: Read-only queries (no INSERT/UPDATE/DELETE)
### API Access
- **CORS**: Configured allowed origins
- **Rate Limiting**: Can be added via middleware (not currently implemented)
- **Authentication**: Not implemented (suitable for internal/demo deployments)
### Data Privacy
- No user data stored (stateless queries)
- Session layers stored in-memory only
- No query logging by default
---
## Scalability Path
### Current Limitations
- **Single Process**: No horizontal scaling
- **In-Memory Database**: Limited by RAM
- **No Caching**: Repeated queries re-execute
### Future Enhancements
1. **Add PostgreSQL/PostGIS**: For production deployments with persistence
2. **Redis Cache**: Cache query results and embeddings
3. **Load Balancer**: Multiple FastAPI instances
4. **Background Workers**: Async data ingestion with Celery
5. **CDN**: Serve GeoJSON datasets from cloud storage
---
## Technology Choices Summary
| Component | Technology | Why? |
|-----------|-----------|------|
| **Backend Language** | Python 3.11+ | Rich geospatial ecosystem, LLM SDKs |
| **Web Framework** | FastAPI | Async support, OpenAPI docs, SSE |
| **Database** | DuckDB | Embedded, fast analytics, spatial support |
| **LLM** | Google Gemini | Thinking mode, streaming, JSON output |
| **Frontend Framework** | Next.js 14 | React, SSR, App Router, TypeScript |
| **Map Library** | Leaflet | Lightweight, flexible, plugin ecosystem |
| **Embeddings** | sentence-transformers | Multilingual, semantic similarity |
| **Data Format** | GeoJSON | Standard, human-readable, LLM-friendly |
---
## Next Steps
For detailed information on specific components:
- [Backend Services](docs/backend/CORE_SERVICES.md)
- [API Reference](docs/backend/API_ENDPOINTS.md)
- [Frontend Components](docs/frontend/COMPONENTS.md)
- [Data Flow](docs/DATA_FLOW.md)
- [Setup Guide](SETUP.md)
|