A test data downloader that prepares test datasets for the cedarkit toolkits.
pip install -e .Download GFS data from WIS:
cedarkit-test-data download gfs --source wis --output ./dataCopy data from a locally mounted directory:
cedarkit-test-data download gfs --source music-dir --storage-base M: --output ./datafrom cedarkit_test_data import download_gfs_data
from pathlib import Path
# Download to a target directory
download_gfs_data(
output_dir=Path("./data"),
source="wis",
)wis: download from the CMA WIS data servicemusic-dir: copy from a locally mounted music-dir directory
gfs: CMA GRAPES-GFS global model data
Licensed under the Apache License, Version 2.0.