我有坐标,所有坐标都应该位于 DC,但我不知道如何将它们从 NAD 83 转换为 R 中的纬度和经度。我正在使用spTransform()
rgdal 包中的函数并收到关于不合格的错误数据。
library(rgdal)
nad83_coords <- data.frame(x=c(396842.6, 397886.9, 398315.5, 398154.3, 398010.3), y=c(140887.1, 139847.0, 138743.9, 139534.5, 138697.3))
coordinates(nad83_coords) <- c('x', 'y')
proj4string(nad83_coords) <- CRS("+init=epsg:4269")
Error in `proj4string<-`(`*tmp*`, value = <S4 object of class "CRS">) :
Geographical CRS given to non-conformant data: 398315.5 140887.1
proj4strings 的其他组合产生相同的错误。我相信错误是因为坐标太大,但我不确定为什么会这样。坐标的文档如下:
值在马里兰州平面米 NAD 83 地图投影中。
我对映射和投影非常陌生,感谢您提供任何帮助。