- Dataset Availability
- 2000-02-24T00:00:00Z–2000-02-24T00:00:00Z
- Dataset Provider
- NASA LP DAAC at the USGS EROS Center
- Earth Engine Snippet
-
ee.Image("MODIS/MOD44W/MOD44W_005_2000_02_24")
- Tags
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
Resolution
250 meters
Bands
Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
water_mask |
Land-water mask |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
water_mask_qa |
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:
Please visit LP DAAC 'Citing Our Data' page for information on citing LP DAAC datasets.
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');