git clone https://github.com/OpenEarthLab/ORCA-DL.git
cd ORCA-DL
conda create -n orca python=3.9.17
conda activate orca
pip install -r requirements.txt
All the model weights and data can be found in https://1drv.ms/f/c/49d761d10f0b201d/Emi9scIyaWBCrNTgRo6t12oBLnF2qGDRGj0M7-g0ekRM1A
See demo.ipynb
Please note that ORCA-DL initially uses GODAS data as its starting point. Initialization with other data is also feasible, but it is necessary to ensure that the data is interpolated to the correct longitude and latitude range and resolution, as in example_data. Here is an example of how to interpolate the original data using CDO (recommended):
wget https://downloads.psl.noaa.gov/Datasets/godas/sshg.1980.nc -O sshg-1980.nc # download a 2D data from GODAS
cdo -b f64 remapbil,grid sshg-1980.nc sshg-1980-processed.nc
wget https://downloads.psl.noaa.gov/Datasets/godas/salt.1980.nc -O salt-1980.nc # download a 3D data from GODAS
cdo -b f64 remapbil,grid salt-1980.nc tmp1.nc
cdo intlevel,10,15,30,50,75,100,125,150,200,250,300,400,500,600,800,1000 tmp1.nc tmp2.nc
cdo setzaxis,zaxis.txt tmp2.nc salt-1980-processed.nc
rm tmp1.nc tmp2.nc
After the data interpolation is completed, you can refer to the demo.ipynb to run ORCA-DL.
- Training data and code are coming soon.
- 2025-03-21: Data preprocessing processes are released.
- 2025-03-04: Model weights and demo code are released.
If you find this work useful, please cite our paper:
@article{guo2024data,
title={Data-driven Global Ocean Modeling for Seasonal to Decadal Prediction},
author={Guo, Zijie and Lyu, Pumeng and Ling, Fenghua and Bai, Lei and Luo, Jing-Jia and Boers, Niklas and Yamagata, Toshio and Izumo, Takeshi and Cravatte, Sophie and Capotondi, Antonietta and Ouyang, Wanli},
journal={arXiv preprint arXiv:2405.15412},
year={2024}
}