2

您好,我在 R 中使用 googlway 包时遇到问题。更具体地说,它涉及 google_distance 函数和交通模型的选择。当我执行我的脚本时:

x <- as.POSIXct("2017-02-2 00:00:00", tz = "Europe/Paris")
google_distance(origins = list(c(48.93, 2.175)),
                   destinations =list(c(48.95, 2.19)),
                   mode="driving",
                   departure_time=x,
                   traffic_model='pessimistic',
                   key = key,
                   simplify = T)

我收到以下消息:Error in match.arg(traffic_model) : 'arg' should be one of

当我删除“traffic_model='pessimistic'”行时,我没有任何问题。

任何想法?

4

1 回答 1

0

您已经发现了该特定参数的错误。我已经在开发版本中修复了这个问题,你可以通过这样做

library(devtools)
devtools::install_github("SymbolixAU/googleway")

然后它会工作

library(googleway)

x <- as.POSIXct("2017-02-11 00:00:00", tz = "Europe/Paris")
key <- "your_api_key"
google_distance(origins = list(c(48.93, 2.175)),
                                destinations =list(c(48.95, 2.19)),
                                mode="driving",
                                departure_time=x,
                                traffic_model='pessimistic',
                                key = key,
                                simplify = T)


# $destination_addresses
# [1] "34 Rue Calmette et Guérin, 78500 Sartrouville, France"
# 
# $origin_addresses
# [1] "131 Rue Lavoisier, 78800 Houilles, France"
# 
# $rows
# elements
# 1 3.9 km, 3928, 10 mins, 618, 10 mins, 598, OK
# 
# $status
# [1] "OK"
于 2017-02-09T20:53:14.083 回答