Skip to content

Commit

Permalink
Update the IMS pre-processing time and IMS snow data format (#1228)
Browse files Browse the repository at this point in the history
This PR updates the IMS snow data pre-processing time from being the 18z
to the 00z cycle, and also changes to assimilate the IMS snow data in
ascii format from the operational dump.

This PR contributes to
NOAA-EMC/global-workflow#2779
  • Loading branch information
jiaruidong2017 authored Jul 19, 2024
1 parent ca18845 commit c5ead85
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion parm/snow/obs/lists/gdas_snow.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ observers:
{% include 'snow/obs/config/adpsfc_snow.yaml.j2' %}
{% include 'snow/obs/config/snocvr_snow.yaml.j2' %}
{% set cycle = current_cycle | strftime("t%Hz") %}
{% if cycle in ['t18z'] %}
{% if cycle in ['t00z'] %}
{% include 'snow/obs/config/ims_snow.yaml.j2' %}
{% endif %}
{% endfilter %}
2 changes: 1 addition & 1 deletion parm/snow/prep/fims.nml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
otype = "{{ CASE }}_oro_data",
jdate = "{{ current_cycle | to_julian }}",
yyyymmddhh = "{{ current_cycle | to_YMD }}.{{ current_cycle.strftime('%H') }}",
imsformat = 2,
imsformat = 1,
imsversion = "1.3",
fcst_path = "{{ DATA }}/bkg/"
IMS_OBS_PATH = "{{ DATA }}/obs/",
Expand Down
2 changes: 1 addition & 1 deletion parm/snow/prep/prep_ims.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ 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 }}imssnow96.asc', '{{ DATA }}/obs/ims{{ current_cycle | to_julian }}_4km_v1.3.asc']
- ['{{ FIXgfs }}/gdas/obs/ims/IMS_4km_to_{{ CASE }}.mx{{ OCNRES }}.nc', '{{ DATA }}/obs/IMS4km_to_FV3_mapping.{{ CASE }}_oro_data.nc']
ims2ioda:
copy:
Expand Down

0 comments on commit c5ead85

Please sign in to comment.