我想地理坐标(度)转换为UTM坐标(米),并不断得到一个错误信息“非有限变换检测。” 你知道我怎么能解决这个问题? 下面是我使用的代码:
> GPS.Points <- Gomer.Data[, c('Longitude', 'Latitude')]
> head(GPS.Points)
Longitude Latitude
1 23.85474 -19.52211
2 23.85531 -19.52243
3 23.85534 -19.52257
4 23.85580 -19.52346
5 23.85551 -19.52380
6 23.85513 -19.52360
> GPS.Points.Spatial.Data <- SpatialPoints(GPS.Points,
proj4string=CRS("+proj=longlat +ellps=WGS84"))
> GPS.Points.Spatial.Data[1]
SpatialPoints:
Longitude Latitude
[1,] 23.85474 -19.52211
Coordinate Reference System (CRS) arguments: +proj=longlat +ellps=WGS84
> class(GPS.Points.Spatial.Data)
[1] "SpatialPoints"
attr(,"package")
[1] "sp"
> GPS.Points.UTM.Spatial.Data <- spTransform(GPS.Points.Spatial.Data,
CRS("+proj=utm +south +zone=34 +ellps=WGS84"))
non finite transformation detected:
Longitude Latitude
Error in spTransform(GPS.Points.Spatial.Data, CRS("+proj=utm +south +zone=34 +ellps=WGS84")) :
failure in points
In addition: Warning message:
In spTransform(GPS.Points.Spatial.Data, CRS("+proj=utm +south +zone=34 +ellps=WGS84")) :
3 projected point(s) not finite
我会检查你正在尝试转换数据。 我是不是能够访问你的数据在你的榜样,所以我只用前3个坐标您提供尝试复制错误点,并没有得到一个错误。 我还检查,看是否错误可能是由有规定不包括通过改变区号和北/南参数,仍然一切工作提供的所有点UTM区造成的。 我或许会创建一个通过数据迭代要在块转换成看到问题所在的环...
library(rgdal)
GPS.Points=data.frame(Longitude=c(23.85474, 23.85531, 23.85534))
GPS.Points=cbind(GPS.Points,Latitude=c(-19.52211, -19.52243, -19.52257))
GPS.Points.Spatial.Data <- SpatialPoints(GPS.Points,
proj4string=CRS("+proj=longlat +ellps=WGS84"))
GPS.Points.Spatial.Data[1]
class(GPS.Points.Spatial.Data)
GPS.Points.UTM.Spatial.Data <- spTransform(GPS.Points.Spatial.Data,
CRS("+proj=utm +south +zone=34 +ellps=WGS84"))
既然你这么问,这里是通过对数据的部分要迭代的代码。 如果你得到一个错误,你至少知道你的数据的问题来自何处:
library(rgdal)
GPS.Points=data.frame(Longitude=c(23.85474, 23.85531, 23.85534, 23.85474,
23.85531, 23.85534, 23.85474, 23.85531, 23.85534))
GPS.Points=cbind(GPS.Points,Latitude=c(-19.52211, -19.52243, -19.52257, -19.52211,
-19.52243, -19.52257, -19.52211, -19.52243, -19.52257))
n_chunks=3 #number of pieces you will break you data into
n.points=dim(GPS.Points)[1]
breaks=seq(1,n.points, by=round(n.points/n_chunks))
breaks=c(breaks, n.points) #make sure to include last points as well
i=1
for (i in 1:(length(breaks)-1)){
cat('\n','converting points', breaks[i], "to", breaks[i+1])
temp.GPS.Points=GPS.Points[breaks[i]:breaks[i+1],]
temp.GPS.Points.Spatial.Data <- SpatialPoints(temp.GPS.Points,
proj4string=CRS("+proj=longlat +ellps=WGS84"))
temp.GPS.Points.UTM.Spatial.Data <- spTransform(temp.GPS.Points.Spatial.Data,
CRS("+proj=utm +south +zone=34
+ellps=WGS84"))
}