-
Notifications
You must be signed in to change notification settings - Fork 17
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
Speed-up read_vpfiles #57
Comments
Thanks, it has indeed been on my wish list to have a faster read of the data (and at least the option to skip many of the attributes), will look into this |
How about using foreach and a PSOCK backends? speed up depend on the number of cluster and RAM, but i ran 3x faster on my machine.
|
It would atleast require good cross platform testing as the parallel environments differ between operating systems. (I think "PSOCK" is not the fastest on linux). It also might conflict with cases where parallelization is done at a higher level. Maybe this issue becomes kind of obsolete once vpts like formats become more common. I think @peterdesmet is working on that, I'm not sure about the progress |
I'll discuss the format with Adriaan next week. The idea is to keep it close to the vol2bird out, but delimited rather than length-based columns. This tabular data should be able to capture any timespan for a single radar and have an additional file with metadata. |
With the VPTS CSV file format, users will be able to read data much faster using |
I was just wandering if we could make
readvp.list
and/orreadvp
faster.Replacing
with
can reduce 1/3 of the running time with my quick test. But I'm not sure if it's really valid for all the radar file. Also, do we really need to read all the attribute when using
readvp.list
?The text was updated successfully, but these errors were encountered: