Google Earth Engine(GEE)——设置经纬格网(日本东京)
【摘要】
本次是在GEE上画出经纬度,本届用到的函数:
ee.Image.pixelLonLat()
Creates an image with two bands named 'longitude' and 'latitude', containing the longitude and latitude at each pixel, in...
本次是在GEE上画出经纬度,本届用到的函数:
ee.Image.pixelLonLat()
Creates an image with two bands named 'longitude' and 'latitude', containing the longitude and latitude at each pixel, in degrees.
创建一个有两个带子的图像,名为 "经度 "和 "纬度",包含每个像素的经度和纬度,单位是度。
No arguments.
Returns: Image
floor()
Computes the largest integer less than or equal to the input.
计算小于或等于输入值的最大整数。
Arguments:
this:value (Image):
The image to which the operation is applied.应用该操作的图像。
Returns: Image
代码:
-
//使用pixelLonLat()函数绘制每没个1度的经纬线。
-
var img = ee.Image.pixelLonLat()//.multiply(60.0);
-
-
// 获取小数点后的部分,并检查它是否小于一个小数点。这里主要的目的就是换证为零
-
img = img.subtract(img.floor()).lt(0.05);
-
-
//小于delta的像素是网格,在
文章来源: blog.csdn.net,作者:此星光明2021年博客之星云计算Top3,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/qq_31988139/article/details/123806975
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)