ee.DateRange.start

Retorna o início (inclusivo) deste DateRange.

UsoRetorna
DateRange.start()Data
ArgumentoTipoDetalhes
isso: dateRangeDateRange

Exemplos

Editor de código (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());

Configuração do Python

Consulte a página Ambiente Python para informações sobre a API Python e como usar geemap para desenvolvimento interativo.

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())