Google Earth Engine(GEE)——通过paint将矢量转化为影像

上一次我们进行了reduce To Image()将矢量转化为影像,这次我们使用画图工具完成矢量向栅格的转换,主要的流程是先建立一个空白影像,然后利用paint设定你要转化的矢量集合,最后转化为影像栅格。上次的文章及代码链接如下:

(1684条消息) Google Earth Engine(GEE)——点线面矢量转换为栅格分析_此星光明的博客-CSDN博客

函数:

ee.Image(args)

An object to represent an Earth Engine image. This constructor accepts a variety of arguments:

  • A string: an EarthEngine asset id,

  • A string and a number: an EarthEngine asset id and version,

  • A number or ee.Array: creates a constant image,

  • A list: creates an image out of each list element and combines them into a single image,

  • An ee.Image: returns the argument,

猜你喜欢

转载自blog.csdn.net/qq_31988139/article/details/128272890