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

GitHub Issue NOAA-EMC/GSI#339. The inclusion of the mixed surface type in situ observations and looser QC for in situ observations #355

Merged
merged 1 commit into from
Apr 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion scripts/exglobal_atmos_analysis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,7 @@ cat > gsiparm.anl << EOF
$OBSQC
/
&OBS_INPUT
dmesh(1)=145.0,dmesh(2)=150.0,dmesh(3)=100.0,dmesh(4)=70.0,time_window_max=3.0,
dmesh(1)=145.0,dmesh(2)=150.0,dmesh(3)=100.0,dmesh(4)=25.0,time_window_max=3.0,
$OBSINPUT
/
OBS_INPUT::
Expand Down
4 changes: 3 additions & 1 deletion src/gsi/setupsst.f90
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ subroutine setupsst(obsLL,odiagLL,lunin,mype,bwork,awork,nele,nobs,is,conv_diags
! 2017-02-09 guo - Remove m_alloc, n_alloc.
! . Remove my_node with corrected typecast().
! 2019-11-12 li - add 4 nsst variables to netcdf sst diag file
! 2022-04-04 li - modify to use mixed surface in situ observations
! if ( isli == 0 ) then => if ( owpct > 0.05_r_kind ) then
!
! input argument list:
! lunin - unit from which to read observations
Expand Down Expand Up @@ -309,7 +311,7 @@ subroutine setupsst(obsLL,odiagLL,lunin,mype,bwork,awork,nele,nobs,is,conv_diags
if(.not.in_curbin) cycle

! Interpolate to get sst at obs location/time
if ( isli == 0 ) then
if ( owpct > 0.05_r_kind ) then
nobs_qc = nobs_qc + 1
call intrp2a11(dsfct(1,1,ntguessfc),dsfct_obx,dlat,dlon,mype)
else
Expand Down