Hello I am trying to change the temporal resolution of the LAI dataset from 8 day to daily in google earth engine. Would appreciate help with code
[link]
var point = ee.Geometry.Point([-94.73665965557193, 35.915990354302]);
print('Point Geometry:', point);
var startDate = '2019-01-01';
var endDate = '2019-12-31';
var LAIdataset = ee.ImageCollection('NASA/VIIRS/002/VNP15A2H')
.filterDate(startDate, endDate)
.filterBounds(point)
.map(function(image) { return image.clip(point); });
print("LAIdataset", LAIdataset) ```
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744896308a4599718.html
评论列表(0条)