Potential issue with obs input template #1938
-
Hello! Gerard (@gsketefian) and I have both encountered a potential issue with specifying the obs input template in various METplus wrappers (e.g., grid-stat, and ensemble-stat) with METplus 4.1.1. Here is an example specifying the obs template for MRMS data within our ensemble-stat conf file: OBS_ENSEMBLE_STAT_GRID_INPUT_TEMPLATE = {valid?fmt=%Y%m%d}/MergedReflectivityQCComposite_00.50_{valid?fmt=%Y%m%d}-{valid?fmt=%H%M%S}.grib2 We have a script that pulls the MRMS data from the NOAA HPSS, and the data is gzipped when it is pulled; our script also unzips the data, so it is in grib2 format for the verification. In our obs directory, we have both the .gz and .grib2 files. When METplus runs with both the .gz and .grib2 files in the same directory, it fails ( Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
@michelleharrold thanks for clearly defining the behavior. Yes, it certainly sounds like the presence of the *.gz file is affecting the behavior of the wrapper. @georgemccabe is the best person to take a look at this behavior. And I'm responding to this one right away given that we have a release approaching quickly. George, please take a look when you get a chance to see if we can address this in the METplus 5.0 release. @michelleharrold, obviously, please continue removing the *.gz files prior to running METplus for the time being to avoid this problem in version 4.1.1. Longer term, I wonder if encapsulating the data retrieval logic you're running as a custom script upstream of METplus could be added as a python wrapper within METplus. Pulling remote data certainly seems like a common task. |
Beta Was this translation helpful? Give feedback.
@michelleharrold thanks for clearly defining the behavior. Yes, it certainly sounds like the presence of the *.gz file is affecting the behavior of the wrapper.
@georgemccabe is the best person to take a look at this behavior. And I'm responding to this one right away given that we have a release approaching quickly. George, please take a look when you get a chance to see if we can address this in the METplus 5.0 release.
@michelleharrold, obviously, please continue removing the *.gz files prior to running METplus for the time being to avoid this problem in version 4.1.1. Longer term, I wonder if encapsulating the data retrieval logic you're running as a custom script upstream of METplus …