Skip to content

Commit

Permalink
add N21 OMPS data into oznmon and viirs-m into radmon. Also accomodat…
Browse files Browse the repository at this point in the history
…e the N21/J2 naming differences for atms, cris, and viirs-m
  • Loading branch information
HaixiaLiu-NOAA committed Mar 23, 2022
1 parent b38daa0 commit 198a2c6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/gsi/read_obs.F90
Original file line number Diff line number Diff line change
Expand Up @@ -261,9 +261,9 @@ subroutine read_obs_check (lexist,filename,jsatid,dtype,minuse,nread)
kidsat=223
else if(jsatid == 'npp')then
kidsat=224
else if(jsatid == 'n20')then
else if(jsatid == 'n20' .or. jsatid == 'j1')then
kidsat=225
else if(jsatid == 'n21')then
else if(jsatid == 'n21' .or. jsatid == 'j2')then
kidsat=226
else if(jsatid == 'f08')then
kidsat=241
Expand Down
4 changes: 2 additions & 2 deletions src/gsi/read_viirs.f90
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,9 @@ subroutine read_sst_viirs(mype,val_viirs,ithin,rmesh,jsatid,&

if (jsatid == 'npp') then
bufsat = 224
elseif (jsatid == 'j1') then
elseif (jsatid == 'n20' .or. jsatid == 'j1') then
bufsat = 225
elseif (jsatid == 'n21') then
elseif (jsatid == 'n21' .or. jsatid == 'j2') then
bufsat = 226
else
write(*,*) 'READ_SST_VIIRS: Unrecognized value for jsatid '//jsatid//':RETURNING'
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
gome_metop-b omi_aura sbuv2_n19 ompsnp_npp ompstc8_npp ompsnp_n20 ompstc8_n20 ompslp_npp
gome_metop-b gome_metop-c omi_aura sbuv2_n19 ompsnp_npp ompstc8_npp ompsnp_n20 ompstc8_n20 ompslp_npp ompsnp_n21 ompstc8_n21
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
abi_g16 abi_g17 abi_g18 ahi_himawari8 ahi_himawari9 amsua_metop-b amsua_metop-c amsua_n15 amsua_n18 amsua_n19 atms_npp atms_n20 avhrr_metop-b avhrr_n18 avhrr_n19 cris-fsr_npp cris-fsr_n20 hirs4_n19 iasi_metop-b iasi_metop-c mhs_metop-b mhs_metop-c mhs_n19 seviri_m08 seviri_m11 ssmis_f17 ssmis_f18 atms_n21 cris-fsr_n21
abi_g16 abi_g17 abi_g18 ahi_himawari8 ahi_himawari9 amsua_metop-b amsua_metop-c amsua_n15 amsua_n18 amsua_n19 atms_npp atms_n20 avhrr_metop-b avhrr_n18 avhrr_n19 cris-fsr_npp cris-fsr_n20 hirs4_n19 iasi_metop-b iasi_metop-c mhs_metop-b mhs_metop-c mhs_n19 seviri_m08 seviri_m11 ssmis_f17 ssmis_f18 atms_n21 cris-fsr_n21 viirs-m_npp viirs-m_j1 viirs-m_j2

0 comments on commit 198a2c6

Please sign in to comment.