Returns a filter that passes if the object's timestamp falls within the given range of a calendar field. The month, day_of_year, day_of_month, and day_of_week are 1-based. Times are assumed to be in UTC. Weeks are assumed to begin on Monday as day 1. If end < start then this tests for value >= start OR value <= end, to allow for wrapping.
ee.Filter.calendarRange(start, end, field)
start和end是int类型,
field有year、month、hour、minute、day of year、day of month 、day of week 这几种类型
//例子
ee.Filter.calendarRange(200, 204, 'day_of_year'), 表示选择一年的第200天到204天,可以用来选择四季。