ee.DateRange.isUnbounded
Returns true if this DateRange contains all dates.
Usage | Returns |
---|
DateRange.isUnbounded() | Boolean |
Argument | Type | Details |
---|
this: dateRange | DateRange | |
Examples
// A series of ee.DateRange objects.
var dateRangeBounded = ee.DateRange('2017-06-24', '2017-07-24');
var dateRangeUnbounded = ee.DateRange.unbounded();
// Determine if an ee.DateRange object is unbounded.
print('Is dateRangeBounded unbounded?', dateRangeBounded.isUnbounded());
print('Is dateRangeUnbounded unbounded?', dateRangeUnbounded.isUnbounded());
Python setup
See the
Python Environment page for information on the Python API and using
geemap
for interactive development.
import ee
import geemap.core as geemap
# A series of ee.DateRange objects.
date_range_bounded = ee.DateRange('2017-06-24', '2017-07-24')
date_range_unbounded = ee.DateRange.unbounded()
# Determine if an ee.DateRange object is unbounded.
display('Is date_range_bounded unbounded?', date_range_bounded.isUnbounded())
display(
'Is date_range_unbounded unbounded?', date_range_unbounded.isUnbounded()
)
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2023-10-06 UTC.
[null,null,["Last updated 2023-10-06 UTC."],[[["The `isUnbounded()` method, applied to a `DateRange` object, returns `true` if the `DateRange` includes all dates."],["It takes a single argument, the `DateRange` object itself, and returns a boolean value indicating whether the date range is unbounded."],["This method helps determine if a `DateRange` is unbounded, meaning it represents all possible dates without specific start and end points."],["Examples demonstrate using `isUnbounded()` with `DateRange` objects in JavaScript and Python, illustrating how to check for unbounded date ranges."]]],["The `isUnbounded()` method checks if a `DateRange` object contains all dates. It returns a boolean (`true` or `false`). The method is called on a `DateRange` object. The provided examples create bounded and unbounded `DateRange` objects and then use `isUnbounded()` to determine if they are unbounded. The outputs show if the object is unbounded, for example if the `DateRange` is `ee.DateRange.unbounded()`.\n"]]