ee.Date.evaluate

Recupera de forma asíncrona el valor de este objeto del servidor y lo pasa a la función de devolución de llamada proporcionada.

UsoMuestra
Date.evaluate(callback)
ArgumentoTipoDetalles
esta: computedobjectComputedObjectInstancia de ComputedObject.
callbackFunciónEs una función de la forma function(success, failure) que se llama cuando el servidor devuelve una respuesta. Si la solicitud se realizó correctamente, el argumento success contiene el resultado evaluado. Si la solicitud falló, el argumento de falla contendrá un mensaje de error.

Ejemplos

Editor de código (JavaScript)

/**
 * WARNING: this function transfers data from Earth Engine servers to the
 * client. Doing so can negatively affect request processing and client
 * performance. Server-side options should be used whenever possible.
 * Learn more about the distinction between server and client:
 * https://developers.google.com/earth-engine/guides/client_server
 */

// A server-side ee.Date object.
var dateServer = ee.Date('2021-4-30');

// Use evaluate to transfer server-side date to the client. The result is
// an object with keys "type" and "value" where "value" is milliseconds since
// Unix epoch.
dateServer.evaluate(function(dateClient) {
  print('Client-side date is an object', typeof dateClient);
  print('Object keys include "type" and "value"', Object.keys(dateClient));
  print('"value" is milliseconds since Unix epoch', dateClient.value);
  print('Client-side date in JS Date constructor', new Date(dateClient.value));
});

Configuración de Python

Consulta la página Entorno de Python para obtener información sobre la API de Python y el uso de geemap para el desarrollo interactivo.

import ee
import geemap.core as geemap

Colab (Python)

# The Earth Engine Python client library does not have an evaluate method for
# asynchronous evaluation of ee.Date objects.
# Use ee.Date.getInfo() instead.