gpt4 book ai didi

r - 如何解决 tigris::call_geolocator() 内部服务器错误 (HTTP 500) 错误?

转载 作者:行者123 更新时间:2023-12-04 10:27:57 26 4
gpt4 key购买 nike

我想从我的数据中的地址中获取一个城市的人口普查代码。问题是我找不到适用于佛罗里达州盖恩斯维尔的 shapefile。所以我试图使用参与调查的人的地址来获取人口普查代码,一旦我有了人口普查代码,我就会 substr到前 11 位数字以匹配 tidycensus 的 GEOIDs包,它将县人口普查和 shapefile 提供给层次结构的最低层。
因为我只会有城市人的 GEOID,所以我会得到那些 shapefile 而不是整个县。所以我做了以下只是为了得到人口普查代码:

library(tigris)
library(readr)

gainsville_df2 <- readr::read_csv("311_Service_Requests__myGNV_.csv")

#gainsville_df2 is the dataframe of the csv file
jio<- apply(gainsville_df2["Address"], 1, function(row) tigris::call_geolocator(row, "Gainesville", "FL", zip = NA))

#It ran for ~1.5 hours, parsing through 1892 addresses, then I got this error out of nowhere:

#Error in tigris::call_geolocator(row, "Gainesville", "FL", zip = NA) :
# Internal Server Error (HTTP 500).
#Called from: httr::stop_for_status(r)
链接到 the data is here .我有大约 9200 个地址要解析,这发生在大约 1800 年。环顾四周,看到错误,我发现需要一些超时设置,不幸的是,我不知道该怎么做。
我需要 shapefile 来完成我个人项目的关键部分。

最佳答案

必须从 gainsville_df2$Address 中删除所有标点符号向量。 call_geolocator函数没有或如果有,则不规则地处理由标点符号组成的字符串,并且经常会在带有标点符号(如 # 或 { } 等)的地址上抛出 HTTP 500 错误。所以最好使用 as.character(stringr::str_replace_all(gainsville_df2$Address, "[[:punct:]]", " "))函数删除所有标点符号。不用担心,即使没有标点符号,地理定位器功能仍会提供正确的人口普查代码。它只查找街道名称、号码、街区、城市和州。

关于r - 如何解决 tigris::call_geolocator() 内部服务器错误 (HTTP 500) 错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60555964/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com