You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This MODIS based rice extent maps shows the general extent of rice in Asia compiled from analysis for 2000 to 2012. The dataset is provided in GEOTIFF image format, CRS of EPSG:4326, and 1 band.
Values:
1 = rice
0 = other land or water
Andrew Nelson, Murali Krishna Gumma, Arnel Rala. A map of lowland rice extent in the major rice growing countries of Asia. 2015, 37p. IRRI, Los Banos, Philippines.
Earth Engine Snippet if dataset already in GEE
//Access the rice extent layer
var dataset = ee.Image("users/arala/asia-rice-extent_2000-2012");
dataset = dataset.mask(dataset.select('b1').eq(1));
//Visualize rice extent as green patch
Map.centerObject(dataset,4)
Map.addLayer(dataset,{palette:'green'},'Irrigated lowland rice of Asia' );
Contact Details
a.rala@irri.org
Dataset description
This MODIS based rice extent maps shows the general extent of rice in Asia compiled from analysis for 2000 to 2012. The dataset is provided in GEOTIFF image format, CRS of EPSG:4326, and 1 band.
Values:
1 = rice
0 = other land or water
Andrew Nelson, Murali Krishna Gumma, Arnel Rala. A map of lowland rice extent in the major rice growing countries of Asia. 2015, 37p. IRRI, Los Banos, Philippines.
Earth Engine Snippet if dataset already in GEE
//Access the rice extent layer
var dataset = ee.Image("users/arala/asia-rice-extent_2000-2012");
dataset = dataset.mask(dataset.select('b1').eq(1));
//Visualize rice extent as green patch
Map.centerObject(dataset,4)
Map.addLayer(dataset,{palette:'green'},'Irrigated lowland rice of Asia' );
Enter license information
CC BY-NC-SA 4.0
Keywords
Lowland rice extent, MODIS, Asia
Code of Conduct
The text was updated successfully, but these errors were encountered: