-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare snow depth observations for land DA. (#472)
* add files for preparing IMS data * updates for preplandobs * updates for snow depth obs
- Loading branch information
Showing
2 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
&fIMS_nml | ||
idim = {{ CASE[1:] }}, | ||
jdim = {{ CASE[1:] }}, | ||
otype = "{{ CASE }}_oro_data", | ||
jdate = "{{ current_cycle | to_julian }}", | ||
yyyymmddhh = "{{ current_cycle | to_YMD }}.{{ current_cycle.strftime('%H') }}", | ||
imsformat = 2, | ||
imsversion = "1.3", | ||
fcst_path = "{{ DATA }}/bkg/" | ||
IMS_OBS_PATH = "{{ DATA }}/obs/", | ||
IMS_IND_PATH = "{{ DATA }}/obs/" | ||
/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
calcfims: | ||
mkdir: | ||
- $(DATA)/obs | ||
copy: | ||
- [$(COM_OBS)/$(OPREFIX)ims{{ current_cycle | to_julian }}_4km_v1.3.nc, $(DATA)/obs/ims{{ current_cycle | to_julian }}_4km_v1.3.nc] | ||
- [$(COM_OBS)/$(OPREFIX)IMS4km_to_FV3_mapping.$(CASE)_oro_data.nc, $(DATA)/obs/IMS4km_to_FV3_mapping.$(CASE)_oro_data.nc] | ||
ims2ioda: | ||
copy: | ||
- [$(DATA)/ims_snow_{{ current_cycle | to_YMDH }}.nc4, $(COM_OBS)/$(OPREFIX)ims_snow.nc4] | ||
|