Transfer Geographical latitude and longitude to XY(m)

toXY(geo)

Arguments

geo

a two-columns dataframe, first is latitude, second is longitude

Value

data.frame

Examples

# \donttest{
if (interactive()) {
  data.frame(row.names = letters[1:18], x = runif(18, 30, 35), y = runif(18, 40, 45)) -> geo
  toXY(geo)
}
# }