rgdal package lat/long -> UTM

前端 未结 1 1658
小鲜肉
小鲜肉 2021-01-12 11:55

Can someone see what\'s wrong with this:

library(rgdal)

# Make a two-column matrix, col1 = long, col2 = lat
xy <- cbind(c(-107), c(26))
# Convert it to U         


        
相关标签:
1条回答
  • 2021-01-12 12:42

    use positive number for longitude (107, instead of -107). negative is for western hemisphere

    0 讨论(0)
提交回复
热议问题