TCB: Malaria Atlas Project Gap-Filled Tasseled Cap Brightness (Annual 1km)

  • This dataset provides gap-filled Tasseled Cap Brightness (TCB) data derived from MODIS imagery, processed to eliminate missing data and clipped to valid value ranges.

  • The original 8-daily data are aggregated into monthly and annual products with a pixel size of 5000 meters.

  • The dataset covers the period from 2001-02-01 to 2024-01-01 and is updated annually.

  • This dataset is available under the CC-BY-NC-SA-4.0 license.

  • The data is provided by The Malaria Atlas Project.

projects/malariaatlasproject/assets/TCB_v061/1km/Annual
info

This dataset is part of a Publisher Catalog, and not managed by Google Earth Engine. Contact The Malaria Atlas Project for bugs or view more datasets from the The Malaria Atlas Project Catalog. Learn more about Publisher datasets.

Catalog Owner
The Malaria Atlas Project
Dataset Availability
2001-02-01T00:00:00Z–2024-01-01T00:00:00Z
Dataset Provider
Contact
The Malaria Atlas Project
Earth Engine Snippet
ee.ImageCollection("projects/malariaatlasproject/assets/TCB_v061/1km/Annual")
Cadence
1 Year
Tags
brightness malariaatlasproject map publisher-dataset tasseled-cap tcb vegetation vegetation-indices

Description

This gap-filled Tasseled Cap Brightness (TCB) dataset was created by applying the tasseled-cap equations defined in Lobser and Cohen (2007) to MODIS BRDF-corrected imagery (MCD43B4). The resulting data were gap-filled using the approach outlined in Weiss et al. (2014) to eliminate missing data caused by factors such as cloud cover. After gap-filling the data was clipped to thresholds of [-1, 2] to ensure valid values.

The gap-filled 8-daily ~1km outputs are then aggregated temporally to produce monthly and annual products.

Bands

Pixel Size
5000 meters

Bands

Name Min Max Pixel Size Description
Mean 0* 1.99* meters

The mean value of Tasseled Cap Brightness for each aggregated pixel.

* estimated min or max value

Terms of Use

Terms of Use

CC-BY-NC-SA-4.0

Citations

Citations:
  • Weiss, D.J., P.M. Atkinson, S. Bhatt, B. Mappin, S.I. Hay & P.W. Gething (2014) An effective approach for gap-filling continental scale remotely sensed time-series. ISPRS Journal of Photogrammetry and Remote Sensing, 98, 106-118. doi:10.1016/j.isprsjprs.2014.10.001

  • Lobser, S.E. & Cohen, W.B. (2007) MODIS tasselled cap: land cover characteristics expressed through transformed MODIS data. International Journal of Remote Sensing, 28, 5079-5101.

Explore with Earth Engine

Code Editor (JavaScript)

var dataset = ee.ImageCollection('projects/malariaatlasproject/assets/TCB_v061/1km/Annual')
                  .filter(ee.Filter.date('2018-01-01', '2023-01-01'));
var means = dataset.select('Mean');
var visParams = {
  min: 0.0,
  max: 1.3,
  palette: ['011301','004c00','056201','207401','3e8601','66a000','99b718','fcd163','ffffff'],
};
Map.setCenter(0, 0, 2);
Map.addLayer(means, visParams, 'Annual TCB: Malaria Atlas Project Gap-Filled Tasseled Cap Brightness');
Open in Code Editor