Google Earth Engine API
Python and JavaScript client libraries for calling the Google Earth Engine API.
Important Note: Access to Google Earth Engine is currently only available to
registered users. The API is in active development, and users should expect the
API to change. When (not if) API changes occur, applications that use the API
will likely need to be updated.
Here's an example screenshot and the corresponding Code Editor JavaScript code:
function createTimeBand(img) {
var year = ee.Date(img.get('system:time_start')).get('year').subtract(1991);
return ee.Image(year).byte().addBands(img);
}
var collection = ee.ImageCollection('NOAA/DMSP-OLS/NIGHTTIME_LIGHTS')
.select('stable_lights')
.map(createTimeBand);
Map.addLayer(
collection.reduce(ee.Reducer.linearFit()),
{min: 0, max: [0.18, 20, -0.18], bands: ['scale', 'offset', 'scale']},
'stable lights trend');
NOTICE
In order to be more responsive to bug reports and feature requests, we are
currently using the Google Issue Tracker rather than the GitHub Issue tracker.
Please see the Get Help page
of the Earth Engine documentation for details on how to browse and submit issues
to Issue Tracker.