GeoPilotENGINE

GeoPilot Engine

Managed geospatial compute. One API call.

Process massive rasters, satellite imagery, and climate data at scale. Integrate the full power of GeoPilot into your applications via REST API, Python and JavaScript SDKs, or embeddable map components.

Process any raster. Any size.

Tiled processing for multi-gigabyte rasters. Drone imagery, satellite scenes, LiDAR DEMs, and climate data.

Tiled Processing

Large rasters are split into tiles, processed in parallel, and seamlessly stitched back together.

Multi-Band Support

Work with any number of bands. Calculate indices (NDVI, NDWI, SAVI), band math, and composite visualizations.

Any Resolution

From 30m Landsat to 2cm drone imagery. Automatic reprojection and resampling.

GPU Acceleration

Leverage GPU for convolutions, classification, and deep learning inference.

Local or Cloud

Process via API for programmatic access, or use cloud infrastructure for files up to 500 MB.

Statistics & Reports

Zonal statistics, histograms, class area summaries, and auto-generated PDF reports.

Supported formats

GeoTIFF

.tif / .tiff

The standard for geospatial rasters. Multi-band, tiled, compressed. Full COG (Cloud Optimized GeoTIFF) support.

NetCDF

.nc / .nc4

Climate and oceanographic datasets. Multi-dimensional arrays with time series, elevation bands, and variable metadata.

JPEG2000

.jp2 / .j2k

High-compression satellite imagery. Sentinel-2, Landsat, and commercial satellite providers.

Use cases

From precision agriculture to climate science, Engine handles it all.

Drone Orthomosaics

Drone Orthomosaics

Process centimeter-resolution orthomosaics from DJI, senseFly, and other drone platforms. NDVI, DTM generation, stockpile volume calculation, and change detection.

Typical: 2-20 GB per flight
Satellite Imagery

Satellite Imagery

Analyze Sentinel-2, Landsat, MODIS, and commercial satellite imagery. Band math, spectral indices, classification, and time series analysis.

Typical: 500 MB - 5 GB per scene
High-Resolution DEMs

High-Resolution DEMs

Process LiDAR DEMs, SRTM, ALOS, and Copernicus DEM data. Terrain analysis, viewshed, slope, aspect, curvature, and hydrological modeling.

Typical: 1-10 GB per tile
Climate & Weather Data

Climate & Weather Data

Analyze gridded climate data from ERA5, CHIRPS, GPM, and other sources. Temperature, precipitation, evapotranspiration time series and anomaly detection.

Typical: 100 MB - 50 GB per dataset

Works with your language

Python and JavaScript SDKs, or use raw REST calls from any language.

Python
from geopilot import GeoPilot

gp = GeoPilot(api_key="YOUR_KEY")

result = gp.analyze(
    geometry=my_polygon,
    operation="ndvi",
    date_range=["2026-01-01", "2026-03-01"]
)

print(result.summary)
JavaScript
import { GeoPilot } from '@geopilot/sdk';

const gp = new GeoPilot({ apiKey: 'YOUR_KEY' });

const result = await gp.analyze({
  geometry: myPolygon,
  operation: 'ndvi',
  dateRange: ['2026-01-01', '2026-03-01'],
});

console.log(result.summary);
cURL Request
curl -X POST https://api.geopilotai.com/v1/analyze \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "geometry": { "type": "Point", "coordinates": [77.59, 12.97] },
    "operation": "ndvi",
    "date_range": ["2026-01-01", "2026-03-01"]
  }'
Response200 OK
{
  "operation": "ndvi",
  "mean": 0.42,
  "min": 0.08,
  "max": 0.76,
  "area_km2": 12.4,
  "date": "2026-02-15",
  "format": "geojson",
  "download_url": "https://api.geopilotai.com/..."
}

Full GIS power via endpoints

Every operation available in GeoPilot Platform is accessible through the Engine API.

Spatial Analysis

Run any GIS operation programmatically — buffer, overlay, intersection, zonal statistics, and 100+ more.

Raster Processing

Process satellite imagery, compute spectral indices, run band math, and extract insights from any raster.

Change Detection

Compare satellite imagery between two dates. Get quantified change metrics for any area of interest.

Data Conversion

Convert between geospatial formats — Shapefile, GeoJSON, KML, GeoTIFF, GeoPackage, and more.

Webhooks & Async

Long-running analyses return results via webhook. No polling needed — get notified when done.

Auth & Rate Limiting

API key authentication, per-key rate limits, usage dashboards, and team management.

Built-in analyses

NDVI / NDWI / SAVI

Vegetation and water spectral indices

Terrain Analysis

Slope, aspect, curvature, TPI, TRI

Hydrological Modeling

Flow direction, accumulation, watersheds

Land Use Classification

Supervised and unsupervised classification

Time Series Analysis

Trend detection, anomaly mapping

Zonal Statistics

Statistics per zone, region, or polygon

Ready to build?

Get your API key and start integrating geospatial intelligence into your product.

Request Access