emcsfc_ice_blend
1.7.0
|
Create blended ice product for gfs/gdas cycles. More...
Go to the source code of this file.
Functions/Subroutines | |
program | emcsfc_ice_blend |
Create a global 5-minute blended ice concentration dataset for use by GDAS/GFS. More... | |
Create blended ice product for gfs/gdas cycles.
Definition in file emcsfc_ice_blend.f90.
program emcsfc_ice_blend | ( | ) |
Create a global 5-minute blended ice concentration dataset for use by GDAS/GFS.
This blend is created from National Ice Center Interactive Multisensor Snow and Ice Mapping System (IMS) data, and the NCEP/MMAB global 5-minute ice concentration data.
Program History Log
input files:
output files:
condition codes:
This program creates a sea ice concentration file suitable for use by the GFS global cycle program. The 5-minute ice concentration file from MMAB can't be used 'as is' because the MMAB data can't give a reliable analysis for small lakes now resolved by the GFS land mask.
This program creates an ice concentration file on the same 5-minute grid as the MMAB data using IMS data from the National Ice Center to fill in small lakes. The IMS data is NH only and is a yes/no flag (not a concentration). The IMS data is on a 4km polar stereographic grid and must be interpolated to the MMAB 5-minute grid (NCEP grid 173) before ingest to this program. This interpolation may be done using copygb2 as follows:
grid173="0 0 0 0 0 0 0 0 4320 2160 0 0 89958000 42000 48 -89958000 359958000 83000 83000 0" copygb2 -x -i3 -g "$grid173" ims.icec.grib2 ims.icec.5min.grib2
When using the "budget" interpolation option (-i3), the IMS yes/no flag will be converted to a pseudo ice concentration.
The IMS data contains a land/water mask. Ice concentration is only specified at 'water' points.
The 5-minute data mask contains 'land', 'coast' and 'water' points. Ice concentration is specified at 'coast' and 'water', but 'coast' points have error and are not used here.
The blending process is as follows in the NH:
In the SH, the blended value is simply the 5-minute ice concentration at 'water' points. 'Coast' and 'land' points are bitmapped out.
Definition at line 93 of file emcsfc_ice_blend.f90.