so I am looking to import data for multiple periods (in this case, March to October for multiple years) using ee.Filter.date , but haven“t found a workable solution to to do this for more than one period. Base code looks like this:
var temp = ee.ImageCollection('data_source')
.select('mean_air_temperature')
.filter(ee.Filter.date('2018-03-01', '2018-10-31'));