Announcement: All noncommercial projects registered to use Earth Engine before April 15, 2025 must verify noncommercial eligibility to maintain Earth Engine access.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-10-06 UTC."],[[["\u003cp\u003e\u003ccode\u003eDateRange.union()\u003c/code\u003e combines two \u003ccode\u003eDateRange\u003c/code\u003e objects, returning a new \u003ccode\u003eDateRange\u003c/code\u003e that encompasses all dates within either of the original ranges.\u003c/p\u003e\n"],["\u003cp\u003eThe resulting \u003ccode\u003eDateRange\u003c/code\u003e represents the union of the input date ranges, effectively expanding the overall time period covered.\u003c/p\u003e\n"],["\u003cp\u003eThis function is useful for consolidating or comparing time periods represented by separate \u003ccode\u003eDateRange\u003c/code\u003e objects.\u003c/p\u003e\n"]]],["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,["# ee.DateRange.union\n\nReturns a DateRange that contains all points in the union of this DateRange and another.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|--------------------------|-----------|\n| DateRange.union`(other)` | DateRange |\n\n| Argument | Type | Details |\n|-------------------|-----------|---------|\n| this: `dateRange` | DateRange | |\n| `other` | DateRange | |\n\nExamples\n--------\n\n### Code Editor (JavaScript)\n\n```javascript\n// A series of ee.DateRange objects.\nvar dateRange1 = ee.DateRange('2017-06-24', '2017-07-24');\nvar dateRange2 = ee.DateRange('2017-06-30', '2018-07-10');\nvar dateRange3 = ee.DateRange('1970-06-24', '1971-07-24');\n\n// Determine the union of ee.DateRange objects.\nprint('Union of dateRange1 and dateRange2, which overlap',\n dateRange1.union(dateRange2));\nprint('Union of dateRange1 and dateRange3, which do not overlap',\n dateRange1.union(dateRange3));\n```\nPython setup\n\nSee the [Python Environment](/earth-engine/guides/python_install) page for information on the Python API and using\n`geemap` for interactive development. \n\n```python\nimport ee\nimport geemap.core as geemap\n```\n\n### Colab (Python)\n\n```python\n# A series of ee.DateRange objects.\ndate_range_1 = ee.DateRange('2017-06-24', '2017-07-24')\ndate_range_2 = ee.DateRange('2017-06-30', '2018-07-10')\ndate_range_3 = ee.DateRange('1970-06-24', '1971-07-24')\n\n# Determine the union of ee.DateRange objects.\ndisplay(\n 'Union of date_range_1 and date_range_2, which overlap:',\n date_range_1.union(date_range_2)\n)\ndisplay(\n 'Union of date_range_1 and date_range_3, which do not overlap:',\n date_range_1.union(date_range_3)\n)\n```"]]