I'm trying to figure out what's wrong with this URL or why my RStudio can't access a perfectly fine URL I can reach with my browser.
This URL automatically downloads a .csv
The code has worked for colleagues in the past.
url <- "http://climate.weather.gc.ca/climate_data/bulk_data_e.html?format=csv&stationID=6329&Year=1953&Month=1&Day=1&timeframe=2&submit= Download+Data"
download.file(url,"files.csv",quiet=TRUE)
The error it's throwing is:
Error in download.file(url, "files.csv", quiet = TRUE) :
cannot open URL 'http://climate.weather.gc.ca/climate_data/bulk_data_e.html?format=csv&stationID=6329&Year=1953&Month=1&Day=1&timeframe=2&submit= Download+Data'
In addition: Warning message:
In download.file(url, "files.csv", quiet = TRUE) :
URL 'http://climate.weather.gc.ca/climate_data/bulk_data_e.html?format=csv&stationID=6329&Year=1953&Month=1&Day=1&timeframe=2&submit= Download+Data': status was 'URL using bad/illegal format or missing URL'
so from inspecting your code, my best guess is that the problem is likely because there is whitespace in the link you assigned to the "url" variable, specifically before "Download+Data." I was able to replicate and solve the problem by removing the whitespace from the link and downloading the file like this (do note that I printed the dataframe to show the file was successlly downloaded: