DETER

Overview

DETER (Real-Time Detection System) is a satellite-based monitoring system operated by INPE (National Institute of Space Research) that detects and reports changes in forest cover with near real-time frequency. This system provides:

DETER is the primary early-warning system for deforestation in the Amazon, used by Brazilian environmental agencies for enforcement, research institutions for analysis, and internationally for monitoring compliance with forest conservation goals.

Data Source and Methodology

DETER monitoring: - Uses satellite imagery from multiple sources (MODIS, Landsat, Sentinel) - Automated and manual analysis to detect recent disturbances - Generates “alerts” - polyons representing areas of detected change - Updates available regularly (frequency varies by satellite availability) - Operated by INPE’s Remote Sensing Division

For technical details, visit INPE DETER System.


Available Datasets

1. deter_amz (DETER Amazon)

DETER monitoring data for the Legal Amazon biome.

2. deter_cerrado (DETER Cerrado)

DETER monitoring data for the Cerrado biome.


Important Data Characteristics

Raw Data Structure

The raw DETER data from INPE reports one alert/detection per row, with each row typically associated with a single municipality in the raw data. However, many alerts actually overlap multiple municipalities (typically 2-4 municipalities) that are not all shown in the original records. ### Data Processing

This package provides an important enhancement: spatial intersection with IBGE municipality geometries (2019 version) to identify ALL municipalities that each DETER alert overlaps with. This creates a more complete and accurate geographic picture than the original raw data.

Important note on CRS metadata: The CRS (Coordinate Reference System) information may need verification after loading, as coordinate system metadata can sometimes be unclear in the original INPE data.


Function Parameters

1. dataset

Selects which biome’s DETER data to download.

dataset = "deter_amz"      # Legal Amazon monitoring
dataset = "deter_cerrado"  # Cerrado biome monitoring

2. raw_data

Controls whether to download the original data or the processed/enhanced version.

raw_data = FALSE  # logical

Recommendation: Use raw_data = FALSE to get the enhanced municipality identification from spatial intersection.

3. language

Output language for variable names and documentation.

language = "eng"  # character string

Examples

# download treated DETER Amazon data
deter_amz <- load_deter(
  dataset = "deter_amz",
  raw_data = FALSE,
  language = "eng"
)

# download treated DETER Cerrado data
deter_cerrado <- load_deter(
  dataset = "deter_cerrado",
  raw_data = FALSE,
  language = "eng"
)

Data Notes

Raw Data Limitations

Data Structure

Each alert/row typically contains: - Spatial geometry: Polygon coordinates (SF object) - Detection date: When the alert was issued - Alert type: Deforestation, forest degradation, or other disturbance - Area: Size of detected change in hectares - Municipality: Geographic unit identification - State: Brazilian state - Metadata: Satellite source, confidence level (varies by product)

Important Considerations

  1. Alert types vary: “Deforestation” is permanent forest loss; “degradation” is forest damage but not clear-cut
  2. Near real-time data: Alerts are issued frequently; data is continuously updated
  3. Minimum detection size: Varies by sensor; typically 25 hectares for Amazon, larger for Cerrado
  4. CRS metadata: Verify coordinate system after loading; typically UTM zones for Brazil
  5. Overlapping municipalities: Enhanced version accounts for alerts crossing municipality boundaries
  6. False positives possible: Satellite detection can occasionally misclassify cloud shadows or other features as forest loss