Krzysztof Dyba
Krzysztof Dyba
Thanks for the responses. Here are the logs how it looks for me: ```r > system.time(borders_download("administrative units")) trying URL 'ftp://91.223.135.109/prg/jednostki_administracyjne.zip' downloaded 375.2 MB user system elapsed 23.34 90.65 949.96 >...
There is clearly a problem. Perhaps users from outside Poland have lower connection priority and therefore disconnects occur? All functions in the package are wrappers to R `utils::download.file()`. I'll check...
I have some results. The problem appears to be exceptional and difficult to reproduce. The following code works for me without any problems. I use Windows 8.1. ```r test1 =...
Then I tried the solution suggested by @adamhsparks and the strange thing is that `curl::curl_download()` fails(?) for me, but `curl::curl_fetch_disk()` works fine. ```r curl::curl_download(test1, "test.zip", quiet = FALSE) #> [-1073741824%]...
Thank you all! I will do more tests and eventually prepare the PR.
Sorry for the many messages, but this problem is hard to reproduce, and I have one more idea. All functions in the **rgugik** that download files using `utils::download.file()` support parameter...
After a long discussion and many tests, we can propose a solution consisting of two steps: 1. Adding information about the possibility of using a different download method when a...
I've thought about it, but I'm not convinced that setting this as the default for download is a universal solution. During testing, we noticed that different methods are optimal for...
**To information:** We currently have a lot of duplicate code, so we should create some helper function.
> BTW. is it possible that geocodePL_get() may return sf object instead of list? That would be super useful for speeding up the processing and merging with other data? Fixed...