AG100: ASTER Global Emissivity Dataset 100-meter V003

NASA/ASTER_GED/AG100_003
Dataset Availability
2000-01-01T00:00:00Z–2008-12-31T00:00:00Z
Dataset Provider
Earth Engine Snippet
ee.Image("NASA/ASTER_GED/AG100_003")
Tags
aster elevation emissivity geophysical infrared jpl lst nasa ndvi satellite-imagery temperature thermal
caltech
ged

Description

The Advanced Spaceborne Thermal Emission and Reflection Radiometer Global Emissivity Database (ASTER-GED) was developed by the National Aeronautics and Space Administration's (NASA) Jet Propulsion Laboratory (JPL), California Institute of Technology. This product includes the mean emissivity and standard deviation for all 5 ASTER Thermal Infrared bands, mean land surface temperature (LST) and standard deviation, a re-sampled ASTER GDEM, land-water mask, mean Normalized Difference Vegetation Index (NDVI) and standard deviation, and observation count.

ASTER-GED land surface temperature and emissivity (LST&E) are generated using the ASTER Temperature Emissivity Separation (TES) algorithm in combination with a Water Vapor Scaling (WVS) atmospheric correction method using MODIS MOD07 atmospheric profiles and the MODTRAN 5.2 radiative transfer model.

This product was derived from clear-sky pixels for all available ASTER data (2000-2008).

User's Guide

Bands

Pixel Size
100 meters

Bands

Name Units Min Max Scale Description
0.001

Mean band 10

0.001

Mean band 11

0.001

Mean band 12

0.001

Mean band 13

0.001

Mean band 14

0.0001

Standard deviation band 10

0.0001

Standard deviation band 11

0.0001

Standard deviation band 12

0.0001

Standard deviation band 13

0.0001

Standard deviation band 14

K 0.01

Temperature mean

K 0.01

Temperature standard deviation

0.01

NDVI mean

0.01

NDVI standard deviation

m

ASTER Global Digital Elevation Model V002

Land water map

Number per pixel

Number of observations

* estimated min or max value

Class Table

Value Color Description
1 brown Land
2 blue Water

Terms of Use

Terms of Use

ASTER data and products distributed by the LP DAAC, with the exception of the ASTER Global Digital Elevation Model (GDEM) dataset (ASTGTM) version 2 (v2), have no restrictions on data use, sale, or subsequent redistribution. For more information visit the ASTER Policies site.

Citations

Citations:

DOIs

Explore with Earth Engine

Code Editor (JavaScript)

var dataset = ee.Image('NASA/ASTER_GED/AG100_003');
var elevation = dataset.select('elevation');
var elevationVis = {
  min: -15.0,
  max: 5000.0,
  palette: [
    '0602ff', '235cb1', '307ef3', '269db1', '30c8e2', '32d3ef', '3ae237',
    'b5e22e', 'd6e21f', 'fff705', 'ffd611', 'ffb613', 'ff8b13', 'ff6e08',
    'ff500d', 'ff0000', 'de0101', 'c21301'
  ],
};
Map.setCenter(89.12, 37.72, 3);
Map.addLayer(elevation, elevationVis, 'Elevation');
Open in Code Editor