├── .gitignore ├── LICENSE ├── README.md ├── README_en.md ├── data_factory ├── __init__.py ├── convert_era5_hourly.py ├── datasets.py ├── download_era5.py ├── graph_tools.py └── update_scaler.py ├── img ├── precipitation_small.gif └── wind_small.gif ├── model ├── afnonet.py └── graphcast_sequential.py ├── train_fourcastnet.py ├── train_graphcast.py └── utils ├── eval.py ├── params.py └── tools.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFAiLab/OpenCastKit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFAiLab/OpenCastKit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFAiLab/OpenCastKit/HEAD/README.md -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFAiLab/OpenCastKit/HEAD/README_en.md -------------------------------------------------------------------------------- /data_factory/__init__.py: -------------------------------------------------------------------------------- 1 | from .datasets import ERA5, StandardScaler 2 | -------------------------------------------------------------------------------- /data_factory/convert_era5_hourly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFAiLab/OpenCastKit/HEAD/data_factory/convert_era5_hourly.py -------------------------------------------------------------------------------- /data_factory/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFAiLab/OpenCastKit/HEAD/data_factory/datasets.py -------------------------------------------------------------------------------- /data_factory/download_era5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFAiLab/OpenCastKit/HEAD/data_factory/download_era5.py -------------------------------------------------------------------------------- /data_factory/graph_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFAiLab/OpenCastKit/HEAD/data_factory/graph_tools.py -------------------------------------------------------------------------------- /data_factory/update_scaler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFAiLab/OpenCastKit/HEAD/data_factory/update_scaler.py -------------------------------------------------------------------------------- /img/precipitation_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFAiLab/OpenCastKit/HEAD/img/precipitation_small.gif -------------------------------------------------------------------------------- /img/wind_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFAiLab/OpenCastKit/HEAD/img/wind_small.gif -------------------------------------------------------------------------------- /model/afnonet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFAiLab/OpenCastKit/HEAD/model/afnonet.py -------------------------------------------------------------------------------- /model/graphcast_sequential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFAiLab/OpenCastKit/HEAD/model/graphcast_sequential.py -------------------------------------------------------------------------------- /train_fourcastnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFAiLab/OpenCastKit/HEAD/train_fourcastnet.py -------------------------------------------------------------------------------- /train_graphcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFAiLab/OpenCastKit/HEAD/train_graphcast.py -------------------------------------------------------------------------------- /utils/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFAiLab/OpenCastKit/HEAD/utils/eval.py -------------------------------------------------------------------------------- /utils/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFAiLab/OpenCastKit/HEAD/utils/params.py -------------------------------------------------------------------------------- /utils/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFAiLab/OpenCastKit/HEAD/utils/tools.py --------------------------------------------------------------------------------