Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GSI changes to read and assimilate IASI-NG #805

Merged
merged 27 commits into from
Nov 25, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
d72e074
Removed an unnecessary line
wx20jjung Jun 12, 2024
3c41471
Initial coding for IASI-NG. Reads BUFR files generated by NESDIS.
wx20jjung Jun 12, 2024
0e1853b
First save for iasi-ng. added read_iasing and various tests for iasi-ng
wx20jjung Jul 10, 2024
8f347ff
The cloud and aerosol detection software (CADS) uses imager informati…
wx20jjung Jul 31, 2024
81dbccf
Merge remote-tracking branch 'emc/develop' into IASI-NG
wx20jjung Jul 31, 2024
edc4eff
A few more changes for IASI-NG
wx20jjung Sep 3, 2024
229d875
Merge branch 'NOAA-EMC:develop' into IASI-NG
wx20jjung Sep 3, 2024
d230b54
Merge branch 'NOAA-EMC:develop' into IASI-NG
wx20jjung Sep 23, 2024
714c0a6
Some changes to read_iasing.f90
wx20jjung Sep 23, 2024
cd3d7e8
Some code cleanup in read_iasing.f90
wx20jjung Sep 30, 2024
c533eed
Merge branch 'NOAA-EMC:develop' into IASI-NG
wx20jjung Oct 14, 2024
db33a1b
Changes to read_iasing.f90
wx20jjung Oct 18, 2024
6128c5e
Sync with code on S4
wx20jjung Oct 18, 2024
9446d50
Modified read_iasing to support the use_edges flag and remove the sca…
wx20jjung Nov 2, 2024
d3d4a04
Merge branch 'NOAA-EMC:develop' into IASI-NG
wx20jjung Nov 2, 2024
955d3f4
Merge with develop
wx20jjung Nov 4, 2024
574a0cd
Merge branch 'IASI-NG' of https://github.com/wx20jjung/GSI into IASI-NG
wx20jjung Nov 4, 2024
f5027ba
Update src/gsi/gsimod.F90
wx20jjung Nov 5, 2024
68037a0
Update src/gsi/gsimod.F90
wx20jjung Nov 5, 2024
e256056
These are changes suggested by Dave Huber. Added comments and remove…
wx20jjung Nov 5, 2024
5b1534b
Merge branch 'IASI-NG' of https://github.com/wx20jjung/GSI into IASI-NG
wx20jjung Nov 5, 2024
745f01d
Added comments around some of the bufr read statements.
wx20jjung Nov 5, 2024
c4afc99
Added comments
wx20jjung Nov 5, 2024
5db524c
Added/changed comments
wx20jjung Nov 6, 2024
493e8e6
Changes to Jet node/task configuration to run ctests.
wx20jjung Nov 7, 2024
7518ed8
Merge branch 'IASI-NG' of https://github.com/wx20jjung/GSI into IASI-NG
wx20jjung Nov 7, 2024
16b49ad
Merge remote-tracking branch 'emc/develop' into IASI-NG
wx20jjung Nov 13, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
The cloud and aerosol detection software (CADS) uses imager informati…
…on. In this case it is METImage. Specifically, the CRTM coefficent files are needed by CADS. The CRTM coefficient files used are determined by the satinfo file. The METImage entry in the satinfo file generates error messages in various parts of the GSI. These changes silence the error messages. At this time, there is no METImage assimilation code in the GSI.
  • Loading branch information
wx20jjung committed Jul 31, 2024
commit 8f347ffc1c3be26c86d356ab573c420602f21e9a
1 change: 1 addition & 0 deletions src/gsi/gsi_obOperTypeManager.F90
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,7 @@ function dtype2index_(dtype) result(index_)
!
case("avhrr_navy"); index_= iobOper_rad
case("avhrr" ); index_= iobOper_rad
case("metimage" ); index_= iobOper_rad
case("viirs-m" ); index_= iobOper_rad

case("tcp" ,"[tcpoper]" ); index_= iobOper_tcp
Expand Down
4 changes: 3 additions & 1 deletion src/gsi/read_obs.F90
Original file line number Diff line number Diff line change
Expand Up @@ -929,7 +929,7 @@ subroutine read_obs(ndata,mype)
amsre .or. ssmis .or. obstype == 'ssmi' .or. &
obstype == 'ssu' .or. obstype == 'atms' .or. &
obstype == 'cris' .or. obstype == 'cris-fsr' .or. &
obstype == 'amsr2' .or. obstype == 'viirs-m' .or. &
obstype == 'amsr2' .or. obstype == 'viirs-m' .or. obstype == 'metimage' .or. &
obstype == 'gmi' .or. obstype == 'saphir' ) then
ditype(i) = 'rad'
else if (is_extOzone(dfile(i),obstype,dplat(i))) then
Expand Down Expand Up @@ -1038,6 +1038,8 @@ subroutine read_obs(ndata,mype)
parallel_read(i)= .true.
else if(obstype == 'viirs-m' )then
parallel_read(i)= .true.
else if(obstype == 'metimage' )then
parallel_read(i)= .true.
else if(amsre)then
parallel_read(i)= .true.
else if(obstype == 'goes_img' )then
Expand Down