Data Download Automation
Hi,
First of all, thank you for this great initiative and repository!
I am trying to download the raw historical weather forecast data to my local computer, but I haven’t been able to automate the fetching process. Could you recommend a way to retrieve this data from the repository without having to download it manually?
Many thanks in advance!
Hi @adacanaydin ! Thanks for getting in touch :)
huggingface-cli download
should work for this dataset, eg something like this:huggingface-cli download openclimatefix/dwd-icon-eu --repo-type dataset --include "data/2023/12/17/20231217*.zarr.zip"
This snippet would download all files for 17th Dec 2023, but you can wildcard a wider range if you want.
You can also look at streaming options as discussed in issue #10
Hope this helps, let me know if you have further questions!