NOAA-EMC / GSI

Gridpoint Statistical Interpolation
GNU Lesser General Public License v3.0
66 stars 147 forks source link

ConMon rstprod data handling #130

Closed EdwardSafford-NOAA closed 3 years ago

EdwardSafford-NOAA commented 3 years ago

Some ship and aircraft data is classified as rstprod [restricted access] rather than prod [production]. Extracted ConMon data files from these sources should maintain that rstprod grouping.

Russ implemented a quick solution for this in GFSv16. The code block below is what was implemented in the RadMon at the same time and illustrates the improvised solution:

`--- a/util/Radiance_Monitor/nwprod/gdas_radmon.v3.0.0/scripts/exgdas_atmos_verfrad.sh +++ b/util/Radiance_Monitor/nwprod/gdas_radmon.v3.0.0/scripts/exgdas_atmos_verfrad.sh @@ -232,6 +232,15 @@ elif [[ $rc_time -ne 0 ]]; then err=$rc_time fi

+##################################################################### +# Restrict select sensors and satellites +export CHGRP_CMD=${CHGRP_CMD:-"chgrp ${group_name:-rstprod}"} +rlist="saphir" +for rtype in $rlist; do

This issue will implement a more robust and maintainable solution in the ConMon.

The associated bugzilla ticket number is [ ].

EdwardSafford-NOAA commented 3 years ago

After some thought I'm going to go ahead and close this issue. The fix Russ installed is fine and time is probably better spent on advancing with the PyGSI package than implementing a perfect solution here. I can always open a new issue if events and directives change.