PRODES

Overview

PRODES (Projeto de Monitoramento da Floresta Amazônica Brasileira - Project for Monitoring the Brazilian Amazon Forest) is Brazil’s primary satellite-based deforestation monitoring system operated by INPE (National Institute for Space Research).

This dataset provides:

PRODES is the authoritative source for Amazon deforestation statistics, used for environmental monitoring, policy evaluation, and international reporting on Brazilian forest protection.

Data Source and Methodology

PRODES monitoring: - Uses satellite imagery from multiple sources (Landsat, CBERS, others) - Automated and manual analysis to detect clear-cut deforestation - Annual assessment of forest loss - Recently (2020+) raster data published through TerraBrasilis - Data available as both raster files and aggregated by municipality

For more information, visit INPE PRODES Project and TerraBrasilis.


Available Datasets

1. deforestation

Clear-cut deforestation areas (complete forest loss).

2. residual_deforestation

Deforestation that was not captured in previous surveys (detected through improved methodology).

3. native_vegetation

Remaining native forest and natural vegetation areas.

4. hydrography

Water bodies and hydrographic features.

5. non_forest

Non-forest areas including savanna, grasslands, and other vegetation types.

6. clouds

Cloud cover in satellite imagery (data quality indicator).


Important Data Characteristics

Raw vs. Treated Data

Cumulative vs. Incremental Data

Year Type Definition
2007 Cumulative All deforestation from 1988-2007
2008-2023 Incremental Deforestation detected in that specific year

When analyzing time trends, be aware that 2007 includes 19 years of accumulated loss.

Data Organization


Function Parameters

1. dataset

Selects which landscape classification to download.

dataset = "deforestation"             # Clear-cut deforestation (main product)
dataset = "residual_deforestation"    # Previously undetected deforestation
dataset = "native_vegetation"         # Remaining forests and vegetation (2023 only)
dataset = "hydrography"               # Water bodies (2023 only)
dataset = "non_forest"                # Savanna and other non-forest (2023 only)
dataset = "clouds"                    # Cloud cover (2023 only)

2. raw_data

Controls data format: raster or municipality aggregates.

raw_data = FALSE  # logical

Important: Raster data is large; ensure sufficient storage and memory.

3. time_period

Specifies which year(s) to download.

Available by dataset:

Dataset Available Years
deforestation 2007 (cumulative), 2008-2023 (incremental)
residual_deforestation 2010-2023
native_vegetation 2023 only
hydrography 2023 only
non_forest 2023 only
clouds 2023 only
time_period = 2020              # single year
time_period = c(2015, 2020)     # multiple years
time_period = 2015:2020         # range of years (for deforestation only)

4. language

Output language.

language = "eng"  # character string

Examples

Example 1: Deforestation data for a single year

# download treated deforestation data for 2023
deforestation <- load_prodes(
  dataset = "deforestation",
  raw_data = FALSE,
  time_period = 2023,
  language = "eng"
)

Example 2: Deforestation data over multiple years

# download treated deforestation data for 2008 to 2023
deforestation_series <- load_prodes(
  dataset = "deforestation",
  raw_data = FALSE,
  time_period = 2008:2023,
  language = "eng"
)

Example 3: Cumulative forest loss since 1988

# download 2007 (cumulative 1988-2007) plus all years up to 2023
all_deforestation <- load_prodes(
  dataset = "deforestation",
  raw_data = FALSE,
  time_period = c(2007, 2008:2023),
  language = "eng"
)

Example 4: Residual deforestation

# download treated residual deforestation data for 2020
residual <- load_prodes(
  dataset = "residual_deforestation",
  raw_data = FALSE,
  time_period = 2020,
  language = "eng"
)

Data Notes

Raw Raster Data Characteristics

Municipality Aggregates

Data Quality and Accuracy

  1. Detection accuracy: ~95% for clear-cut deforestation
  2. Minimum mapping unit: Small forest clearances may not be detected
  3. Cloud contamination: Clouds may prevent detection in some areas (see clouds dataset)
  4. Seasonal effects: Deforestation easier to detect in dry season

Limitations

  1. Clear-cut only: Degradation and partial logging not captured (see DEGRAD for that)
  2. Legal Amazon only: Data limited to Legal Amazon definition; doesn’t cover all forest regions
  3. Raster data very large: May require specialized tools and significant computing resources
  4. Historical changes: INPE occasionally revises historical estimates as methodology improves
  5. Recent data provisional: 2023 data may be subject to revision as final processing completes