r语言 - 地理定位错误 - 每个 IP 地址的国家/地区



我无法正常工作。我需要能够确定IP地址是否在澳大利亚。

我在 csv 中有一个 IP 地址列表。但是,我在下面提供了一个示例代码,并收到以下错误:

Error in maxmind_(ips, normalizePath(path.expand(file)), fields) : 
Not compatible with STRSXP: [type=list].

我已经用谷歌搜索并搜索了解决方案,但迄今为止我发现的任何解决方案都没有奏效,如果有人知道解决方案,我将不胜感激。

rgeolocate 包已成功下载,GeoLite2-Country.mmdb 似乎应该在 extdata 文件夹中的位置。

library(rgeolocate)
ip_lst <-
data.frame(
"ip_lst" = c(
"27.33.27.39",
"203.219.204.84",
"203.5.106.68",
"180.150.74.11",
"193.116.238.48",
"1.157.7.35",
"61.69.150.57",
"155.143.204.211"
)
)
file <- system.file("extdata","GeoLite2-Country.mmdb", package = "rgeolocate")
results <- maxmind(ip_lst, file, c("continent_name", "country_code", "country_name"))
results

我尝试了多个版本的Maxmind代码,但没有成功。提前感谢任何帮助。

您已经创建了一个名为ip_lst的数据框,其中包含一个名为ip_lst的变量,这没有错,但可能会令人困惑。这里的问题是maxind函数需要字符向量,但您提供的是一个数据框。因此,以下内容应该有效:

maxmind(ip_lst$ip_lst, file, c("continent_name", "country_code", "country_name"))
continent_name country_code   country_name
1        Oceania           AU      Australia
2        Oceania           AU      Australia
3        Oceania           AU      Australia
4        Oceania           AU      Australia
5         Europe           GB United Kingdom  # <-- Not an Aussie 8(
6        Oceania           AU      Australia
7        Oceania           AU      Australia
8        Oceania           AU      Australia

相关内容

  • 没有找到相关文章

最新更新