lien_du_cadastre<-str_replace_all(paste("https://france-cadastre.fr/cadastre/",Nom_ville), " ","")
lien_du_cadastre
serveur_objet$navigate(lien_du_cadastre)
url2=serveur_objet$findElement(using = 'xpath','/html/body/div[4]/div[3]/div[1]/div[4]/div/div[3]/div[2]/div/a[1]')$getElementAttribute("href")[[1]] #donne l'url de téléchargement du plan cadastre
url2 (the url inside is : https://france-cadastre.fr/downloadcenter.php?format=json&echelle=commune&insee=02408&type=parcelles)
file_path <- tempfile(pattern = "", fileext = ".json")
file_path
download.file(url2, file_path, quiet = TRUE, mode = "wb")
你好,我试图从这个网站下载一个文件后得到的网址,但下载的文件是损坏的,因为当我试图打开它,我看到二进制和字符,而不是json文件的内容。我试图手动下载它,并通过这种方式显示真实的的内容。我不知道我的使用下载。文件功能是坏的,我没有成功地修复它,因为。
1条答案
按热度按时间n6lpvg4x1#
jsonlite
包有parse_gzjson_raw()
函数来读取gzip压缩的数据。首先你需要把数据作为一个原始向量读入R。检查数据: