ee.Filter.dayOfYear
Returns a filter that passes if the object's timestamp falls within the given day-of-year range.
Usage | Returns |
---|
ee.Filter.dayOfYear(start, end) | Filter |
Argument | Type | Details |
---|
start | Integer | The start of the desired day range, inclusive. |
end | Integer | The end of the desired day range, inclusive. |
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."],[[["Returns a filter that selects data based on the day of the year."],["The filter checks if an object's timestamp falls within a specified day-of-year range."],["Users define the range using `start` and `end` parameters, representing the inclusive start and end days."]]],["This function creates a filter based on the day of the year. It filters objects whose timestamps fall within a specified range of days. The `ee.Filter.dayOfYear(start, end)` method takes two integer arguments: `start` and `end`, representing the inclusive beginning and end of the desired day range, respectively. It returns a `Filter` object, which can be used to select data matching the day-of-year criteria.\n"]]