Geopera Docs

Build with satellite imagery

Everything you need to find, order, and analyze Earth observation data — from choosing a sensor to pulling pixels through the API.

226
spectral indices
24
satellite sensors
24
data collections
26
core concepts
python
from geopera import Geopera

client = Geopera(api_key="gp_live_…")

# Order Sentinel-2, then compute NDVI
order = client.orders.archive.place(
    collection="sentinel-2-l2a",
    aoi=field_geojson,
    bands=["B04", "B08"],
)

ndvi = (order.B08 - order.B04) / (order.B08 + order.B04)

Reference

Explore the catalog

Three reference surfaces, each with exact specifications and working code.

Get started

From an area of interest to imagery

New to Geopera? Follow the path, or jump straight to whatever you need.

Access

Tools & resources

The ordering portal, the assistant, live orbits, and machine-readable feeds.

Technical questions — code samples, sensor compatibility, spec interpretation: [email protected].