We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm running the github versions of etl and airlines.
When I ran:
library(airlines) db <- src_mysql(host="localhost", user="root", password="XX", dbname="airlines") ontime <- etl("airlines", db = db, dir = "~/dumps/airlines") ontime %>% etl_init() %>% etl_update(years = 2015:2016)
I got the following error message when it got to 2016_06:
trying URL 'http://tsdata.bts.gov/PREZIP/On_Time_On_Time_Performance_2016_5.zip'
downloaded 22.7 MB
downloaded 0 bytes
Error in (function (url, destfile, method, quiet = FALSE, mode = "w", : cannot download all files In addition: Warning message: In (function (url, destfile, method, quiet = FALSE, mode = "w", : URL 'http://tsdata.bts.gov/PREZIP/On_Time_On_Time_Performance_2016_6.zip': status was '404 Not Found'
I'm on a Mac.
The text was updated successfully, but these errors were encountered:
ontime %>% etl_init() %>% etl_update(years = 2013:2015) ontime %>% etl_update(years=2016, months=1:5)
worked for me.
Sorry, something went wrong.
Yes, the June file doesn't exist and currently it does not fail gracefully.
No branches or pull requests
I'm running the github versions of etl and airlines.
When I ran:
library(airlines)
db <- src_mysql(host="localhost", user="root", password="XX", dbname="airlines")
ontime <- etl("airlines", db = db, dir = "~/dumps/airlines")
ontime %>%
etl_init() %>%
etl_update(years = 2015:2016)
I got the following error message when it got to 2016_06:
trying URL 'http://tsdata.bts.gov/PREZIP/On_Time_On_Time_Performance_2016_5.zip'
Content type 'application/x-zip-compressed' length 23829775 bytes (22.7 MB)
downloaded 22.7 MB
downloaded 0 bytes
Error in (function (url, destfile, method, quiet = FALSE, mode = "w", :
cannot download all files
In addition: Warning message:
In (function (url, destfile, method, quiet = FALSE, mode = "w", :
URL 'http://tsdata.bts.gov/PREZIP/On_Time_On_Time_Performance_2016_6.zip': status was '404 Not Found'
I'm on a Mac.
The text was updated successfully, but these errors were encountered: