1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > Google Earth Engine(GEE)—Julia Landsat 8 去云案例

Google Earth Engine(GEE)—Julia Landsat 8 去云案例

时间:2019-08-17 13:52:23

相关推荐

Google Earth Engine(GEE)—Julia Landsat 8 去云案例

代码

usingEarthEngineInitialize()# 这里的去云波段和之前的sr去云没有什么区别#Function to cloud mask from the pixel_qa band of Landsat 8 SR data.functionmaskL8sr(image)image = EE.Image(image) # cast to make sure we have the correct type# Bits 3 and 5 are cloud shadow and cloud, respectively.cloudShadowBitMask = 1 << 3cloudsBitMask = 1 << 5# G

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。