首页 > 其他分享 >GEE教程:对降水数据进行重投影(将10000m分辨率提高到30m)

GEE教程:对降水数据进行重投影(将10000m分辨率提高到30m)

时间:2024-09-20 16:48:41浏览次数:3  
标签:projection 10000m image 投影 Returns 30m GEE 图层 Arguments

目录

简介

函数

projection()

Arguments:

Returns: Projection

nominalScale()

Arguments:

Returns: Float

setDefaultProjection(crs, crsTransform, scale)

Arguments:

Returns: Image

代码

结果


简介

在GEE中进行重投影和重分类的步骤如下:

1. 选择目标图层。
2. 使用`reproject()`函数对目标图层进行重投影,。
3. 使用setDefaultProjection()函数对目标图层进行重投影。
4. 使用`Map.addLayer()`函数将重分类结果添加到地图中进行可视化。

函数

projection()

Returns the default projection of an Image. Throws an error if the bands of the image don't all have the same projection.返回图像的默认投影。如果图像的条带并非全部具有相同的投影,则会抛出错误。

Arguments:

this:image (Image):

The image from which to get the projection.

Returns: Projection

nominalScale()

Returns the linear s

标签:projection,10000m,image,投影,Returns,30m,GEE,图层,Arguments
From: https://blog.csdn.net/qq_31988139/article/details/142253687

相关文章