Skip to content

Commit

Permalink
fix a bug in read_obs.F90 missing N21 for EARS and DBnet (#630)
Browse files Browse the repository at this point in the history
This PR is to fix a bug in read_obs.F90 missing N21 for EARS and DBnet.

Fixes #506
  • Loading branch information
HaidaoLin-NOAA committed Sep 30, 2023
1 parent c56d7bc commit fae4bbf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gsi/read_obs.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1065,7 +1065,7 @@ subroutine read_obs(ndata,mype)
obstype == 'iasi' .or. obstype == 'atms') .and. &
(dplat(i) == 'n17' .or. dplat(i) == 'n18' .or. &
dplat(i) == 'n19' .or. dplat(i) == 'npp' .or. &
dplat(i) == 'n20' .or. &
dplat(i) == 'n20' .or. dplat(i) == 'n21' .or. &
dplat(i) == 'metop-a' .or. dplat(i) == 'metop-b' .or. &
dplat(i) == 'metop-c')
! direct broadcast from NESDIS/UW
Expand All @@ -1076,7 +1076,7 @@ subroutine read_obs(ndata,mype)
obstype == 'iasi') .and. &
(dplat(i) == 'n17' .or. dplat(i) == 'n18' .or. &
dplat(i) == 'n19' .or. dplat(i) == 'npp' .or. &
dplat(i) == 'n20' .or. &
dplat(i) == 'n20' .or. dplat(i) == 'n21' .or. &
dplat(i) == 'metop-a' .or. dplat(i) == 'metop-b' .or. &
dplat(i) == 'metop-c')

Expand Down

0 comments on commit fae4bbf

Please sign in to comment.