R:覆盖光栅层的xy坐标

G. *_*Gip 5 r pixel raster coordinates r-raster

我有一个带有 XY 像素坐标的栅格,我想将其转换为经纬度。

class       : RasterLayer 
dimensions  : 1617, 1596, 2580732  (nrow, ncol, ncell)
resolution  : 1, 1  (x, y)
extent      : 0, 1596, 0, 1617  (xmin, xmax, ymin, ymax)
coord. ref. : NA 
data source : C:\janW1.png 
names       : janW1 
values      : 0, 255  (min, max)
Run Code Online (Sandbox Code Playgroud)

我已经使用此处指定的公式计算了纬度/经度坐标。

这导致了以下数据框

heads(cords)
       lat       lon   x      y janW1
1 46.99401 -14.99122 0.5 1616.5     0
2 46.99401 -14.97367 1.5 1616.5     0
3 46.99401 -14.95611 2.5 1616.5     0
4 46.99401 -14.93856 3.5 1616.5     0
5 46.99401 -14.92100 4.5 1616.5     0
6 46.99401 -14.90345 5.5 1616.5     0
Run Code Online (Sandbox Code Playgroud)

如何覆盖或创建具有纬度/经度空间范围而不是图像坐标(XY 像素)的重复栅格?或者有没有更简单的方法将像素转换为纬度/经度?

代码

library(raster)
test <- raster('janW1.png')
data_matrix <- rasterToPoints(test)

#  Calculate longitude.

lonfract = data_matrix[,"x"] / (1596 - 1)
lon = -15 + (lonfract * (13 - -15))

#  Calculate latitude.

latfract = 1.0 - (data_matrix[,"y"] / (1617 - 1))  
Ymin = log(tan ((pi/180.0) * (45.0 + (47 / 2.0))))
Ymax = log(tan ((pi/180.0) * (45.0 + (62.999108 / 2.0))))
Yint = Ymin + (latfract * (Ymax - Ymin))
lat = 2.0 * ((180.0/pi) * (atan (exp (Yint))) - 45.0)

# Make single dataframe with XY pixels and latlon coords.
latlon <- data.frame(lat,lon)
tmp <- data.frame(data_matrix)
cords <- cbind(latlon, tmp)
Run Code Online (Sandbox Code Playgroud)

janW1.png

Rob*_*ans 1

更改栅格数据的投影并不像点(以及线、多边形)那么简单。这是因为,如果您根据当前像元计算新坐标,它们将不会位于常规栅格中。

您可以使用函数projectRaster(光栅包)来处理这个问题。

library(raster)
test <- raster('janW1.png')

# In this case, you need to provide the correct crs to your data
# I am guessing. (this would be necessary for spatial data sets)
crs(test) <- '+proj=merc +datum=WGS84'

# you may also need to set the extent to actual coordinate values
# extent(test) <- c( , , ,) 
x <- projectRaster(test, crs='+proj=longlat +datum=WGS84') 
Run Code Online (Sandbox Code Playgroud)

或者,您可以将计算的值插入到新栅格中。请参阅?raster::interpolate示例。