我正在使用ee_extract根据rgee中的几何图形提取图像中所有像素的平均值(R包链接到Google Earth引擎):
test<-ee_extract(image, geometry,fun = ee$Reducer$mean(), scale = 30, sf = FALSE,via = "getInfo")但是我发现了这个错误:
"Error in value[[3L]](cond) : Specify higher maxFeatures value if you intend to export a large area via getInfo. Entered: 6101 maxFeatures:". 还有谁有过这样的经历或者有什么想法呢?
发布于 2021-04-20 09:54:12
将驱动器更改为“via”。应该能行得通。
test<-ee_extract(image, geometry,fun = ee$Reducer$mean(), scale = 30, sf = FALSE,via = "drive")https://stackoverflow.com/questions/67047638
复制相似问题