Skip to content

Instantly share code, notes, and snippets.

@isaacarroyov
Created July 22, 2021 04:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save isaacarroyov/6ad55523811bfca01045ea3de6aadf9b to your computer and use it in GitHub Desktop.
Save isaacarroyov/6ad55523811bfca01045ea3de6aadf9b to your computer and use it in GitHub Desktop.
Filtrado por fecha de colección de imágenes en EE
// -> Filtramos por fecha
// Temperatura de la superficie
var Temperatura_FiltroFecha = Datos_Temperatura.filterDate(Inicio_Fecha, Fin_Fecha)
// Seleccionamos la banda de interes
.select(['LST_Day_1km']);
// Precipitacion del agua
var Lluvias_Final = Datos_Lluvias.filterDate(Inicio_Fecha, Fin_Fecha)
// Seleccionamos banda de interes
.select(['precipitation']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment