ee.DateRange.start

Restituisce l'inizio (incluso) di questo intervallo di date.

UtilizzoResi
DateRange.start()Data
ArgomentoTipoDettagli
questo: dateRangeDateRange

Esempi

Editor di codice (JavaScript)

// An ee.DateRange.
var dateRange = ee.DateRange('2017-06-24', '2017-07-24');

// Return the start of the ee.DateRange as an ee.Date.
print('The start of this ee.DateRange is', dateRange.start());

Configurazione di Python

Consulta la pagina Ambiente Python per informazioni sull'API Python e sull'utilizzo di geemap per lo sviluppo interattivo.

import ee
import geemap.core as geemap

Colab (Python)

# An ee.DateRange.
date_range = ee.DateRange('2017-06-24', '2017-07-24')

# Return the start of the ee.DateRange as an ee.Date.
display('The start of this ee.DateRange is', date_range.start())