How to update sst data by OISST

YH_wcj

New member
I want to use OISST data as my initial condition, but , the type of data is .nc file, I meet warning that:
WARNING: Couldn't open file oisst:2024-09-03_22 for input.
.....


part commend I execuate:
ln -sf ungrib/Variable_Tables/Vtable.SST Vtable
./link_grib.csh /sharedata/dataset/realtime/SD048-OSTIA/2024/*
./ungrib.exe
./metgrid.exe
 
WPS UNGRIB program can only handle GRIB format data. If your OISST data is netCDF format, you need to create a code to read the data, then write it to intermediate format. In this case, you don't need to run ungrib and can move on to run metgrid.exe directly.

The intermediate format can be found here. A piece of Fortran code is also provided to demonstrate how to create intermediate format data. However, many other options like Python can also be used.
 
Back
Top