GEE:定义函数的小技巧和存在问题

作者:CSDN @ _养乐多_

本文记录了在Google Earth Engine (GEE)平台上,定义函数时的小技巧和存在的小问题。



在Google Earth Engine (GEE)平台上定义函数的方式有两种,一种定义式,一种变量式。语法分别是

  • 定义式:function functionName( inputVariableName ){ functionBody } ;
  • 变量式:var funNameOrResultName = function( inputVariableName ){ functionBody }

猜你喜欢

转载自blog.csdn.net/qq_35591253/article/details/131944527