R: GEOCODE()- Returns 短坐标

R: GEOCODE()- Returns short coordinates

我的任务是使用 GEOCODE() 函数 return 来自 R 的坐标(经度、纬度)。 API 和安装软件包等一切都很顺利。

但是,在测试坐标时我注意到 R return 变短了 (lon, lat) 例如 'LV-2114' R returned 短版本:

> geocode("LV-2114", output = "latlon", "latlona", source="google", 
       full_results = TRUE, return_type = 'geographies',method = 'census')

#> A tibble: 1 x 2 
#>    lon   lat  
#>    23.9  56.8

对于“LV-2114”,lon、lat 应该是 (23.94453,56.79256)。我输入的其他地方也是如此。

我很确定这是我犯的一些错误。 怎样才能return长坐标?

您遇到的 错误 只是 print.tibble 舍入数值的默认行为。

df <- geocode("LV-2114", output = "latlon", "latlona", source="google", 
       full_results = TRUE, return_type = 'geographies',method = 'census')

as.data.frame(df)[,, drop=T]
#> $lon
#> [1] 23.94453
#> 
#> $lat
#> [1] 56.79256
# or
as.matrix(df)

#>           lon      lat
#> [1,] 23.94453 56.79256
#> [2,] 23.94453  2.00000

当您要在计算中使用 tibble 中的值时,它将使用非舍入值,只有在打印时值才会舍入。