Annuncio: tutti i progetti non commerciali registrati per l'utilizzo di Earth Engine prima del
15 aprile 2025 devono
verificare l'idoneità non commerciale per mantenere l'accesso a Earth Engine.
ee.DateRange.union
Mantieni tutto organizzato con le raccolte
Salva e classifica i contenuti in base alle tue preferenze.
Restituisce un DateRange che contiene tutti i punti nell'unione di questo DateRange e un altro.
Utilizzo | Resi |
---|
DateRange.union(other) | DateRange |
Argomento | Tipo | Dettagli |
---|
questo: dateRange | DateRange | |
other | DateRange | |
Esempi
Editor di codice (JavaScript)
// A series of ee.DateRange objects.
var dateRange1 = ee.DateRange('2017-06-24', '2017-07-24');
var dateRange2 = ee.DateRange('2017-06-30', '2018-07-10');
var dateRange3 = ee.DateRange('1970-06-24', '1971-07-24');
// Determine the union of ee.DateRange objects.
print('Union of dateRange1 and dateRange2, which overlap',
dateRange1.union(dateRange2));
print('Union of dateRange1 and dateRange3, which do not overlap',
dateRange1.union(dateRange3));
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)
# A series of ee.DateRange objects.
date_range_1 = ee.DateRange('2017-06-24', '2017-07-24')
date_range_2 = ee.DateRange('2017-06-30', '2018-07-10')
date_range_3 = ee.DateRange('1970-06-24', '1971-07-24')
# Determine the union of ee.DateRange objects.
display(
'Union of date_range_1 and date_range_2, which overlap:',
date_range_1.union(date_range_2)
)
display(
'Union of date_range_1 and date_range_3, which do not overlap:',
date_range_1.union(date_range_3)
)
Salvo quando diversamente specificato, i contenuti di questa pagina sono concessi in base alla licenza Creative Commons Attribution 4.0, mentre gli esempi di codice sono concessi in base alla licenza Apache 2.0. Per ulteriori dettagli, consulta le norme del sito di Google Developers. Java è un marchio registrato di Oracle e/o delle sue consociate.
Ultimo aggiornamento 2025-07-26 UTC.
[null,null,["Ultimo aggiornamento 2025-07-26 UTC."],[],["The `DateRange.union(other)` method combines two `DateRange` objects, returning a new `DateRange` that encompasses all dates within both original ranges. It accepts another `DateRange` as an argument. The examples demonstrate this function in both JavaScript and Python, by uniting overlapping and non-overlapping date ranges, illustrating the creation of a single `DateRange` that covers the entire temporal extent of the combined inputs.\n"],null,[]]