Skip to content
Snippets Groups Projects
Commit 2adf7c74 authored by ronesy's avatar ronesy
Browse files

Bug fix to prep_satellite for case when no retrievals found within +/-2 SD of...

Bug fix to prep_satellite for case when no retrievals found within +/-2 SD of mean and update to prep_regions for satellites for compatability with new version of FPv10.4 for satellites
parent f36a8890
No related branches found
No related tags found
No related merge requests found
...@@ -216,7 +216,8 @@ subroutine get_surfinf(files, config, recs, cdryair, obstimes, avetimes, surfinf ...@@ -216,7 +216,8 @@ subroutine get_surfinf(files, config, recs, cdryair, obstimes, avetimes, surfinf
grid = grid/outheight(1) grid = grid/outheight(1)
if ( lsatellite ) then if ( lsatellite ) then
! convert from column SRR units to that consistent with mole fractions ! convert from column SRR units to that consistent with mole fractions
grid = grid/cdryair(i) ! no longer needed with new FP code
! grid = grid/cdryair(i)
endif endif
! add to total surface influence ! add to total surface influence
surfinf(:,:) = surfinf(:,:) + sum(grid(ix1:ix2,jy1:jy2,:),dim=3) surfinf(:,:) = surfinf(:,:) + sum(grid(ix1:ix2,jy1:jy2,:),dim=3)
......
...@@ -366,6 +366,10 @@ subroutine average(settings, idate, itime, xpoints, ypoints, zpoint1, zpoint2, v ...@@ -366,6 +366,10 @@ subroutine average(settings, idate, itime, xpoints, ypoints, zpoint1, zpoint2, v
iretr_keep(nn) = iretr(n) iretr_keep(nn) = iretr(n)
endif endif
end do end do
if (nn.eq.0) then
! reject this box -> no retrievals within +/- 2SD
cycle
endif
! calculate mean of kept retrievals ! calculate mean of kept retrievals
warea(:) = 0. warea(:) = 0.
do n = 1, nn do n = 1, nn
......
...@@ -284,6 +284,11 @@ subroutine get_bremen(settings) ...@@ -284,6 +284,11 @@ subroutine get_bremen(settings)
! exclude retrievals if not for current day ! exclude retrievals if not for current day
if ( floor(jdmeas).ne.jd ) cycle if ( floor(jdmeas).ne.jd ) cycle
call caldate(jdmeas, jjjjmmdd, hhmiss) call caldate(jdmeas, jjjjmmdd, hhmiss)
! check date and time
if (isnan(real(hhmiss)).or.(jjjjmmdd.lt.0)) then
write(logid,*) 'WARNING: problem with itime, idate for file, nmeas, jdmeas = ',trim(filereadlist(n)), nm, jdmeas
cycle
endif
nretr = nretr + 1 nretr = nretr + 1
idate(nretr) = jjjjmmdd idate(nretr) = jjjjmmdd
itime(nretr) = hhmiss itime(nretr) = hhmiss
......
...@@ -411,6 +411,12 @@ subroutine get_tropomi(settings) ...@@ -411,6 +411,12 @@ subroutine get_tropomi(settings)
if ( floor(jdmeas).ne.jd ) cycle if ( floor(jdmeas).ne.jd ) cycle
if ( vmr(np,nm,nt).ge.bignum ) cycle if ( vmr(np,nm,nt).ge.bignum ) cycle
call caldate(jdmeas, jjjjmmdd, hhmiss) call caldate(jdmeas, jjjjmmdd, hhmiss)
! check date and time
if (isnan(real(hhmiss)).or.(jjjjmmdd.lt.0)) then
write(logid,*) 'WARNING: problem with itime, idate for file, nmeas, npixel, jdmeas = ',&
trim(filereadlist(n)), nm, np, jdmeas
cycle
endif
nretr = nretr + 1 nretr = nretr + 1
idate(nretr) = jjjjmmdd idate(nretr) = jjjjmmdd
itime(nretr) = hhmiss itime(nretr) = hhmiss
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment