-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
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
fread empty files #22
Comments
Here's the error structure reported by at least 2 people independently: Error in data.table::fread(paste("unzip -p", f, fp), na.strings = na9(), : File is empty: [Rtempfile] [pfile] being the produkt file, e.g. produkt_klima_tag_19370101_19860630_00001.txt |
For 10 minute data, there is 64-bit formatted columns needing the package bit64 if fread=TRUE/NA. |
A new error message was reported in #23, but I think it's the same problem. 'unzip' is not recognized as an internal or external command, operable program or batch file. It seems the system command |
…w section on homepage. Related again to issue #22.
readDWD
has the argumentfread
to read datasets throughdata.table::fread
, which is significantly faster than baseunzip+read.table
.Early on (2017), the default was
fread=NA
(i.e. conditional on availability ofdata.table
).Some users sent emails about errors on Windows OS so I changed the default to FALSE (272b947).
For speedup, it would be nice to have the default NA again.
This will be set experimentally to see if new complaints arise.
The text was updated successfully, but these errors were encountered: