- Dataset Availability
- 2007-01-01T00:00:00Z–2009-11-26T23:59:59Z
- Dataset Producer
- Tags
Description
This dataset provides a visual imagery basemap of Brazil with up to 5-meter resolution, primarily captured in 2008, to support implementation of the Brazil Forest Code. The mosaic is synthesized from SPOT 2, 4, and 5 satellite data. It serves as a high-resolution alternative to Landsat for identifying consolidated areas, Permanent Protection Areas (APPs), and legal reserves as they existed on the July 22, 2008 regulatory deadline. Gaps in SPOT coverage are represented by a transparent mask to maintain data integrity.
Why Google created this basemap
While raw image collections are also available (see MS, MS_NC, PMS_NC, PAN), Google synthesized this mosaic to provide a seamless, ready-to-use product. By performing radiometric and geometric corrections at scale, Google transformed raw, disparate satellite scenes into a unified layer that allows for immediate visualization within applications like SICAR (the Rural Environmental Registry System of Brazil).
Geographic prioritization and coverage
To maximize immediate environmental impact, image selection prioritized achieving near-complete, high-resolution coverage for privately held lands registered in the Rural Environmental Registry (CAR). Specific focus was given to the Amazon biome and five states in the "Arc of Deforestation" - Maranhão, Mato Grosso, Pará, Rondônia, and Tocantins - where there is an average of 93% state-wide coverage. The average coverage across Brazil is 68% in v1. Gaps in coverage are represented by a transparent mask to maintain data integrity where high-quality 2008-era imagery was unavailable.
Processing methodology
Please see the methodology guide for an in-depth description of the processing, including:
- Radiometric calibration: Raw digital numbers were converted to TOA reflectance using band-specific physical gain and bias metadata, normalized by solar irradiance and Earth-Sun distance.
- Radiometric normalization: To minimize inter-image radiometric discontinuities pixel values were adjusted via histogram matching to a consistent Landsat 2008 mosaic target.
- Edge refinement: Google applied a 2.5-pixel focal minimum erosion to image masks to remove lossy compression artifacts present in the source data.
- Cloud masking: Trained surveyors manually delineated polygons around clouds and shadows, which were converted to a mask to ensure that only the most useful pixels are included in the composite.
- Automated misregistration correction: Select scenes were coregistered using the
ee.Image.registeralgorithm against a 2008-era Landsat reference composite. - Composition: The final mosaic prioritizes the highest resolution pixels available, layering SPOT 5 imagery (10 m) on top of SPOT 4 and 2.
Limitations and known issues
- Spatial completeness: Gaps exist where no imagery met the project’s strict 2008-era temporal window (2007–2009), cloud-cover thresholds, or quality standards.
- Variable native resolution:Boundaries between different nominal resolutions of source imagery may be visible because nearest neighbor resampling was used during processing..
- Residual misregistration: Spatial shifts may persist in some areas, particularly in regions with extreme terrain relief or dense, homogeneous forest areas.
- Atmospheric and cloud artifacts: Manual cloud masking is not exhaustive; users may encounter occasional residual artifacts like thin cirrus haze or small cloud shadows.
- Radiometric inconsistency: Residual spectral variation remains between adjacent images, which may increase spectral variance and reduce the precision of class separation during machine learning inference.
- Spectral saturation: In areas of extreme brightness, pixels may reach the sensor’s maximum detectable limit, resulting in a loss of texture and detail.
Data access
To access this dataset, please fill out the request form.
Bands
Bands
Pixel size: 5 meters (all bands)
| Name | Units | Min | Max | Pixel Size | Description |
|---|---|---|---|---|---|
R |
0 | 255 | 5 meters | Red reflectance |
|
G |
0 | 255 | 5 meters | Green reflectance |
|
B |
0 | 255 | 5 meters | Blue reflectance, representing the synthetic blue channel of the pseudo-natural color product for SPOT 2, 4, and 5 |
|
date |
seconds | 5 meters | Observation date as epoch (seconds) |
||
scale |
5 meters | Pixel size of source image (see Methodology) |
|||
satellite |
2 | 5 | 5 meters | Source satellite (SPOT 2, 4, or 5) |
|
coregistered |
0 | 1 | 5 meters | Boolean: 1 if automated misregistration correction was applied (see Methodology) |
Terms of Use
Terms of Use
Use of this dataset is subject to the Brazil Forest Imagery Dataset 2008 license agreement and requires the following attribution:
“Google LLC, Brazil Forest Imagery Dataset 2008 created from circa 2008 SPOT images acquired by CNES's Spot World Heritage Programme.”
Contains modified imagery from SPOT satellites made available by the CNES SPOT World Heritage Programme (https://regards.cnes.fr/html/swh/Home-swh3.html).
Explore with Earth Engine
Code Editor (JavaScript)
var visual2008 = ee.Image("GOOGLE/BRAZIL_FOREST_2008/V1/VISUAL"); // Define visualization parameters var visParams = { bands: ['R', 'G', 'B'], min: 0, max: 255 }; // Center the map on a high-priority conservation area in Brazil Map.setCenter(-55.0, -10.0, 6); // Add the 2008 imagery. Gaps will appear transparent, // showing the Map's default satellite background. Map.addLayer(visual2008, visParams, 'Brazil Forest Code 2008 (Visual)');