MOD44W.005 Land Water Mask Derived From MODIS and SRTM

  • The MODIS/MOD44W/MOD44W_005_2000_02_24 dataset provides a global water mask at 250m resolution, combining data from SRTM and MODIS to identify surface water.

  • This dataset, covering circa 2000-2002, is primarily used for processing raster data and masking out water in final products.

  • It includes two bands: water_mask (indicating land or water) and water_mask_qa (specifying the water pixel's source).

  • MODIS data and products acquired through the LP DAAC have no restrictions on subsequent use, sale, or redistribution.

  • Users can explore and analyze this dataset further using Google Earth Engine.

MODIS/MOD44W/MOD44W_005_2000_02_24
Dataset Availability
2000-02-24T00:00:00Z–2000-02-24T00:00:00Z
Dataset Provider
Earth Engine Snippet
ee.Image("MODIS/MOD44W/MOD44W_005_2000_02_24")
Tags
geophysical mod44w modis srtm surface-ground-water water-mask

Description

The Global Water Mask uses the SWBD (SRTM Water Body Data) in combination with MODIS 250m data to create a complete global map of surface water at 250m spatial resolution, circa 2000-2002. This dataset is intended for use in processing of raster data and for masking out water in final raster data products.

Bands

Pixel Size
250 meters

Bands

Name Pixel Size Description
water_mask meters

Land-water mask

water_mask_qa meters

Shows which data source provided the water pixel.

Terms of Use

Terms of Use

MODIS data and products acquired through the LP DAAC have no restrictions on subsequent use, sale, or redistribution.

Citations

Citations:

Explore with Earth Engine

Code Editor (JavaScript)

var dataset = ee.Image('MODIS/MOD44W/MOD44W_005_2000_02_24');
var waterMask = dataset.select('water_mask');
var waterMaskVis = {
  min: 0.0,
  max: 1,
};
Map.setCenter(6.746, 46.529, 2);
Map.addLayer(waterMask, waterMaskVis, 'Water Mask');
Open in Code Editor