reading data source from IC and LBC #264
Jili-Dong
started this conversation in
FAQ and Troubleshooting
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
If users encounter the following errors during the initialization:
fv_regional_bc::get_data_source - input source not found in file gfs_data.nc
or
fv_regional_bc::get_lbc_source - input source not found in file gfs_bndy.tile7.000.nc
that means global attribute "source" is missing in IC (gfs_data.nc) or LBC (gfs_bndy.tile7.000.nc). The accepted FV3 source is one of the following:
Users can use the following NCO command to add source attribute to the related IC and/or LBC:
ncatted -O -a source,global,c,c,'FV3GFS GAUSSIAN NETCDF FILE' gfs_data.nc
or
ncatted -O -a source,global,c,c,'FV3GFS GRIB2 FILE' gfs_bndy.tile7.000.nc
or consider to modify IC/LBC generation code to write out global attribute "source" to IC/LBC as a long term solution.
Beta Was this translation helpful? Give feedback.
All reactions