做笔记!
最近基于GEE平台进行随机森林法监督分类,但是总是报同一个错:
ERROR:user memory limit exceeded!
终于解决了,解决方法上代码
var sample = l8cstack.sampleRegions({
collection: points_train, //样本数据
properties: ["class","random"], //样本标识字段
scale: 30,
tileScale:8 //这里是重点,我理解的意思就是分成多块进行,类似多线程?
});