-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #138 from GEOS-ESM/feature/msienkie/#33_implement_…
…NRL_acqc Feature/msienkie/#33 implement nrl acqc
- Loading branch information
Showing
30 changed files
with
46,746 additions
and
11,411 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
README for NCEPQC | ||
|
||
04 Sep 1997 - This code was obtained from NCEP on 14 Aug 1997 | ||
* make_prepbufr.gbl.sh operational script | ||
* bufrlib library of 'prepbufr' routines | ||
* w3lib library of utility routines | ||
* prepdata read input datasets, perform | ||
QC checks not requiring background | ||
* prevents interpolate background field to obs. | ||
location and write 'events' | ||
* acqc quality control of aircraft obs | ||
(except ACARS) | ||
* cqcht96 complex quality control of rawinsonde | ||
height/temperature | ||
(oiqc not included in this program set) | ||
|
||
|
||
These programs have been run on the Cray J90 'charney' | ||
using either ON29 or BUFR input to 'prepdata' | ||
|
||
11 Mar 1999 | ||
Current snapshot of NCEPQC code used to run (ultimately) CQCHT. | ||
This is not the final version for the operational system. Routines | ||
in the 'w3lib' and 'bufrlib' that are not used by PREPDATA, PREVENTS, | ||
or CQCHT are not included here. | ||
|
||
|
||
26 Jul 1999 | ||
New versions of NCEPQC 'prepdata' and 'prevents' have been | ||
integrated into code base. The complex quality control is being tested | ||
and will be added when ready. | ||
Code was added to 'prevents' to work with GFIO files. The | ||
following routines from the GFIO library are used: | ||
GFIO_Open, GFIO_DimInquire, GFIO_Inquire, GFIO_GetVar, GFIO_Close | ||
Note that (in general) the NCEP programs need to be compiled | ||
-i8 -r8 - with long integers. The calls to GFIO routines *are* being | ||
performed with integer*4 variables, however. This has been tested with | ||
the GFIO libraries in /ford1/local/IRIX64/pkg/gfio (which were compiled | ||
as 'i4') and it works OK. | ||
|
||
12 Aug 1999 | ||
The 'parms' subdirectory contains some tables and parameter | ||
files used by the NCEP programs | ||
|
||
15 Jul 2004 (Todling) | ||
|
||
This now builds from buffer and w3 libs living under src/ncepshrd. | ||
All compiles, but results still need to be check. | ||
|
||
26 Jan 2005 - Sienkiewicz | ||
|
||
Update of directory for MERRA. Moved files onto main branch. | ||
Original code from NCEP replaced by updated code in new directories - | ||
except for 'oiqc' and 'ssprev' | ||
|
||
1 Jul 2008 | ||
|
||
Added new GMAO version of 'prevents' in GMAOprev directory. This version | ||
reads the 'g5eta' format background fields directly. The new code is | ||
adapted from the latest NCEP 'gblevents' code. | ||
|
||
Current directories: | ||
block-unblock - utilities to add f77 filemarkers on BUFR files | ||
* not on main CVS branch, should move out of PAQC? | ||
combine_bfr - utilities and notes about combining BUFR files | ||
* not on main CVS branch | ||
oiqc - NCEP OIQC Optimal interpolation quality control | ||
ssprev - Older version of NCEP prevents code to interpolate | ||
background from spectral coeffs. Current NCEP version | ||
is not compatible with our spectral files produced by | ||
'fv2ss'. Interim fix for MERRA, to be replaced by | ||
native interpolation routine eventually | ||
GMAOprev - New GMAO version of NCEP prevents code modified to | ||
read g5-eta files directly. Uses newer version of | ||
NCEP gblevents interpolation from eta levels. | ||
|
||
prepobs_acarsqc.fd - MDCARS (ACARS) QC routine from NCEP (Oct 05) | ||
prepobs_cqcbufr.fd - Raob Complex Quality Control from NCEP (Oct 05) | ||
prepobs_cqcvad.fd - VAD wind QC routine from NCEP (Oct 05) | ||
prepobs_prepacqc.fd - Aircraft (except ACARS) QC routine from NCEP (Oct 05) | ||
prepobs_profcqc.fd - Wind Profiler QC routine from NCEP (Oct 05) | ||
|
||
21 Mar 2013 | ||
|
||
Adding new directory modify_bufr with programs to modify BUFR files - | ||
typically to change quality marks to undo blacklisting of observations. | ||
|
||
24 Sep 2013 | ||
|
||
The code in directory prepobs_prepacqc.fd was updated with the new | ||
NRL aircraft QC adopted at NCEP in July 2012. When/if the new code | ||
is adopted, it will handle aircraft and ACARS qc and the acarsqc | ||
program will be obsolete. Meanwhile, changes to the old prepacqc | ||
(to work around a problem with TAMDAR data) are being written to | ||
an OPS branch. (GEOSadas-5_9_1_p10_OPS_branch) | ||
|
||
Some routines updated with code merged from NCEP WCOSS versions. | ||
The new versions require use of the new BUFR library (to use | ||
setbmiss/getbmiss). | ||
|
||
19 Nov 2015 | ||
|
||
latest tag 'meta_prepQC_fixesNov2015' for GEOSadas-5_13_2 | ||
Changes relative to prior tag GEOSadas-5_13_1: | ||
|
||
Routines have been updated with the NCEP versions from WCOSS transition | ||
or later - except for aircraft QC still using older code. (Not transitioned | ||
to NRLqc for aircraft partly because BUFR table problems with older | ||
prepbufr in the archive.) | ||
There were a few problems found in the prepQC used in MERRA2 up to Nov 2015. | ||
*There was a limit of 120000 observations (wind+mass combined) for ACARS with | ||
observations beyond that limit being discarded. Array sizes were updated. | ||
*The OIQC was failing to check upperair temperature and wind data - the | ||
new WCOSS version no longer uses OpenMP (it is MPI only) and appears to | ||
not have the problem. | ||
*The old prepacqc (AMDAR/AIREP QC) routine was dropping some observations | ||
for a 'receipt time check' - added a 'SAVE' statement so receipt times | ||
would not be retained for the read of the second part of a report and | ||
not zeroed out. (Change is on GEOSadas-5_9_1_p10_OPS_branch.) | ||
Other routines have changes for WCOSS including adjustment of the | ||
prepbufr missing value to a smaller number that does not cause an overflow | ||
when cast to integer on Linux. 'cqcvad.x' increased array sizes. The | ||
'prevents' code added a check to reject calm SFCSHP winds when the background | ||
wind speed is > 5m/s. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.