gpt4 book ai didi

r - 如何将 Lambert Conic Conformal 栅格投影更改为 latlon 度数 R

转载 作者:行者123 更新时间:2023-12-03 21:43:06 26 4
gpt4 key购买 nike

我有一个栅格,是从 netcdf 中获得的(Lambert Conic Conformal projection):

    library(meteoForecast)
wrf_temporary <- getRaster("temp", day = Sys.Date(), frames = 'complete', resolution = 36, service = "meteogalicia")
wrf_temporary

extent : -18, 4230, -18, 3726 (xmin, xmax, ymin, ymax)
coord. ref. : +proj=lcc +lat_1=43 +lat_2=43 +lat_0=34.82300186157227 +lon_0=-14.10000038146973 +x_0=536402.34 +y_0=-18558.61 +ellps=WGS84 +towgs84=0,0,0,0,0,0,0 +units=km +no_defs

现在我想将该 wrf_temporary 栅格转换为 "+proj=longlat +datum=WGS84"(纬度经度)。该怎么办?我想要这样的东西:

    mfExtent('meteogalicia', resolution = 36)

class : Extent
xmin : -49.18259
xmax : 18.789
ymin : 24.03791
ymax : 56.06608

已经尝试了很多选项,但没有一个给出正确的结果...

最佳答案

这应该有效:

> ll = projectRaster(wrf_temporary,crs="+init=epsg:4326")
> plot(ll[[1]])

并产生这个:

enter image description here

乍一看是正确的,但格林威治子午线(经度=0)不经过伦敦。

将分辨率设置为其他值(4 或 12)时不会出现此问题。当使用分辨率 = 36 调用时,您会得到一个比其他栅格更大范围的栅格,但具有相同的投影字符串。这不可能是对的。例如,以下图中的 (0,0) 坐标应该是地球上的同一点,因为它们声称是相同的投影,但实际上它们不是。

enter image description here

我认为resolution=12的是正确的。这是转换为经纬度的栅格,并覆盖了 EU 矢量覆盖范围:

enter image description here

完美排列。

所以我会说这是一个错误 - getRaster 猜测投影并弄错了,或者在裁剪后没有应用投影更改,或者它使用的任何服务都在投影上。

getRaster 是猜测。投影信息位于下载的 NetCDF 文件中。以另一种格式。对于 resolution=36 文件,投影信息部分是这样的:

int Lambert_Conformal ;
Lambert_Conformal:standard_parallel = 43., 43. ;
Lambert_Conformal:latitude_of_projection_origin = 24.2280006408691 ;
Lambert_Conformal:false_easting = 2182.62935 ;
Lambert_Conformal:false_northing = -269.65597 ;
Lambert_Conformal:grid_mapping_name = "lambert_conformal_conic" ;
Lambert_Conformal:longitude_of_central_meridian = -14.1000003814697 ;
Lambert_Conformal:_CoordinateTransformType = "Projection" ;
Lambert_Conformal:_CoordinateAxisTypes = "GeoX GeoY" ;

这与 R 包使用的 resolution=12 投影有点不同。所以做一个合规的:

p = "+proj=lcc +lat_1=43 +lat_2=43 +lat_0=24.2280006408691 +lon_0=-14.1000003814697 +x_0=2182629.35 +y_0=-269655.97 +ellps=WGS84 +towgs84=0,0,0,0,0,0,0 +units=km +no_defs"
wrf <- getRaster('temp', day = testDay, resolution=36)
projection(wrf) = p

然后我用 EU overlay 测试....

enter image description here

请注意,这次我重新预测了欧盟。对 latlong 执行 projectRaster 也可以:

> wrfLL = projectRaster(wrf, crs="+init=epsg:4326")
> plot(wrfLL[[1]])
> abline(v=0)

enter image description here

格林威治子午线在其应有的位置。

关于r - 如何将 Lambert Conic Conformal 栅格投影更改为 latlon 度数 R,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36868506/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com