OrbTop

INPE Brazil CBERS & Amazonia-1 Imagery Catalog Scraper

EDUCATIONOTHER

INPE Brazil CBERS & Amazonia-1 Imagery Catalog Scraper

Extracts satellite scene metadata from Brazil's INPE (Instituto Nacional de Pesquisas Espaciais) imagery catalog, covering the CBERS-4, CBERS-4A, and Amazonia-1 Earth observation programs.

What it does

Queries the INPE CDSR STAC API (https://www.dgi.inpe.br/lgi-stac) to retrieve scene records from the Brazilian satellite imagery archive. Each record includes acquisition metadata, geographic coordinates, cloud cover, spectral band information, and direct download URLs for GeoTIFF files.

The actor supports filtering by:

  • Collection (specific satellite/sensor combinations)
  • Bounding box (geographic area of interest)
  • Date range (acquisition date)
  • Maximum cloud cover

Output fields

Field Description
scene_id Unique STAC item identifier
satellite Satellite name (CBERS4A, AMAZONIA1, CBERS4)
sensor Sensor/instrument (MUX, WFI, AWFI, PAN5M, PAN10M, WPM)
collection Full STAC collection ID
processing_level Processing level (L2, L4)
path / row Orbital path and row numbers
acquisition_date Acquisition date (ISO-8601)
acquisition_time_utc Acquisition time in UTC
center_lat / center_lon Scene center coordinates
bbox_* Scene bounding box (min/max lon/lat)
cloud_cover_percent Cloud cover percentage (0-100)
resolution_meters Ground sampling distance in meters
bands_available Comma-separated spectral band names
thumbnail_url URL to scene preview image (PNG)
download_url Direct download URL for the primary TIFF band
product_format File format (GeoTIFF)
license Data license (CC-BY for CBERS/Amazonia)
stac_item_url STAC item API URL

Available collections

The actor queries these INPE CDSR collections:

  • CBERS-4A: MUX, WFI, WPM (L2 and L4)
  • AMAZONIA-1: WFI (L2 and L4)
  • CBERS-4: AWFI, MUX, PAN10M, PAN5M (L2 and L4)

Input configuration

Parameter Type Description Default
maxItems integer Maximum scene records to return 10
collections array STAC collection IDs to query all 16 collections
dateFrom string Start date (YYYY-MM-DD) 30 days ago
dateTo string End date (YYYY-MM-DD) today
bbox array [min_lon, min_lat, max_lon, max_lat] Brazil extent
cloudCoverMax integer Max cloud cover % 100

Example: Amazon deforestation monitoring

{
    "maxItems": 500,
    "collections": ["CBERS4A_WFI_L4_DN", "AMAZONIA1_WFI_L4_DN"],
    "dateFrom": "2024-01-01",
    "dateTo": "2024-12-31",
    "bbox": [-75, -10, -45, 5],
    "cloudCoverMax": 20
}

Data source

All data is sourced from the INPE CDSR (Catálogo de Dados de Sensoriamento Remoto) public STAC API. The data is freely available under Creative Commons Attribution (CC-BY) license for Brazilian satellite data.