ee.DateRange.contains
Returns true if the given Date or DateRange is within this DateRange.
Usage | Returns |
---|
DateRange.contains(other) | Boolean |
Argument | Type | Details |
---|
this: dateRange | DateRange | |
other | Object | |
Examples
// A series of ee.DateRange objects.
var dateRange1 = ee.DateRange('2017-06-24', '2017-07-24');
var dateRange2 = ee.DateRange('2017-06-30', '2017-07-10');
var dateRange3 = ee.DateRange('2010-06-24', '2020-07-24');
// Determine if an ee.DateRange is contained within another.
print('Does dateRange1 contain dateRange2?', dateRange1.contains(dateRange2));
print('Does dateRange1 contain dateRange3?', dateRange1.contains(dateRange3));
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_1 = ee.DateRange('2017-06-24', '2017-07-24')
date_range_2 = ee.DateRange('2017-06-30', '2017-07-10')
date_range_3 = ee.DateRange('2010-06-24', '2020-07-24')
# Determine if an ee.DateRange is contained within another.
display(
'Does date_range_1 contain date_range_2?',
date_range_1.contains(date_range_2)
)
display(
'Does date_range_1 contain date_range_3?',
date_range_1.contains(date_range_3)
)
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 `contains()` method determines if a given Date or DateRange falls entirely within another DateRange."],["It returns `true` if the provided Date or DateRange is fully enclosed by the target DateRange, otherwise it returns `false`."],["This method is applicable to `ee.DateRange` objects in Earth Engine."],["Examples are provided in both JavaScript and Python to illustrate the usage of `contains()`."]]],["The `contains()` method checks if a given `Date` or `DateRange` falls within a specified `DateRange`. It takes an `other` object as an argument and returns a Boolean value. For example, if `dateRange1` is '2017-06-24' to '2017-07-24' and `dateRange2` is '2017-06-30' to '2017-07-10', `dateRange1.contains(dateRange2)` will return `true`. Otherwise it will return `false`. The method is used in both JavaScript and Python.\n"]]