[Met_help] [rt.rap.ucar.edu #90550] History for error on regrid_data_plane

John Halley Gotway via RT met_help at ucar.edu
Tue Jul 23 10:11:50 MDT 2019


----------------------------------------------------------------
  Initial Request
----------------------------------------------------------------

To Whom It May Concern:

There is an error message on using the regrid_data_plane, please help me to
debug the root of error.

DEBUG 1: Reading data file:
OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_c20191591005286.nc
WARNING:
WARNING: MetGrib2DataFile::data_plane() -> unexpected PDS template number
(46) may cause unexpected results. Please email met_help at ucar.edu.
WARNING:
run.sh: line 7: 38040 Segmentation fault      (core dumped)
regrid_data_plane
OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_c20191591005286.nc
aqm.t06z.aot.f06.148.grib2 OBS_AOD_aqm_g16_20190608_10.nc -field
'name="AOD"; level="*";' -method UW_MEAN -v 1 -qc 0

The files, script, and log can be found in
https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/

I notice in 8.1 you no longer need the -coord option that 8.0 needs.

The output nc file only contains la and lon but no mapping AOD.

Than you for your help.

Ho-Chun Huang


----------------------------------------------------------------
  Complete Ticket History
----------------------------------------------------------------

Subject: error on regrid_data_plane
From: Howard Soh
Time: Tue Jun 11 12:55:53 2019

Internal only.


PDS template id 46:

from
https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table4-
0.shtml

The GRIB2 PRODUCT DEFINITION TEMPLATE NUMBER:

	Average, accumulation, and/or extreme values or other statistically
processed values at a horizontal level or in a horizontal layer in a
continuous or non-continuous time interval for aerosol.  (see Template
4.46)


Our code: The id 46 is not supported with grib2 handler:

void MetGrib2DataFile::read_grib2_record_list() {
         //  validate the PDS template number
         if(  0 != gfld->ipdtnum &&     //  analysis or forecast
              1 != gfld->ipdtnum &&     //  individual ensemble
forecast, control and perturbed, at a horizontal level or in a
horizontal layer at a point in time
              2 != gfld->ipdtnum &&     //  ensemble mean
              5 != gfld->ipdtnum &&     //  probability forecast
              8 != gfld->ipdtnum &&     //  accumulation forecast
              9 != gfld->ipdtnum &&     //  probabilistic accumultion
forecast
             11 != gfld->ipdtnum &&     //  individual ensemble
forecast, control and perturbed, at a horizontal level or in a
horizontal layer, in a continuous or non-continuous time interval
             12 != gfld->ipdtnum &&     //  derived accumulation
forecast (?)
             48 != gfld->ipdtnum ){     //  aerosol data
            mlog << Warning << "\nMetGrib2DataFile::data_plane() -> "
                 << "unexpected PDS template number ("
                 << gfld->ipdtnum << ") may cause unexpected results.
"
                 << "Please email met_help at ucar.edu.\n\n";
         }

Cheers,
Howard

On Tue Jun 11 09:49:46 2019, ho-chun.huang at noaa.gov wrote:
> To Whom It May Concern:
>
> There is an error message on using the regrid_data_plane, please
help me to
> debug the root of error.
>
> DEBUG 1: Reading data file:
> OR_ABI-L2-AODC-
M6_G16_s20191591001457_e20191591004230_c20191591005286.nc
> WARNING:
> WARNING: MetGrib2DataFile::data_plane() -> unexpected PDS template
number
> (46) may cause unexpected results. Please email met_help at ucar.edu.
> WARNING:
> run.sh: line 7: 38040 Segmentation fault      (core dumped)
> regrid_data_plane
> OR_ABI-L2-AODC-
M6_G16_s20191591001457_e20191591004230_c20191591005286.nc
> aqm.t06z.aot.f06.148.grib2 OBS_AOD_aqm_g16_20190608_10.nc -field
> 'name="AOD"; level="*";' -method UW_MEAN -v 1 -qc 0
>
> The files, script, and log can be found in
> https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
>
> I notice in 8.1 you no longer need the -coord option that 8.0 needs.
>
> The output nc file only contains la and lon but no mapping AOD.
>
> Than you for your help.
>
> Ho-Chun Huang



------------------------------------------------
Subject: error on regrid_data_plane
From: Howard Soh
Time: Tue Jun 11 13:17:19 2019

The GRIB2 file (aqm.t06z.aot.f06.148.grib2) as the target grid
contains product definition template #46. It's not supported by wgrib2
(v0.2.0.3 11/2015) and MET.

> wgrib2 aqm.t06z.aot.f06.148.grib2
code_table_4.5a: product definition template #46 not supported
code_table_4.5b: product definition template #46 not supported
1:0:d=2019060706:AOTK:no_level:5-6 hour ave fcst:

Would you use another GRIB2 file with the product definition template
#48 or others below?

https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table4-
0.shtml

Here are template ids (GRIB2) which MET supports:
   0: analysis or forecast
   1: individual ensemble forecast, control and perturbed, at a
horizontal level or in
   2: ensemble mean
   5: probability forecast
   8: accumulation forecast
   9: probabilistic accumulation forecast
  11: individual ensemble forecast, control and perturbed, at a
horizontal level or in
  12: derived accumulation forecast
  48: aerosol data

Cheers,
Howard

On Tue Jun 11 09:49:46 2019, ho-chun.huang at noaa.gov wrote:
> To Whom It May Concern:
>
> There is an error message on using the regrid_data_plane, please
help me to
> debug the root of error.
>
> DEBUG 1: Reading data file:
> OR_ABI-L2-AODC-
M6_G16_s20191591001457_e20191591004230_c20191591005286.nc
> WARNING:
> WARNING: MetGrib2DataFile::data_plane() -> unexpected PDS template
number
> (46) may cause unexpected results. Please email met_help at ucar.edu.
> WARNING:
> run.sh: line 7: 38040 Segmentation fault      (core dumped)
> regrid_data_plane
> OR_ABI-L2-AODC-
M6_G16_s20191591001457_e20191591004230_c20191591005286.nc
> aqm.t06z.aot.f06.148.grib2 OBS_AOD_aqm_g16_20190608_10.nc -field
> 'name="AOD"; level="*";' -method UW_MEAN -v 1 -qc 0
>
> The files, script, and log can be found in
> https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
>
> I notice in 8.1 you no longer need the -coord option that 8.0 needs.
>
> The output nc file only contains la and lon but no mapping AOD.
>
> Than you for your help.
>
> Ho-Chun Huang



------------------------------------------------
Subject: error on regrid_data_plane
From: Ho-Chun Huang - NOAA Affiliate
Time: Tue Jun 11 13:30:56 2019

Hi, Howard:

Thanks for the info.  I thought the table used in aqm aot output is
used by
WMO.  Let me consult with EMC AQ group and get back to you.  We may
have to
bring Tara in if it is necessary.

Can you also check the ngac grib2 file?  I encounter a similar
problem,
segmentation fault.  The ngac file are in the same ftp directory.

Thanks.

Ho-Chun

On Tue, Jun 11, 2019 at 3:17 PM Howard Soh via RT <met_help at ucar.edu>
wrote:

> The GRIB2 file (aqm.t06z.aot.f06.148.grib2) as the target grid
contains
> product definition template #46. It's not supported by wgrib2
(v0.2.0.3
> 11/2015) and MET.
>
> > wgrib2 aqm.t06z.aot.f06.148.grib2
> code_table_4.5a: product definition template #46 not supported
> code_table_4.5b: product definition template #46 not supported
> 1:0:d=2019060706:AOTK:no_level:5-6 hour ave fcst:
>
> Would you use another GRIB2 file with the product definition
template #48
> or others below?
>
> https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table4-
0.shtml
>
> Here are template ids (GRIB2) which MET supports:
>    0: analysis or forecast
>    1: individual ensemble forecast, control and perturbed, at a
horizontal
> level or in
>    2: ensemble mean
>    5: probability forecast
>    8: accumulation forecast
>    9: probabilistic accumulation forecast
>   11: individual ensemble forecast, control and perturbed, at a
horizontal
> level or in
>   12: derived accumulation forecast
>   48: aerosol data
>
> Cheers,
> Howard
>
> On Tue Jun 11 09:49:46 2019, ho-chun.huang at noaa.gov wrote:
> > To Whom It May Concern:
> >
> > There is an error message on using the regrid_data_plane, please
help me
> to
> > debug the root of error.
> >
> > DEBUG 1: Reading data file:
> > OR_ABI-L2-AODC-
M6_G16_s20191591001457_e20191591004230_c20191591005286.nc
> > WARNING:
> > WARNING: MetGrib2DataFile::data_plane() -> unexpected PDS template
number
> > (46) may cause unexpected results. Please email met_help at ucar.edu.
> > WARNING:
> > run.sh: line 7: 38040 Segmentation fault      (core dumped)
> > regrid_data_plane
> > OR_ABI-L2-AODC-
M6_G16_s20191591001457_e20191591004230_c20191591005286.nc
> > aqm.t06z.aot.f06.148.grib2 OBS_AOD_aqm_g16_20190608_10.nc -field
> > 'name="AOD"; level="*";' -method UW_MEAN -v 1 -qc 0
> >
> > The files, script, and log can be found in
> > https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
> >
> > I notice in 8.1 you no longer need the -coord option that 8.0
needs.
> >
> > The output nc file only contains la and lon but no mapping AOD.
> >
> > Than you for your help.
> >
> > Ho-Chun Huang
>
>
>
>

------------------------------------------------
Subject: error on regrid_data_plane
From: Ho-Chun Huang - NOAA Affiliate
Time: Tue Jun 11 13:49:01 2019

Hi, Howard:

Same situation,Segmentation fault, occurred to HYSPLIT model grib2
output.
Can you look into the issue of "Segmentation fault?"

Thank you for the help.

Ho-Chun

On Tue, Jun 11, 2019 at 3:30 PM Ho-Chun Huang - NOAA Affiliate <
ho-chun.huang at noaa.gov> wrote:

> Hi, Howard:
>
> Thanks for the info.  I thought the table used in aqm aot output is
used
> by WMO.  Let me consult with EMC AQ group and get back to you.  We
may have
> to bring Tara in if it is necessary.
>
> Can you also check the ngac grib2 file?  I encounter a similar
problem,
> segmentation fault.  The ngac file are in the same ftp directory.
>
> Thanks.
>
> Ho-Chun
>
> On Tue, Jun 11, 2019 at 3:17 PM Howard Soh via RT
<met_help at ucar.edu>
> wrote:
>
>> The GRIB2 file (aqm.t06z.aot.f06.148.grib2) as the target grid
contains
>> product definition template #46. It's not supported by wgrib2
(v0.2.0.3
>> 11/2015) and MET.
>>
>> > wgrib2 aqm.t06z.aot.f06.148.grib2
>> code_table_4.5a: product definition template #46 not supported
>> code_table_4.5b: product definition template #46 not supported
>> 1:0:d=2019060706:AOTK:no_level:5-6 hour ave fcst:
>>
>> Would you use another GRIB2 file with the product definition
template #48
>> or others below?
>>
>>
>>
https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table4-
0.shtml
>>
>> Here are template ids (GRIB2) which MET supports:
>>    0: analysis or forecast
>>    1: individual ensemble forecast, control and perturbed, at a
>> horizontal level or in
>>    2: ensemble mean
>>    5: probability forecast
>>    8: accumulation forecast
>>    9: probabilistic accumulation forecast
>>   11: individual ensemble forecast, control and perturbed, at a
>> horizontal level or in
>>   12: derived accumulation forecast
>>   48: aerosol data
>>
>> Cheers,
>> Howard
>>
>> On Tue Jun 11 09:49:46 2019, ho-chun.huang at noaa.gov wrote:
>> > To Whom It May Concern:
>> >
>> > There is an error message on using the regrid_data_plane, please
help
>> me to
>> > debug the root of error.
>> >
>> > DEBUG 1: Reading data file:
>> > OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
>> c20191591005286.nc
>> > WARNING:
>> > WARNING: MetGrib2DataFile::data_plane() -> unexpected PDS
template
>> number
>> > (46) may cause unexpected results. Please email
met_help at ucar.edu.
>> > WARNING:
>> > run.sh: line 7: 38040 Segmentation fault      (core dumped)
>> > regrid_data_plane
>> > OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
>> c20191591005286.nc
>> > aqm.t06z.aot.f06.148.grib2 OBS_AOD_aqm_g16_20190608_10.nc -field
>> > 'name="AOD"; level="*";' -method UW_MEAN -v 1 -qc 0
>> >
>> > The files, script, and log can be found in
>> > https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
>> >
>> > I notice in 8.1 you no longer need the -coord option that 8.0
needs.
>> >
>> > The output nc file only contains la and lon but no mapping AOD.
>> >
>> > Than you for your help.
>> >
>> > Ho-Chun Huang
>>
>>
>>
>>

------------------------------------------------
Subject: error on regrid_data_plane
From: John Halley Gotway
Time: Tue Jun 11 14:28:02 2019

Howard,

Tara and I were just talking and had 2 thoughts about this...

- If there's a missing GRIB1 or GRIB2 table, ideally the code would
print a useful error message and exit instead of segfaulting.

- If MET really is missing a GRIB2 table, let's try to add it for the
met-8.1.1 bugfix release.

Could you please add a GitHub issue for met-8.1.1 to fix the segfault
and update the GRIB2 tables as needed?

Thanks,
John

------------------------------------------------
Subject: error on regrid_data_plane
From: Howard Soh
Time: Tue Jun 11 16:50:56 2019

It works for me.

met-8.1/bin/regrid_data_plane goes-16/ABI/L2/CONUS/AOD/2019162/OR_ABI-
L2-AODC-M6_G16_s20191621821475_e20191621824248_c20191621827269.nc
~/data/GOES-16/ngac.t12z.aod_550nm.grib2
OBS_AOD_aqm_g16_20190608_10.nc  -field  'name="AOD"; level="*";'
-method UW_MEAN -v 1 -qc 0

The output was attached.

Cheers,
Howard


On Tue Jun 11 13:49:01 2019, ho-chun.huang at noaa.gov wrote:
> Hi, Howard:
>
> Same situation,Segmentation fault, occurred to HYSPLIT model grib2
> output.
> Can you look into the issue of "Segmentation fault?"
>
> Thank you for the help.
>
> Ho-Chun
>
> On Tue, Jun 11, 2019 at 3:30 PM Ho-Chun Huang - NOAA Affiliate <
> ho-chun.huang at noaa.gov> wrote:
>
> > Hi, Howard:
> >
> > Thanks for the info.  I thought the table used in aqm aot output
is
> > used
> > by WMO.  Let me consult with EMC AQ group and get back to you.  We
> > may have
> > to bring Tara in if it is necessary.
> >
> > Can you also check the ngac grib2 file?  I encounter a similar
> > problem,
> > segmentation fault.  The ngac file are in the same ftp directory.
> >
> > Thanks.
> >
> > Ho-Chun
> >
> > On Tue, Jun 11, 2019 at 3:17 PM Howard Soh via RT
<met_help at ucar.edu>
> > wrote:
> >
> >> The GRIB2 file (aqm.t06z.aot.f06.148.grib2) as the target grid
> >> contains
> >> product definition template #46. It's not supported by wgrib2
> >> (v0.2.0.3
> >> 11/2015) and MET.
> >>
> >> > wgrib2 aqm.t06z.aot.f06.148.grib2
> >> code_table_4.5a: product definition template #46 not supported
> >> code_table_4.5b: product definition template #46 not supported
> >> 1:0:d=2019060706:AOTK:no_level:5-6 hour ave fcst:
> >>
> >> Would you use another GRIB2 file with the product definition
> >> template #48
> >> or others below?
> >>
> >>
> >>
https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table4-
> >> 0.shtml
> >>
> >> Here are template ids (GRIB2) which MET supports:
> >>    0: analysis or forecast
> >>    1: individual ensemble forecast, control and perturbed, at a
> >> horizontal level or in
> >>    2: ensemble mean
> >>    5: probability forecast
> >>    8: accumulation forecast
> >>    9: probabilistic accumulation forecast
> >>   11: individual ensemble forecast, control and perturbed, at a
> >> horizontal level or in
> >>   12: derived accumulation forecast
> >>   48: aerosol data
> >>
> >> Cheers,
> >> Howard
> >>
> >> On Tue Jun 11 09:49:46 2019, ho-chun.huang at noaa.gov wrote:
> >> > To Whom It May Concern:
> >> >
> >> > There is an error message on using the regrid_data_plane,
please
> >> > help
> >> me to
> >> > debug the root of error.
> >> >
> >> > DEBUG 1: Reading data file:
> >> > OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> >> c20191591005286.nc
> >> > WARNING:
> >> > WARNING: MetGrib2DataFile::data_plane() -> unexpected PDS
template
> >> number
> >> > (46) may cause unexpected results. Please email
met_help at ucar.edu.
> >> > WARNING:
> >> > run.sh: line 7: 38040 Segmentation fault      (core dumped)
> >> > regrid_data_plane
> >> > OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> >> c20191591005286.nc
> >> > aqm.t06z.aot.f06.148.grib2 OBS_AOD_aqm_g16_20190608_10.nc
-field
> >> > 'name="AOD"; level="*";' -method UW_MEAN -v 1 -qc 0
> >> >
> >> > The files, script, and log can be found in
> >> > https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
> >> >
> >> > I notice in 8.1 you no longer need the -coord option that 8.0
> >> > needs.
> >> >
> >> > The output nc file only contains la and lon but no mapping AOD.
> >> >
> >> > Than you for your help.
> >> >
> >> > Ho-Chun Huang
> >>
> >>
> >>
> >>



------------------------------------------------
Subject: error on regrid_data_plane
From: Ho-Chun Huang - NOAA Affiliate
Time: Wed Jun 12 06:03:33 2019

Hi, Howard:

Did you run the command on NCAR's machines?  We might have to bring
John in
because there is a possibility that the MET v8,.1 built on WCOSS/Gyre
is
not right, at least for regrid_data_plane.  Do you have any suggestion
on
the environment setting I should include?  I do not think I can figure
it
out what went wrong on the same run script worked for you.

Ho-Chun

On Tue, Jun 11, 2019 at 6:50 PM Howard Soh via RT <met_help at ucar.edu>
wrote:

> It works for me.
>
> met-8.1/bin/regrid_data_plane
> goes-16/ABI/L2/CONUS/AOD/2019162/OR_ABI-L2-AODC-
M6_G16_s20191621821475_e20191621824248_
> c20191621827269.nc ~/data/GOES-16/ngac.t12z.aod_550nm.grib2
> OBS_AOD_aqm_g16_20190608_10.nc  -field  'name="AOD"; level="*";'
-method
> UW_MEAN -v 1 -qc 0
>
> The output was attached.
>
> Cheers,
> Howard
>
>
> On Tue Jun 11 13:49:01 2019, ho-chun.huang at noaa.gov wrote:
> > Hi, Howard:
> >
> > Same situation,Segmentation fault, occurred to HYSPLIT model grib2
> > output.
> > Can you look into the issue of "Segmentation fault?"
> >
> > Thank you for the help.
> >
> > Ho-Chun
> >
> > On Tue, Jun 11, 2019 at 3:30 PM Ho-Chun Huang - NOAA Affiliate <
> > ho-chun.huang at noaa.gov> wrote:
> >
> > > Hi, Howard:
> > >
> > > Thanks for the info.  I thought the table used in aqm aot output
is
> > > used
> > > by WMO.  Let me consult with EMC AQ group and get back to you.
We
> > > may have
> > > to bring Tara in if it is necessary.
> > >
> > > Can you also check the ngac grib2 file?  I encounter a similar
> > > problem,
> > > segmentation fault.  The ngac file are in the same ftp
directory.
> > >
> > > Thanks.
> > >
> > > Ho-Chun
> > >
> > > On Tue, Jun 11, 2019 at 3:17 PM Howard Soh via RT
<met_help at ucar.edu>
> > > wrote:
> > >
> > >> The GRIB2 file (aqm.t06z.aot.f06.148.grib2) as the target grid
> > >> contains
> > >> product definition template #46. It's not supported by wgrib2
> > >> (v0.2.0.3
> > >> 11/2015) and MET.
> > >>
> > >> > wgrib2 aqm.t06z.aot.f06.148.grib2
> > >> code_table_4.5a: product definition template #46 not supported
> > >> code_table_4.5b: product definition template #46 not supported
> > >> 1:0:d=2019060706:AOTK:no_level:5-6 hour ave fcst:
> > >>
> > >> Would you use another GRIB2 file with the product definition
> > >> template #48
> > >> or others below?
> > >>
> > >>
> > >>
https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table4-
> > >> 0.shtml
> > >>
> > >> Here are template ids (GRIB2) which MET supports:
> > >>    0: analysis or forecast
> > >>    1: individual ensemble forecast, control and perturbed, at a
> > >> horizontal level or in
> > >>    2: ensemble mean
> > >>    5: probability forecast
> > >>    8: accumulation forecast
> > >>    9: probabilistic accumulation forecast
> > >>   11: individual ensemble forecast, control and perturbed, at a
> > >> horizontal level or in
> > >>   12: derived accumulation forecast
> > >>   48: aerosol data
> > >>
> > >> Cheers,
> > >> Howard
> > >>
> > >> On Tue Jun 11 09:49:46 2019, ho-chun.huang at noaa.gov wrote:
> > >> > To Whom It May Concern:
> > >> >
> > >> > There is an error message on using the regrid_data_plane,
please
> > >> > help
> > >> me to
> > >> > debug the root of error.
> > >> >
> > >> > DEBUG 1: Reading data file:
> > >> > OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> > >> c20191591005286.nc
> > >> > WARNING:
> > >> > WARNING: MetGrib2DataFile::data_plane() -> unexpected PDS
template
> > >> number
> > >> > (46) may cause unexpected results. Please email
met_help at ucar.edu.
> > >> > WARNING:
> > >> > run.sh: line 7: 38040 Segmentation fault      (core dumped)
> > >> > regrid_data_plane
> > >> > OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> > >> c20191591005286.nc
> > >> > aqm.t06z.aot.f06.148.grib2 OBS_AOD_aqm_g16_20190608_10.nc
-field
> > >> > 'name="AOD"; level="*";' -method UW_MEAN -v 1 -qc 0
> > >> >
> > >> > The files, script, and log can be found in
> > >> > https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
> > >> >
> > >> > I notice in 8.1 you no longer need the -coord option that 8.0
> > >> > needs.
> > >> >
> > >> > The output nc file only contains la and lon but no mapping
AOD.
> > >> >
> > >> > Than you for your help.
> > >> >
> > >> > Ho-Chun Huang
> > >>
> > >>
> > >>
> > >>
>
>
>
>

------------------------------------------------
Subject: error on regrid_data_plane
From: Ho-Chun Huang - NOAA Affiliate
Time: Wed Jun 12 08:43:03 2019

Hi, Howard:

There are several versions on WCOSS of wgrib2, from loading module
grib_util/v1.0.0(default) to  v1.1.0.

g20a1: > module avail grib_util

-----------------------------------------------------------
/nwprod2/modulefiles
-----------------------------------------------------------
grib_util/v1.0.0(default) grib_util/v1.0.2          grib_util/v1.0.4
   grib_util/v1.0.6
grib_util/v1.0.1          grib_util/v1.0.3          grib_util/v1.0.5
   grib_util/v1.1.0

After using different version of wgrib2, I found grib_util/v1.0.4 and
above
can read CMAQ AOT template #46 (see below for more detail).

Does MET v8.1 uses older version of wgrib2?  The version number of
wgrib2
is v0.1.9.6a 5/2012 and v0.2.0.7 12/2017 for grib_util/v1.0.0 and
grib_util/v1.1.0, respectively.
(using /nwprod2/grib_util.v1.0.0/exec/wgrib2 -version)

Can MET v8.1 built on WCOSS using newer version of wgrib2 to solve
current
issue?

Ho-Chun

p.s.

g20a1:~ > /nwprod2/grib_util.v1.0.3/exec/wgrib2 -V
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
code_table_4.5a: product definition template #46 not supported
code_table_4.5b: product definition template #46 not supported
1:0:vt=2019061200:no_level:11-12 hour ave fcst:AOTK Aerosol Optical
Thickness [Numeric]:
    ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
    grid_template=30:winds(grid):
        Lambert Conformal: (442 x 265) input WE:SN output WE:SN res 8
        Lat1 21.821000 Lon1 239.372000 LoV 263.000000
        LatD 33.000000 Latin1 33.000000 Latin2 45.000000
        LatSP 0.000000 LonSP 0.000000
        North Pole (442 x 265) Dx 12000.000000 m Dy 12000.000000 m
mode 8

g20a1:~ > /nwprod2/grib_util.v1.0.4/exec/wgrib2 -V
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
1:0:vt=2019061200:1 sigma level:11-12 hour ave fcst:AOTK Aerosol
Optical
Thickness [Numeric]:aerosol=Ozone
    ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
    grid_template=30:winds(grid):
        Lambert Conformal: (442 x 265) input WE:SN output WE:SN res 8
        Lat1 21.821000 Lon1 239.372000 LoV 263.000000
        LatD 33.000000 Latin1 33.000000 Latin2 45.000000
        LatSP 0.000000 LonSP 0.000000
        North Pole (442 x 265) Dx 12000.000000 m Dy 12000.000000 m
mode 8

g20a1:~ > /nwprod2/grib_util.v1.1.0/exec/wgrib2 -V
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
1:0:vt=2019061200:1 sigma level:11-12 hour ave fcst:AOTK Aerosol
Optical
Thickness [Numeric]:aerosol=Ozone:aerosol_size <0
    ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
    grid_template=30:winds(grid):
        Lambert Conformal: (442 x 265) input WE:SN output WE:SN res 8
        Lat1 21.821000 Lon1 239.372000 LoV 263.000000
        LatD 33.000000 Latin1 33.000000 Latin2 45.000000
        LatSP 0.000000 LonSP 0.000000
        North Pole (442 x 265) Dx 12000.000000 m Dy 12000.000000 m
mode 8


On Wed, Jun 12, 2019 at 8:03 AM Ho-Chun Huang - NOAA Affiliate <
ho-chun.huang at noaa.gov> wrote:

> Hi, Howard:
>
> Did you run the command on NCAR's machines?  We might have to bring
John
> in because there is a possibility that the MET v8,.1 built on
WCOSS/Gyre is
> not right, at least for regrid_data_plane.  Do you have any
suggestion on
> the environment setting I should include?  I do not think I can
figure it
> out what went wrong on the same run script worked for you.
>
> Ho-Chun
>
> On Tue, Jun 11, 2019 at 6:50 PM Howard Soh via RT
<met_help at ucar.edu>
> wrote:
>
>> It works for me.
>>
>> met-8.1/bin/regrid_data_plane
>> goes-16/ABI/L2/CONUS/AOD/2019162/OR_ABI-L2-AODC-
M6_G16_s20191621821475_e20191621824248_
>> c20191621827269.nc ~/data/GOES-16/ngac.t12z.aod_550nm.grib2
>> OBS_AOD_aqm_g16_20190608_10.nc  -field  'name="AOD"; level="*";'
-method
>> UW_MEAN -v 1 -qc 0
>>
>> The output was attached.
>>
>> Cheers,
>> Howard
>>
>>
>> On Tue Jun 11 13:49:01 2019, ho-chun.huang at noaa.gov wrote:
>> > Hi, Howard:
>> >
>> > Same situation,Segmentation fault, occurred to HYSPLIT model
grib2
>> > output.
>> > Can you look into the issue of "Segmentation fault?"
>> >
>> > Thank you for the help.
>> >
>> > Ho-Chun
>> >
>> > On Tue, Jun 11, 2019 at 3:30 PM Ho-Chun Huang - NOAA Affiliate <
>> > ho-chun.huang at noaa.gov> wrote:
>> >
>> > > Hi, Howard:
>> > >
>> > > Thanks for the info.  I thought the table used in aqm aot
output is
>> > > used
>> > > by WMO.  Let me consult with EMC AQ group and get back to you.
We
>> > > may have
>> > > to bring Tara in if it is necessary.
>> > >
>> > > Can you also check the ngac grib2 file?  I encounter a similar
>> > > problem,
>> > > segmentation fault.  The ngac file are in the same ftp
directory.
>> > >
>> > > Thanks.
>> > >
>> > > Ho-Chun
>> > >
>> > > On Tue, Jun 11, 2019 at 3:17 PM Howard Soh via RT
<met_help at ucar.edu>
>> > > wrote:
>> > >
>> > >> The GRIB2 file (aqm.t06z.aot.f06.148.grib2) as the target grid
>> > >> contains
>> > >> product definition template #46. It's not supported by wgrib2
>> > >> (v0.2.0.3
>> > >> 11/2015) and MET.
>> > >>
>> > >> > wgrib2 aqm.t06z.aot.f06.148.grib2
>> > >> code_table_4.5a: product definition template #46 not supported
>> > >> code_table_4.5b: product definition template #46 not supported
>> > >> 1:0:d=2019060706:AOTK:no_level:5-6 hour ave fcst:
>> > >>
>> > >> Would you use another GRIB2 file with the product definition
>> > >> template #48
>> > >> or others below?
>> > >>
>> > >>
>> > >>
https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table4-
>> > >> 0.shtml
>> > >>
>> > >> Here are template ids (GRIB2) which MET supports:
>> > >>    0: analysis or forecast
>> > >>    1: individual ensemble forecast, control and perturbed, at
a
>> > >> horizontal level or in
>> > >>    2: ensemble mean
>> > >>    5: probability forecast
>> > >>    8: accumulation forecast
>> > >>    9: probabilistic accumulation forecast
>> > >>   11: individual ensemble forecast, control and perturbed, at
a
>> > >> horizontal level or in
>> > >>   12: derived accumulation forecast
>> > >>   48: aerosol data
>> > >>
>> > >> Cheers,
>> > >> Howard
>> > >>
>> > >> On Tue Jun 11 09:49:46 2019, ho-chun.huang at noaa.gov wrote:
>> > >> > To Whom It May Concern:
>> > >> >
>> > >> > There is an error message on using the regrid_data_plane,
please
>> > >> > help
>> > >> me to
>> > >> > debug the root of error.
>> > >> >
>> > >> > DEBUG 1: Reading data file:
>> > >> > OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
>> > >> c20191591005286.nc
>> > >> > WARNING:
>> > >> > WARNING: MetGrib2DataFile::data_plane() -> unexpected PDS
template
>> > >> number
>> > >> > (46) may cause unexpected results. Please email
met_help at ucar.edu.
>> > >> > WARNING:
>> > >> > run.sh: line 7: 38040 Segmentation fault      (core dumped)
>> > >> > regrid_data_plane
>> > >> > OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
>> > >> c20191591005286.nc
>> > >> > aqm.t06z.aot.f06.148.grib2 OBS_AOD_aqm_g16_20190608_10.nc
-field
>> > >> > 'name="AOD"; level="*";' -method UW_MEAN -v 1 -qc 0
>> > >> >
>> > >> > The files, script, and log can be found in
>> > >> > https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
>> > >> >
>> > >> > I notice in 8.1 you no longer need the -coord option that
8.0
>> > >> > needs.
>> > >> >
>> > >> > The output nc file only contains la and lon but no mapping
AOD.
>> > >> >
>> > >> > Than you for your help.
>> > >> >
>> > >> > Ho-Chun Huang
>> > >>
>> > >>
>> > >>
>> > >>
>>
>>
>>
>>

------------------------------------------------
Subject: error on regrid_data_plane
From: Howard Soh
Time: Wed Jun 12 08:57:33 2019

There is no relationship between wgrib2 and MET.
wgrib2 was an example which does not support the template ID 46. We
did not have the GRIB2 file with template id 46. MET gives an warning.
MET will stop if the template ID from the GRIB2 is not supported
instead of continuing as a short term solution. MET will support
template ID 46 as the long term solution.

Cheers,
Howard

On Wed Jun 12 08:43:03 2019, ho-chun.huang at noaa.gov wrote:
> Hi, Howard:
>
> There are several versions on WCOSS of wgrib2, from loading module
> grib_util/v1.0.0(default) to  v1.1.0.
>
> g20a1: > module avail grib_util
>
> -----------------------------------------------------------
> /nwprod2/modulefiles
> -----------------------------------------------------------
> grib_util/v1.0.0(default) grib_util/v1.0.2          grib_util/v1.0.4
>    grib_util/v1.0.6
> grib_util/v1.0.1          grib_util/v1.0.3          grib_util/v1.0.5
>    grib_util/v1.1.0
>
> After using different version of wgrib2, I found grib_util/v1.0.4
and
> above
> can read CMAQ AOT template #46 (see below for more detail).
>
> Does MET v8.1 uses older version of wgrib2?  The version number of
> wgrib2
> is v0.1.9.6a 5/2012 and v0.2.0.7 12/2017 for grib_util/v1.0.0 and
> grib_util/v1.1.0, respectively.
> (using /nwprod2/grib_util.v1.0.0/exec/wgrib2 -version)
>
> Can MET v8.1 built on WCOSS using newer version of wgrib2 to solve
> current
> issue?
>
> Ho-Chun
>
> p.s.
>
> g20a1:~ > /nwprod2/grib_util.v1.0.3/exec/wgrib2 -V
>
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> code_table_4.5a: product definition template #46 not supported
> code_table_4.5b: product definition template #46 not supported
> 1:0:vt=2019061200:no_level:11-12 hour ave fcst:AOTK Aerosol Optical
> Thickness [Numeric]:
>     ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
>     grid_template=30:winds(grid):
>         Lambert Conformal: (442 x 265) input WE:SN output WE:SN res
8
>         Lat1 21.821000 Lon1 239.372000 LoV 263.000000
>         LatD 33.000000 Latin1 33.000000 Latin2 45.000000
>         LatSP 0.000000 LonSP 0.000000
>         North Pole (442 x 265) Dx 12000.000000 m Dy 12000.000000 m
> mode 8
>
> g20a1:~ > /nwprod2/grib_util.v1.0.4/exec/wgrib2 -V
>
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> 1:0:vt=2019061200:1 sigma level:11-12 hour ave fcst:AOTK Aerosol
> Optical
> Thickness [Numeric]:aerosol=Ozone
>     ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
>     grid_template=30:winds(grid):
>         Lambert Conformal: (442 x 265) input WE:SN output WE:SN res
8
>         Lat1 21.821000 Lon1 239.372000 LoV 263.000000
>         LatD 33.000000 Latin1 33.000000 Latin2 45.000000
>         LatSP 0.000000 LonSP 0.000000
>         North Pole (442 x 265) Dx 12000.000000 m Dy 12000.000000 m
> mode 8
>
> g20a1:~ > /nwprod2/grib_util.v1.1.0/exec/wgrib2 -V
>
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> 1:0:vt=2019061200:1 sigma level:11-12 hour ave fcst:AOTK Aerosol
> Optical
> Thickness [Numeric]:aerosol=Ozone:aerosol_size <0
>     ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
>     grid_template=30:winds(grid):
>         Lambert Conformal: (442 x 265) input WE:SN output WE:SN res
8
>         Lat1 21.821000 Lon1 239.372000 LoV 263.000000
>         LatD 33.000000 Latin1 33.000000 Latin2 45.000000
>         LatSP 0.000000 LonSP 0.000000
>         North Pole (442 x 265) Dx 12000.000000 m Dy 12000.000000 m
> mode 8
>
>
> On Wed, Jun 12, 2019 at 8:03 AM Ho-Chun Huang - NOAA Affiliate <
> ho-chun.huang at noaa.gov> wrote:
>
> > Hi, Howard:
> >
> > Did you run the command on NCAR's machines?  We might have to
bring
> > John
> > in because there is a possibility that the MET v8,.1 built on
> > WCOSS/Gyre is
> > not right, at least for regrid_data_plane.  Do you have any
> > suggestion on
> > the environment setting I should include?  I do not think I can
> > figure it
> > out what went wrong on the same run script worked for you.
> >
> > Ho-Chun
> >
> > On Tue, Jun 11, 2019 at 6:50 PM Howard Soh via RT
<met_help at ucar.edu>
> > wrote:
> >
> >> It works for me.
> >>
> >> met-8.1/bin/regrid_data_plane
> >> goes-16/ABI/L2/CONUS/AOD/2019162/OR_ABI-L2-AODC-
> >> M6_G16_s20191621821475_e20191621824248_
> >> c20191621827269.nc ~/data/GOES-16/ngac.t12z.aod_550nm.grib2
> >> OBS_AOD_aqm_g16_20190608_10.nc  -field  'name="AOD"; level="*";'
> >> -method
> >> UW_MEAN -v 1 -qc 0
> >>
> >> The output was attached.
> >>
> >> Cheers,
> >> Howard
> >>
> >>
> >> On Tue Jun 11 13:49:01 2019, ho-chun.huang at noaa.gov wrote:
> >> > Hi, Howard:
> >> >
> >> > Same situation,Segmentation fault, occurred to HYSPLIT model
grib2
> >> > output.
> >> > Can you look into the issue of "Segmentation fault?"
> >> >
> >> > Thank you for the help.
> >> >
> >> > Ho-Chun
> >> >
> >> > On Tue, Jun 11, 2019 at 3:30 PM Ho-Chun Huang - NOAA Affiliate
<
> >> > ho-chun.huang at noaa.gov> wrote:
> >> >
> >> > > Hi, Howard:
> >> > >
> >> > > Thanks for the info.  I thought the table used in aqm aot
output
> >> > > is
> >> > > used
> >> > > by WMO.  Let me consult with EMC AQ group and get back to
you.
> >> > > We
> >> > > may have
> >> > > to bring Tara in if it is necessary.
> >> > >
> >> > > Can you also check the ngac grib2 file?  I encounter a
similar
> >> > > problem,
> >> > > segmentation fault.  The ngac file are in the same ftp
> >> > > directory.
> >> > >
> >> > > Thanks.
> >> > >
> >> > > Ho-Chun
> >> > >
> >> > > On Tue, Jun 11, 2019 at 3:17 PM Howard Soh via RT
> >> > > <met_help at ucar.edu>
> >> > > wrote:
> >> > >
> >> > >> The GRIB2 file (aqm.t06z.aot.f06.148.grib2) as the target
grid
> >> > >> contains
> >> > >> product definition template #46. It's not supported by
wgrib2
> >> > >> (v0.2.0.3
> >> > >> 11/2015) and MET.
> >> > >>
> >> > >> > wgrib2 aqm.t06z.aot.f06.148.grib2
> >> > >> code_table_4.5a: product definition template #46 not
supported
> >> > >> code_table_4.5b: product definition template #46 not
supported
> >> > >> 1:0:d=2019060706:AOTK:no_level:5-6 hour ave fcst:
> >> > >>
> >> > >> Would you use another GRIB2 file with the product definition
> >> > >> template #48
> >> > >> or others below?
> >> > >>
> >> > >>
> >> > >>
https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table4-
> >> > >> 0.shtml
> >> > >>
> >> > >> Here are template ids (GRIB2) which MET supports:
> >> > >>    0: analysis or forecast
> >> > >>    1: individual ensemble forecast, control and perturbed,
at a
> >> > >> horizontal level or in
> >> > >>    2: ensemble mean
> >> > >>    5: probability forecast
> >> > >>    8: accumulation forecast
> >> > >>    9: probabilistic accumulation forecast
> >> > >>   11: individual ensemble forecast, control and perturbed,
at a
> >> > >> horizontal level or in
> >> > >>   12: derived accumulation forecast
> >> > >>   48: aerosol data
> >> > >>
> >> > >> Cheers,
> >> > >> Howard
> >> > >>
> >> > >> On Tue Jun 11 09:49:46 2019, ho-chun.huang at noaa.gov wrote:
> >> > >> > To Whom It May Concern:
> >> > >> >
> >> > >> > There is an error message on using the regrid_data_plane,
> >> > >> > please
> >> > >> > help
> >> > >> me to
> >> > >> > debug the root of error.
> >> > >> >
> >> > >> > DEBUG 1: Reading data file:
> >> > >> > OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> >> > >> c20191591005286.nc
> >> > >> > WARNING:
> >> > >> > WARNING: MetGrib2DataFile::data_plane() -> unexpected PDS
> >> > >> > template
> >> > >> number
> >> > >> > (46) may cause unexpected results. Please email
> >> > >> > met_help at ucar.edu.
> >> > >> > WARNING:
> >> > >> > run.sh: line 7: 38040 Segmentation fault      (core
dumped)
> >> > >> > regrid_data_plane
> >> > >> > OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> >> > >> c20191591005286.nc
> >> > >> > aqm.t06z.aot.f06.148.grib2 OBS_AOD_aqm_g16_20190608_10.nc
> >> > >> > -field
> >> > >> > 'name="AOD"; level="*";' -method UW_MEAN -v 1 -qc 0
> >> > >> >
> >> > >> > The files, script, and log can be found in
> >> > >> > https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
> >> > >> >
> >> > >> > I notice in 8.1 you no longer need the -coord option that
8.0
> >> > >> > needs.
> >> > >> >
> >> > >> > The output nc file only contains la and lon but no mapping
> >> > >> > AOD.
> >> > >> >
> >> > >> > Than you for your help.
> >> > >> >
> >> > >> > Ho-Chun Huang
> >> > >>
> >> > >>
> >> > >>
> >> > >>
> >>
> >>
> >>
> >>



------------------------------------------------
Subject: error on regrid_data_plane
From: Ho-Chun Huang - NOAA Affiliate
Time: Wed Jun 12 09:02:01 2019

Howard,

Thanks.  I will consult with EMC management whether to request adding
support of new template in MET.

Ho-Chun

On Wed, Jun 12, 2019 at 10:57 AM Howard Soh via RT <met_help at ucar.edu>
wrote:

> There is no relationship between wgrib2 and MET.
> wgrib2 was an example which does not support the template ID 46. We
did
> not have the GRIB2 file with template id 46. MET gives an warning.
MET will
> stop if the template ID from the GRIB2 is not supported instead of
> continuing as a short term solution. MET will support template ID 46
as the
> long term solution.
>
> Cheers,
> Howard
>
> On Wed Jun 12 08:43:03 2019, ho-chun.huang at noaa.gov wrote:
> > Hi, Howard:
> >
> > There are several versions on WCOSS of wgrib2, from loading module
> > grib_util/v1.0.0(default) to  v1.1.0.
> >
> > g20a1: > module avail grib_util
> >
> > -----------------------------------------------------------
> > /nwprod2/modulefiles
> > -----------------------------------------------------------
> > grib_util/v1.0.0(default) grib_util/v1.0.2
grib_util/v1.0.4
> >    grib_util/v1.0.6
> > grib_util/v1.0.1          grib_util/v1.0.3
grib_util/v1.0.5
> >    grib_util/v1.1.0
> >
> > After using different version of wgrib2, I found grib_util/v1.0.4
and
> > above
> > can read CMAQ AOT template #46 (see below for more detail).
> >
> > Does MET v8.1 uses older version of wgrib2?  The version number of
> > wgrib2
> > is v0.1.9.6a 5/2012 and v0.2.0.7 12/2017 for grib_util/v1.0.0 and
> > grib_util/v1.1.0, respectively.
> > (using /nwprod2/grib_util.v1.0.0/exec/wgrib2 -version)
> >
> > Can MET v8.1 built on WCOSS using newer version of wgrib2 to solve
> > current
> > issue?
> >
> > Ho-Chun
> >
> > p.s.
> >
> > g20a1:~ > /nwprod2/grib_util.v1.0.3/exec/wgrib2 -V
> >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > code_table_4.5a: product definition template #46 not supported
> > code_table_4.5b: product definition template #46 not supported
> > 1:0:vt=2019061200:no_level:11-12 hour ave fcst:AOTK Aerosol
Optical
> > Thickness [Numeric]:
> >     ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> >     grid_template=30:winds(grid):
> >         Lambert Conformal: (442 x 265) input WE:SN output WE:SN
res 8
> >         Lat1 21.821000 Lon1 239.372000 LoV 263.000000
> >         LatD 33.000000 Latin1 33.000000 Latin2 45.000000
> >         LatSP 0.000000 LonSP 0.000000
> >         North Pole (442 x 265) Dx 12000.000000 m Dy 12000.000000 m
> > mode 8
> >
> > g20a1:~ > /nwprod2/grib_util.v1.0.4/exec/wgrib2 -V
> >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > 1:0:vt=2019061200:1 sigma level:11-12 hour ave fcst:AOTK Aerosol
> > Optical
> > Thickness [Numeric]:aerosol=Ozone
> >     ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> >     grid_template=30:winds(grid):
> >         Lambert Conformal: (442 x 265) input WE:SN output WE:SN
res 8
> >         Lat1 21.821000 Lon1 239.372000 LoV 263.000000
> >         LatD 33.000000 Latin1 33.000000 Latin2 45.000000
> >         LatSP 0.000000 LonSP 0.000000
> >         North Pole (442 x 265) Dx 12000.000000 m Dy 12000.000000 m
> > mode 8
> >
> > g20a1:~ > /nwprod2/grib_util.v1.1.0/exec/wgrib2 -V
> >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > 1:0:vt=2019061200:1 sigma level:11-12 hour ave fcst:AOTK Aerosol
> > Optical
> > Thickness [Numeric]:aerosol=Ozone:aerosol_size <0
> >     ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> >     grid_template=30:winds(grid):
> >         Lambert Conformal: (442 x 265) input WE:SN output WE:SN
res 8
> >         Lat1 21.821000 Lon1 239.372000 LoV 263.000000
> >         LatD 33.000000 Latin1 33.000000 Latin2 45.000000
> >         LatSP 0.000000 LonSP 0.000000
> >         North Pole (442 x 265) Dx 12000.000000 m Dy 12000.000000 m
> > mode 8
> >
> >
> > On Wed, Jun 12, 2019 at 8:03 AM Ho-Chun Huang - NOAA Affiliate <
> > ho-chun.huang at noaa.gov> wrote:
> >
> > > Hi, Howard:
> > >
> > > Did you run the command on NCAR's machines?  We might have to
bring
> > > John
> > > in because there is a possibility that the MET v8,.1 built on
> > > WCOSS/Gyre is
> > > not right, at least for regrid_data_plane.  Do you have any
> > > suggestion on
> > > the environment setting I should include?  I do not think I can
> > > figure it
> > > out what went wrong on the same run script worked for you.
> > >
> > > Ho-Chun
> > >
> > > On Tue, Jun 11, 2019 at 6:50 PM Howard Soh via RT
<met_help at ucar.edu>
> > > wrote:
> > >
> > >> It works for me.
> > >>
> > >> met-8.1/bin/regrid_data_plane
> > >> goes-16/ABI/L2/CONUS/AOD/2019162/OR_ABI-L2-AODC-
> > >> M6_G16_s20191621821475_e20191621824248_
> > >> c20191621827269.nc ~/data/GOES-16/ngac.t12z.aod_550nm.grib2
> > >> OBS_AOD_aqm_g16_20190608_10.nc  -field  'name="AOD";
level="*";'
> > >> -method
> > >> UW_MEAN -v 1 -qc 0
> > >>
> > >> The output was attached.
> > >>
> > >> Cheers,
> > >> Howard
> > >>
> > >>
> > >> On Tue Jun 11 13:49:01 2019, ho-chun.huang at noaa.gov wrote:
> > >> > Hi, Howard:
> > >> >
> > >> > Same situation,Segmentation fault, occurred to HYSPLIT model
grib2
> > >> > output.
> > >> > Can you look into the issue of "Segmentation fault?"
> > >> >
> > >> > Thank you for the help.
> > >> >
> > >> > Ho-Chun
> > >> >
> > >> > On Tue, Jun 11, 2019 at 3:30 PM Ho-Chun Huang - NOAA
Affiliate <
> > >> > ho-chun.huang at noaa.gov> wrote:
> > >> >
> > >> > > Hi, Howard:
> > >> > >
> > >> > > Thanks for the info.  I thought the table used in aqm aot
output
> > >> > > is
> > >> > > used
> > >> > > by WMO.  Let me consult with EMC AQ group and get back to
you.
> > >> > > We
> > >> > > may have
> > >> > > to bring Tara in if it is necessary.
> > >> > >
> > >> > > Can you also check the ngac grib2 file?  I encounter a
similar
> > >> > > problem,
> > >> > > segmentation fault.  The ngac file are in the same ftp
> > >> > > directory.
> > >> > >
> > >> > > Thanks.
> > >> > >
> > >> > > Ho-Chun
> > >> > >
> > >> > > On Tue, Jun 11, 2019 at 3:17 PM Howard Soh via RT
> > >> > > <met_help at ucar.edu>
> > >> > > wrote:
> > >> > >
> > >> > >> The GRIB2 file (aqm.t06z.aot.f06.148.grib2) as the target
grid
> > >> > >> contains
> > >> > >> product definition template #46. It's not supported by
wgrib2
> > >> > >> (v0.2.0.3
> > >> > >> 11/2015) and MET.
> > >> > >>
> > >> > >> > wgrib2 aqm.t06z.aot.f06.148.grib2
> > >> > >> code_table_4.5a: product definition template #46 not
supported
> > >> > >> code_table_4.5b: product definition template #46 not
supported
> > >> > >> 1:0:d=2019060706:AOTK:no_level:5-6 hour ave fcst:
> > >> > >>
> > >> > >> Would you use another GRIB2 file with the product
definition
> > >> > >> template #48
> > >> > >> or others below?
> > >> > >>
> > >> > >>
> > >> > >>
> https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table4-
> > >> > >> 0.shtml
> > >> > >>
> > >> > >> Here are template ids (GRIB2) which MET supports:
> > >> > >>    0: analysis or forecast
> > >> > >>    1: individual ensemble forecast, control and perturbed,
at a
> > >> > >> horizontal level or in
> > >> > >>    2: ensemble mean
> > >> > >>    5: probability forecast
> > >> > >>    8: accumulation forecast
> > >> > >>    9: probabilistic accumulation forecast
> > >> > >>   11: individual ensemble forecast, control and perturbed,
at a
> > >> > >> horizontal level or in
> > >> > >>   12: derived accumulation forecast
> > >> > >>   48: aerosol data
> > >> > >>
> > >> > >> Cheers,
> > >> > >> Howard
> > >> > >>
> > >> > >> On Tue Jun 11 09:49:46 2019, ho-chun.huang at noaa.gov wrote:
> > >> > >> > To Whom It May Concern:
> > >> > >> >
> > >> > >> > There is an error message on using the
regrid_data_plane,
> > >> > >> > please
> > >> > >> > help
> > >> > >> me to
> > >> > >> > debug the root of error.
> > >> > >> >
> > >> > >> > DEBUG 1: Reading data file:
> > >> > >> > OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> > >> > >> c20191591005286.nc
> > >> > >> > WARNING:
> > >> > >> > WARNING: MetGrib2DataFile::data_plane() -> unexpected
PDS
> > >> > >> > template
> > >> > >> number
> > >> > >> > (46) may cause unexpected results. Please email
> > >> > >> > met_help at ucar.edu.
> > >> > >> > WARNING:
> > >> > >> > run.sh: line 7: 38040 Segmentation fault      (core
dumped)
> > >> > >> > regrid_data_plane
> > >> > >> > OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> > >> > >> c20191591005286.nc
> > >> > >> > aqm.t06z.aot.f06.148.grib2
OBS_AOD_aqm_g16_20190608_10.nc
> > >> > >> > -field
> > >> > >> > 'name="AOD"; level="*";' -method UW_MEAN -v 1 -qc 0
> > >> > >> >
> > >> > >> > The files, script, and log can be found in
> > >> > >> > https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
> > >> > >> >
> > >> > >> > I notice in 8.1 you no longer need the -coord option
that 8.0
> > >> > >> > needs.
> > >> > >> >
> > >> > >> > The output nc file only contains la and lon but no
mapping
> > >> > >> > AOD.
> > >> > >> >
> > >> > >> > Than you for your help.
> > >> > >> >
> > >> > >> > Ho-Chun Huang
> > >> > >>
> > >> > >>
> > >> > >>
> > >> > >>
> > >>
> > >>
> > >>
> > >>
>
>
>
>

------------------------------------------------
Subject: error on regrid_data_plane
From: Tara Jensen
Time: Wed Jun 12 10:11:52 2019

Ho-Chun (and Howard),

Thought it might be good to jump in here.

It looks like the wgrib2 that works is at:
/nwprod2/grib_util.v1.0.3/exec/wgrib2  on WCOSS, is that correct?  We
might
be able to find table 46 and be able to grab it for inclusion in the
next
release.  Julie might even be able to copy it into the grib table path
for
the "standard" METv8.1 as well.  If that doesn't resolve the issue,
there
are other work arounds that we can point you to until the next release
(either bug fix or beta).

Cheers, Tara

On Wed, Jun 12, 2019 at 9:02 AM Ho-Chun Huang - NOAA Affiliate via RT
<
met_help at ucar.edu> wrote:

>
> <URL: https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550 >
>
> Howard,
>
> Thanks.  I will consult with EMC management whether to request
adding
> support of new template in MET.
>
> Ho-Chun
>
> On Wed, Jun 12, 2019 at 10:57 AM Howard Soh via RT
<met_help at ucar.edu>
> wrote:
>
> > There is no relationship between wgrib2 and MET.
> > wgrib2 was an example which does not support the template ID 46.
We did
> > not have the GRIB2 file with template id 46. MET gives an warning.
MET
> will
> > stop if the template ID from the GRIB2 is not supported instead of
> > continuing as a short term solution. MET will support template ID
46 as
> the
> > long term solution.
> >
> > Cheers,
> > Howard
> >
> > On Wed Jun 12 08:43:03 2019, ho-chun.huang at noaa.gov wrote:
> > > Hi, Howard:
> > >
> > > There are several versions on WCOSS of wgrib2, from loading
module
> > > grib_util/v1.0.0(default) to  v1.1.0.
> > >
> > > g20a1: > module avail grib_util
> > >
> > > -----------------------------------------------------------
> > > /nwprod2/modulefiles
> > > -----------------------------------------------------------
> > > grib_util/v1.0.0(default) grib_util/v1.0.2
grib_util/v1.0.4
> > >    grib_util/v1.0.6
> > > grib_util/v1.0.1          grib_util/v1.0.3
grib_util/v1.0.5
> > >    grib_util/v1.1.0
> > >
> > > After using different version of wgrib2, I found
grib_util/v1.0.4 and
> > > above
> > > can read CMAQ AOT template #46 (see below for more detail).
> > >
> > > Does MET v8.1 uses older version of wgrib2?  The version number
of
> > > wgrib2
> > > is v0.1.9.6a 5/2012 and v0.2.0.7 12/2017 for grib_util/v1.0.0
and
> > > grib_util/v1.1.0, respectively.
> > > (using /nwprod2/grib_util.v1.0.0/exec/wgrib2 -version)
> > >
> > > Can MET v8.1 built on WCOSS using newer version of wgrib2 to
solve
> > > current
> > > issue?
> > >
> > > Ho-Chun
> > >
> > > p.s.
> > >
> > > g20a1:~ > /nwprod2/grib_util.v1.0.3/exec/wgrib2 -V
> > >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > > code_table_4.5a: product definition template #46 not supported
> > > code_table_4.5b: product definition template #46 not supported
> > > 1:0:vt=2019061200:no_level:11-12 hour ave fcst:AOTK Aerosol
Optical
> > > Thickness [Numeric]:
> > >     ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> > >     grid_template=30:winds(grid):
> > >         Lambert Conformal: (442 x 265) input WE:SN output WE:SN
res 8
> > >         Lat1 21.821000 Lon1 239.372000 LoV 263.000000
> > >         LatD 33.000000 Latin1 33.000000 Latin2 45.000000
> > >         LatSP 0.000000 LonSP 0.000000
> > >         North Pole (442 x 265) Dx 12000.000000 m Dy 12000.000000
m
> > > mode 8
> > >
> > > g20a1:~ > /nwprod2/grib_util.v1.0.4/exec/wgrib2 -V
> > >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > > 1:0:vt=2019061200:1 sigma level:11-12 hour ave fcst:AOTK Aerosol
> > > Optical
> > > Thickness [Numeric]:aerosol=Ozone
> > >     ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> > >     grid_template=30:winds(grid):
> > >         Lambert Conformal: (442 x 265) input WE:SN output WE:SN
res 8
> > >         Lat1 21.821000 Lon1 239.372000 LoV 263.000000
> > >         LatD 33.000000 Latin1 33.000000 Latin2 45.000000
> > >         LatSP 0.000000 LonSP 0.000000
> > >         North Pole (442 x 265) Dx 12000.000000 m Dy 12000.000000
m
> > > mode 8
> > >
> > > g20a1:~ > /nwprod2/grib_util.v1.1.0/exec/wgrib2 -V
> > >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > > 1:0:vt=2019061200:1 sigma level:11-12 hour ave fcst:AOTK Aerosol
> > > Optical
> > > Thickness [Numeric]:aerosol=Ozone:aerosol_size <0
> > >     ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> > >     grid_template=30:winds(grid):
> > >         Lambert Conformal: (442 x 265) input WE:SN output WE:SN
res 8
> > >         Lat1 21.821000 Lon1 239.372000 LoV 263.000000
> > >         LatD 33.000000 Latin1 33.000000 Latin2 45.000000
> > >         LatSP 0.000000 LonSP 0.000000
> > >         North Pole (442 x 265) Dx 12000.000000 m Dy 12000.000000
m
> > > mode 8
> > >
> > >
> > > On Wed, Jun 12, 2019 at 8:03 AM Ho-Chun Huang - NOAA Affiliate <
> > > ho-chun.huang at noaa.gov> wrote:
> > >
> > > > Hi, Howard:
> > > >
> > > > Did you run the command on NCAR's machines?  We might have to
bring
> > > > John
> > > > in because there is a possibility that the MET v8,.1 built on
> > > > WCOSS/Gyre is
> > > > not right, at least for regrid_data_plane.  Do you have any
> > > > suggestion on
> > > > the environment setting I should include?  I do not think I
can
> > > > figure it
> > > > out what went wrong on the same run script worked for you.
> > > >
> > > > Ho-Chun
> > > >
> > > > On Tue, Jun 11, 2019 at 6:50 PM Howard Soh via RT
<met_help at ucar.edu
> >
> > > > wrote:
> > > >
> > > >> It works for me.
> > > >>
> > > >> met-8.1/bin/regrid_data_plane
> > > >> goes-16/ABI/L2/CONUS/AOD/2019162/OR_ABI-L2-AODC-
> > > >> M6_G16_s20191621821475_e20191621824248_
> > > >> c20191621827269.nc ~/data/GOES-16/ngac.t12z.aod_550nm.grib2
> > > >> OBS_AOD_aqm_g16_20190608_10.nc  -field  'name="AOD";
level="*";'
> > > >> -method
> > > >> UW_MEAN -v 1 -qc 0
> > > >>
> > > >> The output was attached.
> > > >>
> > > >> Cheers,
> > > >> Howard
> > > >>
> > > >>
> > > >> On Tue Jun 11 13:49:01 2019, ho-chun.huang at noaa.gov wrote:
> > > >> > Hi, Howard:
> > > >> >
> > > >> > Same situation,Segmentation fault, occurred to HYSPLIT
model grib2
> > > >> > output.
> > > >> > Can you look into the issue of "Segmentation fault?"
> > > >> >
> > > >> > Thank you for the help.
> > > >> >
> > > >> > Ho-Chun
> > > >> >
> > > >> > On Tue, Jun 11, 2019 at 3:30 PM Ho-Chun Huang - NOAA
Affiliate <
> > > >> > ho-chun.huang at noaa.gov> wrote:
> > > >> >
> > > >> > > Hi, Howard:
> > > >> > >
> > > >> > > Thanks for the info.  I thought the table used in aqm aot
output
> > > >> > > is
> > > >> > > used
> > > >> > > by WMO.  Let me consult with EMC AQ group and get back to
you.
> > > >> > > We
> > > >> > > may have
> > > >> > > to bring Tara in if it is necessary.
> > > >> > >
> > > >> > > Can you also check the ngac grib2 file?  I encounter a
similar
> > > >> > > problem,
> > > >> > > segmentation fault.  The ngac file are in the same ftp
> > > >> > > directory.
> > > >> > >
> > > >> > > Thanks.
> > > >> > >
> > > >> > > Ho-Chun
> > > >> > >
> > > >> > > On Tue, Jun 11, 2019 at 3:17 PM Howard Soh via RT
> > > >> > > <met_help at ucar.edu>
> > > >> > > wrote:
> > > >> > >
> > > >> > >> The GRIB2 file (aqm.t06z.aot.f06.148.grib2) as the
target grid
> > > >> > >> contains
> > > >> > >> product definition template #46. It's not supported by
wgrib2
> > > >> > >> (v0.2.0.3
> > > >> > >> 11/2015) and MET.
> > > >> > >>
> > > >> > >> > wgrib2 aqm.t06z.aot.f06.148.grib2
> > > >> > >> code_table_4.5a: product definition template #46 not
supported
> > > >> > >> code_table_4.5b: product definition template #46 not
supported
> > > >> > >> 1:0:d=2019060706:AOTK:no_level:5-6 hour ave fcst:
> > > >> > >>
> > > >> > >> Would you use another GRIB2 file with the product
definition
> > > >> > >> template #48
> > > >> > >> or others below?
> > > >> > >>
> > > >> > >>
> > > >> > >>
> >
https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table4-
> > > >> > >> 0.shtml
> > > >> > >>
> > > >> > >> Here are template ids (GRIB2) which MET supports:
> > > >> > >>    0: analysis or forecast
> > > >> > >>    1: individual ensemble forecast, control and
perturbed, at a
> > > >> > >> horizontal level or in
> > > >> > >>    2: ensemble mean
> > > >> > >>    5: probability forecast
> > > >> > >>    8: accumulation forecast
> > > >> > >>    9: probabilistic accumulation forecast
> > > >> > >>   11: individual ensemble forecast, control and
perturbed, at a
> > > >> > >> horizontal level or in
> > > >> > >>   12: derived accumulation forecast
> > > >> > >>   48: aerosol data
> > > >> > >>
> > > >> > >> Cheers,
> > > >> > >> Howard
> > > >> > >>
> > > >> > >> On Tue Jun 11 09:49:46 2019, ho-chun.huang at noaa.gov
wrote:
> > > >> > >> > To Whom It May Concern:
> > > >> > >> >
> > > >> > >> > There is an error message on using the
regrid_data_plane,
> > > >> > >> > please
> > > >> > >> > help
> > > >> > >> me to
> > > >> > >> > debug the root of error.
> > > >> > >> >
> > > >> > >> > DEBUG 1: Reading data file:
> > > >> > >> > OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> > > >> > >> c20191591005286.nc
> > > >> > >> > WARNING:
> > > >> > >> > WARNING: MetGrib2DataFile::data_plane() -> unexpected
PDS
> > > >> > >> > template
> > > >> > >> number
> > > >> > >> > (46) may cause unexpected results. Please email
> > > >> > >> > met_help at ucar.edu.
> > > >> > >> > WARNING:
> > > >> > >> > run.sh: line 7: 38040 Segmentation fault      (core
dumped)
> > > >> > >> > regrid_data_plane
> > > >> > >> > OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> > > >> > >> c20191591005286.nc
> > > >> > >> > aqm.t06z.aot.f06.148.grib2
OBS_AOD_aqm_g16_20190608_10.nc
> > > >> > >> > -field
> > > >> > >> > 'name="AOD"; level="*";' -method UW_MEAN -v 1 -qc 0
> > > >> > >> >
> > > >> > >> > The files, script, and log can be found in
> > > >> > >> > https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
> > > >> > >> >
> > > >> > >> > I notice in 8.1 you no longer need the -coord option
that 8.0
> > > >> > >> > needs.
> > > >> > >> >
> > > >> > >> > The output nc file only contains la and lon but no
mapping
> > > >> > >> > AOD.
> > > >> > >> >
> > > >> > >> > Than you for your help.
> > > >> > >> >
> > > >> > >> > Ho-Chun Huang
> > > >> > >>
> > > >> > >>
> > > >> > >>
> > > >> > >>
> > > >>
> > > >>
> > > >>
> > > >>
> >
> >
> >
> >
>
>

--
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Tara Jensen
Project Manager II
NCAR RAL and DTC
PO Box 3000, Boulder, Colorado 80307 USA
+1 303-497-8479          jensen at ucar.edu

------------------------------------------------
Subject: error on regrid_data_plane
From: Ho-Chun Huang - NOAA Affiliate
Time: Wed Jun 12 11:04:57 2019

Hi, Tara:

/nwprod2/grib_util.v1.0.*4*/exec/wgrib2  is the earliest version
recognizes
template #46.  Grib2 version higher than v1.0.4 is also worked.

Thank you for the reply, I will pass your response to Jason and Jeff.

Ho-Chun

On Wed, Jun 12, 2019 at 12:11 PM Tara Jensen via RT
<met_help at ucar.edu>
wrote:

> Ho-Chun (and Howard),
>
> Thought it might be good to jump in here.
>
> It looks like the wgrib2 that works is at:
> /nwprod2/grib_util.v1.0.3/exec/wgrib2  on WCOSS, is that correct?
We might
> be able to find table 46 and be able to grab it for inclusion in the
next
> release.  Julie might even be able to copy it into the grib table
path for
> the "standard" METv8.1 as well.  If that doesn't resolve the issue,
there
> are other work arounds that we can point you to until the next
release
> (either bug fix or beta).
>
> Cheers, Tara
>
> On Wed, Jun 12, 2019 at 9:02 AM Ho-Chun Huang - NOAA Affiliate via
RT <
> met_help at ucar.edu> wrote:
>
> >
> > <URL: https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550 >
> >
> > Howard,
> >
> > Thanks.  I will consult with EMC management whether to request
adding
> > support of new template in MET.
> >
> > Ho-Chun
> >
> > On Wed, Jun 12, 2019 at 10:57 AM Howard Soh via RT
<met_help at ucar.edu>
> > wrote:
> >
> > > There is no relationship between wgrib2 and MET.
> > > wgrib2 was an example which does not support the template ID 46.
We did
> > > not have the GRIB2 file with template id 46. MET gives an
warning. MET
> > will
> > > stop if the template ID from the GRIB2 is not supported instead
of
> > > continuing as a short term solution. MET will support template
ID 46 as
> > the
> > > long term solution.
> > >
> > > Cheers,
> > > Howard
> > >
> > > On Wed Jun 12 08:43:03 2019, ho-chun.huang at noaa.gov wrote:
> > > > Hi, Howard:
> > > >
> > > > There are several versions on WCOSS of wgrib2, from loading
module
> > > > grib_util/v1.0.0(default) to  v1.1.0.
> > > >
> > > > g20a1: > module avail grib_util
> > > >
> > > > -----------------------------------------------------------
> > > > /nwprod2/modulefiles
> > > > -----------------------------------------------------------
> > > > grib_util/v1.0.0(default) grib_util/v1.0.2
grib_util/v1.0.4
> > > >    grib_util/v1.0.6
> > > > grib_util/v1.0.1          grib_util/v1.0.3
grib_util/v1.0.5
> > > >    grib_util/v1.1.0
> > > >
> > > > After using different version of wgrib2, I found
grib_util/v1.0.4 and
> > > > above
> > > > can read CMAQ AOT template #46 (see below for more detail).
> > > >
> > > > Does MET v8.1 uses older version of wgrib2?  The version
number of
> > > > wgrib2
> > > > is v0.1.9.6a 5/2012 and v0.2.0.7 12/2017 for grib_util/v1.0.0
and
> > > > grib_util/v1.1.0, respectively.
> > > > (using /nwprod2/grib_util.v1.0.0/exec/wgrib2 -version)
> > > >
> > > > Can MET v8.1 built on WCOSS using newer version of wgrib2 to
solve
> > > > current
> > > > issue?
> > > >
> > > > Ho-Chun
> > > >
> > > > p.s.
> > > >
> > > > g20a1:~ > /nwprod2/grib_util.v1.0.3/exec/wgrib2 -V
> > > >
>
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > > > code_table_4.5a: product definition template #46 not supported
> > > > code_table_4.5b: product definition template #46 not supported
> > > > 1:0:vt=2019061200:no_level:11-12 hour ave fcst:AOTK Aerosol
Optical
> > > > Thickness [Numeric]:
> > > >
ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> > > >     grid_template=30:winds(grid):
> > > >         Lambert Conformal: (442 x 265) input WE:SN output
WE:SN res 8
> > > >         Lat1 21.821000 Lon1 239.372000 LoV 263.000000
> > > >         LatD 33.000000 Latin1 33.000000 Latin2 45.000000
> > > >         LatSP 0.000000 LonSP 0.000000
> > > >         North Pole (442 x 265) Dx 12000.000000 m Dy
12000.000000 m
> > > > mode 8
> > > >
> > > > g20a1:~ > /nwprod2/grib_util.v1.0.4/exec/wgrib2 -V
> > > >
>
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > > > 1:0:vt=2019061200:1 sigma level:11-12 hour ave fcst:AOTK
Aerosol
> > > > Optical
> > > > Thickness [Numeric]:aerosol=Ozone
> > > >
ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> > > >     grid_template=30:winds(grid):
> > > >         Lambert Conformal: (442 x 265) input WE:SN output
WE:SN res 8
> > > >         Lat1 21.821000 Lon1 239.372000 LoV 263.000000
> > > >         LatD 33.000000 Latin1 33.000000 Latin2 45.000000
> > > >         LatSP 0.000000 LonSP 0.000000
> > > >         North Pole (442 x 265) Dx 12000.000000 m Dy
12000.000000 m
> > > > mode 8
> > > >
> > > > g20a1:~ > /nwprod2/grib_util.v1.1.0/exec/wgrib2 -V
> > > >
>
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > > > 1:0:vt=2019061200:1 sigma level:11-12 hour ave fcst:AOTK
Aerosol
> > > > Optical
> > > > Thickness [Numeric]:aerosol=Ozone:aerosol_size <0
> > > >
ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> > > >     grid_template=30:winds(grid):
> > > >         Lambert Conformal: (442 x 265) input WE:SN output
WE:SN res 8
> > > >         Lat1 21.821000 Lon1 239.372000 LoV 263.000000
> > > >         LatD 33.000000 Latin1 33.000000 Latin2 45.000000
> > > >         LatSP 0.000000 LonSP 0.000000
> > > >         North Pole (442 x 265) Dx 12000.000000 m Dy
12000.000000 m
> > > > mode 8
> > > >
> > > >
> > > > On Wed, Jun 12, 2019 at 8:03 AM Ho-Chun Huang - NOAA Affiliate
<
> > > > ho-chun.huang at noaa.gov> wrote:
> > > >
> > > > > Hi, Howard:
> > > > >
> > > > > Did you run the command on NCAR's machines?  We might have
to bring
> > > > > John
> > > > > in because there is a possibility that the MET v8,.1 built
on
> > > > > WCOSS/Gyre is
> > > > > not right, at least for regrid_data_plane.  Do you have any
> > > > > suggestion on
> > > > > the environment setting I should include?  I do not think I
can
> > > > > figure it
> > > > > out what went wrong on the same run script worked for you.
> > > > >
> > > > > Ho-Chun
> > > > >
> > > > > On Tue, Jun 11, 2019 at 6:50 PM Howard Soh via RT <
> met_help at ucar.edu
> > >
> > > > > wrote:
> > > > >
> > > > >> It works for me.
> > > > >>
> > > > >> met-8.1/bin/regrid_data_plane
> > > > >> goes-16/ABI/L2/CONUS/AOD/2019162/OR_ABI-L2-AODC-
> > > > >> M6_G16_s20191621821475_e20191621824248_
> > > > >> c20191621827269.nc ~/data/GOES-16/ngac.t12z.aod_550nm.grib2
> > > > >> OBS_AOD_aqm_g16_20190608_10.nc  -field  'name="AOD";
level="*";'
> > > > >> -method
> > > > >> UW_MEAN -v 1 -qc 0
> > > > >>
> > > > >> The output was attached.
> > > > >>
> > > > >> Cheers,
> > > > >> Howard
> > > > >>
> > > > >>
> > > > >> On Tue Jun 11 13:49:01 2019, ho-chun.huang at noaa.gov wrote:
> > > > >> > Hi, Howard:
> > > > >> >
> > > > >> > Same situation,Segmentation fault, occurred to HYSPLIT
model
> grib2
> > > > >> > output.
> > > > >> > Can you look into the issue of "Segmentation fault?"
> > > > >> >
> > > > >> > Thank you for the help.
> > > > >> >
> > > > >> > Ho-Chun
> > > > >> >
> > > > >> > On Tue, Jun 11, 2019 at 3:30 PM Ho-Chun Huang - NOAA
Affiliate <
> > > > >> > ho-chun.huang at noaa.gov> wrote:
> > > > >> >
> > > > >> > > Hi, Howard:
> > > > >> > >
> > > > >> > > Thanks for the info.  I thought the table used in aqm
aot
> output
> > > > >> > > is
> > > > >> > > used
> > > > >> > > by WMO.  Let me consult with EMC AQ group and get back
to you.
> > > > >> > > We
> > > > >> > > may have
> > > > >> > > to bring Tara in if it is necessary.
> > > > >> > >
> > > > >> > > Can you also check the ngac grib2 file?  I encounter a
similar
> > > > >> > > problem,
> > > > >> > > segmentation fault.  The ngac file are in the same ftp
> > > > >> > > directory.
> > > > >> > >
> > > > >> > > Thanks.
> > > > >> > >
> > > > >> > > Ho-Chun
> > > > >> > >
> > > > >> > > On Tue, Jun 11, 2019 at 3:17 PM Howard Soh via RT
> > > > >> > > <met_help at ucar.edu>
> > > > >> > > wrote:
> > > > >> > >
> > > > >> > >> The GRIB2 file (aqm.t06z.aot.f06.148.grib2) as the
target
> grid
> > > > >> > >> contains
> > > > >> > >> product definition template #46. It's not supported by
wgrib2
> > > > >> > >> (v0.2.0.3
> > > > >> > >> 11/2015) and MET.
> > > > >> > >>
> > > > >> > >> > wgrib2 aqm.t06z.aot.f06.148.grib2
> > > > >> > >> code_table_4.5a: product definition template #46 not
> supported
> > > > >> > >> code_table_4.5b: product definition template #46 not
> supported
> > > > >> > >> 1:0:d=2019060706:AOTK:no_level:5-6 hour ave fcst:
> > > > >> > >>
> > > > >> > >> Would you use another GRIB2 file with the product
definition
> > > > >> > >> template #48
> > > > >> > >> or others below?
> > > > >> > >>
> > > > >> > >>
> > > > >> > >>
> > >
https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table4-
> > > > >> > >> 0.shtml
> > > > >> > >>
> > > > >> > >> Here are template ids (GRIB2) which MET supports:
> > > > >> > >>    0: analysis or forecast
> > > > >> > >>    1: individual ensemble forecast, control and
perturbed,
> at a
> > > > >> > >> horizontal level or in
> > > > >> > >>    2: ensemble mean
> > > > >> > >>    5: probability forecast
> > > > >> > >>    8: accumulation forecast
> > > > >> > >>    9: probabilistic accumulation forecast
> > > > >> > >>   11: individual ensemble forecast, control and
perturbed,
> at a
> > > > >> > >> horizontal level or in
> > > > >> > >>   12: derived accumulation forecast
> > > > >> > >>   48: aerosol data
> > > > >> > >>
> > > > >> > >> Cheers,
> > > > >> > >> Howard
> > > > >> > >>
> > > > >> > >> On Tue Jun 11 09:49:46 2019, ho-chun.huang at noaa.gov
wrote:
> > > > >> > >> > To Whom It May Concern:
> > > > >> > >> >
> > > > >> > >> > There is an error message on using the
regrid_data_plane,
> > > > >> > >> > please
> > > > >> > >> > help
> > > > >> > >> me to
> > > > >> > >> > debug the root of error.
> > > > >> > >> >
> > > > >> > >> > DEBUG 1: Reading data file:
> > > > >> > >> > OR_ABI-L2-AODC-
M6_G16_s20191591001457_e20191591004230_
> > > > >> > >> c20191591005286.nc
> > > > >> > >> > WARNING:
> > > > >> > >> > WARNING: MetGrib2DataFile::data_plane() ->
unexpected PDS
> > > > >> > >> > template
> > > > >> > >> number
> > > > >> > >> > (46) may cause unexpected results. Please email
> > > > >> > >> > met_help at ucar.edu.
> > > > >> > >> > WARNING:
> > > > >> > >> > run.sh: line 7: 38040 Segmentation fault      (core
dumped)
> > > > >> > >> > regrid_data_plane
> > > > >> > >> > OR_ABI-L2-AODC-
M6_G16_s20191591001457_e20191591004230_
> > > > >> > >> c20191591005286.nc
> > > > >> > >> > aqm.t06z.aot.f06.148.grib2
OBS_AOD_aqm_g16_20190608_10.nc
> > > > >> > >> > -field
> > > > >> > >> > 'name="AOD"; level="*";' -method UW_MEAN -v 1 -qc 0
> > > > >> > >> >
> > > > >> > >> > The files, script, and log can be found in
> > > > >> > >> > https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
> > > > >> > >> >
> > > > >> > >> > I notice in 8.1 you no longer need the -coord option
that
> 8.0
> > > > >> > >> > needs.
> > > > >> > >> >
> > > > >> > >> > The output nc file only contains la and lon but no
mapping
> > > > >> > >> > AOD.
> > > > >> > >> >
> > > > >> > >> > Than you for your help.
> > > > >> > >> >
> > > > >> > >> > Ho-Chun Huang
> > > > >> > >>
> > > > >> > >>
> > > > >> > >>
> > > > >> > >>
> > > > >>
> > > > >>
> > > > >>
> > > > >>
> > >
> > >
> > >
> > >
> >
> >
>
> --
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> Tara Jensen
> Project Manager II
> NCAR RAL and DTC
> PO Box 3000, Boulder, Colorado 80307 USA
> +1 303-497-8479          jensen at ucar.edu
>
>

------------------------------------------------
Subject: error on regrid_data_plane
From: Julie Prestopnik
Time: Wed Jun 12 11:08:11 2019

Please let me know if I can do anything to help, as Tara mentioned,
possibly copying it into the grib table path for the "standard"
METv8.1could help.  I don't have dev access to WCOSS at this time with
the
current production switch occurring, but I am happy to help if needed
when
I can.

Julie

On Wed, Jun 12, 2019 at 11:04 AM Ho-Chun Huang - NOAA Affiliate via RT
<
met_help at ucar.edu> wrote:

>
> <URL: https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550 >
>
> Hi, Tara:
>
> /nwprod2/grib_util.v1.0.*4*/exec/wgrib2  is the earliest version
recognizes
> template #46.  Grib2 version higher than v1.0.4 is also worked.
>
> Thank you for the reply, I will pass your response to Jason and
Jeff.
>
> Ho-Chun
>
> On Wed, Jun 12, 2019 at 12:11 PM Tara Jensen via RT
<met_help at ucar.edu>
> wrote:
>
> > Ho-Chun (and Howard),
> >
> > Thought it might be good to jump in here.
> >
> > It looks like the wgrib2 that works is at:
> > /nwprod2/grib_util.v1.0.3/exec/wgrib2  on WCOSS, is that correct?
We
> might
> > be able to find table 46 and be able to grab it for inclusion in
the next
> > release.  Julie might even be able to copy it into the grib table
path
> for
> > the "standard" METv8.1 as well.  If that doesn't resolve the
issue, there
> > are other work arounds that we can point you to until the next
release
> > (either bug fix or beta).
> >
> > Cheers, Tara
> >
> > On Wed, Jun 12, 2019 at 9:02 AM Ho-Chun Huang - NOAA Affiliate via
RT <
> > met_help at ucar.edu> wrote:
> >
> > >
> > > <URL: https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550 >
> > >
> > > Howard,
> > >
> > > Thanks.  I will consult with EMC management whether to request
adding
> > > support of new template in MET.
> > >
> > > Ho-Chun
> > >
> > > On Wed, Jun 12, 2019 at 10:57 AM Howard Soh via RT
<met_help at ucar.edu>
> > > wrote:
> > >
> > > > There is no relationship between wgrib2 and MET.
> > > > wgrib2 was an example which does not support the template ID
46. We
> did
> > > > not have the GRIB2 file with template id 46. MET gives an
warning.
> MET
> > > will
> > > > stop if the template ID from the GRIB2 is not supported
instead of
> > > > continuing as a short term solution. MET will support template
ID 46
> as
> > > the
> > > > long term solution.
> > > >
> > > > Cheers,
> > > > Howard
> > > >
> > > > On Wed Jun 12 08:43:03 2019, ho-chun.huang at noaa.gov wrote:
> > > > > Hi, Howard:
> > > > >
> > > > > There are several versions on WCOSS of wgrib2, from loading
module
> > > > > grib_util/v1.0.0(default) to  v1.1.0.
> > > > >
> > > > > g20a1: > module avail grib_util
> > > > >
> > > > > -----------------------------------------------------------
> > > > > /nwprod2/modulefiles
> > > > > -----------------------------------------------------------
> > > > > grib_util/v1.0.0(default) grib_util/v1.0.2
> grib_util/v1.0.4
> > > > >    grib_util/v1.0.6
> > > > > grib_util/v1.0.1          grib_util/v1.0.3
> grib_util/v1.0.5
> > > > >    grib_util/v1.1.0
> > > > >
> > > > > After using different version of wgrib2, I found
grib_util/v1.0.4
> and
> > > > > above
> > > > > can read CMAQ AOT template #46 (see below for more detail).
> > > > >
> > > > > Does MET v8.1 uses older version of wgrib2?  The version
number of
> > > > > wgrib2
> > > > > is v0.1.9.6a 5/2012 and v0.2.0.7 12/2017 for
grib_util/v1.0.0 and
> > > > > grib_util/v1.1.0, respectively.
> > > > > (using /nwprod2/grib_util.v1.0.0/exec/wgrib2 -version)
> > > > >
> > > > > Can MET v8.1 built on WCOSS using newer version of wgrib2 to
solve
> > > > > current
> > > > > issue?
> > > > >
> > > > > Ho-Chun
> > > > >
> > > > > p.s.
> > > > >
> > > > > g20a1:~ > /nwprod2/grib_util.v1.0.3/exec/wgrib2 -V
> > > > >
> >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > > > > code_table_4.5a: product definition template #46 not
supported
> > > > > code_table_4.5b: product definition template #46 not
supported
> > > > > 1:0:vt=2019061200:no_level:11-12 hour ave fcst:AOTK Aerosol
Optical
> > > > > Thickness [Numeric]:
> > > > >
ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> > > > >     grid_template=30:winds(grid):
> > > > >         Lambert Conformal: (442 x 265) input WE:SN output
WE:SN
> res 8
> > > > >         Lat1 21.821000 Lon1 239.372000 LoV 263.000000
> > > > >         LatD 33.000000 Latin1 33.000000 Latin2 45.000000
> > > > >         LatSP 0.000000 LonSP 0.000000
> > > > >         North Pole (442 x 265) Dx 12000.000000 m Dy
12000.000000 m
> > > > > mode 8
> > > > >
> > > > > g20a1:~ > /nwprod2/grib_util.v1.0.4/exec/wgrib2 -V
> > > > >
> >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > > > > 1:0:vt=2019061200:1 sigma level:11-12 hour ave fcst:AOTK
Aerosol
> > > > > Optical
> > > > > Thickness [Numeric]:aerosol=Ozone
> > > > >
ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> > > > >     grid_template=30:winds(grid):
> > > > >         Lambert Conformal: (442 x 265) input WE:SN output
WE:SN
> res 8
> > > > >         Lat1 21.821000 Lon1 239.372000 LoV 263.000000
> > > > >         LatD 33.000000 Latin1 33.000000 Latin2 45.000000
> > > > >         LatSP 0.000000 LonSP 0.000000
> > > > >         North Pole (442 x 265) Dx 12000.000000 m Dy
12000.000000 m
> > > > > mode 8
> > > > >
> > > > > g20a1:~ > /nwprod2/grib_util.v1.1.0/exec/wgrib2 -V
> > > > >
> >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > > > > 1:0:vt=2019061200:1 sigma level:11-12 hour ave fcst:AOTK
Aerosol
> > > > > Optical
> > > > > Thickness [Numeric]:aerosol=Ozone:aerosol_size <0
> > > > >
ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> > > > >     grid_template=30:winds(grid):
> > > > >         Lambert Conformal: (442 x 265) input WE:SN output
WE:SN
> res 8
> > > > >         Lat1 21.821000 Lon1 239.372000 LoV 263.000000
> > > > >         LatD 33.000000 Latin1 33.000000 Latin2 45.000000
> > > > >         LatSP 0.000000 LonSP 0.000000
> > > > >         North Pole (442 x 265) Dx 12000.000000 m Dy
12000.000000 m
> > > > > mode 8
> > > > >
> > > > >
> > > > > On Wed, Jun 12, 2019 at 8:03 AM Ho-Chun Huang - NOAA
Affiliate <
> > > > > ho-chun.huang at noaa.gov> wrote:
> > > > >
> > > > > > Hi, Howard:
> > > > > >
> > > > > > Did you run the command on NCAR's machines?  We might have
to
> bring
> > > > > > John
> > > > > > in because there is a possibility that the MET v8,.1 built
on
> > > > > > WCOSS/Gyre is
> > > > > > not right, at least for regrid_data_plane.  Do you have
any
> > > > > > suggestion on
> > > > > > the environment setting I should include?  I do not think
I can
> > > > > > figure it
> > > > > > out what went wrong on the same run script worked for you.
> > > > > >
> > > > > > Ho-Chun
> > > > > >
> > > > > > On Tue, Jun 11, 2019 at 6:50 PM Howard Soh via RT <
> > met_help at ucar.edu
> > > >
> > > > > > wrote:
> > > > > >
> > > > > >> It works for me.
> > > > > >>
> > > > > >> met-8.1/bin/regrid_data_plane
> > > > > >> goes-16/ABI/L2/CONUS/AOD/2019162/OR_ABI-L2-AODC-
> > > > > >> M6_G16_s20191621821475_e20191621824248_
> > > > > >> c20191621827269.nc ~/data/GOES-
16/ngac.t12z.aod_550nm.grib2
> > > > > >> OBS_AOD_aqm_g16_20190608_10.nc  -field  'name="AOD";
level="*";'
> > > > > >> -method
> > > > > >> UW_MEAN -v 1 -qc 0
> > > > > >>
> > > > > >> The output was attached.
> > > > > >>
> > > > > >> Cheers,
> > > > > >> Howard
> > > > > >>
> > > > > >>
> > > > > >> On Tue Jun 11 13:49:01 2019, ho-chun.huang at noaa.gov
wrote:
> > > > > >> > Hi, Howard:
> > > > > >> >
> > > > > >> > Same situation,Segmentation fault, occurred to HYSPLIT
model
> > grib2
> > > > > >> > output.
> > > > > >> > Can you look into the issue of "Segmentation fault?"
> > > > > >> >
> > > > > >> > Thank you for the help.
> > > > > >> >
> > > > > >> > Ho-Chun
> > > > > >> >
> > > > > >> > On Tue, Jun 11, 2019 at 3:30 PM Ho-Chun Huang - NOAA
> Affiliate <
> > > > > >> > ho-chun.huang at noaa.gov> wrote:
> > > > > >> >
> > > > > >> > > Hi, Howard:
> > > > > >> > >
> > > > > >> > > Thanks for the info.  I thought the table used in aqm
aot
> > output
> > > > > >> > > is
> > > > > >> > > used
> > > > > >> > > by WMO.  Let me consult with EMC AQ group and get
back to
> you.
> > > > > >> > > We
> > > > > >> > > may have
> > > > > >> > > to bring Tara in if it is necessary.
> > > > > >> > >
> > > > > >> > > Can you also check the ngac grib2 file?  I encounter
a
> similar
> > > > > >> > > problem,
> > > > > >> > > segmentation fault.  The ngac file are in the same
ftp
> > > > > >> > > directory.
> > > > > >> > >
> > > > > >> > > Thanks.
> > > > > >> > >
> > > > > >> > > Ho-Chun
> > > > > >> > >
> > > > > >> > > On Tue, Jun 11, 2019 at 3:17 PM Howard Soh via RT
> > > > > >> > > <met_help at ucar.edu>
> > > > > >> > > wrote:
> > > > > >> > >
> > > > > >> > >> The GRIB2 file (aqm.t06z.aot.f06.148.grib2) as the
target
> > grid
> > > > > >> > >> contains
> > > > > >> > >> product definition template #46. It's not supported
by
> wgrib2
> > > > > >> > >> (v0.2.0.3
> > > > > >> > >> 11/2015) and MET.
> > > > > >> > >>
> > > > > >> > >> > wgrib2 aqm.t06z.aot.f06.148.grib2
> > > > > >> > >> code_table_4.5a: product definition template #46 not
> > supported
> > > > > >> > >> code_table_4.5b: product definition template #46 not
> > supported
> > > > > >> > >> 1:0:d=2019060706:AOTK:no_level:5-6 hour ave fcst:
> > > > > >> > >>
> > > > > >> > >> Would you use another GRIB2 file with the product
> definition
> > > > > >> > >> template #48
> > > > > >> > >> or others below?
> > > > > >> > >>
> > > > > >> > >>
> > > > > >> > >>
> > > >
https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table4-
> > > > > >> > >> 0.shtml
> > > > > >> > >>
> > > > > >> > >> Here are template ids (GRIB2) which MET supports:
> > > > > >> > >>    0: analysis or forecast
> > > > > >> > >>    1: individual ensemble forecast, control and
perturbed,
> > at a
> > > > > >> > >> horizontal level or in
> > > > > >> > >>    2: ensemble mean
> > > > > >> > >>    5: probability forecast
> > > > > >> > >>    8: accumulation forecast
> > > > > >> > >>    9: probabilistic accumulation forecast
> > > > > >> > >>   11: individual ensemble forecast, control and
perturbed,
> > at a
> > > > > >> > >> horizontal level or in
> > > > > >> > >>   12: derived accumulation forecast
> > > > > >> > >>   48: aerosol data
> > > > > >> > >>
> > > > > >> > >> Cheers,
> > > > > >> > >> Howard
> > > > > >> > >>
> > > > > >> > >> On Tue Jun 11 09:49:46 2019, ho-chun.huang at noaa.gov
wrote:
> > > > > >> > >> > To Whom It May Concern:
> > > > > >> > >> >
> > > > > >> > >> > There is an error message on using the
regrid_data_plane,
> > > > > >> > >> > please
> > > > > >> > >> > help
> > > > > >> > >> me to
> > > > > >> > >> > debug the root of error.
> > > > > >> > >> >
> > > > > >> > >> > DEBUG 1: Reading data file:
> > > > > >> > >> > OR_ABI-L2-AODC-
M6_G16_s20191591001457_e20191591004230_
> > > > > >> > >> c20191591005286.nc
> > > > > >> > >> > WARNING:
> > > > > >> > >> > WARNING: MetGrib2DataFile::data_plane() ->
unexpected PDS
> > > > > >> > >> > template
> > > > > >> > >> number
> > > > > >> > >> > (46) may cause unexpected results. Please email
> > > > > >> > >> > met_help at ucar.edu.
> > > > > >> > >> > WARNING:
> > > > > >> > >> > run.sh: line 7: 38040 Segmentation fault
(core
> dumped)
> > > > > >> > >> > regrid_data_plane
> > > > > >> > >> > OR_ABI-L2-AODC-
M6_G16_s20191591001457_e20191591004230_
> > > > > >> > >> c20191591005286.nc
> > > > > >> > >> > aqm.t06z.aot.f06.148.grib2
OBS_AOD_aqm_g16_20190608_10.nc
> > > > > >> > >> > -field
> > > > > >> > >> > 'name="AOD"; level="*";' -method UW_MEAN -v 1 -qc
0
> > > > > >> > >> >
> > > > > >> > >> > The files, script, and log can be found in
> > > > > >> > >> > https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
> > > > > >> > >> >
> > > > > >> > >> > I notice in 8.1 you no longer need the -coord
option that
> > 8.0
> > > > > >> > >> > needs.
> > > > > >> > >> >
> > > > > >> > >> > The output nc file only contains la and lon but no
> mapping
> > > > > >> > >> > AOD.
> > > > > >> > >> >
> > > > > >> > >> > Than you for your help.
> > > > > >> > >> >
> > > > > >> > >> > Ho-Chun Huang
> > > > > >> > >>
> > > > > >> > >>
> > > > > >> > >>
> > > > > >> > >>
> > > > > >>
> > > > > >>
> > > > > >>
> > > > > >>
> > > >
> > > >
> > > >
> > > >
> > >
> > >
> >
> > --
> > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> > Tara Jensen
> > Project Manager II
> > NCAR RAL and DTC
> > PO Box 3000, Boulder, Colorado 80307 USA
> > +1 303-497-8479          jensen at ucar.edu
> >
> >
>
>

------------------------------------------------
Subject: error on regrid_data_plane
From: Ho-Chun Huang - NOAA Affiliate
Time: Wed Jun 12 11:19:02 2019

Hi, Julie:

Thank you for being able to help. In addition to the template issue, I
have
a core dump due to Segmentation Fault when running on WCOSS but Howard
did
not has the same problem when he ran.  I am wondering maybe I did not
set
the environmental variables correctly, but I do not know why since I
only
know to load module met/8.1 (please see the log message in previous
email).  Maybe you can debug the causes after the dev asses is
returned
tomorrow

I tried CMAQ AOT, NGAC, and HYSPLIT grib2 files, they all had the same
error.  Maybe it is machine dependence?  I was running the
regrid_data_plane on gyre.  After production switch, I will try it
again on
tide.

best regards,
Ho-Chun

On Wed, Jun 12, 2019 at 1:08 PM Julie Prestopnik via RT
<met_help at ucar.edu>
wrote:

> Please let me know if I can do anything to help, as Tara mentioned,
> possibly copying it into the grib table path for the "standard"
> METv8.1could help.  I don't have dev access to WCOSS at this time
with the
> current production switch occurring, but I am happy to help if
needed when
> I can.
>
> Julie
>
> On Wed, Jun 12, 2019 at 11:04 AM Ho-Chun Huang - NOAA Affiliate via
RT <
> met_help at ucar.edu> wrote:
>
> >
> > <URL: https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550 >
> >
> > Hi, Tara:
> >
> > /nwprod2/grib_util.v1.0.*4*/exec/wgrib2  is the earliest version
> recognizes
> > template #46.  Grib2 version higher than v1.0.4 is also worked.
> >
> > Thank you for the reply, I will pass your response to Jason and
Jeff.
> >
> > Ho-Chun
> >
> > On Wed, Jun 12, 2019 at 12:11 PM Tara Jensen via RT
<met_help at ucar.edu>
> > wrote:
> >
> > > Ho-Chun (and Howard),
> > >
> > > Thought it might be good to jump in here.
> > >
> > > It looks like the wgrib2 that works is at:
> > > /nwprod2/grib_util.v1.0.3/exec/wgrib2  on WCOSS, is that
correct?  We
> > might
> > > be able to find table 46 and be able to grab it for inclusion in
the
> next
> > > release.  Julie might even be able to copy it into the grib
table path
> > for
> > > the "standard" METv8.1 as well.  If that doesn't resolve the
issue,
> there
> > > are other work arounds that we can point you to until the next
release
> > > (either bug fix or beta).
> > >
> > > Cheers, Tara
> > >
> > > On Wed, Jun 12, 2019 at 9:02 AM Ho-Chun Huang - NOAA Affiliate
via RT <
> > > met_help at ucar.edu> wrote:
> > >
> > > >
> > > > <URL: https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550
>
> > > >
> > > > Howard,
> > > >
> > > > Thanks.  I will consult with EMC management whether to request
adding
> > > > support of new template in MET.
> > > >
> > > > Ho-Chun
> > > >
> > > > On Wed, Jun 12, 2019 at 10:57 AM Howard Soh via RT <
> met_help at ucar.edu>
> > > > wrote:
> > > >
> > > > > There is no relationship between wgrib2 and MET.
> > > > > wgrib2 was an example which does not support the template ID
46. We
> > did
> > > > > not have the GRIB2 file with template id 46. MET gives an
warning.
> > MET
> > > > will
> > > > > stop if the template ID from the GRIB2 is not supported
instead of
> > > > > continuing as a short term solution. MET will support
template ID
> 46
> > as
> > > > the
> > > > > long term solution.
> > > > >
> > > > > Cheers,
> > > > > Howard
> > > > >
> > > > > On Wed Jun 12 08:43:03 2019, ho-chun.huang at noaa.gov wrote:
> > > > > > Hi, Howard:
> > > > > >
> > > > > > There are several versions on WCOSS of wgrib2, from
loading
> module
> > > > > > grib_util/v1.0.0(default) to  v1.1.0.
> > > > > >
> > > > > > g20a1: > module avail grib_util
> > > > > >
> > > > > >
-----------------------------------------------------------
> > > > > > /nwprod2/modulefiles
> > > > > >
-----------------------------------------------------------
> > > > > > grib_util/v1.0.0(default) grib_util/v1.0.2
> > grib_util/v1.0.4
> > > > > >    grib_util/v1.0.6
> > > > > > grib_util/v1.0.1          grib_util/v1.0.3
> > grib_util/v1.0.5
> > > > > >    grib_util/v1.1.0
> > > > > >
> > > > > > After using different version of wgrib2, I found
grib_util/v1.0.4
> > and
> > > > > > above
> > > > > > can read CMAQ AOT template #46 (see below for more
detail).
> > > > > >
> > > > > > Does MET v8.1 uses older version of wgrib2?  The version
number
> of
> > > > > > wgrib2
> > > > > > is v0.1.9.6a 5/2012 and v0.2.0.7 12/2017 for
grib_util/v1.0.0 and
> > > > > > grib_util/v1.1.0, respectively.
> > > > > > (using /nwprod2/grib_util.v1.0.0/exec/wgrib2 -version)
> > > > > >
> > > > > > Can MET v8.1 built on WCOSS using newer version of wgrib2
to
> solve
> > > > > > current
> > > > > > issue?
> > > > > >
> > > > > > Ho-Chun
> > > > > >
> > > > > > p.s.
> > > > > >
> > > > > > g20a1:~ > /nwprod2/grib_util.v1.0.3/exec/wgrib2 -V
> > > > > >
> > >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > > > > > code_table_4.5a: product definition template #46 not
supported
> > > > > > code_table_4.5b: product definition template #46 not
supported
> > > > > > 1:0:vt=2019061200:no_level:11-12 hour ave fcst:AOTK
Aerosol
> Optical
> > > > > > Thickness [Numeric]:
> > > > > >
ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> > > > > >     grid_template=30:winds(grid):
> > > > > >         Lambert Conformal: (442 x 265) input WE:SN output
WE:SN
> > res 8
> > > > > >         Lat1 21.821000 Lon1 239.372000 LoV 263.000000
> > > > > >         LatD 33.000000 Latin1 33.000000 Latin2 45.000000
> > > > > >         LatSP 0.000000 LonSP 0.000000
> > > > > >         North Pole (442 x 265) Dx 12000.000000 m Dy
12000.000000
> m
> > > > > > mode 8
> > > > > >
> > > > > > g20a1:~ > /nwprod2/grib_util.v1.0.4/exec/wgrib2 -V
> > > > > >
> > >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > > > > > 1:0:vt=2019061200:1 sigma level:11-12 hour ave fcst:AOTK
Aerosol
> > > > > > Optical
> > > > > > Thickness [Numeric]:aerosol=Ozone
> > > > > >
ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> > > > > >     grid_template=30:winds(grid):
> > > > > >         Lambert Conformal: (442 x 265) input WE:SN output
WE:SN
> > res 8
> > > > > >         Lat1 21.821000 Lon1 239.372000 LoV 263.000000
> > > > > >         LatD 33.000000 Latin1 33.000000 Latin2 45.000000
> > > > > >         LatSP 0.000000 LonSP 0.000000
> > > > > >         North Pole (442 x 265) Dx 12000.000000 m Dy
12000.000000
> m
> > > > > > mode 8
> > > > > >
> > > > > > g20a1:~ > /nwprod2/grib_util.v1.1.0/exec/wgrib2 -V
> > > > > >
> > >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > > > > > 1:0:vt=2019061200:1 sigma level:11-12 hour ave fcst:AOTK
Aerosol
> > > > > > Optical
> > > > > > Thickness [Numeric]:aerosol=Ozone:aerosol_size <0
> > > > > >
ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> > > > > >     grid_template=30:winds(grid):
> > > > > >         Lambert Conformal: (442 x 265) input WE:SN output
WE:SN
> > res 8
> > > > > >         Lat1 21.821000 Lon1 239.372000 LoV 263.000000
> > > > > >         LatD 33.000000 Latin1 33.000000 Latin2 45.000000
> > > > > >         LatSP 0.000000 LonSP 0.000000
> > > > > >         North Pole (442 x 265) Dx 12000.000000 m Dy
12000.000000
> m
> > > > > > mode 8
> > > > > >
> > > > > >
> > > > > > On Wed, Jun 12, 2019 at 8:03 AM Ho-Chun Huang - NOAA
Affiliate <
> > > > > > ho-chun.huang at noaa.gov> wrote:
> > > > > >
> > > > > > > Hi, Howard:
> > > > > > >
> > > > > > > Did you run the command on NCAR's machines?  We might
have to
> > bring
> > > > > > > John
> > > > > > > in because there is a possibility that the MET v8,.1
built on
> > > > > > > WCOSS/Gyre is
> > > > > > > not right, at least for regrid_data_plane.  Do you have
any
> > > > > > > suggestion on
> > > > > > > the environment setting I should include?  I do not
think I can
> > > > > > > figure it
> > > > > > > out what went wrong on the same run script worked for
you.
> > > > > > >
> > > > > > > Ho-Chun
> > > > > > >
> > > > > > > On Tue, Jun 11, 2019 at 6:50 PM Howard Soh via RT <
> > > met_help at ucar.edu
> > > > >
> > > > > > > wrote:
> > > > > > >
> > > > > > >> It works for me.
> > > > > > >>
> > > > > > >> met-8.1/bin/regrid_data_plane
> > > > > > >> goes-16/ABI/L2/CONUS/AOD/2019162/OR_ABI-L2-AODC-
> > > > > > >> M6_G16_s20191621821475_e20191621824248_
> > > > > > >> c20191621827269.nc ~/data/GOES-
16/ngac.t12z.aod_550nm.grib2
> > > > > > >> OBS_AOD_aqm_g16_20190608_10.nc  -field  'name="AOD";
> level="*";'
> > > > > > >> -method
> > > > > > >> UW_MEAN -v 1 -qc 0
> > > > > > >>
> > > > > > >> The output was attached.
> > > > > > >>
> > > > > > >> Cheers,
> > > > > > >> Howard
> > > > > > >>
> > > > > > >>
> > > > > > >> On Tue Jun 11 13:49:01 2019, ho-chun.huang at noaa.gov
wrote:
> > > > > > >> > Hi, Howard:
> > > > > > >> >
> > > > > > >> > Same situation,Segmentation fault, occurred to
HYSPLIT model
> > > grib2
> > > > > > >> > output.
> > > > > > >> > Can you look into the issue of "Segmentation fault?"
> > > > > > >> >
> > > > > > >> > Thank you for the help.
> > > > > > >> >
> > > > > > >> > Ho-Chun
> > > > > > >> >
> > > > > > >> > On Tue, Jun 11, 2019 at 3:30 PM Ho-Chun Huang - NOAA
> > Affiliate <
> > > > > > >> > ho-chun.huang at noaa.gov> wrote:
> > > > > > >> >
> > > > > > >> > > Hi, Howard:
> > > > > > >> > >
> > > > > > >> > > Thanks for the info.  I thought the table used in
aqm aot
> > > output
> > > > > > >> > > is
> > > > > > >> > > used
> > > > > > >> > > by WMO.  Let me consult with EMC AQ group and get
back to
> > you.
> > > > > > >> > > We
> > > > > > >> > > may have
> > > > > > >> > > to bring Tara in if it is necessary.
> > > > > > >> > >
> > > > > > >> > > Can you also check the ngac grib2 file?  I
encounter a
> > similar
> > > > > > >> > > problem,
> > > > > > >> > > segmentation fault.  The ngac file are in the same
ftp
> > > > > > >> > > directory.
> > > > > > >> > >
> > > > > > >> > > Thanks.
> > > > > > >> > >
> > > > > > >> > > Ho-Chun
> > > > > > >> > >
> > > > > > >> > > On Tue, Jun 11, 2019 at 3:17 PM Howard Soh via RT
> > > > > > >> > > <met_help at ucar.edu>
> > > > > > >> > > wrote:
> > > > > > >> > >
> > > > > > >> > >> The GRIB2 file (aqm.t06z.aot.f06.148.grib2) as the
target
> > > grid
> > > > > > >> > >> contains
> > > > > > >> > >> product definition template #46. It's not
supported by
> > wgrib2
> > > > > > >> > >> (v0.2.0.3
> > > > > > >> > >> 11/2015) and MET.
> > > > > > >> > >>
> > > > > > >> > >> > wgrib2 aqm.t06z.aot.f06.148.grib2
> > > > > > >> > >> code_table_4.5a: product definition template #46
not
> > > supported
> > > > > > >> > >> code_table_4.5b: product definition template #46
not
> > > supported
> > > > > > >> > >> 1:0:d=2019060706:AOTK:no_level:5-6 hour ave fcst:
> > > > > > >> > >>
> > > > > > >> > >> Would you use another GRIB2 file with the product
> > definition
> > > > > > >> > >> template #48
> > > > > > >> > >> or others below?
> > > > > > >> > >>
> > > > > > >> > >>
> > > > > > >> > >>
> > > > >
> https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table4-
> > > > > > >> > >> 0.shtml
> > > > > > >> > >>
> > > > > > >> > >> Here are template ids (GRIB2) which MET supports:
> > > > > > >> > >>    0: analysis or forecast
> > > > > > >> > >>    1: individual ensemble forecast, control and
> perturbed,
> > > at a
> > > > > > >> > >> horizontal level or in
> > > > > > >> > >>    2: ensemble mean
> > > > > > >> > >>    5: probability forecast
> > > > > > >> > >>    8: accumulation forecast
> > > > > > >> > >>    9: probabilistic accumulation forecast
> > > > > > >> > >>   11: individual ensemble forecast, control and
> perturbed,
> > > at a
> > > > > > >> > >> horizontal level or in
> > > > > > >> > >>   12: derived accumulation forecast
> > > > > > >> > >>   48: aerosol data
> > > > > > >> > >>
> > > > > > >> > >> Cheers,
> > > > > > >> > >> Howard
> > > > > > >> > >>
> > > > > > >> > >> On Tue Jun 11 09:49:46 2019, ho-
chun.huang at noaa.gov
> wrote:
> > > > > > >> > >> > To Whom It May Concern:
> > > > > > >> > >> >
> > > > > > >> > >> > There is an error message on using the
> regrid_data_plane,
> > > > > > >> > >> > please
> > > > > > >> > >> > help
> > > > > > >> > >> me to
> > > > > > >> > >> > debug the root of error.
> > > > > > >> > >> >
> > > > > > >> > >> > DEBUG 1: Reading data file:
> > > > > > >> > >> > OR_ABI-L2-AODC-
M6_G16_s20191591001457_e20191591004230_
> > > > > > >> > >> c20191591005286.nc
> > > > > > >> > >> > WARNING:
> > > > > > >> > >> > WARNING: MetGrib2DataFile::data_plane() ->
unexpected
> PDS
> > > > > > >> > >> > template
> > > > > > >> > >> number
> > > > > > >> > >> > (46) may cause unexpected results. Please email
> > > > > > >> > >> > met_help at ucar.edu.
> > > > > > >> > >> > WARNING:
> > > > > > >> > >> > run.sh: line 7: 38040 Segmentation fault
(core
> > dumped)
> > > > > > >> > >> > regrid_data_plane
> > > > > > >> > >> > OR_ABI-L2-AODC-
M6_G16_s20191591001457_e20191591004230_
> > > > > > >> > >> c20191591005286.nc
> > > > > > >> > >> > aqm.t06z.aot.f06.148.grib2
> OBS_AOD_aqm_g16_20190608_10.nc
> > > > > > >> > >> > -field
> > > > > > >> > >> > 'name="AOD"; level="*";' -method UW_MEAN -v 1
-qc 0
> > > > > > >> > >> >
> > > > > > >> > >> > The files, script, and log can be found in
> > > > > > >> > >> >
https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
> > > > > > >> > >> >
> > > > > > >> > >> > I notice in 8.1 you no longer need the -coord
option
> that
> > > 8.0
> > > > > > >> > >> > needs.
> > > > > > >> > >> >
> > > > > > >> > >> > The output nc file only contains la and lon but
no
> > mapping
> > > > > > >> > >> > AOD.
> > > > > > >> > >> >
> > > > > > >> > >> > Than you for your help.
> > > > > > >> > >> >
> > > > > > >> > >> > Ho-Chun Huang
> > > > > > >> > >>
> > > > > > >> > >>
> > > > > > >> > >>
> > > > > > >> > >>
> > > > > > >>
> > > > > > >>
> > > > > > >>
> > > > > > >>
> > > > >
> > > > >
> > > > >
> > > > >
> > > >
> > > >
> > >
> > > --
> > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> > > Tara Jensen
> > > Project Manager II
> > > NCAR RAL and DTC
> > > PO Box 3000, Boulder, Colorado 80307 USA
> > > +1 303-497-8479          jensen at ucar.edu
> > >
> > >
> >
> >
>
>

------------------------------------------------
Subject: error on regrid_data_plane
From: Julie Prestopnik
Time: Wed Jun 12 11:29:34 2019

Hi Ho-Chun.

I will need to install met-8.1 on tide after I regain access as that
machine has not been available to me since the met-8.1 release. I can
follow up once I have done that.

If you try on tide and still have trouble, please follow up on this
ticket
and let me know the exact command that you are running so that I can
try to
reproduce the problem on tide.

Thank you!

Julie

On Wed, Jun 12, 2019 at 11:19 AM Ho-Chun Huang - NOAA Affiliate via RT
<
met_help at ucar.edu> wrote:

>
> <URL: https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550 >
>
> Hi, Julie:
>
> Thank you for being able to help. In addition to the template issue,
I have
> a core dump due to Segmentation Fault when running on WCOSS but
Howard did
> not has the same problem when he ran.  I am wondering maybe I did
not set
> the environmental variables correctly, but I do not know why since I
only
> know to load module met/8.1 (please see the log message in previous
> email).  Maybe you can debug the causes after the dev asses is
returned
> tomorrow
>
> I tried CMAQ AOT, NGAC, and HYSPLIT grib2 files, they all had the
same
> error.  Maybe it is machine dependence?  I was running the
> regrid_data_plane on gyre.  After production switch, I will try it
again on
> tide.
>
> best regards,
> Ho-Chun
>
> On Wed, Jun 12, 2019 at 1:08 PM Julie Prestopnik via RT
<met_help at ucar.edu
> >
> wrote:
>
> > Please let me know if I can do anything to help, as Tara
mentioned,
> > possibly copying it into the grib table path for the "standard"
> > METv8.1could help.  I don't have dev access to WCOSS at this time
with
> the
> > current production switch occurring, but I am happy to help if
needed
> when
> > I can.
> >
> > Julie
> >
> > On Wed, Jun 12, 2019 at 11:04 AM Ho-Chun Huang - NOAA Affiliate
via RT <
> > met_help at ucar.edu> wrote:
> >
> > >
> > > <URL: https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550 >
> > >
> > > Hi, Tara:
> > >
> > > /nwprod2/grib_util.v1.0.*4*/exec/wgrib2  is the earliest version
> > recognizes
> > > template #46.  Grib2 version higher than v1.0.4 is also worked.
> > >
> > > Thank you for the reply, I will pass your response to Jason and
Jeff.
> > >
> > > Ho-Chun
> > >
> > > On Wed, Jun 12, 2019 at 12:11 PM Tara Jensen via RT
<met_help at ucar.edu
> >
> > > wrote:
> > >
> > > > Ho-Chun (and Howard),
> > > >
> > > > Thought it might be good to jump in here.
> > > >
> > > > It looks like the wgrib2 that works is at:
> > > > /nwprod2/grib_util.v1.0.3/exec/wgrib2  on WCOSS, is that
correct?  We
> > > might
> > > > be able to find table 46 and be able to grab it for inclusion
in the
> > next
> > > > release.  Julie might even be able to copy it into the grib
table
> path
> > > for
> > > > the "standard" METv8.1 as well.  If that doesn't resolve the
issue,
> > there
> > > > are other work arounds that we can point you to until the next
> release
> > > > (either bug fix or beta).
> > > >
> > > > Cheers, Tara
> > > >
> > > > On Wed, Jun 12, 2019 at 9:02 AM Ho-Chun Huang - NOAA Affiliate
via
> RT <
> > > > met_help at ucar.edu> wrote:
> > > >
> > > > >
> > > > > <URL:
https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550 >
> > > > >
> > > > > Howard,
> > > > >
> > > > > Thanks.  I will consult with EMC management whether to
request
> adding
> > > > > support of new template in MET.
> > > > >
> > > > > Ho-Chun
> > > > >
> > > > > On Wed, Jun 12, 2019 at 10:57 AM Howard Soh via RT <
> > met_help at ucar.edu>
> > > > > wrote:
> > > > >
> > > > > > There is no relationship between wgrib2 and MET.
> > > > > > wgrib2 was an example which does not support the template
ID 46.
> We
> > > did
> > > > > > not have the GRIB2 file with template id 46. MET gives an
> warning.
> > > MET
> > > > > will
> > > > > > stop if the template ID from the GRIB2 is not supported
instead
> of
> > > > > > continuing as a short term solution. MET will support
template ID
> > 46
> > > as
> > > > > the
> > > > > > long term solution.
> > > > > >
> > > > > > Cheers,
> > > > > > Howard
> > > > > >
> > > > > > On Wed Jun 12 08:43:03 2019, ho-chun.huang at noaa.gov wrote:
> > > > > > > Hi, Howard:
> > > > > > >
> > > > > > > There are several versions on WCOSS of wgrib2, from
loading
> > module
> > > > > > > grib_util/v1.0.0(default) to  v1.1.0.
> > > > > > >
> > > > > > > g20a1: > module avail grib_util
> > > > > > >
> > > > > > >
-----------------------------------------------------------
> > > > > > > /nwprod2/modulefiles
> > > > > > >
-----------------------------------------------------------
> > > > > > > grib_util/v1.0.0(default) grib_util/v1.0.2
> > > grib_util/v1.0.4
> > > > > > >    grib_util/v1.0.6
> > > > > > > grib_util/v1.0.1          grib_util/v1.0.3
> > > grib_util/v1.0.5
> > > > > > >    grib_util/v1.1.0
> > > > > > >
> > > > > > > After using different version of wgrib2, I found
> grib_util/v1.0.4
> > > and
> > > > > > > above
> > > > > > > can read CMAQ AOT template #46 (see below for more
detail).
> > > > > > >
> > > > > > > Does MET v8.1 uses older version of wgrib2?  The version
number
> > of
> > > > > > > wgrib2
> > > > > > > is v0.1.9.6a 5/2012 and v0.2.0.7 12/2017 for
grib_util/v1.0.0
> and
> > > > > > > grib_util/v1.1.0, respectively.
> > > > > > > (using /nwprod2/grib_util.v1.0.0/exec/wgrib2 -version)
> > > > > > >
> > > > > > > Can MET v8.1 built on WCOSS using newer version of
wgrib2 to
> > solve
> > > > > > > current
> > > > > > > issue?
> > > > > > >
> > > > > > > Ho-Chun
> > > > > > >
> > > > > > > p.s.
> > > > > > >
> > > > > > > g20a1:~ > /nwprod2/grib_util.v1.0.3/exec/wgrib2 -V
> > > > > > >
> > > >
>
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > > > > > > code_table_4.5a: product definition template #46 not
supported
> > > > > > > code_table_4.5b: product definition template #46 not
supported
> > > > > > > 1:0:vt=2019061200:no_level:11-12 hour ave fcst:AOTK
Aerosol
> > Optical
> > > > > > > Thickness [Numeric]:
> > > > > > >
ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> > > > > > >     grid_template=30:winds(grid):
> > > > > > >         Lambert Conformal: (442 x 265) input WE:SN
output WE:SN
> > > res 8
> > > > > > >         Lat1 21.821000 Lon1 239.372000 LoV 263.000000
> > > > > > >         LatD 33.000000 Latin1 33.000000 Latin2 45.000000
> > > > > > >         LatSP 0.000000 LonSP 0.000000
> > > > > > >         North Pole (442 x 265) Dx 12000.000000 m Dy
> 12000.000000
> > m
> > > > > > > mode 8
> > > > > > >
> > > > > > > g20a1:~ > /nwprod2/grib_util.v1.0.4/exec/wgrib2 -V
> > > > > > >
> > > >
>
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > > > > > > 1:0:vt=2019061200:1 sigma level:11-12 hour ave fcst:AOTK
> Aerosol
> > > > > > > Optical
> > > > > > > Thickness [Numeric]:aerosol=Ozone
> > > > > > >
ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> > > > > > >     grid_template=30:winds(grid):
> > > > > > >         Lambert Conformal: (442 x 265) input WE:SN
output WE:SN
> > > res 8
> > > > > > >         Lat1 21.821000 Lon1 239.372000 LoV 263.000000
> > > > > > >         LatD 33.000000 Latin1 33.000000 Latin2 45.000000
> > > > > > >         LatSP 0.000000 LonSP 0.000000
> > > > > > >         North Pole (442 x 265) Dx 12000.000000 m Dy
> 12000.000000
> > m
> > > > > > > mode 8
> > > > > > >
> > > > > > > g20a1:~ > /nwprod2/grib_util.v1.1.0/exec/wgrib2 -V
> > > > > > >
> > > >
>
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > > > > > > 1:0:vt=2019061200:1 sigma level:11-12 hour ave fcst:AOTK
> Aerosol
> > > > > > > Optical
> > > > > > > Thickness [Numeric]:aerosol=Ozone:aerosol_size <0
> > > > > > >
ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> > > > > > >     grid_template=30:winds(grid):
> > > > > > >         Lambert Conformal: (442 x 265) input WE:SN
output WE:SN
> > > res 8
> > > > > > >         Lat1 21.821000 Lon1 239.372000 LoV 263.000000
> > > > > > >         LatD 33.000000 Latin1 33.000000 Latin2 45.000000
> > > > > > >         LatSP 0.000000 LonSP 0.000000
> > > > > > >         North Pole (442 x 265) Dx 12000.000000 m Dy
> 12000.000000
> > m
> > > > > > > mode 8
> > > > > > >
> > > > > > >
> > > > > > > On Wed, Jun 12, 2019 at 8:03 AM Ho-Chun Huang - NOAA
Affiliate
> <
> > > > > > > ho-chun.huang at noaa.gov> wrote:
> > > > > > >
> > > > > > > > Hi, Howard:
> > > > > > > >
> > > > > > > > Did you run the command on NCAR's machines?  We might
have to
> > > bring
> > > > > > > > John
> > > > > > > > in because there is a possibility that the MET v8,.1
built on
> > > > > > > > WCOSS/Gyre is
> > > > > > > > not right, at least for regrid_data_plane.  Do you
have any
> > > > > > > > suggestion on
> > > > > > > > the environment setting I should include?  I do not
think I
> can
> > > > > > > > figure it
> > > > > > > > out what went wrong on the same run script worked for
you.
> > > > > > > >
> > > > > > > > Ho-Chun
> > > > > > > >
> > > > > > > > On Tue, Jun 11, 2019 at 6:50 PM Howard Soh via RT <
> > > > met_help at ucar.edu
> > > > > >
> > > > > > > > wrote:
> > > > > > > >
> > > > > > > >> It works for me.
> > > > > > > >>
> > > > > > > >> met-8.1/bin/regrid_data_plane
> > > > > > > >> goes-16/ABI/L2/CONUS/AOD/2019162/OR_ABI-L2-AODC-
> > > > > > > >> M6_G16_s20191621821475_e20191621824248_
> > > > > > > >> c20191621827269.nc ~/data/GOES-
16/ngac.t12z.aod_550nm.grib2
> > > > > > > >> OBS_AOD_aqm_g16_20190608_10.nc  -field  'name="AOD";
> > level="*";'
> > > > > > > >> -method
> > > > > > > >> UW_MEAN -v 1 -qc 0
> > > > > > > >>
> > > > > > > >> The output was attached.
> > > > > > > >>
> > > > > > > >> Cheers,
> > > > > > > >> Howard
> > > > > > > >>
> > > > > > > >>
> > > > > > > >> On Tue Jun 11 13:49:01 2019, ho-chun.huang at noaa.gov
wrote:
> > > > > > > >> > Hi, Howard:
> > > > > > > >> >
> > > > > > > >> > Same situation,Segmentation fault, occurred to
HYSPLIT
> model
> > > > grib2
> > > > > > > >> > output.
> > > > > > > >> > Can you look into the issue of "Segmentation
fault?"
> > > > > > > >> >
> > > > > > > >> > Thank you for the help.
> > > > > > > >> >
> > > > > > > >> > Ho-Chun
> > > > > > > >> >
> > > > > > > >> > On Tue, Jun 11, 2019 at 3:30 PM Ho-Chun Huang -
NOAA
> > > Affiliate <
> > > > > > > >> > ho-chun.huang at noaa.gov> wrote:
> > > > > > > >> >
> > > > > > > >> > > Hi, Howard:
> > > > > > > >> > >
> > > > > > > >> > > Thanks for the info.  I thought the table used in
aqm
> aot
> > > > output
> > > > > > > >> > > is
> > > > > > > >> > > used
> > > > > > > >> > > by WMO.  Let me consult with EMC AQ group and get
back
> to
> > > you.
> > > > > > > >> > > We
> > > > > > > >> > > may have
> > > > > > > >> > > to bring Tara in if it is necessary.
> > > > > > > >> > >
> > > > > > > >> > > Can you also check the ngac grib2 file?  I
encounter a
> > > similar
> > > > > > > >> > > problem,
> > > > > > > >> > > segmentation fault.  The ngac file are in the
same ftp
> > > > > > > >> > > directory.
> > > > > > > >> > >
> > > > > > > >> > > Thanks.
> > > > > > > >> > >
> > > > > > > >> > > Ho-Chun
> > > > > > > >> > >
> > > > > > > >> > > On Tue, Jun 11, 2019 at 3:17 PM Howard Soh via RT
> > > > > > > >> > > <met_help at ucar.edu>
> > > > > > > >> > > wrote:
> > > > > > > >> > >
> > > > > > > >> > >> The GRIB2 file (aqm.t06z.aot.f06.148.grib2) as
the
> target
> > > > grid
> > > > > > > >> > >> contains
> > > > > > > >> > >> product definition template #46. It's not
supported by
> > > wgrib2
> > > > > > > >> > >> (v0.2.0.3
> > > > > > > >> > >> 11/2015) and MET.
> > > > > > > >> > >>
> > > > > > > >> > >> > wgrib2 aqm.t06z.aot.f06.148.grib2
> > > > > > > >> > >> code_table_4.5a: product definition template #46
not
> > > > supported
> > > > > > > >> > >> code_table_4.5b: product definition template #46
not
> > > > supported
> > > > > > > >> > >> 1:0:d=2019060706:AOTK:no_level:5-6 hour ave
fcst:
> > > > > > > >> > >>
> > > > > > > >> > >> Would you use another GRIB2 file with the
product
> > > definition
> > > > > > > >> > >> template #48
> > > > > > > >> > >> or others below?
> > > > > > > >> > >>
> > > > > > > >> > >>
> > > > > > > >> > >>
> > > > > >
> >
https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table4-
> > > > > > > >> > >> 0.shtml
> > > > > > > >> > >>
> > > > > > > >> > >> Here are template ids (GRIB2) which MET
supports:
> > > > > > > >> > >>    0: analysis or forecast
> > > > > > > >> > >>    1: individual ensemble forecast, control and
> > perturbed,
> > > > at a
> > > > > > > >> > >> horizontal level or in
> > > > > > > >> > >>    2: ensemble mean
> > > > > > > >> > >>    5: probability forecast
> > > > > > > >> > >>    8: accumulation forecast
> > > > > > > >> > >>    9: probabilistic accumulation forecast
> > > > > > > >> > >>   11: individual ensemble forecast, control and
> > perturbed,
> > > > at a
> > > > > > > >> > >> horizontal level or in
> > > > > > > >> > >>   12: derived accumulation forecast
> > > > > > > >> > >>   48: aerosol data
> > > > > > > >> > >>
> > > > > > > >> > >> Cheers,
> > > > > > > >> > >> Howard
> > > > > > > >> > >>
> > > > > > > >> > >> On Tue Jun 11 09:49:46 2019, ho-
chun.huang at noaa.gov
> > wrote:
> > > > > > > >> > >> > To Whom It May Concern:
> > > > > > > >> > >> >
> > > > > > > >> > >> > There is an error message on using the
> > regrid_data_plane,
> > > > > > > >> > >> > please
> > > > > > > >> > >> > help
> > > > > > > >> > >> me to
> > > > > > > >> > >> > debug the root of error.
> > > > > > > >> > >> >
> > > > > > > >> > >> > DEBUG 1: Reading data file:
> > > > > > > >> > >> >
> OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> > > > > > > >> > >> c20191591005286.nc
> > > > > > > >> > >> > WARNING:
> > > > > > > >> > >> > WARNING: MetGrib2DataFile::data_plane() ->
unexpected
> > PDS
> > > > > > > >> > >> > template
> > > > > > > >> > >> number
> > > > > > > >> > >> > (46) may cause unexpected results. Please
email
> > > > > > > >> > >> > met_help at ucar.edu.
> > > > > > > >> > >> > WARNING:
> > > > > > > >> > >> > run.sh: line 7: 38040 Segmentation fault
(core
> > > dumped)
> > > > > > > >> > >> > regrid_data_plane
> > > > > > > >> > >> >
> OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> > > > > > > >> > >> c20191591005286.nc
> > > > > > > >> > >> > aqm.t06z.aot.f06.148.grib2
> > OBS_AOD_aqm_g16_20190608_10.nc
> > > > > > > >> > >> > -field
> > > > > > > >> > >> > 'name="AOD"; level="*";' -method UW_MEAN -v 1
-qc 0
> > > > > > > >> > >> >
> > > > > > > >> > >> > The files, script, and log can be found in
> > > > > > > >> > >> >
https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
> > > > > > > >> > >> >
> > > > > > > >> > >> > I notice in 8.1 you no longer need the -coord
option
> > that
> > > > 8.0
> > > > > > > >> > >> > needs.
> > > > > > > >> > >> >
> > > > > > > >> > >> > The output nc file only contains la and lon
but no
> > > mapping
> > > > > > > >> > >> > AOD.
> > > > > > > >> > >> >
> > > > > > > >> > >> > Than you for your help.
> > > > > > > >> > >> >
> > > > > > > >> > >> > Ho-Chun Huang
> > > > > > > >> > >>
> > > > > > > >> > >>
> > > > > > > >> > >>
> > > > > > > >> > >>
> > > > > > > >>
> > > > > > > >>
> > > > > > > >>
> > > > > > > >>
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > >
> > > > >
> > > >
> > > > --
> > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> > > > Tara Jensen
> > > > Project Manager II
> > > > NCAR RAL and DTC
> > > > PO Box 3000, Boulder, Colorado 80307 USA
> > > > +1 303-497-8479          jensen at ucar.edu
> > > >
> > > >
> > >
> > >
> >
> >
>
>

------------------------------------------------
Subject: error on regrid_data_plane
From: Ho-Chun Huang - NOAA Affiliate
Time: Wed Jun 12 11:35:31 2019

Julie:

Thanks for the reminder.  I forgot about the met/8.1 installation on
tide.
I will keep testing the script till it can successfully load met/8.1
on
tide.  You don't need to spend time to inform me separately.

Will contact the helpdesk again, if I encounter the same segmentation
fault
error on tide.

Ho-Chun

On Wed, Jun 12, 2019 at 1:29 PM Julie Prestopnik via RT
<met_help at ucar.edu>
wrote:

> Hi Ho-Chun.
>
> I will need to install met-8.1 on tide after I regain access as that
> machine has not been available to me since the met-8.1 release. I
can
> follow up once I have done that.
>
> If you try on tide and still have trouble, please follow up on this
ticket
> and let me know the exact command that you are running so that I can
try to
> reproduce the problem on tide.
>
> Thank you!
>
> Julie
>
> On Wed, Jun 12, 2019 at 11:19 AM Ho-Chun Huang - NOAA Affiliate via
RT <
> met_help at ucar.edu> wrote:
>
> >
> > <URL: https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550 >
> >
> > Hi, Julie:
> >
> > Thank you for being able to help. In addition to the template
issue, I
> have
> > a core dump due to Segmentation Fault when running on WCOSS but
Howard
> did
> > not has the same problem when he ran.  I am wondering maybe I did
not set
> > the environmental variables correctly, but I do not know why since
I only
> > know to load module met/8.1 (please see the log message in
previous
> > email).  Maybe you can debug the causes after the dev asses is
returned
> > tomorrow
> >
> > I tried CMAQ AOT, NGAC, and HYSPLIT grib2 files, they all had the
same
> > error.  Maybe it is machine dependence?  I was running the
> > regrid_data_plane on gyre.  After production switch, I will try it
again
> on
> > tide.
> >
> > best regards,
> > Ho-Chun
> >
> > On Wed, Jun 12, 2019 at 1:08 PM Julie Prestopnik via RT <
> met_help at ucar.edu
> > >
> > wrote:
> >
> > > Please let me know if I can do anything to help, as Tara
mentioned,
> > > possibly copying it into the grib table path for the "standard"
> > > METv8.1could help.  I don't have dev access to WCOSS at this
time with
> > the
> > > current production switch occurring, but I am happy to help if
needed
> > when
> > > I can.
> > >
> > > Julie
> > >
> > > On Wed, Jun 12, 2019 at 11:04 AM Ho-Chun Huang - NOAA Affiliate
via RT
> <
> > > met_help at ucar.edu> wrote:
> > >
> > > >
> > > > <URL: https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550
>
> > > >
> > > > Hi, Tara:
> > > >
> > > > /nwprod2/grib_util.v1.0.*4*/exec/wgrib2  is the earliest
version
> > > recognizes
> > > > template #46.  Grib2 version higher than v1.0.4 is also
worked.
> > > >
> > > > Thank you for the reply, I will pass your response to Jason
and Jeff.
> > > >
> > > > Ho-Chun
> > > >
> > > > On Wed, Jun 12, 2019 at 12:11 PM Tara Jensen via RT <
> met_help at ucar.edu
> > >
> > > > wrote:
> > > >
> > > > > Ho-Chun (and Howard),
> > > > >
> > > > > Thought it might be good to jump in here.
> > > > >
> > > > > It looks like the wgrib2 that works is at:
> > > > > /nwprod2/grib_util.v1.0.3/exec/wgrib2  on WCOSS, is that
correct?
> We
> > > > might
> > > > > be able to find table 46 and be able to grab it for
inclusion in
> the
> > > next
> > > > > release.  Julie might even be able to copy it into the grib
table
> > path
> > > > for
> > > > > the "standard" METv8.1 as well.  If that doesn't resolve the
issue,
> > > there
> > > > > are other work arounds that we can point you to until the
next
> > release
> > > > > (either bug fix or beta).
> > > > >
> > > > > Cheers, Tara
> > > > >
> > > > > On Wed, Jun 12, 2019 at 9:02 AM Ho-Chun Huang - NOAA
Affiliate via
> > RT <
> > > > > met_help at ucar.edu> wrote:
> > > > >
> > > > > >
> > > > > > <URL:
https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550 >
> > > > > >
> > > > > > Howard,
> > > > > >
> > > > > > Thanks.  I will consult with EMC management whether to
request
> > adding
> > > > > > support of new template in MET.
> > > > > >
> > > > > > Ho-Chun
> > > > > >
> > > > > > On Wed, Jun 12, 2019 at 10:57 AM Howard Soh via RT <
> > > met_help at ucar.edu>
> > > > > > wrote:
> > > > > >
> > > > > > > There is no relationship between wgrib2 and MET.
> > > > > > > wgrib2 was an example which does not support the
template ID
> 46.
> > We
> > > > did
> > > > > > > not have the GRIB2 file with template id 46. MET gives
an
> > warning.
> > > > MET
> > > > > > will
> > > > > > > stop if the template ID from the GRIB2 is not supported
instead
> > of
> > > > > > > continuing as a short term solution. MET will support
template
> ID
> > > 46
> > > > as
> > > > > > the
> > > > > > > long term solution.
> > > > > > >
> > > > > > > Cheers,
> > > > > > > Howard
> > > > > > >
> > > > > > > On Wed Jun 12 08:43:03 2019, ho-chun.huang at noaa.gov
wrote:
> > > > > > > > Hi, Howard:
> > > > > > > >
> > > > > > > > There are several versions on WCOSS of wgrib2, from
loading
> > > module
> > > > > > > > grib_util/v1.0.0(default) to  v1.1.0.
> > > > > > > >
> > > > > > > > g20a1: > module avail grib_util
> > > > > > > >
> > > > > > > >
-----------------------------------------------------------
> > > > > > > > /nwprod2/modulefiles
> > > > > > > >
-----------------------------------------------------------
> > > > > > > > grib_util/v1.0.0(default) grib_util/v1.0.2
> > > > grib_util/v1.0.4
> > > > > > > >    grib_util/v1.0.6
> > > > > > > > grib_util/v1.0.1          grib_util/v1.0.3
> > > > grib_util/v1.0.5
> > > > > > > >    grib_util/v1.1.0
> > > > > > > >
> > > > > > > > After using different version of wgrib2, I found
> > grib_util/v1.0.4
> > > > and
> > > > > > > > above
> > > > > > > > can read CMAQ AOT template #46 (see below for more
detail).
> > > > > > > >
> > > > > > > > Does MET v8.1 uses older version of wgrib2?  The
version
> number
> > > of
> > > > > > > > wgrib2
> > > > > > > > is v0.1.9.6a 5/2012 and v0.2.0.7 12/2017 for
grib_util/v1.0.0
> > and
> > > > > > > > grib_util/v1.1.0, respectively.
> > > > > > > > (using /nwprod2/grib_util.v1.0.0/exec/wgrib2 -version)
> > > > > > > >
> > > > > > > > Can MET v8.1 built on WCOSS using newer version of
wgrib2 to
> > > solve
> > > > > > > > current
> > > > > > > > issue?
> > > > > > > >
> > > > > > > > Ho-Chun
> > > > > > > >
> > > > > > > > p.s.
> > > > > > > >
> > > > > > > > g20a1:~ > /nwprod2/grib_util.v1.0.3/exec/wgrib2 -V
> > > > > > > >
> > > > >
> >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > > > > > > > code_table_4.5a: product definition template #46 not
> supported
> > > > > > > > code_table_4.5b: product definition template #46 not
> supported
> > > > > > > > 1:0:vt=2019061200:no_level:11-12 hour ave fcst:AOTK
Aerosol
> > > Optical
> > > > > > > > Thickness [Numeric]:
> > > > > > > >
>  ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> > > > > > > >     grid_template=30:winds(grid):
> > > > > > > >         Lambert Conformal: (442 x 265) input WE:SN
output
> WE:SN
> > > > res 8
> > > > > > > >         Lat1 21.821000 Lon1 239.372000 LoV 263.000000
> > > > > > > >         LatD 33.000000 Latin1 33.000000 Latin2
45.000000
> > > > > > > >         LatSP 0.000000 LonSP 0.000000
> > > > > > > >         North Pole (442 x 265) Dx 12000.000000 m Dy
> > 12000.000000
> > > m
> > > > > > > > mode 8
> > > > > > > >
> > > > > > > > g20a1:~ > /nwprod2/grib_util.v1.0.4/exec/wgrib2 -V
> > > > > > > >
> > > > >
> >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > > > > > > > 1:0:vt=2019061200:1 sigma level:11-12 hour ave
fcst:AOTK
> > Aerosol
> > > > > > > > Optical
> > > > > > > > Thickness [Numeric]:aerosol=Ozone
> > > > > > > >
>  ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> > > > > > > >     grid_template=30:winds(grid):
> > > > > > > >         Lambert Conformal: (442 x 265) input WE:SN
output
> WE:SN
> > > > res 8
> > > > > > > >         Lat1 21.821000 Lon1 239.372000 LoV 263.000000
> > > > > > > >         LatD 33.000000 Latin1 33.000000 Latin2
45.000000
> > > > > > > >         LatSP 0.000000 LonSP 0.000000
> > > > > > > >         North Pole (442 x 265) Dx 12000.000000 m Dy
> > 12000.000000
> > > m
> > > > > > > > mode 8
> > > > > > > >
> > > > > > > > g20a1:~ > /nwprod2/grib_util.v1.1.0/exec/wgrib2 -V
> > > > > > > >
> > > > >
> >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > > > > > > > 1:0:vt=2019061200:1 sigma level:11-12 hour ave
fcst:AOTK
> > Aerosol
> > > > > > > > Optical
> > > > > > > > Thickness [Numeric]:aerosol=Ozone:aerosol_size <0
> > > > > > > >
>  ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> > > > > > > >     grid_template=30:winds(grid):
> > > > > > > >         Lambert Conformal: (442 x 265) input WE:SN
output
> WE:SN
> > > > res 8
> > > > > > > >         Lat1 21.821000 Lon1 239.372000 LoV 263.000000
> > > > > > > >         LatD 33.000000 Latin1 33.000000 Latin2
45.000000
> > > > > > > >         LatSP 0.000000 LonSP 0.000000
> > > > > > > >         North Pole (442 x 265) Dx 12000.000000 m Dy
> > 12000.000000
> > > m
> > > > > > > > mode 8
> > > > > > > >
> > > > > > > >
> > > > > > > > On Wed, Jun 12, 2019 at 8:03 AM Ho-Chun Huang - NOAA
> Affiliate
> > <
> > > > > > > > ho-chun.huang at noaa.gov> wrote:
> > > > > > > >
> > > > > > > > > Hi, Howard:
> > > > > > > > >
> > > > > > > > > Did you run the command on NCAR's machines?  We
might have
> to
> > > > bring
> > > > > > > > > John
> > > > > > > > > in because there is a possibility that the MET v8,.1
built
> on
> > > > > > > > > WCOSS/Gyre is
> > > > > > > > > not right, at least for regrid_data_plane.  Do you
have any
> > > > > > > > > suggestion on
> > > > > > > > > the environment setting I should include?  I do not
think I
> > can
> > > > > > > > > figure it
> > > > > > > > > out what went wrong on the same run script worked
for you.
> > > > > > > > >
> > > > > > > > > Ho-Chun
> > > > > > > > >
> > > > > > > > > On Tue, Jun 11, 2019 at 6:50 PM Howard Soh via RT <
> > > > > met_help at ucar.edu
> > > > > > >
> > > > > > > > > wrote:
> > > > > > > > >
> > > > > > > > >> It works for me.
> > > > > > > > >>
> > > > > > > > >> met-8.1/bin/regrid_data_plane
> > > > > > > > >> goes-16/ABI/L2/CONUS/AOD/2019162/OR_ABI-L2-AODC-
> > > > > > > > >> M6_G16_s20191621821475_e20191621824248_
> > > > > > > > >> c20191621827269.nc
> ~/data/GOES-16/ngac.t12z.aod_550nm.grib2
> > > > > > > > >> OBS_AOD_aqm_g16_20190608_10.nc  -field
'name="AOD";
> > > level="*";'
> > > > > > > > >> -method
> > > > > > > > >> UW_MEAN -v 1 -qc 0
> > > > > > > > >>
> > > > > > > > >> The output was attached.
> > > > > > > > >>
> > > > > > > > >> Cheers,
> > > > > > > > >> Howard
> > > > > > > > >>
> > > > > > > > >>
> > > > > > > > >> On Tue Jun 11 13:49:01 2019, ho-chun.huang at noaa.gov
> wrote:
> > > > > > > > >> > Hi, Howard:
> > > > > > > > >> >
> > > > > > > > >> > Same situation,Segmentation fault, occurred to
HYSPLIT
> > model
> > > > > grib2
> > > > > > > > >> > output.
> > > > > > > > >> > Can you look into the issue of "Segmentation
fault?"
> > > > > > > > >> >
> > > > > > > > >> > Thank you for the help.
> > > > > > > > >> >
> > > > > > > > >> > Ho-Chun
> > > > > > > > >> >
> > > > > > > > >> > On Tue, Jun 11, 2019 at 3:30 PM Ho-Chun Huang -
NOAA
> > > > Affiliate <
> > > > > > > > >> > ho-chun.huang at noaa.gov> wrote:
> > > > > > > > >> >
> > > > > > > > >> > > Hi, Howard:
> > > > > > > > >> > >
> > > > > > > > >> > > Thanks for the info.  I thought the table used
in aqm
> > aot
> > > > > output
> > > > > > > > >> > > is
> > > > > > > > >> > > used
> > > > > > > > >> > > by WMO.  Let me consult with EMC AQ group and
get back
> > to
> > > > you.
> > > > > > > > >> > > We
> > > > > > > > >> > > may have
> > > > > > > > >> > > to bring Tara in if it is necessary.
> > > > > > > > >> > >
> > > > > > > > >> > > Can you also check the ngac grib2 file?  I
encounter a
> > > > similar
> > > > > > > > >> > > problem,
> > > > > > > > >> > > segmentation fault.  The ngac file are in the
same ftp
> > > > > > > > >> > > directory.
> > > > > > > > >> > >
> > > > > > > > >> > > Thanks.
> > > > > > > > >> > >
> > > > > > > > >> > > Ho-Chun
> > > > > > > > >> > >
> > > > > > > > >> > > On Tue, Jun 11, 2019 at 3:17 PM Howard Soh via
RT
> > > > > > > > >> > > <met_help at ucar.edu>
> > > > > > > > >> > > wrote:
> > > > > > > > >> > >
> > > > > > > > >> > >> The GRIB2 file (aqm.t06z.aot.f06.148.grib2) as
the
> > target
> > > > > grid
> > > > > > > > >> > >> contains
> > > > > > > > >> > >> product definition template #46. It's not
supported
> by
> > > > wgrib2
> > > > > > > > >> > >> (v0.2.0.3
> > > > > > > > >> > >> 11/2015) and MET.
> > > > > > > > >> > >>
> > > > > > > > >> > >> > wgrib2 aqm.t06z.aot.f06.148.grib2
> > > > > > > > >> > >> code_table_4.5a: product definition template
#46 not
> > > > > supported
> > > > > > > > >> > >> code_table_4.5b: product definition template
#46 not
> > > > > supported
> > > > > > > > >> > >> 1:0:d=2019060706:AOTK:no_level:5-6 hour ave
fcst:
> > > > > > > > >> > >>
> > > > > > > > >> > >> Would you use another GRIB2 file with the
product
> > > > definition
> > > > > > > > >> > >> template #48
> > > > > > > > >> > >> or others below?
> > > > > > > > >> > >>
> > > > > > > > >> > >>
> > > > > > > > >> > >>
> > > > > > >
> > >
https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table4-
> > > > > > > > >> > >> 0.shtml
> > > > > > > > >> > >>
> > > > > > > > >> > >> Here are template ids (GRIB2) which MET
supports:
> > > > > > > > >> > >>    0: analysis or forecast
> > > > > > > > >> > >>    1: individual ensemble forecast, control
and
> > > perturbed,
> > > > > at a
> > > > > > > > >> > >> horizontal level or in
> > > > > > > > >> > >>    2: ensemble mean
> > > > > > > > >> > >>    5: probability forecast
> > > > > > > > >> > >>    8: accumulation forecast
> > > > > > > > >> > >>    9: probabilistic accumulation forecast
> > > > > > > > >> > >>   11: individual ensemble forecast, control
and
> > > perturbed,
> > > > > at a
> > > > > > > > >> > >> horizontal level or in
> > > > > > > > >> > >>   12: derived accumulation forecast
> > > > > > > > >> > >>   48: aerosol data
> > > > > > > > >> > >>
> > > > > > > > >> > >> Cheers,
> > > > > > > > >> > >> Howard
> > > > > > > > >> > >>
> > > > > > > > >> > >> On Tue Jun 11 09:49:46 2019, ho-
chun.huang at noaa.gov
> > > wrote:
> > > > > > > > >> > >> > To Whom It May Concern:
> > > > > > > > >> > >> >
> > > > > > > > >> > >> > There is an error message on using the
> > > regrid_data_plane,
> > > > > > > > >> > >> > please
> > > > > > > > >> > >> > help
> > > > > > > > >> > >> me to
> > > > > > > > >> > >> > debug the root of error.
> > > > > > > > >> > >> >
> > > > > > > > >> > >> > DEBUG 1: Reading data file:
> > > > > > > > >> > >> >
> > OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> > > > > > > > >> > >> c20191591005286.nc
> > > > > > > > >> > >> > WARNING:
> > > > > > > > >> > >> > WARNING: MetGrib2DataFile::data_plane() ->
> unexpected
> > > PDS
> > > > > > > > >> > >> > template
> > > > > > > > >> > >> number
> > > > > > > > >> > >> > (46) may cause unexpected results. Please
email
> > > > > > > > >> > >> > met_help at ucar.edu.
> > > > > > > > >> > >> > WARNING:
> > > > > > > > >> > >> > run.sh: line 7: 38040 Segmentation fault
(core
> > > > dumped)
> > > > > > > > >> > >> > regrid_data_plane
> > > > > > > > >> > >> >
> > OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> > > > > > > > >> > >> c20191591005286.nc
> > > > > > > > >> > >> > aqm.t06z.aot.f06.148.grib2
> > > OBS_AOD_aqm_g16_20190608_10.nc
> > > > > > > > >> > >> > -field
> > > > > > > > >> > >> > 'name="AOD"; level="*";' -method UW_MEAN -v
1 -qc 0
> > > > > > > > >> > >> >
> > > > > > > > >> > >> > The files, script, and log can be found in
> > > > > > > > >> > >> >
https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
> > > > > > > > >> > >> >
> > > > > > > > >> > >> > I notice in 8.1 you no longer need the
-coord
> option
> > > that
> > > > > 8.0
> > > > > > > > >> > >> > needs.
> > > > > > > > >> > >> >
> > > > > > > > >> > >> > The output nc file only contains la and lon
but no
> > > > mapping
> > > > > > > > >> > >> > AOD.
> > > > > > > > >> > >> >
> > > > > > > > >> > >> > Than you for your help.
> > > > > > > > >> > >> >
> > > > > > > > >> > >> > Ho-Chun Huang
> > > > > > > > >> > >>
> > > > > > > > >> > >>
> > > > > > > > >> > >>
> > > > > > > > >> > >>
> > > > > > > > >>
> > > > > > > > >>
> > > > > > > > >>
> > > > > > > > >>
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > >
> > > > > >
> > > > >
> > > > > --
> > > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> > > > > Tara Jensen
> > > > > Project Manager II
> > > > > NCAR RAL and DTC
> > > > > PO Box 3000, Boulder, Colorado 80307 USA
> > > > > +1 303-497-8479          jensen at ucar.edu
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >
> >
> >
>
>

------------------------------------------------
Subject: error on regrid_data_plane
From: Ho-Chun Huang - NOAA Affiliate
Time: Wed Jun 19 12:20:12 2019

Hi, Julie:

When you have time, please help me to find out why there is a core
dumped
using regrid-data_plane on tide (to NGAC grid).

all data file should be on

https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/

Script need to revised to use the setting on tide (as below)

Thank you.

Ho-Chun

p.s.
> cat run.ngac.sh
#!/bin/sh
hl=`hostname | cut -c1-1`
if [ ${hl} == 'g' ]; then
   module purge
   module use /global/noscrub/Julie.Prestopnik/modulefiles
   module load  met/8.1
else
   module purge
   module use  /usrx/local/dev/modulefiles
   module load  met/8.1
fi

   regrid_data_plane
OR_ABI-L2-AODC-
M6_G16_s20191591001457_e20191591004230_c20191591005286.nc
 ngac.t12z.aod_550nm.grib2 \
                     OBS_AOD_aqm_g16_20190608_10.nc  -field
'name="AOD";
level="(*,*)";' -method UW_MEAN -v 1 -qc 0
   exit

 > bash run.ngac.sh
DEBUG 1: Reading data file:
OR_ABI-L2-AODC-
M6_G16_s20191591001457_e20191591004230_c20191591005286.nc
run.ngac.sh: line 14: 24808 Segmentation fault      (core dumped)
regrid_data_plane
OR_ABI-L2-AODC-
M6_G16_s20191591001457_e20191591004230_c20191591005286.nc
ngac.t12z.aod_550nm.grib2 OBS_AOD_aqm_g16_20190608_10.nc -field
'name="AOD"; level="(*,*)";' -method UW_MEAN -v 1 -qc 0

On Wed, Jun 12, 2019 at 1:35 PM Ho-Chun Huang - NOAA Affiliate <
ho-chun.huang at noaa.gov> wrote:

> Julie:
>
> Thanks for the reminder.  I forgot about the met/8.1 installation on
tide.
> I will keep testing the script till it can successfully load met/8.1
on
> tide.  You don't need to spend time to inform me separately.
>
> Will contact the helpdesk again, if I encounter the same
segmentation
> fault error on tide.
>
> Ho-Chun
>
> On Wed, Jun 12, 2019 at 1:29 PM Julie Prestopnik via RT
<met_help at ucar.edu>
> wrote:
>
>> Hi Ho-Chun.
>>
>> I will need to install met-8.1 on tide after I regain access as
that
>> machine has not been available to me since the met-8.1 release. I
can
>> follow up once I have done that.
>>
>> If you try on tide and still have trouble, please follow up on this
ticket
>> and let me know the exact command that you are running so that I
can try
>> to
>> reproduce the problem on tide.
>>
>> Thank you!
>>
>> Julie
>>
>> On Wed, Jun 12, 2019 at 11:19 AM Ho-Chun Huang - NOAA Affiliate via
RT <
>> met_help at ucar.edu> wrote:
>>
>> >
>> > <URL: https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550 >
>> >
>> > Hi, Julie:
>> >
>> > Thank you for being able to help. In addition to the template
issue, I
>> have
>> > a core dump due to Segmentation Fault when running on WCOSS but
Howard
>> did
>> > not has the same problem when he ran.  I am wondering maybe I did
not
>> set
>> > the environmental variables correctly, but I do not know why
since I
>> only
>> > know to load module met/8.1 (please see the log message in
previous
>> > email).  Maybe you can debug the causes after the dev asses is
returned
>> > tomorrow
>> >
>> > I tried CMAQ AOT, NGAC, and HYSPLIT grib2 files, they all had the
same
>> > error.  Maybe it is machine dependence?  I was running the
>> > regrid_data_plane on gyre.  After production switch, I will try
it
>> again on
>> > tide.
>> >
>> > best regards,
>> > Ho-Chun
>> >
>> > On Wed, Jun 12, 2019 at 1:08 PM Julie Prestopnik via RT <
>> met_help at ucar.edu
>> > >
>> > wrote:
>> >
>> > > Please let me know if I can do anything to help, as Tara
mentioned,
>> > > possibly copying it into the grib table path for the "standard"
>> > > METv8.1could help.  I don't have dev access to WCOSS at this
time with
>> > the
>> > > current production switch occurring, but I am happy to help if
needed
>> > when
>> > > I can.
>> > >
>> > > Julie
>> > >
>> > > On Wed, Jun 12, 2019 at 11:04 AM Ho-Chun Huang - NOAA Affiliate
via
>> RT <
>> > > met_help at ucar.edu> wrote:
>> > >
>> > > >
>> > > > <URL: https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550
>
>> > > >
>> > > > Hi, Tara:
>> > > >
>> > > > /nwprod2/grib_util.v1.0.*4*/exec/wgrib2  is the earliest
version
>> > > recognizes
>> > > > template #46.  Grib2 version higher than v1.0.4 is also
worked.
>> > > >
>> > > > Thank you for the reply, I will pass your response to Jason
and
>> Jeff.
>> > > >
>> > > > Ho-Chun
>> > > >
>> > > > On Wed, Jun 12, 2019 at 12:11 PM Tara Jensen via RT <
>> met_help at ucar.edu
>> > >
>> > > > wrote:
>> > > >
>> > > > > Ho-Chun (and Howard),
>> > > > >
>> > > > > Thought it might be good to jump in here.
>> > > > >
>> > > > > It looks like the wgrib2 that works is at:
>> > > > > /nwprod2/grib_util.v1.0.3/exec/wgrib2  on WCOSS, is that
>> correct?  We
>> > > > might
>> > > > > be able to find table 46 and be able to grab it for
inclusion in
>> the
>> > > next
>> > > > > release.  Julie might even be able to copy it into the grib
table
>> > path
>> > > > for
>> > > > > the "standard" METv8.1 as well.  If that doesn't resolve
the
>> issue,
>> > > there
>> > > > > are other work arounds that we can point you to until the
next
>> > release
>> > > > > (either bug fix or beta).
>> > > > >
>> > > > > Cheers, Tara
>> > > > >
>> > > > > On Wed, Jun 12, 2019 at 9:02 AM Ho-Chun Huang - NOAA
Affiliate via
>> > RT <
>> > > > > met_help at ucar.edu> wrote:
>> > > > >
>> > > > > >
>> > > > > > <URL:
https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550 >
>> > > > > >
>> > > > > > Howard,
>> > > > > >
>> > > > > > Thanks.  I will consult with EMC management whether to
request
>> > adding
>> > > > > > support of new template in MET.
>> > > > > >
>> > > > > > Ho-Chun
>> > > > > >
>> > > > > > On Wed, Jun 12, 2019 at 10:57 AM Howard Soh via RT <
>> > > met_help at ucar.edu>
>> > > > > > wrote:
>> > > > > >
>> > > > > > > There is no relationship between wgrib2 and MET.
>> > > > > > > wgrib2 was an example which does not support the
template ID
>> 46.
>> > We
>> > > > did
>> > > > > > > not have the GRIB2 file with template id 46. MET gives
an
>> > warning.
>> > > > MET
>> > > > > > will
>> > > > > > > stop if the template ID from the GRIB2 is not supported
>> instead
>> > of
>> > > > > > > continuing as a short term solution. MET will support
>> template ID
>> > > 46
>> > > > as
>> > > > > > the
>> > > > > > > long term solution.
>> > > > > > >
>> > > > > > > Cheers,
>> > > > > > > Howard
>> > > > > > >
>> > > > > > > On Wed Jun 12 08:43:03 2019, ho-chun.huang at noaa.gov
wrote:
>> > > > > > > > Hi, Howard:
>> > > > > > > >
>> > > > > > > > There are several versions on WCOSS of wgrib2, from
loading
>> > > module
>> > > > > > > > grib_util/v1.0.0(default) to  v1.1.0.
>> > > > > > > >
>> > > > > > > > g20a1: > module avail grib_util
>> > > > > > > >
>> > > > > > > >
-----------------------------------------------------------
>> > > > > > > > /nwprod2/modulefiles
>> > > > > > > >
-----------------------------------------------------------
>> > > > > > > > grib_util/v1.0.0(default) grib_util/v1.0.2
>> > > > grib_util/v1.0.4
>> > > > > > > >    grib_util/v1.0.6
>> > > > > > > > grib_util/v1.0.1          grib_util/v1.0.3
>> > > > grib_util/v1.0.5
>> > > > > > > >    grib_util/v1.1.0
>> > > > > > > >
>> > > > > > > > After using different version of wgrib2, I found
>> > grib_util/v1.0.4
>> > > > and
>> > > > > > > > above
>> > > > > > > > can read CMAQ AOT template #46 (see below for more
detail).
>> > > > > > > >
>> > > > > > > > Does MET v8.1 uses older version of wgrib2?  The
version
>> number
>> > > of
>> > > > > > > > wgrib2
>> > > > > > > > is v0.1.9.6a 5/2012 and v0.2.0.7 12/2017 for
>> grib_util/v1.0.0
>> > and
>> > > > > > > > grib_util/v1.1.0, respectively.
>> > > > > > > > (using /nwprod2/grib_util.v1.0.0/exec/wgrib2
-version)
>> > > > > > > >
>> > > > > > > > Can MET v8.1 built on WCOSS using newer version of
wgrib2 to
>> > > solve
>> > > > > > > > current
>> > > > > > > > issue?
>> > > > > > > >
>> > > > > > > > Ho-Chun
>> > > > > > > >
>> > > > > > > > p.s.
>> > > > > > > >
>> > > > > > > > g20a1:~ > /nwprod2/grib_util.v1.0.3/exec/wgrib2 -V
>> > > > > > > >
>> > > > >
>> >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
>> > > > > > > > code_table_4.5a: product definition template #46 not
>> supported
>> > > > > > > > code_table_4.5b: product definition template #46 not
>> supported
>> > > > > > > > 1:0:vt=2019061200:no_level:11-12 hour ave fcst:AOTK
Aerosol
>> > > Optical
>> > > > > > > > Thickness [Numeric]:
>> > > > > > > >
>>  ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
>> > > > > > > >     grid_template=30:winds(grid):
>> > > > > > > >         Lambert Conformal: (442 x 265) input WE:SN
output
>> WE:SN
>> > > > res 8
>> > > > > > > >         Lat1 21.821000 Lon1 239.372000 LoV 263.000000
>> > > > > > > >         LatD 33.000000 Latin1 33.000000 Latin2
45.000000
>> > > > > > > >         LatSP 0.000000 LonSP 0.000000
>> > > > > > > >         North Pole (442 x 265) Dx 12000.000000 m Dy
>> > 12000.000000
>> > > m
>> > > > > > > > mode 8
>> > > > > > > >
>> > > > > > > > g20a1:~ > /nwprod2/grib_util.v1.0.4/exec/wgrib2 -V
>> > > > > > > >
>> > > > >
>> >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
>> > > > > > > > 1:0:vt=2019061200:1 sigma level:11-12 hour ave
fcst:AOTK
>> > Aerosol
>> > > > > > > > Optical
>> > > > > > > > Thickness [Numeric]:aerosol=Ozone
>> > > > > > > >
>>  ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
>> > > > > > > >     grid_template=30:winds(grid):
>> > > > > > > >         Lambert Conformal: (442 x 265) input WE:SN
output
>> WE:SN
>> > > > res 8
>> > > > > > > >         Lat1 21.821000 Lon1 239.372000 LoV 263.000000
>> > > > > > > >         LatD 33.000000 Latin1 33.000000 Latin2
45.000000
>> > > > > > > >         LatSP 0.000000 LonSP 0.000000
>> > > > > > > >         North Pole (442 x 265) Dx 12000.000000 m Dy
>> > 12000.000000
>> > > m
>> > > > > > > > mode 8
>> > > > > > > >
>> > > > > > > > g20a1:~ > /nwprod2/grib_util.v1.1.0/exec/wgrib2 -V
>> > > > > > > >
>> > > > >
>> >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
>> > > > > > > > 1:0:vt=2019061200:1 sigma level:11-12 hour ave
fcst:AOTK
>> > Aerosol
>> > > > > > > > Optical
>> > > > > > > > Thickness [Numeric]:aerosol=Ozone:aerosol_size <0
>> > > > > > > >
>>  ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
>> > > > > > > >     grid_template=30:winds(grid):
>> > > > > > > >         Lambert Conformal: (442 x 265) input WE:SN
output
>> WE:SN
>> > > > res 8
>> > > > > > > >         Lat1 21.821000 Lon1 239.372000 LoV 263.000000
>> > > > > > > >         LatD 33.000000 Latin1 33.000000 Latin2
45.000000
>> > > > > > > >         LatSP 0.000000 LonSP 0.000000
>> > > > > > > >         North Pole (442 x 265) Dx 12000.000000 m Dy
>> > 12000.000000
>> > > m
>> > > > > > > > mode 8
>> > > > > > > >
>> > > > > > > >
>> > > > > > > > On Wed, Jun 12, 2019 at 8:03 AM Ho-Chun Huang - NOAA
>> Affiliate
>> > <
>> > > > > > > > ho-chun.huang at noaa.gov> wrote:
>> > > > > > > >
>> > > > > > > > > Hi, Howard:
>> > > > > > > > >
>> > > > > > > > > Did you run the command on NCAR's machines?  We
might
>> have to
>> > > > bring
>> > > > > > > > > John
>> > > > > > > > > in because there is a possibility that the MET
v8,.1
>> built on
>> > > > > > > > > WCOSS/Gyre is
>> > > > > > > > > not right, at least for regrid_data_plane.  Do you
have
>> any
>> > > > > > > > > suggestion on
>> > > > > > > > > the environment setting I should include?  I do not
think
>> I
>> > can
>> > > > > > > > > figure it
>> > > > > > > > > out what went wrong on the same run script worked
for you.
>> > > > > > > > >
>> > > > > > > > > Ho-Chun
>> > > > > > > > >
>> > > > > > > > > On Tue, Jun 11, 2019 at 6:50 PM Howard Soh via RT <
>> > > > > met_help at ucar.edu
>> > > > > > >
>> > > > > > > > > wrote:
>> > > > > > > > >
>> > > > > > > > >> It works for me.
>> > > > > > > > >>
>> > > > > > > > >> met-8.1/bin/regrid_data_plane
>> > > > > > > > >> goes-16/ABI/L2/CONUS/AOD/2019162/OR_ABI-L2-AODC-
>> > > > > > > > >> M6_G16_s20191621821475_e20191621824248_
>> > > > > > > > >> c20191621827269.nc
>> ~/data/GOES-16/ngac.t12z.aod_550nm.grib2
>> > > > > > > > >> OBS_AOD_aqm_g16_20190608_10.nc  -field
'name="AOD";
>> > > level="*";'
>> > > > > > > > >> -method
>> > > > > > > > >> UW_MEAN -v 1 -qc 0
>> > > > > > > > >>
>> > > > > > > > >> The output was attached.
>> > > > > > > > >>
>> > > > > > > > >> Cheers,
>> > > > > > > > >> Howard
>> > > > > > > > >>
>> > > > > > > > >>
>> > > > > > > > >> On Tue Jun 11 13:49:01 2019, ho-
chun.huang at noaa.gov
>> wrote:
>> > > > > > > > >> > Hi, Howard:
>> > > > > > > > >> >
>> > > > > > > > >> > Same situation,Segmentation fault, occurred to
HYSPLIT
>> > model
>> > > > > grib2
>> > > > > > > > >> > output.
>> > > > > > > > >> > Can you look into the issue of "Segmentation
fault?"
>> > > > > > > > >> >
>> > > > > > > > >> > Thank you for the help.
>> > > > > > > > >> >
>> > > > > > > > >> > Ho-Chun
>> > > > > > > > >> >
>> > > > > > > > >> > On Tue, Jun 11, 2019 at 3:30 PM Ho-Chun Huang -
NOAA
>> > > > Affiliate <
>> > > > > > > > >> > ho-chun.huang at noaa.gov> wrote:
>> > > > > > > > >> >
>> > > > > > > > >> > > Hi, Howard:
>> > > > > > > > >> > >
>> > > > > > > > >> > > Thanks for the info.  I thought the table used
in aqm
>> > aot
>> > > > > output
>> > > > > > > > >> > > is
>> > > > > > > > >> > > used
>> > > > > > > > >> > > by WMO.  Let me consult with EMC AQ group and
get
>> back
>> > to
>> > > > you.
>> > > > > > > > >> > > We
>> > > > > > > > >> > > may have
>> > > > > > > > >> > > to bring Tara in if it is necessary.
>> > > > > > > > >> > >
>> > > > > > > > >> > > Can you also check the ngac grib2 file?  I
encounter
>> a
>> > > > similar
>> > > > > > > > >> > > problem,
>> > > > > > > > >> > > segmentation fault.  The ngac file are in the
same
>> ftp
>> > > > > > > > >> > > directory.
>> > > > > > > > >> > >
>> > > > > > > > >> > > Thanks.
>> > > > > > > > >> > >
>> > > > > > > > >> > > Ho-Chun
>> > > > > > > > >> > >
>> > > > > > > > >> > > On Tue, Jun 11, 2019 at 3:17 PM Howard Soh via
RT
>> > > > > > > > >> > > <met_help at ucar.edu>
>> > > > > > > > >> > > wrote:
>> > > > > > > > >> > >
>> > > > > > > > >> > >> The GRIB2 file (aqm.t06z.aot.f06.148.grib2)
as the
>> > target
>> > > > > grid
>> > > > > > > > >> > >> contains
>> > > > > > > > >> > >> product definition template #46. It's not
supported
>> by
>> > > > wgrib2
>> > > > > > > > >> > >> (v0.2.0.3
>> > > > > > > > >> > >> 11/2015) and MET.
>> > > > > > > > >> > >>
>> > > > > > > > >> > >> > wgrib2 aqm.t06z.aot.f06.148.grib2
>> > > > > > > > >> > >> code_table_4.5a: product definition template
#46 not
>> > > > > supported
>> > > > > > > > >> > >> code_table_4.5b: product definition template
#46 not
>> > > > > supported
>> > > > > > > > >> > >> 1:0:d=2019060706:AOTK:no_level:5-6 hour ave
fcst:
>> > > > > > > > >> > >>
>> > > > > > > > >> > >> Would you use another GRIB2 file with the
product
>> > > > definition
>> > > > > > > > >> > >> template #48
>> > > > > > > > >> > >> or others below?
>> > > > > > > > >> > >>
>> > > > > > > > >> > >>
>> > > > > > > > >> > >>
>> > > > > > >
>> > >
https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table4-
>> > > > > > > > >> > >> 0.shtml
>> > > > > > > > >> > >>
>> > > > > > > > >> > >> Here are template ids (GRIB2) which MET
supports:
>> > > > > > > > >> > >>    0: analysis or forecast
>> > > > > > > > >> > >>    1: individual ensemble forecast, control
and
>> > > perturbed,
>> > > > > at a
>> > > > > > > > >> > >> horizontal level or in
>> > > > > > > > >> > >>    2: ensemble mean
>> > > > > > > > >> > >>    5: probability forecast
>> > > > > > > > >> > >>    8: accumulation forecast
>> > > > > > > > >> > >>    9: probabilistic accumulation forecast
>> > > > > > > > >> > >>   11: individual ensemble forecast, control
and
>> > > perturbed,
>> > > > > at a
>> > > > > > > > >> > >> horizontal level or in
>> > > > > > > > >> > >>   12: derived accumulation forecast
>> > > > > > > > >> > >>   48: aerosol data
>> > > > > > > > >> > >>
>> > > > > > > > >> > >> Cheers,
>> > > > > > > > >> > >> Howard
>> > > > > > > > >> > >>
>> > > > > > > > >> > >> On Tue Jun 11 09:49:46 2019, ho-
chun.huang at noaa.gov
>> > > wrote:
>> > > > > > > > >> > >> > To Whom It May Concern:
>> > > > > > > > >> > >> >
>> > > > > > > > >> > >> > There is an error message on using the
>> > > regrid_data_plane,
>> > > > > > > > >> > >> > please
>> > > > > > > > >> > >> > help
>> > > > > > > > >> > >> me to
>> > > > > > > > >> > >> > debug the root of error.
>> > > > > > > > >> > >> >
>> > > > > > > > >> > >> > DEBUG 1: Reading data file:
>> > > > > > > > >> > >> >
>> > OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
>> > > > > > > > >> > >> c20191591005286.nc
>> > > > > > > > >> > >> > WARNING:
>> > > > > > > > >> > >> > WARNING: MetGrib2DataFile::data_plane() ->
>> unexpected
>> > > PDS
>> > > > > > > > >> > >> > template
>> > > > > > > > >> > >> number
>> > > > > > > > >> > >> > (46) may cause unexpected results. Please
email
>> > > > > > > > >> > >> > met_help at ucar.edu.
>> > > > > > > > >> > >> > WARNING:
>> > > > > > > > >> > >> > run.sh: line 7: 38040 Segmentation fault
>> (core
>> > > > dumped)
>> > > > > > > > >> > >> > regrid_data_plane
>> > > > > > > > >> > >> >
>> > OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
>> > > > > > > > >> > >> c20191591005286.nc
>> > > > > > > > >> > >> > aqm.t06z.aot.f06.148.grib2
>> > > OBS_AOD_aqm_g16_20190608_10.nc
>> > > > > > > > >> > >> > -field
>> > > > > > > > >> > >> > 'name="AOD"; level="*";' -method UW_MEAN -v
1 -qc
>> 0
>> > > > > > > > >> > >> >
>> > > > > > > > >> > >> > The files, script, and log can be found in
>> > > > > > > > >> > >> >
>> https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
>> > > > > > > > >> > >> >
>> > > > > > > > >> > >> > I notice in 8.1 you no longer need the
-coord
>> option
>> > > that
>> > > > > 8.0
>> > > > > > > > >> > >> > needs.
>> > > > > > > > >> > >> >
>> > > > > > > > >> > >> > The output nc file only contains la and lon
but no
>> > > > mapping
>> > > > > > > > >> > >> > AOD.
>> > > > > > > > >> > >> >
>> > > > > > > > >> > >> > Than you for your help.
>> > > > > > > > >> > >> >
>> > > > > > > > >> > >> > Ho-Chun Huang
>> > > > > > > > >> > >>
>> > > > > > > > >> > >>
>> > > > > > > > >> > >>
>> > > > > > > > >> > >>
>> > > > > > > > >>
>> > > > > > > > >>
>> > > > > > > > >>
>> > > > > > > > >>
>> > > > > > >
>> > > > > > >
>> > > > > > >
>> > > > > > >
>> > > > > >
>> > > > > >
>> > > > >
>> > > > > --
>> > > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>> > > > > Tara Jensen
>> > > > > Project Manager II
>> > > > > NCAR RAL and DTC
>> > > > > PO Box 3000, Boulder, Colorado 80307 USA
>> > > > > +1 303-497-8479          jensen at ucar.edu
>> > > > >
>> > > > >
>> > > >
>> > > >
>> > >
>> > >
>> >
>> >
>>
>>

------------------------------------------------
Subject: error on regrid_data_plane
From: Ho-Chun Huang - NOAA Affiliate
Time: Wed Jun 19 12:26:09 2019

Hi,

My local working directory on tide is /meso/noscrub/Ho-
Chun.Huang/methelp

Ho-Chun

On Wed, Jun 19, 2019 at 2:19 PM Ho-Chun Huang - NOAA Affiliate <
ho-chun.huang at noaa.gov> wrote:

> Hi, Julie:
>
> When you have time, please help me to find out why there is a core
dumped
> using regrid-data_plane on tide (to NGAC grid).
>
> all data file should be on
>
> https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
>
> Script need to revised to use the setting on tide (as below)
>
> Thank you.
>
> Ho-Chun
>
> p.s.
> > cat run.ngac.sh
> #!/bin/sh
> hl=`hostname | cut -c1-1`
> if [ ${hl} == 'g' ]; then
>    module purge
>    module use /global/noscrub/Julie.Prestopnik/modulefiles
>    module load  met/8.1
> else
>    module purge
>    module use  /usrx/local/dev/modulefiles
>    module load  met/8.1
> fi
>
>    regrid_data_plane
> OR_ABI-L2-AODC-
M6_G16_s20191591001457_e20191591004230_c20191591005286.nc
>  ngac.t12z.aod_550nm.grib2 \
>                      OBS_AOD_aqm_g16_20190608_10.nc  -field
'name="AOD";
> level="(*,*)";' -method UW_MEAN -v 1 -qc 0
>    exit
>
>  > bash run.ngac.sh
> DEBUG 1: Reading data file:
> OR_ABI-L2-AODC-
M6_G16_s20191591001457_e20191591004230_c20191591005286.nc
> run.ngac.sh: line 14: 24808 Segmentation fault      (core dumped)
> regrid_data_plane
> OR_ABI-L2-AODC-
M6_G16_s20191591001457_e20191591004230_c20191591005286.nc
> ngac.t12z.aod_550nm.grib2 OBS_AOD_aqm_g16_20190608_10.nc -field
> 'name="AOD"; level="(*,*)";' -method UW_MEAN -v 1 -qc 0
>
> On Wed, Jun 12, 2019 at 1:35 PM Ho-Chun Huang - NOAA Affiliate <
> ho-chun.huang at noaa.gov> wrote:
>
>> Julie:
>>
>> Thanks for the reminder.  I forgot about the met/8.1 installation
on
>> tide. I will keep testing the script till it can successfully load
met/8.1
>> on tide.  You don't need to spend time to inform me separately.
>>
>> Will contact the helpdesk again, if I encounter the same
segmentation
>> fault error on tide.
>>
>> Ho-Chun
>>
>> On Wed, Jun 12, 2019 at 1:29 PM Julie Prestopnik via RT <
>> met_help at ucar.edu> wrote:
>>
>>> Hi Ho-Chun.
>>>
>>> I will need to install met-8.1 on tide after I regain access as
that
>>> machine has not been available to me since the met-8.1 release. I
can
>>> follow up once I have done that.
>>>
>>> If you try on tide and still have trouble, please follow up on
this
>>> ticket
>>> and let me know the exact command that you are running so that I
can try
>>> to
>>> reproduce the problem on tide.
>>>
>>> Thank you!
>>>
>>> Julie
>>>
>>> On Wed, Jun 12, 2019 at 11:19 AM Ho-Chun Huang - NOAA Affiliate
via RT <
>>> met_help at ucar.edu> wrote:
>>>
>>> >
>>> > <URL: https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550 >
>>> >
>>> > Hi, Julie:
>>> >
>>> > Thank you for being able to help. In addition to the template
issue, I
>>> have
>>> > a core dump due to Segmentation Fault when running on WCOSS but
Howard
>>> did
>>> > not has the same problem when he ran.  I am wondering maybe I
did not
>>> set
>>> > the environmental variables correctly, but I do not know why
since I
>>> only
>>> > know to load module met/8.1 (please see the log message in
previous
>>> > email).  Maybe you can debug the causes after the dev asses is
returned
>>> > tomorrow
>>> >
>>> > I tried CMAQ AOT, NGAC, and HYSPLIT grib2 files, they all had
the same
>>> > error.  Maybe it is machine dependence?  I was running the
>>> > regrid_data_plane on gyre.  After production switch, I will try
it
>>> again on
>>> > tide.
>>> >
>>> > best regards,
>>> > Ho-Chun
>>> >
>>> > On Wed, Jun 12, 2019 at 1:08 PM Julie Prestopnik via RT <
>>> met_help at ucar.edu
>>> > >
>>> > wrote:
>>> >
>>> > > Please let me know if I can do anything to help, as Tara
mentioned,
>>> > > possibly copying it into the grib table path for the
"standard"
>>> > > METv8.1could help.  I don't have dev access to WCOSS at this
time
>>> with
>>> > the
>>> > > current production switch occurring, but I am happy to help if
needed
>>> > when
>>> > > I can.
>>> > >
>>> > > Julie
>>> > >
>>> > > On Wed, Jun 12, 2019 at 11:04 AM Ho-Chun Huang - NOAA
Affiliate via
>>> RT <
>>> > > met_help at ucar.edu> wrote:
>>> > >
>>> > > >
>>> > > > <URL:
https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550 >
>>> > > >
>>> > > > Hi, Tara:
>>> > > >
>>> > > > /nwprod2/grib_util.v1.0.*4*/exec/wgrib2  is the earliest
version
>>> > > recognizes
>>> > > > template #46.  Grib2 version higher than v1.0.4 is also
worked.
>>> > > >
>>> > > > Thank you for the reply, I will pass your response to Jason
and
>>> Jeff.
>>> > > >
>>> > > > Ho-Chun
>>> > > >
>>> > > > On Wed, Jun 12, 2019 at 12:11 PM Tara Jensen via RT <
>>> met_help at ucar.edu
>>> > >
>>> > > > wrote:
>>> > > >
>>> > > > > Ho-Chun (and Howard),
>>> > > > >
>>> > > > > Thought it might be good to jump in here.
>>> > > > >
>>> > > > > It looks like the wgrib2 that works is at:
>>> > > > > /nwprod2/grib_util.v1.0.3/exec/wgrib2  on WCOSS, is that
>>> correct?  We
>>> > > > might
>>> > > > > be able to find table 46 and be able to grab it for
inclusion in
>>> the
>>> > > next
>>> > > > > release.  Julie might even be able to copy it into the
grib table
>>> > path
>>> > > > for
>>> > > > > the "standard" METv8.1 as well.  If that doesn't resolve
the
>>> issue,
>>> > > there
>>> > > > > are other work arounds that we can point you to until the
next
>>> > release
>>> > > > > (either bug fix or beta).
>>> > > > >
>>> > > > > Cheers, Tara
>>> > > > >
>>> > > > > On Wed, Jun 12, 2019 at 9:02 AM Ho-Chun Huang - NOAA
Affiliate
>>> via
>>> > RT <
>>> > > > > met_help at ucar.edu> wrote:
>>> > > > >
>>> > > > > >
>>> > > > > > <URL:
https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550
>>> >
>>> > > > > >
>>> > > > > > Howard,
>>> > > > > >
>>> > > > > > Thanks.  I will consult with EMC management whether to
request
>>> > adding
>>> > > > > > support of new template in MET.
>>> > > > > >
>>> > > > > > Ho-Chun
>>> > > > > >
>>> > > > > > On Wed, Jun 12, 2019 at 10:57 AM Howard Soh via RT <
>>> > > met_help at ucar.edu>
>>> > > > > > wrote:
>>> > > > > >
>>> > > > > > > There is no relationship between wgrib2 and MET.
>>> > > > > > > wgrib2 was an example which does not support the
template ID
>>> 46.
>>> > We
>>> > > > did
>>> > > > > > > not have the GRIB2 file with template id 46. MET gives
an
>>> > warning.
>>> > > > MET
>>> > > > > > will
>>> > > > > > > stop if the template ID from the GRIB2 is not
supported
>>> instead
>>> > of
>>> > > > > > > continuing as a short term solution. MET will support
>>> template ID
>>> > > 46
>>> > > > as
>>> > > > > > the
>>> > > > > > > long term solution.
>>> > > > > > >
>>> > > > > > > Cheers,
>>> > > > > > > Howard
>>> > > > > > >
>>> > > > > > > On Wed Jun 12 08:43:03 2019, ho-chun.huang at noaa.gov
wrote:
>>> > > > > > > > Hi, Howard:
>>> > > > > > > >
>>> > > > > > > > There are several versions on WCOSS of wgrib2, from
loading
>>> > > module
>>> > > > > > > > grib_util/v1.0.0(default) to  v1.1.0.
>>> > > > > > > >
>>> > > > > > > > g20a1: > module avail grib_util
>>> > > > > > > >
>>> > > > > > > >
-----------------------------------------------------------
>>> > > > > > > > /nwprod2/modulefiles
>>> > > > > > > >
-----------------------------------------------------------
>>> > > > > > > > grib_util/v1.0.0(default) grib_util/v1.0.2
>>> > > > grib_util/v1.0.4
>>> > > > > > > >    grib_util/v1.0.6
>>> > > > > > > > grib_util/v1.0.1          grib_util/v1.0.3
>>> > > > grib_util/v1.0.5
>>> > > > > > > >    grib_util/v1.1.0
>>> > > > > > > >
>>> > > > > > > > After using different version of wgrib2, I found
>>> > grib_util/v1.0.4
>>> > > > and
>>> > > > > > > > above
>>> > > > > > > > can read CMAQ AOT template #46 (see below for more
detail).
>>> > > > > > > >
>>> > > > > > > > Does MET v8.1 uses older version of wgrib2?  The
version
>>> number
>>> > > of
>>> > > > > > > > wgrib2
>>> > > > > > > > is v0.1.9.6a 5/2012 and v0.2.0.7 12/2017 for
>>> grib_util/v1.0.0
>>> > and
>>> > > > > > > > grib_util/v1.1.0, respectively.
>>> > > > > > > > (using /nwprod2/grib_util.v1.0.0/exec/wgrib2
-version)
>>> > > > > > > >
>>> > > > > > > > Can MET v8.1 built on WCOSS using newer version of
wgrib2
>>> to
>>> > > solve
>>> > > > > > > > current
>>> > > > > > > > issue?
>>> > > > > > > >
>>> > > > > > > > Ho-Chun
>>> > > > > > > >
>>> > > > > > > > p.s.
>>> > > > > > > >
>>> > > > > > > > g20a1:~ > /nwprod2/grib_util.v1.0.3/exec/wgrib2 -V
>>> > > > > > > >
>>> > > > >
>>> >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
>>> > > > > > > > code_table_4.5a: product definition template #46 not
>>> supported
>>> > > > > > > > code_table_4.5b: product definition template #46 not
>>> supported
>>> > > > > > > > 1:0:vt=2019061200:no_level:11-12 hour ave fcst:AOTK
Aerosol
>>> > > Optical
>>> > > > > > > > Thickness [Numeric]:
>>> > > > > > > >
>>>  ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
>>> > > > > > > >     grid_template=30:winds(grid):
>>> > > > > > > >         Lambert Conformal: (442 x 265) input WE:SN
output
>>> WE:SN
>>> > > > res 8
>>> > > > > > > >         Lat1 21.821000 Lon1 239.372000 LoV
263.000000
>>> > > > > > > >         LatD 33.000000 Latin1 33.000000 Latin2
45.000000
>>> > > > > > > >         LatSP 0.000000 LonSP 0.000000
>>> > > > > > > >         North Pole (442 x 265) Dx 12000.000000 m Dy
>>> > 12000.000000
>>> > > m
>>> > > > > > > > mode 8
>>> > > > > > > >
>>> > > > > > > > g20a1:~ > /nwprod2/grib_util.v1.0.4/exec/wgrib2 -V
>>> > > > > > > >
>>> > > > >
>>> >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
>>> > > > > > > > 1:0:vt=2019061200:1 sigma level:11-12 hour ave
fcst:AOTK
>>> > Aerosol
>>> > > > > > > > Optical
>>> > > > > > > > Thickness [Numeric]:aerosol=Ozone
>>> > > > > > > >
>>>  ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
>>> > > > > > > >     grid_template=30:winds(grid):
>>> > > > > > > >         Lambert Conformal: (442 x 265) input WE:SN
output
>>> WE:SN
>>> > > > res 8
>>> > > > > > > >         Lat1 21.821000 Lon1 239.372000 LoV
263.000000
>>> > > > > > > >         LatD 33.000000 Latin1 33.000000 Latin2
45.000000
>>> > > > > > > >         LatSP 0.000000 LonSP 0.000000
>>> > > > > > > >         North Pole (442 x 265) Dx 12000.000000 m Dy
>>> > 12000.000000
>>> > > m
>>> > > > > > > > mode 8
>>> > > > > > > >
>>> > > > > > > > g20a1:~ > /nwprod2/grib_util.v1.1.0/exec/wgrib2 -V
>>> > > > > > > >
>>> > > > >
>>> >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
>>> > > > > > > > 1:0:vt=2019061200:1 sigma level:11-12 hour ave
fcst:AOTK
>>> > Aerosol
>>> > > > > > > > Optical
>>> > > > > > > > Thickness [Numeric]:aerosol=Ozone:aerosol_size <0
>>> > > > > > > >
>>>  ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
>>> > > > > > > >     grid_template=30:winds(grid):
>>> > > > > > > >         Lambert Conformal: (442 x 265) input WE:SN
output
>>> WE:SN
>>> > > > res 8
>>> > > > > > > >         Lat1 21.821000 Lon1 239.372000 LoV
263.000000
>>> > > > > > > >         LatD 33.000000 Latin1 33.000000 Latin2
45.000000
>>> > > > > > > >         LatSP 0.000000 LonSP 0.000000
>>> > > > > > > >         North Pole (442 x 265) Dx 12000.000000 m Dy
>>> > 12000.000000
>>> > > m
>>> > > > > > > > mode 8
>>> > > > > > > >
>>> > > > > > > >
>>> > > > > > > > On Wed, Jun 12, 2019 at 8:03 AM Ho-Chun Huang - NOAA
>>> Affiliate
>>> > <
>>> > > > > > > > ho-chun.huang at noaa.gov> wrote:
>>> > > > > > > >
>>> > > > > > > > > Hi, Howard:
>>> > > > > > > > >
>>> > > > > > > > > Did you run the command on NCAR's machines?  We
might
>>> have to
>>> > > > bring
>>> > > > > > > > > John
>>> > > > > > > > > in because there is a possibility that the MET
v8,.1
>>> built on
>>> > > > > > > > > WCOSS/Gyre is
>>> > > > > > > > > not right, at least for regrid_data_plane.  Do you
have
>>> any
>>> > > > > > > > > suggestion on
>>> > > > > > > > > the environment setting I should include?  I do
not
>>> think I
>>> > can
>>> > > > > > > > > figure it
>>> > > > > > > > > out what went wrong on the same run script worked
for
>>> you.
>>> > > > > > > > >
>>> > > > > > > > > Ho-Chun
>>> > > > > > > > >
>>> > > > > > > > > On Tue, Jun 11, 2019 at 6:50 PM Howard Soh via RT
<
>>> > > > > met_help at ucar.edu
>>> > > > > > >
>>> > > > > > > > > wrote:
>>> > > > > > > > >
>>> > > > > > > > >> It works for me.
>>> > > > > > > > >>
>>> > > > > > > > >> met-8.1/bin/regrid_data_plane
>>> > > > > > > > >> goes-16/ABI/L2/CONUS/AOD/2019162/OR_ABI-L2-AODC-
>>> > > > > > > > >> M6_G16_s20191621821475_e20191621824248_
>>> > > > > > > > >> c20191621827269.nc
>>> ~/data/GOES-16/ngac.t12z.aod_550nm.grib2
>>> > > > > > > > >> OBS_AOD_aqm_g16_20190608_10.nc  -field
'name="AOD";
>>> > > level="*";'
>>> > > > > > > > >> -method
>>> > > > > > > > >> UW_MEAN -v 1 -qc 0
>>> > > > > > > > >>
>>> > > > > > > > >> The output was attached.
>>> > > > > > > > >>
>>> > > > > > > > >> Cheers,
>>> > > > > > > > >> Howard
>>> > > > > > > > >>
>>> > > > > > > > >>
>>> > > > > > > > >> On Tue Jun 11 13:49:01 2019, ho-
chun.huang at noaa.gov
>>> wrote:
>>> > > > > > > > >> > Hi, Howard:
>>> > > > > > > > >> >
>>> > > > > > > > >> > Same situation,Segmentation fault, occurred to
HYSPLIT
>>> > model
>>> > > > > grib2
>>> > > > > > > > >> > output.
>>> > > > > > > > >> > Can you look into the issue of "Segmentation
fault?"
>>> > > > > > > > >> >
>>> > > > > > > > >> > Thank you for the help.
>>> > > > > > > > >> >
>>> > > > > > > > >> > Ho-Chun
>>> > > > > > > > >> >
>>> > > > > > > > >> > On Tue, Jun 11, 2019 at 3:30 PM Ho-Chun Huang -
NOAA
>>> > > > Affiliate <
>>> > > > > > > > >> > ho-chun.huang at noaa.gov> wrote:
>>> > > > > > > > >> >
>>> > > > > > > > >> > > Hi, Howard:
>>> > > > > > > > >> > >
>>> > > > > > > > >> > > Thanks for the info.  I thought the table
used in
>>> aqm
>>> > aot
>>> > > > > output
>>> > > > > > > > >> > > is
>>> > > > > > > > >> > > used
>>> > > > > > > > >> > > by WMO.  Let me consult with EMC AQ group and
get
>>> back
>>> > to
>>> > > > you.
>>> > > > > > > > >> > > We
>>> > > > > > > > >> > > may have
>>> > > > > > > > >> > > to bring Tara in if it is necessary.
>>> > > > > > > > >> > >
>>> > > > > > > > >> > > Can you also check the ngac grib2 file?  I
>>> encounter a
>>> > > > similar
>>> > > > > > > > >> > > problem,
>>> > > > > > > > >> > > segmentation fault.  The ngac file are in the
same
>>> ftp
>>> > > > > > > > >> > > directory.
>>> > > > > > > > >> > >
>>> > > > > > > > >> > > Thanks.
>>> > > > > > > > >> > >
>>> > > > > > > > >> > > Ho-Chun
>>> > > > > > > > >> > >
>>> > > > > > > > >> > > On Tue, Jun 11, 2019 at 3:17 PM Howard Soh
via RT
>>> > > > > > > > >> > > <met_help at ucar.edu>
>>> > > > > > > > >> > > wrote:
>>> > > > > > > > >> > >
>>> > > > > > > > >> > >> The GRIB2 file (aqm.t06z.aot.f06.148.grib2)
as the
>>> > target
>>> > > > > grid
>>> > > > > > > > >> > >> contains
>>> > > > > > > > >> > >> product definition template #46. It's not
>>> supported by
>>> > > > wgrib2
>>> > > > > > > > >> > >> (v0.2.0.3
>>> > > > > > > > >> > >> 11/2015) and MET.
>>> > > > > > > > >> > >>
>>> > > > > > > > >> > >> > wgrib2 aqm.t06z.aot.f06.148.grib2
>>> > > > > > > > >> > >> code_table_4.5a: product definition template
#46
>>> not
>>> > > > > supported
>>> > > > > > > > >> > >> code_table_4.5b: product definition template
#46
>>> not
>>> > > > > supported
>>> > > > > > > > >> > >> 1:0:d=2019060706:AOTK:no_level:5-6 hour ave
fcst:
>>> > > > > > > > >> > >>
>>> > > > > > > > >> > >> Would you use another GRIB2 file with the
product
>>> > > > definition
>>> > > > > > > > >> > >> template #48
>>> > > > > > > > >> > >> or others below?
>>> > > > > > > > >> > >>
>>> > > > > > > > >> > >>
>>> > > > > > > > >> > >>
>>> > > > > > >
>>> > >
https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table4-
>>> > > > > > > > >> > >> 0.shtml
>>> > > > > > > > >> > >>
>>> > > > > > > > >> > >> Here are template ids (GRIB2) which MET
supports:
>>> > > > > > > > >> > >>    0: analysis or forecast
>>> > > > > > > > >> > >>    1: individual ensemble forecast, control
and
>>> > > perturbed,
>>> > > > > at a
>>> > > > > > > > >> > >> horizontal level or in
>>> > > > > > > > >> > >>    2: ensemble mean
>>> > > > > > > > >> > >>    5: probability forecast
>>> > > > > > > > >> > >>    8: accumulation forecast
>>> > > > > > > > >> > >>    9: probabilistic accumulation forecast
>>> > > > > > > > >> > >>   11: individual ensemble forecast, control
and
>>> > > perturbed,
>>> > > > > at a
>>> > > > > > > > >> > >> horizontal level or in
>>> > > > > > > > >> > >>   12: derived accumulation forecast
>>> > > > > > > > >> > >>   48: aerosol data
>>> > > > > > > > >> > >>
>>> > > > > > > > >> > >> Cheers,
>>> > > > > > > > >> > >> Howard
>>> > > > > > > > >> > >>
>>> > > > > > > > >> > >> On Tue Jun 11 09:49:46 2019,
>>> ho-chun.huang at noaa.gov
>>> > > wrote:
>>> > > > > > > > >> > >> > To Whom It May Concern:
>>> > > > > > > > >> > >> >
>>> > > > > > > > >> > >> > There is an error message on using the
>>> > > regrid_data_plane,
>>> > > > > > > > >> > >> > please
>>> > > > > > > > >> > >> > help
>>> > > > > > > > >> > >> me to
>>> > > > > > > > >> > >> > debug the root of error.
>>> > > > > > > > >> > >> >
>>> > > > > > > > >> > >> > DEBUG 1: Reading data file:
>>> > > > > > > > >> > >> >
>>> > OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
>>> > > > > > > > >> > >> c20191591005286.nc
>>> > > > > > > > >> > >> > WARNING:
>>> > > > > > > > >> > >> > WARNING: MetGrib2DataFile::data_plane() ->
>>> unexpected
>>> > > PDS
>>> > > > > > > > >> > >> > template
>>> > > > > > > > >> > >> number
>>> > > > > > > > >> > >> > (46) may cause unexpected results. Please
email
>>> > > > > > > > >> > >> > met_help at ucar.edu.
>>> > > > > > > > >> > >> > WARNING:
>>> > > > > > > > >> > >> > run.sh: line 7: 38040 Segmentation fault
>>> (core
>>> > > > dumped)
>>> > > > > > > > >> > >> > regrid_data_plane
>>> > > > > > > > >> > >> >
>>> > OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
>>> > > > > > > > >> > >> c20191591005286.nc
>>> > > > > > > > >> > >> > aqm.t06z.aot.f06.148.grib2
>>> > > OBS_AOD_aqm_g16_20190608_10.nc
>>> > > > > > > > >> > >> > -field
>>> > > > > > > > >> > >> > 'name="AOD"; level="*";' -method UW_MEAN
-v 1
>>> -qc 0
>>> > > > > > > > >> > >> >
>>> > > > > > > > >> > >> > The files, script, and log can be found in
>>> > > > > > > > >> > >> >
>>> https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
>>> > > > > > > > >> > >> >
>>> > > > > > > > >> > >> > I notice in 8.1 you no longer need the
-coord
>>> option
>>> > > that
>>> > > > > 8.0
>>> > > > > > > > >> > >> > needs.
>>> > > > > > > > >> > >> >
>>> > > > > > > > >> > >> > The output nc file only contains la and
lon but
>>> no
>>> > > > mapping
>>> > > > > > > > >> > >> > AOD.
>>> > > > > > > > >> > >> >
>>> > > > > > > > >> > >> > Than you for your help.
>>> > > > > > > > >> > >> >
>>> > > > > > > > >> > >> > Ho-Chun Huang
>>> > > > > > > > >> > >>
>>> > > > > > > > >> > >>
>>> > > > > > > > >> > >>
>>> > > > > > > > >> > >>
>>> > > > > > > > >>
>>> > > > > > > > >>
>>> > > > > > > > >>
>>> > > > > > > > >>
>>> > > > > > >
>>> > > > > > >
>>> > > > > > >
>>> > > > > > >
>>> > > > > >
>>> > > > > >
>>> > > > >
>>> > > > > --
>>> > > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>>> > > > > Tara Jensen
>>> > > > > Project Manager II
>>> > > > > NCAR RAL and DTC
>>> > > > > PO Box 3000, Boulder, Colorado 80307 USA
>>> > > > > +1 303-497-8479          jensen at ucar.edu
>>> > > > >
>>> > > > >
>>> > > >
>>> > > >
>>> > >
>>> > >
>>> >
>>> >
>>>
>>>

------------------------------------------------
Subject: error on regrid_data_plane
From: Ho-Chun Huang - NOAA Affiliate
Time: Fri Jun 28 07:51:33 2019

To Whom It May concern:

Due to disk quota full on phase 1, changing working directory
to  /meso2/noscrub/Ho-Chun.Huang/methelp.

Please note, the NCO also have a met8.1 build
   module use  /usrx/local/dev/modulefiles
   module load  met/8.1

I also test using
   module use  /global/noscrub/Julie.Prestopnik/modulefiles
   module load  met/8.1

The core dump error message remains.  Note, when Howard tested it on
NCAR
machine, he did not receive the error message.

Update all data to ftp site with latest test,
https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/

Thank you for your help.

Ho-Chun

On Wed, Jun 19, 2019 at 2:25 PM Ho-Chun Huang - NOAA Affiliate <
ho-chun.huang at noaa.gov> wrote:

> Hi,
>
> My local working directory on tide is /meso/noscrub/Ho-
Chun.Huang/methelp
>
> Ho-Chun
>
> On Wed, Jun 19, 2019 at 2:19 PM Ho-Chun Huang - NOAA Affiliate <
> ho-chun.huang at noaa.gov> wrote:
>
>> Hi, Julie:
>>
>> When you have time, please help me to find out why there is a core
dumped
>> using regrid-data_plane on tide (to NGAC grid).
>>
>> all data file should be on
>>
>> https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
>>
>> Script need to revised to use the setting on tide (as below)
>>
>> Thank you.
>>
>> Ho-Chun
>>
>> p.s.
>> > cat run.ngac.sh
>> #!/bin/sh
>> hl=`hostname | cut -c1-1`
>> if [ ${hl} == 'g' ]; then
>>    module purge
>>    module use /global/noscrub/Julie.Prestopnik/modulefiles
>>    module load  met/8.1
>> else
>>    module purge
>>    module use  /usrx/local/dev/modulefiles
>>    module load  met/8.1
>> fi
>>
>>    regrid_data_plane
>> OR_ABI-L2-AODC-
M6_G16_s20191591001457_e20191591004230_c20191591005286.nc
>>  ngac.t12z.aod_550nm.grib2 \
>>                      OBS_AOD_aqm_g16_20190608_10.nc  -field
'name="AOD";
>> level="(*,*)";' -method UW_MEAN -v 1 -qc 0
>>    exit
>>
>>  > bash run.ngac.sh
>> DEBUG 1: Reading data file:
>> OR_ABI-L2-AODC-
M6_G16_s20191591001457_e20191591004230_c20191591005286.nc
>> run.ngac.sh: line 14: 24808 Segmentation fault      (core dumped)
>> regrid_data_plane
>> OR_ABI-L2-AODC-
M6_G16_s20191591001457_e20191591004230_c20191591005286.nc
>> ngac.t12z.aod_550nm.grib2 OBS_AOD_aqm_g16_20190608_10.nc -field
>> 'name="AOD"; level="(*,*)";' -method UW_MEAN -v 1 -qc 0
>>
>> On Wed, Jun 12, 2019 at 1:35 PM Ho-Chun Huang - NOAA Affiliate <
>> ho-chun.huang at noaa.gov> wrote:
>>
>>> Julie:
>>>
>>> Thanks for the reminder.  I forgot about the met/8.1 installation
on
>>> tide. I will keep testing the script till it can successfully load
met/8.1
>>> on tide.  You don't need to spend time to inform me separately.
>>>
>>> Will contact the helpdesk again, if I encounter the same
segmentation
>>> fault error on tide.
>>>
>>> Ho-Chun
>>>
>>> On Wed, Jun 12, 2019 at 1:29 PM Julie Prestopnik via RT <
>>> met_help at ucar.edu> wrote:
>>>
>>>> Hi Ho-Chun.
>>>>
>>>> I will need to install met-8.1 on tide after I regain access as
that
>>>> machine has not been available to me since the met-8.1 release. I
can
>>>> follow up once I have done that.
>>>>
>>>> If you try on tide and still have trouble, please follow up on
this
>>>> ticket
>>>> and let me know the exact command that you are running so that I
can
>>>> try to
>>>> reproduce the problem on tide.
>>>>
>>>> Thank you!
>>>>
>>>> Julie
>>>>
>>>> On Wed, Jun 12, 2019 at 11:19 AM Ho-Chun Huang - NOAA Affiliate
via RT <
>>>> met_help at ucar.edu> wrote:
>>>>
>>>> >
>>>> > <URL: https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550 >
>>>> >
>>>> > Hi, Julie:
>>>> >
>>>> > Thank you for being able to help. In addition to the template
issue,
>>>> I have
>>>> > a core dump due to Segmentation Fault when running on WCOSS but
>>>> Howard did
>>>> > not has the same problem when he ran.  I am wondering maybe I
did not
>>>> set
>>>> > the environmental variables correctly, but I do not know why
since I
>>>> only
>>>> > know to load module met/8.1 (please see the log message in
previous
>>>> > email).  Maybe you can debug the causes after the dev asses is
>>>> returned
>>>> > tomorrow
>>>> >
>>>> > I tried CMAQ AOT, NGAC, and HYSPLIT grib2 files, they all had
the same
>>>> > error.  Maybe it is machine dependence?  I was running the
>>>> > regrid_data_plane on gyre.  After production switch, I will try
it
>>>> again on
>>>> > tide.
>>>> >
>>>> > best regards,
>>>> > Ho-Chun
>>>> >
>>>> > On Wed, Jun 12, 2019 at 1:08 PM Julie Prestopnik via RT <
>>>> met_help at ucar.edu
>>>> > >
>>>> > wrote:
>>>> >
>>>> > > Please let me know if I can do anything to help, as Tara
mentioned,
>>>> > > possibly copying it into the grib table path for the
"standard"
>>>> > > METv8.1could help.  I don't have dev access to WCOSS at this
time
>>>> with
>>>> > the
>>>> > > current production switch occurring, but I am happy to help
if
>>>> needed
>>>> > when
>>>> > > I can.
>>>> > >
>>>> > > Julie
>>>> > >
>>>> > > On Wed, Jun 12, 2019 at 11:04 AM Ho-Chun Huang - NOAA
Affiliate via
>>>> RT <
>>>> > > met_help at ucar.edu> wrote:
>>>> > >
>>>> > > >
>>>> > > > <URL:
https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550 >
>>>> > > >
>>>> > > > Hi, Tara:
>>>> > > >
>>>> > > > /nwprod2/grib_util.v1.0.*4*/exec/wgrib2  is the earliest
version
>>>> > > recognizes
>>>> > > > template #46.  Grib2 version higher than v1.0.4 is also
worked.
>>>> > > >
>>>> > > > Thank you for the reply, I will pass your response to Jason
and
>>>> Jeff.
>>>> > > >
>>>> > > > Ho-Chun
>>>> > > >
>>>> > > > On Wed, Jun 12, 2019 at 12:11 PM Tara Jensen via RT <
>>>> met_help at ucar.edu
>>>> > >
>>>> > > > wrote:
>>>> > > >
>>>> > > > > Ho-Chun (and Howard),
>>>> > > > >
>>>> > > > > Thought it might be good to jump in here.
>>>> > > > >
>>>> > > > > It looks like the wgrib2 that works is at:
>>>> > > > > /nwprod2/grib_util.v1.0.3/exec/wgrib2  on WCOSS, is that
>>>> correct?  We
>>>> > > > might
>>>> > > > > be able to find table 46 and be able to grab it for
inclusion
>>>> in the
>>>> > > next
>>>> > > > > release.  Julie might even be able to copy it into the
grib
>>>> table
>>>> > path
>>>> > > > for
>>>> > > > > the "standard" METv8.1 as well.  If that doesn't resolve
the
>>>> issue,
>>>> > > there
>>>> > > > > are other work arounds that we can point you to until the
next
>>>> > release
>>>> > > > > (either bug fix or beta).
>>>> > > > >
>>>> > > > > Cheers, Tara
>>>> > > > >
>>>> > > > > On Wed, Jun 12, 2019 at 9:02 AM Ho-Chun Huang - NOAA
Affiliate
>>>> via
>>>> > RT <
>>>> > > > > met_help at ucar.edu> wrote:
>>>> > > > >
>>>> > > > > >
>>>> > > > > > <URL:
https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550
>>>> >
>>>> > > > > >
>>>> > > > > > Howard,
>>>> > > > > >
>>>> > > > > > Thanks.  I will consult with EMC management whether to
request
>>>> > adding
>>>> > > > > > support of new template in MET.
>>>> > > > > >
>>>> > > > > > Ho-Chun
>>>> > > > > >
>>>> > > > > > On Wed, Jun 12, 2019 at 10:57 AM Howard Soh via RT <
>>>> > > met_help at ucar.edu>
>>>> > > > > > wrote:
>>>> > > > > >
>>>> > > > > > > There is no relationship between wgrib2 and MET.
>>>> > > > > > > wgrib2 was an example which does not support the
template
>>>> ID 46.
>>>> > We
>>>> > > > did
>>>> > > > > > > not have the GRIB2 file with template id 46. MET
gives an
>>>> > warning.
>>>> > > > MET
>>>> > > > > > will
>>>> > > > > > > stop if the template ID from the GRIB2 is not
supported
>>>> instead
>>>> > of
>>>> > > > > > > continuing as a short term solution. MET will support
>>>> template ID
>>>> > > 46
>>>> > > > as
>>>> > > > > > the
>>>> > > > > > > long term solution.
>>>> > > > > > >
>>>> > > > > > > Cheers,
>>>> > > > > > > Howard
>>>> > > > > > >
>>>> > > > > > > On Wed Jun 12 08:43:03 2019, ho-chun.huang at noaa.gov
wrote:
>>>> > > > > > > > Hi, Howard:
>>>> > > > > > > >
>>>> > > > > > > > There are several versions on WCOSS of wgrib2, from
>>>> loading
>>>> > > module
>>>> > > > > > > > grib_util/v1.0.0(default) to  v1.1.0.
>>>> > > > > > > >
>>>> > > > > > > > g20a1: > module avail grib_util
>>>> > > > > > > >
>>>> > > > > > > >
>>>> -----------------------------------------------------------
>>>> > > > > > > > /nwprod2/modulefiles
>>>> > > > > > > >
>>>> -----------------------------------------------------------
>>>> > > > > > > > grib_util/v1.0.0(default) grib_util/v1.0.2
>>>> > > > grib_util/v1.0.4
>>>> > > > > > > >    grib_util/v1.0.6
>>>> > > > > > > > grib_util/v1.0.1          grib_util/v1.0.3
>>>> > > > grib_util/v1.0.5
>>>> > > > > > > >    grib_util/v1.1.0
>>>> > > > > > > >
>>>> > > > > > > > After using different version of wgrib2, I found
>>>> > grib_util/v1.0.4
>>>> > > > and
>>>> > > > > > > > above
>>>> > > > > > > > can read CMAQ AOT template #46 (see below for more
>>>> detail).
>>>> > > > > > > >
>>>> > > > > > > > Does MET v8.1 uses older version of wgrib2?  The
version
>>>> number
>>>> > > of
>>>> > > > > > > > wgrib2
>>>> > > > > > > > is v0.1.9.6a 5/2012 and v0.2.0.7 12/2017 for
>>>> grib_util/v1.0.0
>>>> > and
>>>> > > > > > > > grib_util/v1.1.0, respectively.
>>>> > > > > > > > (using /nwprod2/grib_util.v1.0.0/exec/wgrib2
-version)
>>>> > > > > > > >
>>>> > > > > > > > Can MET v8.1 built on WCOSS using newer version of
wgrib2
>>>> to
>>>> > > solve
>>>> > > > > > > > current
>>>> > > > > > > > issue?
>>>> > > > > > > >
>>>> > > > > > > > Ho-Chun
>>>> > > > > > > >
>>>> > > > > > > > p.s.
>>>> > > > > > > >
>>>> > > > > > > > g20a1:~ > /nwprod2/grib_util.v1.0.3/exec/wgrib2 -V
>>>> > > > > > > >
>>>> > > > >
>>>> >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
>>>> > > > > > > > code_table_4.5a: product definition template #46
not
>>>> supported
>>>> > > > > > > > code_table_4.5b: product definition template #46
not
>>>> supported
>>>> > > > > > > > 1:0:vt=2019061200:no_level:11-12 hour ave fcst:AOTK
>>>> Aerosol
>>>> > > Optical
>>>> > > > > > > > Thickness [Numeric]:
>>>> > > > > > > >
>>>>  ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
>>>> > > > > > > >     grid_template=30:winds(grid):
>>>> > > > > > > >         Lambert Conformal: (442 x 265) input WE:SN
output
>>>> WE:SN
>>>> > > > res 8
>>>> > > > > > > >         Lat1 21.821000 Lon1 239.372000 LoV
263.000000
>>>> > > > > > > >         LatD 33.000000 Latin1 33.000000 Latin2
45.000000
>>>> > > > > > > >         LatSP 0.000000 LonSP 0.000000
>>>> > > > > > > >         North Pole (442 x 265) Dx 12000.000000 m Dy
>>>> > 12000.000000
>>>> > > m
>>>> > > > > > > > mode 8
>>>> > > > > > > >
>>>> > > > > > > > g20a1:~ > /nwprod2/grib_util.v1.0.4/exec/wgrib2 -V
>>>> > > > > > > >
>>>> > > > >
>>>> >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
>>>> > > > > > > > 1:0:vt=2019061200:1 sigma level:11-12 hour ave
fcst:AOTK
>>>> > Aerosol
>>>> > > > > > > > Optical
>>>> > > > > > > > Thickness [Numeric]:aerosol=Ozone
>>>> > > > > > > >
>>>>  ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
>>>> > > > > > > >     grid_template=30:winds(grid):
>>>> > > > > > > >         Lambert Conformal: (442 x 265) input WE:SN
output
>>>> WE:SN
>>>> > > > res 8
>>>> > > > > > > >         Lat1 21.821000 Lon1 239.372000 LoV
263.000000
>>>> > > > > > > >         LatD 33.000000 Latin1 33.000000 Latin2
45.000000
>>>> > > > > > > >         LatSP 0.000000 LonSP 0.000000
>>>> > > > > > > >         North Pole (442 x 265) Dx 12000.000000 m Dy
>>>> > 12000.000000
>>>> > > m
>>>> > > > > > > > mode 8
>>>> > > > > > > >
>>>> > > > > > > > g20a1:~ > /nwprod2/grib_util.v1.1.0/exec/wgrib2 -V
>>>> > > > > > > >
>>>> > > > >
>>>> >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
>>>> > > > > > > > 1:0:vt=2019061200:1 sigma level:11-12 hour ave
fcst:AOTK
>>>> > Aerosol
>>>> > > > > > > > Optical
>>>> > > > > > > > Thickness [Numeric]:aerosol=Ozone:aerosol_size <0
>>>> > > > > > > >
>>>>  ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
>>>> > > > > > > >     grid_template=30:winds(grid):
>>>> > > > > > > >         Lambert Conformal: (442 x 265) input WE:SN
output
>>>> WE:SN
>>>> > > > res 8
>>>> > > > > > > >         Lat1 21.821000 Lon1 239.372000 LoV
263.000000
>>>> > > > > > > >         LatD 33.000000 Latin1 33.000000 Latin2
45.000000
>>>> > > > > > > >         LatSP 0.000000 LonSP 0.000000
>>>> > > > > > > >         North Pole (442 x 265) Dx 12000.000000 m Dy
>>>> > 12000.000000
>>>> > > m
>>>> > > > > > > > mode 8
>>>> > > > > > > >
>>>> > > > > > > >
>>>> > > > > > > > On Wed, Jun 12, 2019 at 8:03 AM Ho-Chun Huang -
NOAA
>>>> Affiliate
>>>> > <
>>>> > > > > > > > ho-chun.huang at noaa.gov> wrote:
>>>> > > > > > > >
>>>> > > > > > > > > Hi, Howard:
>>>> > > > > > > > >
>>>> > > > > > > > > Did you run the command on NCAR's machines?  We
might
>>>> have to
>>>> > > > bring
>>>> > > > > > > > > John
>>>> > > > > > > > > in because there is a possibility that the MET
v8,.1
>>>> built on
>>>> > > > > > > > > WCOSS/Gyre is
>>>> > > > > > > > > not right, at least for regrid_data_plane.  Do
you have
>>>> any
>>>> > > > > > > > > suggestion on
>>>> > > > > > > > > the environment setting I should include?  I do
not
>>>> think I
>>>> > can
>>>> > > > > > > > > figure it
>>>> > > > > > > > > out what went wrong on the same run script worked
for
>>>> you.
>>>> > > > > > > > >
>>>> > > > > > > > > Ho-Chun
>>>> > > > > > > > >
>>>> > > > > > > > > On Tue, Jun 11, 2019 at 6:50 PM Howard Soh via RT
<
>>>> > > > > met_help at ucar.edu
>>>> > > > > > >
>>>> > > > > > > > > wrote:
>>>> > > > > > > > >
>>>> > > > > > > > >> It works for me.
>>>> > > > > > > > >>
>>>> > > > > > > > >> met-8.1/bin/regrid_data_plane
>>>> > > > > > > > >> goes-16/ABI/L2/CONUS/AOD/2019162/OR_ABI-L2-AODC-
>>>> > > > > > > > >> M6_G16_s20191621821475_e20191621824248_
>>>> > > > > > > > >> c20191621827269.nc
>>>> ~/data/GOES-16/ngac.t12z.aod_550nm.grib2
>>>> > > > > > > > >> OBS_AOD_aqm_g16_20190608_10.nc  -field
'name="AOD";
>>>> > > level="*";'
>>>> > > > > > > > >> -method
>>>> > > > > > > > >> UW_MEAN -v 1 -qc 0
>>>> > > > > > > > >>
>>>> > > > > > > > >> The output was attached.
>>>> > > > > > > > >>
>>>> > > > > > > > >> Cheers,
>>>> > > > > > > > >> Howard
>>>> > > > > > > > >>
>>>> > > > > > > > >>
>>>> > > > > > > > >> On Tue Jun 11 13:49:01 2019, ho-
chun.huang at noaa.gov
>>>> wrote:
>>>> > > > > > > > >> > Hi, Howard:
>>>> > > > > > > > >> >
>>>> > > > > > > > >> > Same situation,Segmentation fault, occurred to
>>>> HYSPLIT
>>>> > model
>>>> > > > > grib2
>>>> > > > > > > > >> > output.
>>>> > > > > > > > >> > Can you look into the issue of "Segmentation
fault?"
>>>> > > > > > > > >> >
>>>> > > > > > > > >> > Thank you for the help.
>>>> > > > > > > > >> >
>>>> > > > > > > > >> > Ho-Chun
>>>> > > > > > > > >> >
>>>> > > > > > > > >> > On Tue, Jun 11, 2019 at 3:30 PM Ho-Chun Huang
- NOAA
>>>> > > > Affiliate <
>>>> > > > > > > > >> > ho-chun.huang at noaa.gov> wrote:
>>>> > > > > > > > >> >
>>>> > > > > > > > >> > > Hi, Howard:
>>>> > > > > > > > >> > >
>>>> > > > > > > > >> > > Thanks for the info.  I thought the table
used in
>>>> aqm
>>>> > aot
>>>> > > > > output
>>>> > > > > > > > >> > > is
>>>> > > > > > > > >> > > used
>>>> > > > > > > > >> > > by WMO.  Let me consult with EMC AQ group
and get
>>>> back
>>>> > to
>>>> > > > you.
>>>> > > > > > > > >> > > We
>>>> > > > > > > > >> > > may have
>>>> > > > > > > > >> > > to bring Tara in if it is necessary.
>>>> > > > > > > > >> > >
>>>> > > > > > > > >> > > Can you also check the ngac grib2 file?  I
>>>> encounter a
>>>> > > > similar
>>>> > > > > > > > >> > > problem,
>>>> > > > > > > > >> > > segmentation fault.  The ngac file are in
the same
>>>> ftp
>>>> > > > > > > > >> > > directory.
>>>> > > > > > > > >> > >
>>>> > > > > > > > >> > > Thanks.
>>>> > > > > > > > >> > >
>>>> > > > > > > > >> > > Ho-Chun
>>>> > > > > > > > >> > >
>>>> > > > > > > > >> > > On Tue, Jun 11, 2019 at 3:17 PM Howard Soh
via RT
>>>> > > > > > > > >> > > <met_help at ucar.edu>
>>>> > > > > > > > >> > > wrote:
>>>> > > > > > > > >> > >
>>>> > > > > > > > >> > >> The GRIB2 file (aqm.t06z.aot.f06.148.grib2)
as the
>>>> > target
>>>> > > > > grid
>>>> > > > > > > > >> > >> contains
>>>> > > > > > > > >> > >> product definition template #46. It's not
>>>> supported by
>>>> > > > wgrib2
>>>> > > > > > > > >> > >> (v0.2.0.3
>>>> > > > > > > > >> > >> 11/2015) and MET.
>>>> > > > > > > > >> > >>
>>>> > > > > > > > >> > >> > wgrib2 aqm.t06z.aot.f06.148.grib2
>>>> > > > > > > > >> > >> code_table_4.5a: product definition
template #46
>>>> not
>>>> > > > > supported
>>>> > > > > > > > >> > >> code_table_4.5b: product definition
template #46
>>>> not
>>>> > > > > supported
>>>> > > > > > > > >> > >> 1:0:d=2019060706:AOTK:no_level:5-6 hour ave
fcst:
>>>> > > > > > > > >> > >>
>>>> > > > > > > > >> > >> Would you use another GRIB2 file with the
product
>>>> > > > definition
>>>> > > > > > > > >> > >> template #48
>>>> > > > > > > > >> > >> or others below?
>>>> > > > > > > > >> > >>
>>>> > > > > > > > >> > >>
>>>> > > > > > > > >> > >>
>>>> > > > > > >
>>>> > >
>>>>
https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table4-
>>>> > > > > > > > >> > >> 0.shtml
>>>> > > > > > > > >> > >>
>>>> > > > > > > > >> > >> Here are template ids (GRIB2) which MET
supports:
>>>> > > > > > > > >> > >>    0: analysis or forecast
>>>> > > > > > > > >> > >>    1: individual ensemble forecast, control
and
>>>> > > perturbed,
>>>> > > > > at a
>>>> > > > > > > > >> > >> horizontal level or in
>>>> > > > > > > > >> > >>    2: ensemble mean
>>>> > > > > > > > >> > >>    5: probability forecast
>>>> > > > > > > > >> > >>    8: accumulation forecast
>>>> > > > > > > > >> > >>    9: probabilistic accumulation forecast
>>>> > > > > > > > >> > >>   11: individual ensemble forecast, control
and
>>>> > > perturbed,
>>>> > > > > at a
>>>> > > > > > > > >> > >> horizontal level or in
>>>> > > > > > > > >> > >>   12: derived accumulation forecast
>>>> > > > > > > > >> > >>   48: aerosol data
>>>> > > > > > > > >> > >>
>>>> > > > > > > > >> > >> Cheers,
>>>> > > > > > > > >> > >> Howard
>>>> > > > > > > > >> > >>
>>>> > > > > > > > >> > >> On Tue Jun 11 09:49:46 2019,
>>>> ho-chun.huang at noaa.gov
>>>> > > wrote:
>>>> > > > > > > > >> > >> > To Whom It May Concern:
>>>> > > > > > > > >> > >> >
>>>> > > > > > > > >> > >> > There is an error message on using the
>>>> > > regrid_data_plane,
>>>> > > > > > > > >> > >> > please
>>>> > > > > > > > >> > >> > help
>>>> > > > > > > > >> > >> me to
>>>> > > > > > > > >> > >> > debug the root of error.
>>>> > > > > > > > >> > >> >
>>>> > > > > > > > >> > >> > DEBUG 1: Reading data file:
>>>> > > > > > > > >> > >> >
>>>> > OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
>>>> > > > > > > > >> > >> c20191591005286.nc
>>>> > > > > > > > >> > >> > WARNING:
>>>> > > > > > > > >> > >> > WARNING: MetGrib2DataFile::data_plane()
->
>>>> unexpected
>>>> > > PDS
>>>> > > > > > > > >> > >> > template
>>>> > > > > > > > >> > >> number
>>>> > > > > > > > >> > >> > (46) may cause unexpected results. Please
email
>>>> > > > > > > > >> > >> > met_help at ucar.edu.
>>>> > > > > > > > >> > >> > WARNING:
>>>> > > > > > > > >> > >> > run.sh: line 7: 38040 Segmentation fault
>>>> (core
>>>> > > > dumped)
>>>> > > > > > > > >> > >> > regrid_data_plane
>>>> > > > > > > > >> > >> >
>>>> > OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
>>>> > > > > > > > >> > >> c20191591005286.nc
>>>> > > > > > > > >> > >> > aqm.t06z.aot.f06.148.grib2
>>>> > > OBS_AOD_aqm_g16_20190608_10.nc
>>>> > > > > > > > >> > >> > -field
>>>> > > > > > > > >> > >> > 'name="AOD"; level="*";' -method UW_MEAN
-v 1
>>>> -qc 0
>>>> > > > > > > > >> > >> >
>>>> > > > > > > > >> > >> > The files, script, and log can be found
in
>>>> > > > > > > > >> > >> >
>>>> https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
>>>> > > > > > > > >> > >> >
>>>> > > > > > > > >> > >> > I notice in 8.1 you no longer need the
-coord
>>>> option
>>>> > > that
>>>> > > > > 8.0
>>>> > > > > > > > >> > >> > needs.
>>>> > > > > > > > >> > >> >
>>>> > > > > > > > >> > >> > The output nc file only contains la and
lon but
>>>> no
>>>> > > > mapping
>>>> > > > > > > > >> > >> > AOD.
>>>> > > > > > > > >> > >> >
>>>> > > > > > > > >> > >> > Than you for your help.
>>>> > > > > > > > >> > >> >
>>>> > > > > > > > >> > >> > Ho-Chun Huang
>>>> > > > > > > > >> > >>
>>>> > > > > > > > >> > >>
>>>> > > > > > > > >> > >>
>>>> > > > > > > > >> > >>
>>>> > > > > > > > >>
>>>> > > > > > > > >>
>>>> > > > > > > > >>
>>>> > > > > > > > >>
>>>> > > > > > >
>>>> > > > > > >
>>>> > > > > > >
>>>> > > > > > >
>>>> > > > > >
>>>> > > > > >
>>>> > > > >
>>>> > > > > --
>>>> > > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>>>> > > > > Tara Jensen
>>>> > > > > Project Manager II
>>>> > > > > NCAR RAL and DTC
>>>> > > > > PO Box 3000, Boulder, Colorado 80307 USA
>>>> > > > > +1 303-497-8479          jensen at ucar.edu
>>>> > > > >
>>>> > > > >
>>>> > > >
>>>> > > >
>>>> > >
>>>> > >
>>>> >
>>>> >
>>>>
>>>>

------------------------------------------------
Subject: error on regrid_data_plane
From: Julie Prestopnik
Time: Fri Jun 28 14:03:11 2019

Thank you, Ho-Chun.  We are working on a solution and hope to have
this
fixed in the met-8.1 bugfix release met-8.1.1.

Julie

On Fri, Jun 28, 2019 at 7:52 AM Ho-Chun Huang - NOAA Affiliate via RT
<
met_help at ucar.edu> wrote:

>
> <URL: https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550 >
>
> To Whom It May concern:
>
> Due to disk quota full on phase 1, changing working directory
> to  /meso2/noscrub/Ho-Chun.Huang/methelp.
>
> Please note, the NCO also have a met8.1 build
>    module use  /usrx/local/dev/modulefiles
>    module load  met/8.1
>
> I also test using
>    module use  /global/noscrub/Julie.Prestopnik/modulefiles
>    module load  met/8.1
>
> The core dump error message remains.  Note, when Howard tested it on
NCAR
> machine, he did not receive the error message.
>
> Update all data to ftp site with latest test,
> https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
>
> Thank you for your help.
>
> Ho-Chun
>
> On Wed, Jun 19, 2019 at 2:25 PM Ho-Chun Huang - NOAA Affiliate <
> ho-chun.huang at noaa.gov> wrote:
>
> > Hi,
> >
> > My local working directory on tide is /meso/noscrub/Ho-
Chun.Huang/methelp
> >
> > Ho-Chun
> >
> > On Wed, Jun 19, 2019 at 2:19 PM Ho-Chun Huang - NOAA Affiliate <
> > ho-chun.huang at noaa.gov> wrote:
> >
> >> Hi, Julie:
> >>
> >> When you have time, please help me to find out why there is a
core
> dumped
> >> using regrid-data_plane on tide (to NGAC grid).
> >>
> >> all data file should be on
> >>
> >> https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
> >>
> >> Script need to revised to use the setting on tide (as below)
> >>
> >> Thank you.
> >>
> >> Ho-Chun
> >>
> >> p.s.
> >> > cat run.ngac.sh
> >> #!/bin/sh
> >> hl=`hostname | cut -c1-1`
> >> if [ ${hl} == 'g' ]; then
> >>    module purge
> >>    module use /global/noscrub/Julie.Prestopnik/modulefiles
> >>    module load  met/8.1
> >> else
> >>    module purge
> >>    module use  /usrx/local/dev/modulefiles
> >>    module load  met/8.1
> >> fi
> >>
> >>    regrid_data_plane
> >> OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> c20191591005286.nc
> >>  ngac.t12z.aod_550nm.grib2 \
> >>                      OBS_AOD_aqm_g16_20190608_10.nc  -field
'name="AOD";
> >> level="(*,*)";' -method UW_MEAN -v 1 -qc 0
> >>    exit
> >>
> >>  > bash run.ngac.sh
> >> DEBUG 1: Reading data file:
> >> OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> c20191591005286.nc
> >> run.ngac.sh: line 14: 24808 Segmentation fault      (core dumped)
> >> regrid_data_plane
> >> OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> c20191591005286.nc
> >> ngac.t12z.aod_550nm.grib2 OBS_AOD_aqm_g16_20190608_10.nc -field
> >> 'name="AOD"; level="(*,*)";' -method UW_MEAN -v 1 -qc 0
> >>
> >> On Wed, Jun 12, 2019 at 1:35 PM Ho-Chun Huang - NOAA Affiliate <
> >> ho-chun.huang at noaa.gov> wrote:
> >>
> >>> Julie:
> >>>
> >>> Thanks for the reminder.  I forgot about the met/8.1
installation on
> >>> tide. I will keep testing the script till it can successfully
load
> met/8.1
> >>> on tide.  You don't need to spend time to inform me separately.
> >>>
> >>> Will contact the helpdesk again, if I encounter the same
segmentation
> >>> fault error on tide.
> >>>
> >>> Ho-Chun
> >>>
> >>> On Wed, Jun 12, 2019 at 1:29 PM Julie Prestopnik via RT <
> >>> met_help at ucar.edu> wrote:
> >>>
> >>>> Hi Ho-Chun.
> >>>>
> >>>> I will need to install met-8.1 on tide after I regain access as
that
> >>>> machine has not been available to me since the met-8.1 release.
I can
> >>>> follow up once I have done that.
> >>>>
> >>>> If you try on tide and still have trouble, please follow up on
this
> >>>> ticket
> >>>> and let me know the exact command that you are running so that
I can
> >>>> try to
> >>>> reproduce the problem on tide.
> >>>>
> >>>> Thank you!
> >>>>
> >>>> Julie
> >>>>
> >>>> On Wed, Jun 12, 2019 at 11:19 AM Ho-Chun Huang - NOAA Affiliate
via
> RT <
> >>>> met_help at ucar.edu> wrote:
> >>>>
> >>>> >
> >>>> > <URL: https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550
>
> >>>> >
> >>>> > Hi, Julie:
> >>>> >
> >>>> > Thank you for being able to help. In addition to the template
issue,
> >>>> I have
> >>>> > a core dump due to Segmentation Fault when running on WCOSS
but
> >>>> Howard did
> >>>> > not has the same problem when he ran.  I am wondering maybe I
did
> not
> >>>> set
> >>>> > the environmental variables correctly, but I do not know why
since I
> >>>> only
> >>>> > know to load module met/8.1 (please see the log message in
previous
> >>>> > email).  Maybe you can debug the causes after the dev asses
is
> >>>> returned
> >>>> > tomorrow
> >>>> >
> >>>> > I tried CMAQ AOT, NGAC, and HYSPLIT grib2 files, they all had
the
> same
> >>>> > error.  Maybe it is machine dependence?  I was running the
> >>>> > regrid_data_plane on gyre.  After production switch, I will
try it
> >>>> again on
> >>>> > tide.
> >>>> >
> >>>> > best regards,
> >>>> > Ho-Chun
> >>>> >
> >>>> > On Wed, Jun 12, 2019 at 1:08 PM Julie Prestopnik via RT <
> >>>> met_help at ucar.edu
> >>>> > >
> >>>> > wrote:
> >>>> >
> >>>> > > Please let me know if I can do anything to help, as Tara
> mentioned,
> >>>> > > possibly copying it into the grib table path for the
"standard"
> >>>> > > METv8.1could help.  I don't have dev access to WCOSS at
this time
> >>>> with
> >>>> > the
> >>>> > > current production switch occurring, but I am happy to help
if
> >>>> needed
> >>>> > when
> >>>> > > I can.
> >>>> > >
> >>>> > > Julie
> >>>> > >
> >>>> > > On Wed, Jun 12, 2019 at 11:04 AM Ho-Chun Huang - NOAA
Affiliate
> via
> >>>> RT <
> >>>> > > met_help at ucar.edu> wrote:
> >>>> > >
> >>>> > > >
> >>>> > > > <URL:
https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550 >
> >>>> > > >
> >>>> > > > Hi, Tara:
> >>>> > > >
> >>>> > > > /nwprod2/grib_util.v1.0.*4*/exec/wgrib2  is the earliest
version
> >>>> > > recognizes
> >>>> > > > template #46.  Grib2 version higher than v1.0.4 is also
worked.
> >>>> > > >
> >>>> > > > Thank you for the reply, I will pass your response to
Jason and
> >>>> Jeff.
> >>>> > > >
> >>>> > > > Ho-Chun
> >>>> > > >
> >>>> > > > On Wed, Jun 12, 2019 at 12:11 PM Tara Jensen via RT <
> >>>> met_help at ucar.edu
> >>>> > >
> >>>> > > > wrote:
> >>>> > > >
> >>>> > > > > Ho-Chun (and Howard),
> >>>> > > > >
> >>>> > > > > Thought it might be good to jump in here.
> >>>> > > > >
> >>>> > > > > It looks like the wgrib2 that works is at:
> >>>> > > > > /nwprod2/grib_util.v1.0.3/exec/wgrib2  on WCOSS, is
that
> >>>> correct?  We
> >>>> > > > might
> >>>> > > > > be able to find table 46 and be able to grab it for
inclusion
> >>>> in the
> >>>> > > next
> >>>> > > > > release.  Julie might even be able to copy it into the
grib
> >>>> table
> >>>> > path
> >>>> > > > for
> >>>> > > > > the "standard" METv8.1 as well.  If that doesn't
resolve the
> >>>> issue,
> >>>> > > there
> >>>> > > > > are other work arounds that we can point you to until
the next
> >>>> > release
> >>>> > > > > (either bug fix or beta).
> >>>> > > > >
> >>>> > > > > Cheers, Tara
> >>>> > > > >
> >>>> > > > > On Wed, Jun 12, 2019 at 9:02 AM Ho-Chun Huang - NOAA
Affiliate
> >>>> via
> >>>> > RT <
> >>>> > > > > met_help at ucar.edu> wrote:
> >>>> > > > >
> >>>> > > > > >
> >>>> > > > > > <URL:
> https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550
> >>>> >
> >>>> > > > > >
> >>>> > > > > > Howard,
> >>>> > > > > >
> >>>> > > > > > Thanks.  I will consult with EMC management whether
to
> request
> >>>> > adding
> >>>> > > > > > support of new template in MET.
> >>>> > > > > >
> >>>> > > > > > Ho-Chun
> >>>> > > > > >
> >>>> > > > > > On Wed, Jun 12, 2019 at 10:57 AM Howard Soh via RT <
> >>>> > > met_help at ucar.edu>
> >>>> > > > > > wrote:
> >>>> > > > > >
> >>>> > > > > > > There is no relationship between wgrib2 and MET.
> >>>> > > > > > > wgrib2 was an example which does not support the
template
> >>>> ID 46.
> >>>> > We
> >>>> > > > did
> >>>> > > > > > > not have the GRIB2 file with template id 46. MET
gives an
> >>>> > warning.
> >>>> > > > MET
> >>>> > > > > > will
> >>>> > > > > > > stop if the template ID from the GRIB2 is not
supported
> >>>> instead
> >>>> > of
> >>>> > > > > > > continuing as a short term solution. MET will
support
> >>>> template ID
> >>>> > > 46
> >>>> > > > as
> >>>> > > > > > the
> >>>> > > > > > > long term solution.
> >>>> > > > > > >
> >>>> > > > > > > Cheers,
> >>>> > > > > > > Howard
> >>>> > > > > > >
> >>>> > > > > > > On Wed Jun 12 08:43:03 2019, ho-chun.huang at noaa.gov
> wrote:
> >>>> > > > > > > > Hi, Howard:
> >>>> > > > > > > >
> >>>> > > > > > > > There are several versions on WCOSS of wgrib2,
from
> >>>> loading
> >>>> > > module
> >>>> > > > > > > > grib_util/v1.0.0(default) to  v1.1.0.
> >>>> > > > > > > >
> >>>> > > > > > > > g20a1: > module avail grib_util
> >>>> > > > > > > >
> >>>> > > > > > > >
> >>>> -----------------------------------------------------------
> >>>> > > > > > > > /nwprod2/modulefiles
> >>>> > > > > > > >
> >>>> -----------------------------------------------------------
> >>>> > > > > > > > grib_util/v1.0.0(default) grib_util/v1.0.2
> >>>> > > > grib_util/v1.0.4
> >>>> > > > > > > >    grib_util/v1.0.6
> >>>> > > > > > > > grib_util/v1.0.1          grib_util/v1.0.3
> >>>> > > > grib_util/v1.0.5
> >>>> > > > > > > >    grib_util/v1.1.0
> >>>> > > > > > > >
> >>>> > > > > > > > After using different version of wgrib2, I found
> >>>> > grib_util/v1.0.4
> >>>> > > > and
> >>>> > > > > > > > above
> >>>> > > > > > > > can read CMAQ AOT template #46 (see below for
more
> >>>> detail).
> >>>> > > > > > > >
> >>>> > > > > > > > Does MET v8.1 uses older version of wgrib2?  The
version
> >>>> number
> >>>> > > of
> >>>> > > > > > > > wgrib2
> >>>> > > > > > > > is v0.1.9.6a 5/2012 and v0.2.0.7 12/2017 for
> >>>> grib_util/v1.0.0
> >>>> > and
> >>>> > > > > > > > grib_util/v1.1.0, respectively.
> >>>> > > > > > > > (using /nwprod2/grib_util.v1.0.0/exec/wgrib2
-version)
> >>>> > > > > > > >
> >>>> > > > > > > > Can MET v8.1 built on WCOSS using newer version
of
> wgrib2
> >>>> to
> >>>> > > solve
> >>>> > > > > > > > current
> >>>> > > > > > > > issue?
> >>>> > > > > > > >
> >>>> > > > > > > > Ho-Chun
> >>>> > > > > > > >
> >>>> > > > > > > > p.s.
> >>>> > > > > > > >
> >>>> > > > > > > > g20a1:~ > /nwprod2/grib_util.v1.0.3/exec/wgrib2
-V
> >>>> > > > > > > >
> >>>> > > > >
> >>>> >
>
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> >>>> > > > > > > > code_table_4.5a: product definition template #46
not
> >>>> supported
> >>>> > > > > > > > code_table_4.5b: product definition template #46
not
> >>>> supported
> >>>> > > > > > > > 1:0:vt=2019061200:no_level:11-12 hour ave
fcst:AOTK
> >>>> Aerosol
> >>>> > > Optical
> >>>> > > > > > > > Thickness [Numeric]:
> >>>> > > > > > > >
> >>>>  ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> >>>> > > > > > > >     grid_template=30:winds(grid):
> >>>> > > > > > > >         Lambert Conformal: (442 x 265) input
WE:SN
> output
> >>>> WE:SN
> >>>> > > > res 8
> >>>> > > > > > > >         Lat1 21.821000 Lon1 239.372000 LoV
263.000000
> >>>> > > > > > > >         LatD 33.000000 Latin1 33.000000 Latin2
45.000000
> >>>> > > > > > > >         LatSP 0.000000 LonSP 0.000000
> >>>> > > > > > > >         North Pole (442 x 265) Dx 12000.000000 m
Dy
> >>>> > 12000.000000
> >>>> > > m
> >>>> > > > > > > > mode 8
> >>>> > > > > > > >
> >>>> > > > > > > > g20a1:~ > /nwprod2/grib_util.v1.0.4/exec/wgrib2
-V
> >>>> > > > > > > >
> >>>> > > > >
> >>>> >
>
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> >>>> > > > > > > > 1:0:vt=2019061200:1 sigma level:11-12 hour ave
fcst:AOTK
> >>>> > Aerosol
> >>>> > > > > > > > Optical
> >>>> > > > > > > > Thickness [Numeric]:aerosol=Ozone
> >>>> > > > > > > >
> >>>>  ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> >>>> > > > > > > >     grid_template=30:winds(grid):
> >>>> > > > > > > >         Lambert Conformal: (442 x 265) input
WE:SN
> output
> >>>> WE:SN
> >>>> > > > res 8
> >>>> > > > > > > >         Lat1 21.821000 Lon1 239.372000 LoV
263.000000
> >>>> > > > > > > >         LatD 33.000000 Latin1 33.000000 Latin2
45.000000
> >>>> > > > > > > >         LatSP 0.000000 LonSP 0.000000
> >>>> > > > > > > >         North Pole (442 x 265) Dx 12000.000000 m
Dy
> >>>> > 12000.000000
> >>>> > > m
> >>>> > > > > > > > mode 8
> >>>> > > > > > > >
> >>>> > > > > > > > g20a1:~ > /nwprod2/grib_util.v1.1.0/exec/wgrib2
-V
> >>>> > > > > > > >
> >>>> > > > >
> >>>> >
>
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> >>>> > > > > > > > 1:0:vt=2019061200:1 sigma level:11-12 hour ave
fcst:AOTK
> >>>> > Aerosol
> >>>> > > > > > > > Optical
> >>>> > > > > > > > Thickness [Numeric]:aerosol=Ozone:aerosol_size <0
> >>>> > > > > > > >
> >>>>  ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> >>>> > > > > > > >     grid_template=30:winds(grid):
> >>>> > > > > > > >         Lambert Conformal: (442 x 265) input
WE:SN
> output
> >>>> WE:SN
> >>>> > > > res 8
> >>>> > > > > > > >         Lat1 21.821000 Lon1 239.372000 LoV
263.000000
> >>>> > > > > > > >         LatD 33.000000 Latin1 33.000000 Latin2
45.000000
> >>>> > > > > > > >         LatSP 0.000000 LonSP 0.000000
> >>>> > > > > > > >         North Pole (442 x 265) Dx 12000.000000 m
Dy
> >>>> > 12000.000000
> >>>> > > m
> >>>> > > > > > > > mode 8
> >>>> > > > > > > >
> >>>> > > > > > > >
> >>>> > > > > > > > On Wed, Jun 12, 2019 at 8:03 AM Ho-Chun Huang -
NOAA
> >>>> Affiliate
> >>>> > <
> >>>> > > > > > > > ho-chun.huang at noaa.gov> wrote:
> >>>> > > > > > > >
> >>>> > > > > > > > > Hi, Howard:
> >>>> > > > > > > > >
> >>>> > > > > > > > > Did you run the command on NCAR's machines?  We
might
> >>>> have to
> >>>> > > > bring
> >>>> > > > > > > > > John
> >>>> > > > > > > > > in because there is a possibility that the MET
v8,.1
> >>>> built on
> >>>> > > > > > > > > WCOSS/Gyre is
> >>>> > > > > > > > > not right, at least for regrid_data_plane.  Do
you
> have
> >>>> any
> >>>> > > > > > > > > suggestion on
> >>>> > > > > > > > > the environment setting I should include?  I do
not
> >>>> think I
> >>>> > can
> >>>> > > > > > > > > figure it
> >>>> > > > > > > > > out what went wrong on the same run script
worked for
> >>>> you.
> >>>> > > > > > > > >
> >>>> > > > > > > > > Ho-Chun
> >>>> > > > > > > > >
> >>>> > > > > > > > > On Tue, Jun 11, 2019 at 6:50 PM Howard Soh via
RT <
> >>>> > > > > met_help at ucar.edu
> >>>> > > > > > >
> >>>> > > > > > > > > wrote:
> >>>> > > > > > > > >
> >>>> > > > > > > > >> It works for me.
> >>>> > > > > > > > >>
> >>>> > > > > > > > >> met-8.1/bin/regrid_data_plane
> >>>> > > > > > > > >> goes-16/ABI/L2/CONUS/AOD/2019162/OR_ABI-L2-
AODC-
> >>>> > > > > > > > >> M6_G16_s20191621821475_e20191621824248_
> >>>> > > > > > > > >> c20191621827269.nc
> >>>> ~/data/GOES-16/ngac.t12z.aod_550nm.grib2
> >>>> > > > > > > > >> OBS_AOD_aqm_g16_20190608_10.nc  -field
'name="AOD";
> >>>> > > level="*";'
> >>>> > > > > > > > >> -method
> >>>> > > > > > > > >> UW_MEAN -v 1 -qc 0
> >>>> > > > > > > > >>
> >>>> > > > > > > > >> The output was attached.
> >>>> > > > > > > > >>
> >>>> > > > > > > > >> Cheers,
> >>>> > > > > > > > >> Howard
> >>>> > > > > > > > >>
> >>>> > > > > > > > >>
> >>>> > > > > > > > >> On Tue Jun 11 13:49:01 2019, ho-
chun.huang at noaa.gov
> >>>> wrote:
> >>>> > > > > > > > >> > Hi, Howard:
> >>>> > > > > > > > >> >
> >>>> > > > > > > > >> > Same situation,Segmentation fault, occurred
to
> >>>> HYSPLIT
> >>>> > model
> >>>> > > > > grib2
> >>>> > > > > > > > >> > output.
> >>>> > > > > > > > >> > Can you look into the issue of "Segmentation
> fault?"
> >>>> > > > > > > > >> >
> >>>> > > > > > > > >> > Thank you for the help.
> >>>> > > > > > > > >> >
> >>>> > > > > > > > >> > Ho-Chun
> >>>> > > > > > > > >> >
> >>>> > > > > > > > >> > On Tue, Jun 11, 2019 at 3:30 PM Ho-Chun
Huang -
> NOAA
> >>>> > > > Affiliate <
> >>>> > > > > > > > >> > ho-chun.huang at noaa.gov> wrote:
> >>>> > > > > > > > >> >
> >>>> > > > > > > > >> > > Hi, Howard:
> >>>> > > > > > > > >> > >
> >>>> > > > > > > > >> > > Thanks for the info.  I thought the table
used in
> >>>> aqm
> >>>> > aot
> >>>> > > > > output
> >>>> > > > > > > > >> > > is
> >>>> > > > > > > > >> > > used
> >>>> > > > > > > > >> > > by WMO.  Let me consult with EMC AQ group
and get
> >>>> back
> >>>> > to
> >>>> > > > you.
> >>>> > > > > > > > >> > > We
> >>>> > > > > > > > >> > > may have
> >>>> > > > > > > > >> > > to bring Tara in if it is necessary.
> >>>> > > > > > > > >> > >
> >>>> > > > > > > > >> > > Can you also check the ngac grib2 file?  I
> >>>> encounter a
> >>>> > > > similar
> >>>> > > > > > > > >> > > problem,
> >>>> > > > > > > > >> > > segmentation fault.  The ngac file are in
the
> same
> >>>> ftp
> >>>> > > > > > > > >> > > directory.
> >>>> > > > > > > > >> > >
> >>>> > > > > > > > >> > > Thanks.
> >>>> > > > > > > > >> > >
> >>>> > > > > > > > >> > > Ho-Chun
> >>>> > > > > > > > >> > >
> >>>> > > > > > > > >> > > On Tue, Jun 11, 2019 at 3:17 PM Howard Soh
via RT
> >>>> > > > > > > > >> > > <met_help at ucar.edu>
> >>>> > > > > > > > >> > > wrote:
> >>>> > > > > > > > >> > >
> >>>> > > > > > > > >> > >> The GRIB2 file
(aqm.t06z.aot.f06.148.grib2) as
> the
> >>>> > target
> >>>> > > > > grid
> >>>> > > > > > > > >> > >> contains
> >>>> > > > > > > > >> > >> product definition template #46. It's not
> >>>> supported by
> >>>> > > > wgrib2
> >>>> > > > > > > > >> > >> (v0.2.0.3
> >>>> > > > > > > > >> > >> 11/2015) and MET.
> >>>> > > > > > > > >> > >>
> >>>> > > > > > > > >> > >> > wgrib2 aqm.t06z.aot.f06.148.grib2
> >>>> > > > > > > > >> > >> code_table_4.5a: product definition
template #46
> >>>> not
> >>>> > > > > supported
> >>>> > > > > > > > >> > >> code_table_4.5b: product definition
template #46
> >>>> not
> >>>> > > > > supported
> >>>> > > > > > > > >> > >> 1:0:d=2019060706:AOTK:no_level:5-6 hour
ave
> fcst:
> >>>> > > > > > > > >> > >>
> >>>> > > > > > > > >> > >> Would you use another GRIB2 file with the
> product
> >>>> > > > definition
> >>>> > > > > > > > >> > >> template #48
> >>>> > > > > > > > >> > >> or others below?
> >>>> > > > > > > > >> > >>
> >>>> > > > > > > > >> > >>
> >>>> > > > > > > > >> > >>
> >>>> > > > > > >
> >>>> > >
> >>>>
https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table4-
> >>>> > > > > > > > >> > >> 0.shtml
> >>>> > > > > > > > >> > >>
> >>>> > > > > > > > >> > >> Here are template ids (GRIB2) which MET
> supports:
> >>>> > > > > > > > >> > >>    0: analysis or forecast
> >>>> > > > > > > > >> > >>    1: individual ensemble forecast,
control and
> >>>> > > perturbed,
> >>>> > > > > at a
> >>>> > > > > > > > >> > >> horizontal level or in
> >>>> > > > > > > > >> > >>    2: ensemble mean
> >>>> > > > > > > > >> > >>    5: probability forecast
> >>>> > > > > > > > >> > >>    8: accumulation forecast
> >>>> > > > > > > > >> > >>    9: probabilistic accumulation forecast
> >>>> > > > > > > > >> > >>   11: individual ensemble forecast,
control and
> >>>> > > perturbed,
> >>>> > > > > at a
> >>>> > > > > > > > >> > >> horizontal level or in
> >>>> > > > > > > > >> > >>   12: derived accumulation forecast
> >>>> > > > > > > > >> > >>   48: aerosol data
> >>>> > > > > > > > >> > >>
> >>>> > > > > > > > >> > >> Cheers,
> >>>> > > > > > > > >> > >> Howard
> >>>> > > > > > > > >> > >>
> >>>> > > > > > > > >> > >> On Tue Jun 11 09:49:46 2019,
> >>>> ho-chun.huang at noaa.gov
> >>>> > > wrote:
> >>>> > > > > > > > >> > >> > To Whom It May Concern:
> >>>> > > > > > > > >> > >> >
> >>>> > > > > > > > >> > >> > There is an error message on using the
> >>>> > > regrid_data_plane,
> >>>> > > > > > > > >> > >> > please
> >>>> > > > > > > > >> > >> > help
> >>>> > > > > > > > >> > >> me to
> >>>> > > > > > > > >> > >> > debug the root of error.
> >>>> > > > > > > > >> > >> >
> >>>> > > > > > > > >> > >> > DEBUG 1: Reading data file:
> >>>> > > > > > > > >> > >> >
> >>>> > OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> >>>> > > > > > > > >> > >> c20191591005286.nc
> >>>> > > > > > > > >> > >> > WARNING:
> >>>> > > > > > > > >> > >> > WARNING: MetGrib2DataFile::data_plane()
->
> >>>> unexpected
> >>>> > > PDS
> >>>> > > > > > > > >> > >> > template
> >>>> > > > > > > > >> > >> number
> >>>> > > > > > > > >> > >> > (46) may cause unexpected results.
Please
> email
> >>>> > > > > > > > >> > >> > met_help at ucar.edu.
> >>>> > > > > > > > >> > >> > WARNING:
> >>>> > > > > > > > >> > >> > run.sh: line 7: 38040 Segmentation
fault
> >>>> (core
> >>>> > > > dumped)
> >>>> > > > > > > > >> > >> > regrid_data_plane
> >>>> > > > > > > > >> > >> >
> >>>> > OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> >>>> > > > > > > > >> > >> c20191591005286.nc
> >>>> > > > > > > > >> > >> > aqm.t06z.aot.f06.148.grib2
> >>>> > > OBS_AOD_aqm_g16_20190608_10.nc
> >>>> > > > > > > > >> > >> > -field
> >>>> > > > > > > > >> > >> > 'name="AOD"; level="*";' -method
UW_MEAN -v 1
> >>>> -qc 0
> >>>> > > > > > > > >> > >> >
> >>>> > > > > > > > >> > >> > The files, script, and log can be found
in
> >>>> > > > > > > > >> > >> >
> >>>> https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
> >>>> > > > > > > > >> > >> >
> >>>> > > > > > > > >> > >> > I notice in 8.1 you no longer need the
-coord
> >>>> option
> >>>> > > that
> >>>> > > > > 8.0
> >>>> > > > > > > > >> > >> > needs.
> >>>> > > > > > > > >> > >> >
> >>>> > > > > > > > >> > >> > The output nc file only contains la and
lon
> but
> >>>> no
> >>>> > > > mapping
> >>>> > > > > > > > >> > >> > AOD.
> >>>> > > > > > > > >> > >> >
> >>>> > > > > > > > >> > >> > Than you for your help.
> >>>> > > > > > > > >> > >> >
> >>>> > > > > > > > >> > >> > Ho-Chun Huang
> >>>> > > > > > > > >> > >>
> >>>> > > > > > > > >> > >>
> >>>> > > > > > > > >> > >>
> >>>> > > > > > > > >> > >>
> >>>> > > > > > > > >>
> >>>> > > > > > > > >>
> >>>> > > > > > > > >>
> >>>> > > > > > > > >>
> >>>> > > > > > >
> >>>> > > > > > >
> >>>> > > > > > >
> >>>> > > > > > >
> >>>> > > > > >
> >>>> > > > > >
> >>>> > > > >
> >>>> > > > > --
> >>>> > > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> >>>> > > > > Tara Jensen
> >>>> > > > > Project Manager II
> >>>> > > > > NCAR RAL and DTC
> >>>> > > > > PO Box 3000, Boulder, Colorado 80307 USA
> >>>> > > > > +1 303-497-8479          jensen at ucar.edu
> >>>> > > > >
> >>>> > > > >
> >>>> > > >
> >>>> > > >
> >>>> > >
> >>>> > >
> >>>> >
> >>>> >
> >>>>
> >>>>
>
>

------------------------------------------------
Subject: error on regrid_data_plane
From: Ho-Chun Huang - NOAA Affiliate
Time: Mon Jul 01 05:48:54 2019

Hi, Julie:

There are two questions for this ticket.  One is for template #46.
Another
one is execution error on WCOSS Phase II of regrid_data_plane
including
using other model grib2 file not using template #46, i.e., NGAC and
HYSPLIT
output.  Howard using the same data and did not have this error on
NCAR
machine.  While waiting for the solution for new template, can we try
to
resolve the runtime error first?

Ho-Chun

On Fri, Jun 28, 2019 at 4:03 PM Julie Prestopnik via RT
<met_help at ucar.edu>
wrote:

> Thank you, Ho-Chun.  We are working on a solution and hope to have
this
> fixed in the met-8.1 bugfix release met-8.1.1.
>
> Julie
>
> On Fri, Jun 28, 2019 at 7:52 AM Ho-Chun Huang - NOAA Affiliate via
RT <
> met_help at ucar.edu> wrote:
>
> >
> > <URL: https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550 >
> >
> > To Whom It May concern:
> >
> > Due to disk quota full on phase 1, changing working directory
> > to  /meso2/noscrub/Ho-Chun.Huang/methelp.
> >
> > Please note, the NCO also have a met8.1 build
> >    module use  /usrx/local/dev/modulefiles
> >    module load  met/8.1
> >
> > I also test using
> >    module use  /global/noscrub/Julie.Prestopnik/modulefiles
> >    module load  met/8.1
> >
> > The core dump error message remains.  Note, when Howard tested it
on NCAR
> > machine, he did not receive the error message.
> >
> > Update all data to ftp site with latest test,
> > https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
> >
> > Thank you for your help.
> >
> > Ho-Chun
> >
> > On Wed, Jun 19, 2019 at 2:25 PM Ho-Chun Huang - NOAA Affiliate <
> > ho-chun.huang at noaa.gov> wrote:
> >
> > > Hi,
> > >
> > > My local working directory on tide is
> /meso/noscrub/Ho-Chun.Huang/methelp
> > >
> > > Ho-Chun
> > >
> > > On Wed, Jun 19, 2019 at 2:19 PM Ho-Chun Huang - NOAA Affiliate <
> > > ho-chun.huang at noaa.gov> wrote:
> > >
> > >> Hi, Julie:
> > >>
> > >> When you have time, please help me to find out why there is a
core
> > dumped
> > >> using regrid-data_plane on tide (to NGAC grid).
> > >>
> > >> all data file should be on
> > >>
> > >> https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
> > >>
> > >> Script need to revised to use the setting on tide (as below)
> > >>
> > >> Thank you.
> > >>
> > >> Ho-Chun
> > >>
> > >> p.s.
> > >> > cat run.ngac.sh
> > >> #!/bin/sh
> > >> hl=`hostname | cut -c1-1`
> > >> if [ ${hl} == 'g' ]; then
> > >>    module purge
> > >>    module use /global/noscrub/Julie.Prestopnik/modulefiles
> > >>    module load  met/8.1
> > >> else
> > >>    module purge
> > >>    module use  /usrx/local/dev/modulefiles
> > >>    module load  met/8.1
> > >> fi
> > >>
> > >>    regrid_data_plane
> > >> OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> > c20191591005286.nc
> > >>  ngac.t12z.aod_550nm.grib2 \
> > >>                      OBS_AOD_aqm_g16_20190608_10.nc  -field
> 'name="AOD";
> > >> level="(*,*)";' -method UW_MEAN -v 1 -qc 0
> > >>    exit
> > >>
> > >>  > bash run.ngac.sh
> > >> DEBUG 1: Reading data file:
> > >> OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> > c20191591005286.nc
> > >> run.ngac.sh: line 14: 24808 Segmentation fault      (core
dumped)
> > >> regrid_data_plane
> > >> OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> > c20191591005286.nc
> > >> ngac.t12z.aod_550nm.grib2 OBS_AOD_aqm_g16_20190608_10.nc -field
> > >> 'name="AOD"; level="(*,*)";' -method UW_MEAN -v 1 -qc 0
> > >>
> > >> On Wed, Jun 12, 2019 at 1:35 PM Ho-Chun Huang - NOAA Affiliate
<
> > >> ho-chun.huang at noaa.gov> wrote:
> > >>
> > >>> Julie:
> > >>>
> > >>> Thanks for the reminder.  I forgot about the met/8.1
installation on
> > >>> tide. I will keep testing the script till it can successfully
load
> > met/8.1
> > >>> on tide.  You don't need to spend time to inform me
separately.
> > >>>
> > >>> Will contact the helpdesk again, if I encounter the same
segmentation
> > >>> fault error on tide.
> > >>>
> > >>> Ho-Chun
> > >>>
> > >>> On Wed, Jun 12, 2019 at 1:29 PM Julie Prestopnik via RT <
> > >>> met_help at ucar.edu> wrote:
> > >>>
> > >>>> Hi Ho-Chun.
> > >>>>
> > >>>> I will need to install met-8.1 on tide after I regain access
as that
> > >>>> machine has not been available to me since the met-8.1
release. I
> can
> > >>>> follow up once I have done that.
> > >>>>
> > >>>> If you try on tide and still have trouble, please follow up
on this
> > >>>> ticket
> > >>>> and let me know the exact command that you are running so
that I can
> > >>>> try to
> > >>>> reproduce the problem on tide.
> > >>>>
> > >>>> Thank you!
> > >>>>
> > >>>> Julie
> > >>>>
> > >>>> On Wed, Jun 12, 2019 at 11:19 AM Ho-Chun Huang - NOAA
Affiliate via
> > RT <
> > >>>> met_help at ucar.edu> wrote:
> > >>>>
> > >>>> >
> > >>>> > <URL:
https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550 >
> > >>>> >
> > >>>> > Hi, Julie:
> > >>>> >
> > >>>> > Thank you for being able to help. In addition to the
template
> issue,
> > >>>> I have
> > >>>> > a core dump due to Segmentation Fault when running on WCOSS
but
> > >>>> Howard did
> > >>>> > not has the same problem when he ran.  I am wondering maybe
I did
> > not
> > >>>> set
> > >>>> > the environmental variables correctly, but I do not know
why
> since I
> > >>>> only
> > >>>> > know to load module met/8.1 (please see the log message in
> previous
> > >>>> > email).  Maybe you can debug the causes after the dev asses
is
> > >>>> returned
> > >>>> > tomorrow
> > >>>> >
> > >>>> > I tried CMAQ AOT, NGAC, and HYSPLIT grib2 files, they all
had the
> > same
> > >>>> > error.  Maybe it is machine dependence?  I was running the
> > >>>> > regrid_data_plane on gyre.  After production switch, I will
try it
> > >>>> again on
> > >>>> > tide.
> > >>>> >
> > >>>> > best regards,
> > >>>> > Ho-Chun
> > >>>> >
> > >>>> > On Wed, Jun 12, 2019 at 1:08 PM Julie Prestopnik via RT <
> > >>>> met_help at ucar.edu
> > >>>> > >
> > >>>> > wrote:
> > >>>> >
> > >>>> > > Please let me know if I can do anything to help, as Tara
> > mentioned,
> > >>>> > > possibly copying it into the grib table path for the
"standard"
> > >>>> > > METv8.1could help.  I don't have dev access to WCOSS at
this
> time
> > >>>> with
> > >>>> > the
> > >>>> > > current production switch occurring, but I am happy to
help if
> > >>>> needed
> > >>>> > when
> > >>>> > > I can.
> > >>>> > >
> > >>>> > > Julie
> > >>>> > >
> > >>>> > > On Wed, Jun 12, 2019 at 11:04 AM Ho-Chun Huang - NOAA
Affiliate
> > via
> > >>>> RT <
> > >>>> > > met_help at ucar.edu> wrote:
> > >>>> > >
> > >>>> > > >
> > >>>> > > > <URL:
https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550
> >
> > >>>> > > >
> > >>>> > > > Hi, Tara:
> > >>>> > > >
> > >>>> > > > /nwprod2/grib_util.v1.0.*4*/exec/wgrib2  is the
earliest
> version
> > >>>> > > recognizes
> > >>>> > > > template #46.  Grib2 version higher than v1.0.4 is also
> worked.
> > >>>> > > >
> > >>>> > > > Thank you for the reply, I will pass your response to
Jason
> and
> > >>>> Jeff.
> > >>>> > > >
> > >>>> > > > Ho-Chun
> > >>>> > > >
> > >>>> > > > On Wed, Jun 12, 2019 at 12:11 PM Tara Jensen via RT <
> > >>>> met_help at ucar.edu
> > >>>> > >
> > >>>> > > > wrote:
> > >>>> > > >
> > >>>> > > > > Ho-Chun (and Howard),
> > >>>> > > > >
> > >>>> > > > > Thought it might be good to jump in here.
> > >>>> > > > >
> > >>>> > > > > It looks like the wgrib2 that works is at:
> > >>>> > > > > /nwprod2/grib_util.v1.0.3/exec/wgrib2  on WCOSS, is
that
> > >>>> correct?  We
> > >>>> > > > might
> > >>>> > > > > be able to find table 46 and be able to grab it for
> inclusion
> > >>>> in the
> > >>>> > > next
> > >>>> > > > > release.  Julie might even be able to copy it into
the grib
> > >>>> table
> > >>>> > path
> > >>>> > > > for
> > >>>> > > > > the "standard" METv8.1 as well.  If that doesn't
resolve the
> > >>>> issue,
> > >>>> > > there
> > >>>> > > > > are other work arounds that we can point you to until
the
> next
> > >>>> > release
> > >>>> > > > > (either bug fix or beta).
> > >>>> > > > >
> > >>>> > > > > Cheers, Tara
> > >>>> > > > >
> > >>>> > > > > On Wed, Jun 12, 2019 at 9:02 AM Ho-Chun Huang - NOAA
> Affiliate
> > >>>> via
> > >>>> > RT <
> > >>>> > > > > met_help at ucar.edu> wrote:
> > >>>> > > > >
> > >>>> > > > > >
> > >>>> > > > > > <URL:
> > https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550
> > >>>> >
> > >>>> > > > > >
> > >>>> > > > > > Howard,
> > >>>> > > > > >
> > >>>> > > > > > Thanks.  I will consult with EMC management whether
to
> > request
> > >>>> > adding
> > >>>> > > > > > support of new template in MET.
> > >>>> > > > > >
> > >>>> > > > > > Ho-Chun
> > >>>> > > > > >
> > >>>> > > > > > On Wed, Jun 12, 2019 at 10:57 AM Howard Soh via RT
<
> > >>>> > > met_help at ucar.edu>
> > >>>> > > > > > wrote:
> > >>>> > > > > >
> > >>>> > > > > > > There is no relationship between wgrib2 and MET.
> > >>>> > > > > > > wgrib2 was an example which does not support the
> template
> > >>>> ID 46.
> > >>>> > We
> > >>>> > > > did
> > >>>> > > > > > > not have the GRIB2 file with template id 46. MET
gives
> an
> > >>>> > warning.
> > >>>> > > > MET
> > >>>> > > > > > will
> > >>>> > > > > > > stop if the template ID from the GRIB2 is not
supported
> > >>>> instead
> > >>>> > of
> > >>>> > > > > > > continuing as a short term solution. MET will
support
> > >>>> template ID
> > >>>> > > 46
> > >>>> > > > as
> > >>>> > > > > > the
> > >>>> > > > > > > long term solution.
> > >>>> > > > > > >
> > >>>> > > > > > > Cheers,
> > >>>> > > > > > > Howard
> > >>>> > > > > > >
> > >>>> > > > > > > On Wed Jun 12 08:43:03 2019, ho-
chun.huang at noaa.gov
> > wrote:
> > >>>> > > > > > > > Hi, Howard:
> > >>>> > > > > > > >
> > >>>> > > > > > > > There are several versions on WCOSS of wgrib2,
from
> > >>>> loading
> > >>>> > > module
> > >>>> > > > > > > > grib_util/v1.0.0(default) to  v1.1.0.
> > >>>> > > > > > > >
> > >>>> > > > > > > > g20a1: > module avail grib_util
> > >>>> > > > > > > >
> > >>>> > > > > > > >
> > >>>> -----------------------------------------------------------
> > >>>> > > > > > > > /nwprod2/modulefiles
> > >>>> > > > > > > >
> > >>>> -----------------------------------------------------------
> > >>>> > > > > > > > grib_util/v1.0.0(default) grib_util/v1.0.2
> > >>>> > > > grib_util/v1.0.4
> > >>>> > > > > > > >    grib_util/v1.0.6
> > >>>> > > > > > > > grib_util/v1.0.1          grib_util/v1.0.3
> > >>>> > > > grib_util/v1.0.5
> > >>>> > > > > > > >    grib_util/v1.1.0
> > >>>> > > > > > > >
> > >>>> > > > > > > > After using different version of wgrib2, I
found
> > >>>> > grib_util/v1.0.4
> > >>>> > > > and
> > >>>> > > > > > > > above
> > >>>> > > > > > > > can read CMAQ AOT template #46 (see below for
more
> > >>>> detail).
> > >>>> > > > > > > >
> > >>>> > > > > > > > Does MET v8.1 uses older version of wgrib2?
The
> version
> > >>>> number
> > >>>> > > of
> > >>>> > > > > > > > wgrib2
> > >>>> > > > > > > > is v0.1.9.6a 5/2012 and v0.2.0.7 12/2017 for
> > >>>> grib_util/v1.0.0
> > >>>> > and
> > >>>> > > > > > > > grib_util/v1.1.0, respectively.
> > >>>> > > > > > > > (using /nwprod2/grib_util.v1.0.0/exec/wgrib2
-version)
> > >>>> > > > > > > >
> > >>>> > > > > > > > Can MET v8.1 built on WCOSS using newer version
of
> > wgrib2
> > >>>> to
> > >>>> > > solve
> > >>>> > > > > > > > current
> > >>>> > > > > > > > issue?
> > >>>> > > > > > > >
> > >>>> > > > > > > > Ho-Chun
> > >>>> > > > > > > >
> > >>>> > > > > > > > p.s.
> > >>>> > > > > > > >
> > >>>> > > > > > > > g20a1:~ > /nwprod2/grib_util.v1.0.3/exec/wgrib2
-V
> > >>>> > > > > > > >
> > >>>> > > > >
> > >>>> >
> >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > >>>> > > > > > > > code_table_4.5a: product definition template
#46 not
> > >>>> supported
> > >>>> > > > > > > > code_table_4.5b: product definition template
#46 not
> > >>>> supported
> > >>>> > > > > > > > 1:0:vt=2019061200:no_level:11-12 hour ave
fcst:AOTK
> > >>>> Aerosol
> > >>>> > > Optical
> > >>>> > > > > > > > Thickness [Numeric]:
> > >>>> > > > > > > >
> > >>>>  ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> > >>>> > > > > > > >     grid_template=30:winds(grid):
> > >>>> > > > > > > >         Lambert Conformal: (442 x 265) input
WE:SN
> > output
> > >>>> WE:SN
> > >>>> > > > res 8
> > >>>> > > > > > > >         Lat1 21.821000 Lon1 239.372000 LoV
263.000000
> > >>>> > > > > > > >         LatD 33.000000 Latin1 33.000000 Latin2
> 45.000000
> > >>>> > > > > > > >         LatSP 0.000000 LonSP 0.000000
> > >>>> > > > > > > >         North Pole (442 x 265) Dx 12000.000000
m Dy
> > >>>> > 12000.000000
> > >>>> > > m
> > >>>> > > > > > > > mode 8
> > >>>> > > > > > > >
> > >>>> > > > > > > > g20a1:~ > /nwprod2/grib_util.v1.0.4/exec/wgrib2
-V
> > >>>> > > > > > > >
> > >>>> > > > >
> > >>>> >
> >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > >>>> > > > > > > > 1:0:vt=2019061200:1 sigma level:11-12 hour ave
> fcst:AOTK
> > >>>> > Aerosol
> > >>>> > > > > > > > Optical
> > >>>> > > > > > > > Thickness [Numeric]:aerosol=Ozone
> > >>>> > > > > > > >
> > >>>>  ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> > >>>> > > > > > > >     grid_template=30:winds(grid):
> > >>>> > > > > > > >         Lambert Conformal: (442 x 265) input
WE:SN
> > output
> > >>>> WE:SN
> > >>>> > > > res 8
> > >>>> > > > > > > >         Lat1 21.821000 Lon1 239.372000 LoV
263.000000
> > >>>> > > > > > > >         LatD 33.000000 Latin1 33.000000 Latin2
> 45.000000
> > >>>> > > > > > > >         LatSP 0.000000 LonSP 0.000000
> > >>>> > > > > > > >         North Pole (442 x 265) Dx 12000.000000
m Dy
> > >>>> > 12000.000000
> > >>>> > > m
> > >>>> > > > > > > > mode 8
> > >>>> > > > > > > >
> > >>>> > > > > > > > g20a1:~ > /nwprod2/grib_util.v1.1.0/exec/wgrib2
-V
> > >>>> > > > > > > >
> > >>>> > > > >
> > >>>> >
> >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > >>>> > > > > > > > 1:0:vt=2019061200:1 sigma level:11-12 hour ave
> fcst:AOTK
> > >>>> > Aerosol
> > >>>> > > > > > > > Optical
> > >>>> > > > > > > > Thickness [Numeric]:aerosol=Ozone:aerosol_size
<0
> > >>>> > > > > > > >
> > >>>>  ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> > >>>> > > > > > > >     grid_template=30:winds(grid):
> > >>>> > > > > > > >         Lambert Conformal: (442 x 265) input
WE:SN
> > output
> > >>>> WE:SN
> > >>>> > > > res 8
> > >>>> > > > > > > >         Lat1 21.821000 Lon1 239.372000 LoV
263.000000
> > >>>> > > > > > > >         LatD 33.000000 Latin1 33.000000 Latin2
> 45.000000
> > >>>> > > > > > > >         LatSP 0.000000 LonSP 0.000000
> > >>>> > > > > > > >         North Pole (442 x 265) Dx 12000.000000
m Dy
> > >>>> > 12000.000000
> > >>>> > > m
> > >>>> > > > > > > > mode 8
> > >>>> > > > > > > >
> > >>>> > > > > > > >
> > >>>> > > > > > > > On Wed, Jun 12, 2019 at 8:03 AM Ho-Chun Huang -
NOAA
> > >>>> Affiliate
> > >>>> > <
> > >>>> > > > > > > > ho-chun.huang at noaa.gov> wrote:
> > >>>> > > > > > > >
> > >>>> > > > > > > > > Hi, Howard:
> > >>>> > > > > > > > >
> > >>>> > > > > > > > > Did you run the command on NCAR's machines?
We
> might
> > >>>> have to
> > >>>> > > > bring
> > >>>> > > > > > > > > John
> > >>>> > > > > > > > > in because there is a possibility that the
MET v8,.1
> > >>>> built on
> > >>>> > > > > > > > > WCOSS/Gyre is
> > >>>> > > > > > > > > not right, at least for regrid_data_plane.
Do you
> > have
> > >>>> any
> > >>>> > > > > > > > > suggestion on
> > >>>> > > > > > > > > the environment setting I should include?  I
do not
> > >>>> think I
> > >>>> > can
> > >>>> > > > > > > > > figure it
> > >>>> > > > > > > > > out what went wrong on the same run script
worked
> for
> > >>>> you.
> > >>>> > > > > > > > >
> > >>>> > > > > > > > > Ho-Chun
> > >>>> > > > > > > > >
> > >>>> > > > > > > > > On Tue, Jun 11, 2019 at 6:50 PM Howard Soh
via RT <
> > >>>> > > > > met_help at ucar.edu
> > >>>> > > > > > >
> > >>>> > > > > > > > > wrote:
> > >>>> > > > > > > > >
> > >>>> > > > > > > > >> It works for me.
> > >>>> > > > > > > > >>
> > >>>> > > > > > > > >> met-8.1/bin/regrid_data_plane
> > >>>> > > > > > > > >> goes-16/ABI/L2/CONUS/AOD/2019162/OR_ABI-L2-
AODC-
> > >>>> > > > > > > > >> M6_G16_s20191621821475_e20191621824248_
> > >>>> > > > > > > > >> c20191621827269.nc
> > >>>> ~/data/GOES-16/ngac.t12z.aod_550nm.grib2
> > >>>> > > > > > > > >> OBS_AOD_aqm_g16_20190608_10.nc  -field
> 'name="AOD";
> > >>>> > > level="*";'
> > >>>> > > > > > > > >> -method
> > >>>> > > > > > > > >> UW_MEAN -v 1 -qc 0
> > >>>> > > > > > > > >>
> > >>>> > > > > > > > >> The output was attached.
> > >>>> > > > > > > > >>
> > >>>> > > > > > > > >> Cheers,
> > >>>> > > > > > > > >> Howard
> > >>>> > > > > > > > >>
> > >>>> > > > > > > > >>
> > >>>> > > > > > > > >> On Tue Jun 11 13:49:01 2019,
> ho-chun.huang at noaa.gov
> > >>>> wrote:
> > >>>> > > > > > > > >> > Hi, Howard:
> > >>>> > > > > > > > >> >
> > >>>> > > > > > > > >> > Same situation,Segmentation fault,
occurred to
> > >>>> HYSPLIT
> > >>>> > model
> > >>>> > > > > grib2
> > >>>> > > > > > > > >> > output.
> > >>>> > > > > > > > >> > Can you look into the issue of
"Segmentation
> > fault?"
> > >>>> > > > > > > > >> >
> > >>>> > > > > > > > >> > Thank you for the help.
> > >>>> > > > > > > > >> >
> > >>>> > > > > > > > >> > Ho-Chun
> > >>>> > > > > > > > >> >
> > >>>> > > > > > > > >> > On Tue, Jun 11, 2019 at 3:30 PM Ho-Chun
Huang -
> > NOAA
> > >>>> > > > Affiliate <
> > >>>> > > > > > > > >> > ho-chun.huang at noaa.gov> wrote:
> > >>>> > > > > > > > >> >
> > >>>> > > > > > > > >> > > Hi, Howard:
> > >>>> > > > > > > > >> > >
> > >>>> > > > > > > > >> > > Thanks for the info.  I thought the
table used
> in
> > >>>> aqm
> > >>>> > aot
> > >>>> > > > > output
> > >>>> > > > > > > > >> > > is
> > >>>> > > > > > > > >> > > used
> > >>>> > > > > > > > >> > > by WMO.  Let me consult with EMC AQ
group and
> get
> > >>>> back
> > >>>> > to
> > >>>> > > > you.
> > >>>> > > > > > > > >> > > We
> > >>>> > > > > > > > >> > > may have
> > >>>> > > > > > > > >> > > to bring Tara in if it is necessary.
> > >>>> > > > > > > > >> > >
> > >>>> > > > > > > > >> > > Can you also check the ngac grib2 file?
I
> > >>>> encounter a
> > >>>> > > > similar
> > >>>> > > > > > > > >> > > problem,
> > >>>> > > > > > > > >> > > segmentation fault.  The ngac file are
in the
> > same
> > >>>> ftp
> > >>>> > > > > > > > >> > > directory.
> > >>>> > > > > > > > >> > >
> > >>>> > > > > > > > >> > > Thanks.
> > >>>> > > > > > > > >> > >
> > >>>> > > > > > > > >> > > Ho-Chun
> > >>>> > > > > > > > >> > >
> > >>>> > > > > > > > >> > > On Tue, Jun 11, 2019 at 3:17 PM Howard
Soh via
> RT
> > >>>> > > > > > > > >> > > <met_help at ucar.edu>
> > >>>> > > > > > > > >> > > wrote:
> > >>>> > > > > > > > >> > >
> > >>>> > > > > > > > >> > >> The GRIB2 file
(aqm.t06z.aot.f06.148.grib2) as
> > the
> > >>>> > target
> > >>>> > > > > grid
> > >>>> > > > > > > > >> > >> contains
> > >>>> > > > > > > > >> > >> product definition template #46. It's
not
> > >>>> supported by
> > >>>> > > > wgrib2
> > >>>> > > > > > > > >> > >> (v0.2.0.3
> > >>>> > > > > > > > >> > >> 11/2015) and MET.
> > >>>> > > > > > > > >> > >>
> > >>>> > > > > > > > >> > >> > wgrib2 aqm.t06z.aot.f06.148.grib2
> > >>>> > > > > > > > >> > >> code_table_4.5a: product definition
template
> #46
> > >>>> not
> > >>>> > > > > supported
> > >>>> > > > > > > > >> > >> code_table_4.5b: product definition
template
> #46
> > >>>> not
> > >>>> > > > > supported
> > >>>> > > > > > > > >> > >> 1:0:d=2019060706:AOTK:no_level:5-6 hour
ave
> > fcst:
> > >>>> > > > > > > > >> > >>
> > >>>> > > > > > > > >> > >> Would you use another GRIB2 file with
the
> > product
> > >>>> > > > definition
> > >>>> > > > > > > > >> > >> template #48
> > >>>> > > > > > > > >> > >> or others below?
> > >>>> > > > > > > > >> > >>
> > >>>> > > > > > > > >> > >>
> > >>>> > > > > > > > >> > >>
> > >>>> > > > > > >
> > >>>> > >
> > >>>>
> https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table4-
> > >>>> > > > > > > > >> > >> 0.shtml
> > >>>> > > > > > > > >> > >>
> > >>>> > > > > > > > >> > >> Here are template ids (GRIB2) which MET
> > supports:
> > >>>> > > > > > > > >> > >>    0: analysis or forecast
> > >>>> > > > > > > > >> > >>    1: individual ensemble forecast,
control
> and
> > >>>> > > perturbed,
> > >>>> > > > > at a
> > >>>> > > > > > > > >> > >> horizontal level or in
> > >>>> > > > > > > > >> > >>    2: ensemble mean
> > >>>> > > > > > > > >> > >>    5: probability forecast
> > >>>> > > > > > > > >> > >>    8: accumulation forecast
> > >>>> > > > > > > > >> > >>    9: probabilistic accumulation
forecast
> > >>>> > > > > > > > >> > >>   11: individual ensemble forecast,
control
> and
> > >>>> > > perturbed,
> > >>>> > > > > at a
> > >>>> > > > > > > > >> > >> horizontal level or in
> > >>>> > > > > > > > >> > >>   12: derived accumulation forecast
> > >>>> > > > > > > > >> > >>   48: aerosol data
> > >>>> > > > > > > > >> > >>
> > >>>> > > > > > > > >> > >> Cheers,
> > >>>> > > > > > > > >> > >> Howard
> > >>>> > > > > > > > >> > >>
> > >>>> > > > > > > > >> > >> On Tue Jun 11 09:49:46 2019,
> > >>>> ho-chun.huang at noaa.gov
> > >>>> > > wrote:
> > >>>> > > > > > > > >> > >> > To Whom It May Concern:
> > >>>> > > > > > > > >> > >> >
> > >>>> > > > > > > > >> > >> > There is an error message on using
the
> > >>>> > > regrid_data_plane,
> > >>>> > > > > > > > >> > >> > please
> > >>>> > > > > > > > >> > >> > help
> > >>>> > > > > > > > >> > >> me to
> > >>>> > > > > > > > >> > >> > debug the root of error.
> > >>>> > > > > > > > >> > >> >
> > >>>> > > > > > > > >> > >> > DEBUG 1: Reading data file:
> > >>>> > > > > > > > >> > >> >
> > >>>> > OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> > >>>> > > > > > > > >> > >> c20191591005286.nc
> > >>>> > > > > > > > >> > >> > WARNING:
> > >>>> > > > > > > > >> > >> > WARNING:
MetGrib2DataFile::data_plane() ->
> > >>>> unexpected
> > >>>> > > PDS
> > >>>> > > > > > > > >> > >> > template
> > >>>> > > > > > > > >> > >> number
> > >>>> > > > > > > > >> > >> > (46) may cause unexpected results.
Please
> > email
> > >>>> > > > > > > > >> > >> > met_help at ucar.edu.
> > >>>> > > > > > > > >> > >> > WARNING:
> > >>>> > > > > > > > >> > >> > run.sh: line 7: 38040 Segmentation
fault
> > >>>> (core
> > >>>> > > > dumped)
> > >>>> > > > > > > > >> > >> > regrid_data_plane
> > >>>> > > > > > > > >> > >> >
> > >>>> > OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> > >>>> > > > > > > > >> > >> c20191591005286.nc
> > >>>> > > > > > > > >> > >> > aqm.t06z.aot.f06.148.grib2
> > >>>> > > OBS_AOD_aqm_g16_20190608_10.nc
> > >>>> > > > > > > > >> > >> > -field
> > >>>> > > > > > > > >> > >> > 'name="AOD"; level="*";' -method
UW_MEAN -v
> 1
> > >>>> -qc 0
> > >>>> > > > > > > > >> > >> >
> > >>>> > > > > > > > >> > >> > The files, script, and log can be
found in
> > >>>> > > > > > > > >> > >> >
> > >>>> https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
> > >>>> > > > > > > > >> > >> >
> > >>>> > > > > > > > >> > >> > I notice in 8.1 you no longer need
the
> -coord
> > >>>> option
> > >>>> > > that
> > >>>> > > > > 8.0
> > >>>> > > > > > > > >> > >> > needs.
> > >>>> > > > > > > > >> > >> >
> > >>>> > > > > > > > >> > >> > The output nc file only contains la
and lon
> > but
> > >>>> no
> > >>>> > > > mapping
> > >>>> > > > > > > > >> > >> > AOD.
> > >>>> > > > > > > > >> > >> >
> > >>>> > > > > > > > >> > >> > Than you for your help.
> > >>>> > > > > > > > >> > >> >
> > >>>> > > > > > > > >> > >> > Ho-Chun Huang
> > >>>> > > > > > > > >> > >>
> > >>>> > > > > > > > >> > >>
> > >>>> > > > > > > > >> > >>
> > >>>> > > > > > > > >> > >>
> > >>>> > > > > > > > >>
> > >>>> > > > > > > > >>
> > >>>> > > > > > > > >>
> > >>>> > > > > > > > >>
> > >>>> > > > > > >
> > >>>> > > > > > >
> > >>>> > > > > > >
> > >>>> > > > > > >
> > >>>> > > > > >
> > >>>> > > > > >
> > >>>> > > > >
> > >>>> > > > > --
> > >>>> > > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> > >>>> > > > > Tara Jensen
> > >>>> > > > > Project Manager II
> > >>>> > > > > NCAR RAL and DTC
> > >>>> > > > > PO Box 3000, Boulder, Colorado 80307 USA
> > >>>> > > > > +1 303-497-8479          jensen at ucar.edu
> > >>>> > > > >
> > >>>> > > > >
> > >>>> > > >
> > >>>> > > >
> > >>>> > >
> > >>>> > >
> > >>>> >
> > >>>> >
> > >>>>
> > >>>>
> >
> >
>
>

------------------------------------------------
Subject: error on regrid_data_plane
From: Julie Prestopnik
Time: Wed Jul 10 10:09:01 2019

Hi Ho-Chun.

I have updated the build on tide with met-8.1.1 (you still run the
same
module use and module load commands as before, however). This time, I
was
able to run the following successfully:

module use /global/noscrub/Julie.Prestopnik/modulefiles
module load met/8.1
regrid_data_plane test.nc ngac.t12z.aod_550nm.grib2
OBS_AOD_aqm_g16_20190608_10.nc -field 'name="AOD"; level="(*,*)";'
-method
UW_MEAN -v 1 -qc 0

but I believe that only tests one of your cases.  Please run your
cases
using the latest build and let us know how it goes.

Thanks,
Julie

On Mon, Jul 1, 2019 at 5:49 AM Ho-Chun Huang - NOAA Affiliate via RT <
met_help at ucar.edu> wrote:

>
> <URL: https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550 >
>
> Hi, Julie:
>
> There are two questions for this ticket.  One is for template #46.
Another
> one is execution error on WCOSS Phase II of regrid_data_plane
including
> using other model grib2 file not using template #46, i.e., NGAC and
HYSPLIT
> output.  Howard using the same data and did not have this error on
NCAR
> machine.  While waiting for the solution for new template, can we
try to
> resolve the runtime error first?
>
> Ho-Chun
>
> On Fri, Jun 28, 2019 at 4:03 PM Julie Prestopnik via RT
<met_help at ucar.edu
> >
> wrote:
>
> > Thank you, Ho-Chun.  We are working on a solution and hope to have
this
> > fixed in the met-8.1 bugfix release met-8.1.1.
> >
> > Julie
> >
> > On Fri, Jun 28, 2019 at 7:52 AM Ho-Chun Huang - NOAA Affiliate via
RT <
> > met_help at ucar.edu> wrote:
> >
> > >
> > > <URL: https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550 >
> > >
> > > To Whom It May concern:
> > >
> > > Due to disk quota full on phase 1, changing working directory
> > > to  /meso2/noscrub/Ho-Chun.Huang/methelp.
> > >
> > > Please note, the NCO also have a met8.1 build
> > >    module use  /usrx/local/dev/modulefiles
> > >    module load  met/8.1
> > >
> > > I also test using
> > >    module use  /global/noscrub/Julie.Prestopnik/modulefiles
> > >    module load  met/8.1
> > >
> > > The core dump error message remains.  Note, when Howard tested
it on
> NCAR
> > > machine, he did not receive the error message.
> > >
> > > Update all data to ftp site with latest test,
> > > https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
> > >
> > > Thank you for your help.
> > >
> > > Ho-Chun
> > >
> > > On Wed, Jun 19, 2019 at 2:25 PM Ho-Chun Huang - NOAA Affiliate <
> > > ho-chun.huang at noaa.gov> wrote:
> > >
> > > > Hi,
> > > >
> > > > My local working directory on tide is
> > /meso/noscrub/Ho-Chun.Huang/methelp
> > > >
> > > > Ho-Chun
> > > >
> > > > On Wed, Jun 19, 2019 at 2:19 PM Ho-Chun Huang - NOAA Affiliate
<
> > > > ho-chun.huang at noaa.gov> wrote:
> > > >
> > > >> Hi, Julie:
> > > >>
> > > >> When you have time, please help me to find out why there is a
core
> > > dumped
> > > >> using regrid-data_plane on tide (to NGAC grid).
> > > >>
> > > >> all data file should be on
> > > >>
> > > >> https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
> > > >>
> > > >> Script need to revised to use the setting on tide (as below)
> > > >>
> > > >> Thank you.
> > > >>
> > > >> Ho-Chun
> > > >>
> > > >> p.s.
> > > >> > cat run.ngac.sh
> > > >> #!/bin/sh
> > > >> hl=`hostname | cut -c1-1`
> > > >> if [ ${hl} == 'g' ]; then
> > > >>    module purge
> > > >>    module use /global/noscrub/Julie.Prestopnik/modulefiles
> > > >>    module load  met/8.1
> > > >> else
> > > >>    module purge
> > > >>    module use  /usrx/local/dev/modulefiles
> > > >>    module load  met/8.1
> > > >> fi
> > > >>
> > > >>    regrid_data_plane
> > > >> OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> > > c20191591005286.nc
> > > >>  ngac.t12z.aod_550nm.grib2 \
> > > >>                      OBS_AOD_aqm_g16_20190608_10.nc  -field
> > 'name="AOD";
> > > >> level="(*,*)";' -method UW_MEAN -v 1 -qc 0
> > > >>    exit
> > > >>
> > > >>  > bash run.ngac.sh
> > > >> DEBUG 1: Reading data file:
> > > >> OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> > > c20191591005286.nc
> > > >> run.ngac.sh: line 14: 24808 Segmentation fault      (core
dumped)
> > > >> regrid_data_plane
> > > >> OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> > > c20191591005286.nc
> > > >> ngac.t12z.aod_550nm.grib2 OBS_AOD_aqm_g16_20190608_10.nc
-field
> > > >> 'name="AOD"; level="(*,*)";' -method UW_MEAN -v 1 -qc 0
> > > >>
> > > >> On Wed, Jun 12, 2019 at 1:35 PM Ho-Chun Huang - NOAA
Affiliate <
> > > >> ho-chun.huang at noaa.gov> wrote:
> > > >>
> > > >>> Julie:
> > > >>>
> > > >>> Thanks for the reminder.  I forgot about the met/8.1
installation
> on
> > > >>> tide. I will keep testing the script till it can
successfully load
> > > met/8.1
> > > >>> on tide.  You don't need to spend time to inform me
separately.
> > > >>>
> > > >>> Will contact the helpdesk again, if I encounter the same
> segmentation
> > > >>> fault error on tide.
> > > >>>
> > > >>> Ho-Chun
> > > >>>
> > > >>> On Wed, Jun 12, 2019 at 1:29 PM Julie Prestopnik via RT <
> > > >>> met_help at ucar.edu> wrote:
> > > >>>
> > > >>>> Hi Ho-Chun.
> > > >>>>
> > > >>>> I will need to install met-8.1 on tide after I regain
access as
> that
> > > >>>> machine has not been available to me since the met-8.1
release. I
> > can
> > > >>>> follow up once I have done that.
> > > >>>>
> > > >>>> If you try on tide and still have trouble, please follow up
on
> this
> > > >>>> ticket
> > > >>>> and let me know the exact command that you are running so
that I
> can
> > > >>>> try to
> > > >>>> reproduce the problem on tide.
> > > >>>>
> > > >>>> Thank you!
> > > >>>>
> > > >>>> Julie
> > > >>>>
> > > >>>> On Wed, Jun 12, 2019 at 11:19 AM Ho-Chun Huang - NOAA
Affiliate
> via
> > > RT <
> > > >>>> met_help at ucar.edu> wrote:
> > > >>>>
> > > >>>> >
> > > >>>> > <URL:
https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550 >
> > > >>>> >
> > > >>>> > Hi, Julie:
> > > >>>> >
> > > >>>> > Thank you for being able to help. In addition to the
template
> > issue,
> > > >>>> I have
> > > >>>> > a core dump due to Segmentation Fault when running on
WCOSS but
> > > >>>> Howard did
> > > >>>> > not has the same problem when he ran.  I am wondering
maybe I
> did
> > > not
> > > >>>> set
> > > >>>> > the environmental variables correctly, but I do not know
why
> > since I
> > > >>>> only
> > > >>>> > know to load module met/8.1 (please see the log message
in
> > previous
> > > >>>> > email).  Maybe you can debug the causes after the dev
asses is
> > > >>>> returned
> > > >>>> > tomorrow
> > > >>>> >
> > > >>>> > I tried CMAQ AOT, NGAC, and HYSPLIT grib2 files, they all
had
> the
> > > same
> > > >>>> > error.  Maybe it is machine dependence?  I was running
the
> > > >>>> > regrid_data_plane on gyre.  After production switch, I
will try
> it
> > > >>>> again on
> > > >>>> > tide.
> > > >>>> >
> > > >>>> > best regards,
> > > >>>> > Ho-Chun
> > > >>>> >
> > > >>>> > On Wed, Jun 12, 2019 at 1:08 PM Julie Prestopnik via RT <
> > > >>>> met_help at ucar.edu
> > > >>>> > >
> > > >>>> > wrote:
> > > >>>> >
> > > >>>> > > Please let me know if I can do anything to help, as
Tara
> > > mentioned,
> > > >>>> > > possibly copying it into the grib table path for the
> "standard"
> > > >>>> > > METv8.1could help.  I don't have dev access to WCOSS at
this
> > time
> > > >>>> with
> > > >>>> > the
> > > >>>> > > current production switch occurring, but I am happy to
help if
> > > >>>> needed
> > > >>>> > when
> > > >>>> > > I can.
> > > >>>> > >
> > > >>>> > > Julie
> > > >>>> > >
> > > >>>> > > On Wed, Jun 12, 2019 at 11:04 AM Ho-Chun Huang - NOAA
> Affiliate
> > > via
> > > >>>> RT <
> > > >>>> > > met_help at ucar.edu> wrote:
> > > >>>> > >
> > > >>>> > > >
> > > >>>> > > > <URL:
> https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550
> > >
> > > >>>> > > >
> > > >>>> > > > Hi, Tara:
> > > >>>> > > >
> > > >>>> > > > /nwprod2/grib_util.v1.0.*4*/exec/wgrib2  is the
earliest
> > version
> > > >>>> > > recognizes
> > > >>>> > > > template #46.  Grib2 version higher than v1.0.4 is
also
> > worked.
> > > >>>> > > >
> > > >>>> > > > Thank you for the reply, I will pass your response to
Jason
> > and
> > > >>>> Jeff.
> > > >>>> > > >
> > > >>>> > > > Ho-Chun
> > > >>>> > > >
> > > >>>> > > > On Wed, Jun 12, 2019 at 12:11 PM Tara Jensen via RT <
> > > >>>> met_help at ucar.edu
> > > >>>> > >
> > > >>>> > > > wrote:
> > > >>>> > > >
> > > >>>> > > > > Ho-Chun (and Howard),
> > > >>>> > > > >
> > > >>>> > > > > Thought it might be good to jump in here.
> > > >>>> > > > >
> > > >>>> > > > > It looks like the wgrib2 that works is at:
> > > >>>> > > > > /nwprod2/grib_util.v1.0.3/exec/wgrib2  on WCOSS, is
that
> > > >>>> correct?  We
> > > >>>> > > > might
> > > >>>> > > > > be able to find table 46 and be able to grab it for
> > inclusion
> > > >>>> in the
> > > >>>> > > next
> > > >>>> > > > > release.  Julie might even be able to copy it into
the
> grib
> > > >>>> table
> > > >>>> > path
> > > >>>> > > > for
> > > >>>> > > > > the "standard" METv8.1 as well.  If that doesn't
resolve
> the
> > > >>>> issue,
> > > >>>> > > there
> > > >>>> > > > > are other work arounds that we can point you to
until the
> > next
> > > >>>> > release
> > > >>>> > > > > (either bug fix or beta).
> > > >>>> > > > >
> > > >>>> > > > > Cheers, Tara
> > > >>>> > > > >
> > > >>>> > > > > On Wed, Jun 12, 2019 at 9:02 AM Ho-Chun Huang -
NOAA
> > Affiliate
> > > >>>> via
> > > >>>> > RT <
> > > >>>> > > > > met_help at ucar.edu> wrote:
> > > >>>> > > > >
> > > >>>> > > > > >
> > > >>>> > > > > > <URL:
> > > https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550
> > > >>>> >
> > > >>>> > > > > >
> > > >>>> > > > > > Howard,
> > > >>>> > > > > >
> > > >>>> > > > > > Thanks.  I will consult with EMC management
whether to
> > > request
> > > >>>> > adding
> > > >>>> > > > > > support of new template in MET.
> > > >>>> > > > > >
> > > >>>> > > > > > Ho-Chun
> > > >>>> > > > > >
> > > >>>> > > > > > On Wed, Jun 12, 2019 at 10:57 AM Howard Soh via
RT <
> > > >>>> > > met_help at ucar.edu>
> > > >>>> > > > > > wrote:
> > > >>>> > > > > >
> > > >>>> > > > > > > There is no relationship between wgrib2 and
MET.
> > > >>>> > > > > > > wgrib2 was an example which does not support
the
> > template
> > > >>>> ID 46.
> > > >>>> > We
> > > >>>> > > > did
> > > >>>> > > > > > > not have the GRIB2 file with template id 46.
MET gives
> > an
> > > >>>> > warning.
> > > >>>> > > > MET
> > > >>>> > > > > > will
> > > >>>> > > > > > > stop if the template ID from the GRIB2 is not
> supported
> > > >>>> instead
> > > >>>> > of
> > > >>>> > > > > > > continuing as a short term solution. MET will
support
> > > >>>> template ID
> > > >>>> > > 46
> > > >>>> > > > as
> > > >>>> > > > > > the
> > > >>>> > > > > > > long term solution.
> > > >>>> > > > > > >
> > > >>>> > > > > > > Cheers,
> > > >>>> > > > > > > Howard
> > > >>>> > > > > > >
> > > >>>> > > > > > > On Wed Jun 12 08:43:03 2019, ho-
chun.huang at noaa.gov
> > > wrote:
> > > >>>> > > > > > > > Hi, Howard:
> > > >>>> > > > > > > >
> > > >>>> > > > > > > > There are several versions on WCOSS of
wgrib2, from
> > > >>>> loading
> > > >>>> > > module
> > > >>>> > > > > > > > grib_util/v1.0.0(default) to  v1.1.0.
> > > >>>> > > > > > > >
> > > >>>> > > > > > > > g20a1: > module avail grib_util
> > > >>>> > > > > > > >
> > > >>>> > > > > > > >
> > > >>>> -----------------------------------------------------------
> > > >>>> > > > > > > > /nwprod2/modulefiles
> > > >>>> > > > > > > >
> > > >>>> -----------------------------------------------------------
> > > >>>> > > > > > > > grib_util/v1.0.0(default) grib_util/v1.0.2
> > > >>>> > > > grib_util/v1.0.4
> > > >>>> > > > > > > >    grib_util/v1.0.6
> > > >>>> > > > > > > > grib_util/v1.0.1          grib_util/v1.0.3
> > > >>>> > > > grib_util/v1.0.5
> > > >>>> > > > > > > >    grib_util/v1.1.0
> > > >>>> > > > > > > >
> > > >>>> > > > > > > > After using different version of wgrib2, I
found
> > > >>>> > grib_util/v1.0.4
> > > >>>> > > > and
> > > >>>> > > > > > > > above
> > > >>>> > > > > > > > can read CMAQ AOT template #46 (see below for
more
> > > >>>> detail).
> > > >>>> > > > > > > >
> > > >>>> > > > > > > > Does MET v8.1 uses older version of wgrib2?
The
> > version
> > > >>>> number
> > > >>>> > > of
> > > >>>> > > > > > > > wgrib2
> > > >>>> > > > > > > > is v0.1.9.6a 5/2012 and v0.2.0.7 12/2017 for
> > > >>>> grib_util/v1.0.0
> > > >>>> > and
> > > >>>> > > > > > > > grib_util/v1.1.0, respectively.
> > > >>>> > > > > > > > (using /nwprod2/grib_util.v1.0.0/exec/wgrib2
> -version)
> > > >>>> > > > > > > >
> > > >>>> > > > > > > > Can MET v8.1 built on WCOSS using newer
version of
> > > wgrib2
> > > >>>> to
> > > >>>> > > solve
> > > >>>> > > > > > > > current
> > > >>>> > > > > > > > issue?
> > > >>>> > > > > > > >
> > > >>>> > > > > > > > Ho-Chun
> > > >>>> > > > > > > >
> > > >>>> > > > > > > > p.s.
> > > >>>> > > > > > > >
> > > >>>> > > > > > > > g20a1:~ >
/nwprod2/grib_util.v1.0.3/exec/wgrib2 -V
> > > >>>> > > > > > > >
> > > >>>> > > > >
> > > >>>> >
> > >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > > >>>> > > > > > > > code_table_4.5a: product definition template
#46 not
> > > >>>> supported
> > > >>>> > > > > > > > code_table_4.5b: product definition template
#46 not
> > > >>>> supported
> > > >>>> > > > > > > > 1:0:vt=2019061200:no_level:11-12 hour ave
fcst:AOTK
> > > >>>> Aerosol
> > > >>>> > > Optical
> > > >>>> > > > > > > > Thickness [Numeric]:
> > > >>>> > > > > > > >
> > > >>>>
ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> > > >>>> > > > > > > >     grid_template=30:winds(grid):
> > > >>>> > > > > > > >         Lambert Conformal: (442 x 265) input
WE:SN
> > > output
> > > >>>> WE:SN
> > > >>>> > > > res 8
> > > >>>> > > > > > > >         Lat1 21.821000 Lon1 239.372000 LoV
> 263.000000
> > > >>>> > > > > > > >         LatD 33.000000 Latin1 33.000000
Latin2
> > 45.000000
> > > >>>> > > > > > > >         LatSP 0.000000 LonSP 0.000000
> > > >>>> > > > > > > >         North Pole (442 x 265) Dx
12000.000000 m Dy
> > > >>>> > 12000.000000
> > > >>>> > > m
> > > >>>> > > > > > > > mode 8
> > > >>>> > > > > > > >
> > > >>>> > > > > > > > g20a1:~ >
/nwprod2/grib_util.v1.0.4/exec/wgrib2 -V
> > > >>>> > > > > > > >
> > > >>>> > > > >
> > > >>>> >
> > >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > > >>>> > > > > > > > 1:0:vt=2019061200:1 sigma level:11-12 hour
ave
> > fcst:AOTK
> > > >>>> > Aerosol
> > > >>>> > > > > > > > Optical
> > > >>>> > > > > > > > Thickness [Numeric]:aerosol=Ozone
> > > >>>> > > > > > > >
> > > >>>>
ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> > > >>>> > > > > > > >     grid_template=30:winds(grid):
> > > >>>> > > > > > > >         Lambert Conformal: (442 x 265) input
WE:SN
> > > output
> > > >>>> WE:SN
> > > >>>> > > > res 8
> > > >>>> > > > > > > >         Lat1 21.821000 Lon1 239.372000 LoV
> 263.000000
> > > >>>> > > > > > > >         LatD 33.000000 Latin1 33.000000
Latin2
> > 45.000000
> > > >>>> > > > > > > >         LatSP 0.000000 LonSP 0.000000
> > > >>>> > > > > > > >         North Pole (442 x 265) Dx
12000.000000 m Dy
> > > >>>> > 12000.000000
> > > >>>> > > m
> > > >>>> > > > > > > > mode 8
> > > >>>> > > > > > > >
> > > >>>> > > > > > > > g20a1:~ >
/nwprod2/grib_util.v1.1.0/exec/wgrib2 -V
> > > >>>> > > > > > > >
> > > >>>> > > > >
> > > >>>> >
> > >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > > >>>> > > > > > > > 1:0:vt=2019061200:1 sigma level:11-12 hour
ave
> > fcst:AOTK
> > > >>>> > Aerosol
> > > >>>> > > > > > > > Optical
> > > >>>> > > > > > > > Thickness
[Numeric]:aerosol=Ozone:aerosol_size <0
> > > >>>> > > > > > > >
> > > >>>>
ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> > > >>>> > > > > > > >     grid_template=30:winds(grid):
> > > >>>> > > > > > > >         Lambert Conformal: (442 x 265) input
WE:SN
> > > output
> > > >>>> WE:SN
> > > >>>> > > > res 8
> > > >>>> > > > > > > >         Lat1 21.821000 Lon1 239.372000 LoV
> 263.000000
> > > >>>> > > > > > > >         LatD 33.000000 Latin1 33.000000
Latin2
> > 45.000000
> > > >>>> > > > > > > >         LatSP 0.000000 LonSP 0.000000
> > > >>>> > > > > > > >         North Pole (442 x 265) Dx
12000.000000 m Dy
> > > >>>> > 12000.000000
> > > >>>> > > m
> > > >>>> > > > > > > > mode 8
> > > >>>> > > > > > > >
> > > >>>> > > > > > > >
> > > >>>> > > > > > > > On Wed, Jun 12, 2019 at 8:03 AM Ho-Chun Huang
- NOAA
> > > >>>> Affiliate
> > > >>>> > <
> > > >>>> > > > > > > > ho-chun.huang at noaa.gov> wrote:
> > > >>>> > > > > > > >
> > > >>>> > > > > > > > > Hi, Howard:
> > > >>>> > > > > > > > >
> > > >>>> > > > > > > > > Did you run the command on NCAR's machines?
We
> > might
> > > >>>> have to
> > > >>>> > > > bring
> > > >>>> > > > > > > > > John
> > > >>>> > > > > > > > > in because there is a possibility that the
MET
> v8,.1
> > > >>>> built on
> > > >>>> > > > > > > > > WCOSS/Gyre is
> > > >>>> > > > > > > > > not right, at least for regrid_data_plane.
Do you
> > > have
> > > >>>> any
> > > >>>> > > > > > > > > suggestion on
> > > >>>> > > > > > > > > the environment setting I should include?
I do
> not
> > > >>>> think I
> > > >>>> > can
> > > >>>> > > > > > > > > figure it
> > > >>>> > > > > > > > > out what went wrong on the same run script
worked
> > for
> > > >>>> you.
> > > >>>> > > > > > > > >
> > > >>>> > > > > > > > > Ho-Chun
> > > >>>> > > > > > > > >
> > > >>>> > > > > > > > > On Tue, Jun 11, 2019 at 6:50 PM Howard Soh
via RT
> <
> > > >>>> > > > > met_help at ucar.edu
> > > >>>> > > > > > >
> > > >>>> > > > > > > > > wrote:
> > > >>>> > > > > > > > >
> > > >>>> > > > > > > > >> It works for me.
> > > >>>> > > > > > > > >>
> > > >>>> > > > > > > > >> met-8.1/bin/regrid_data_plane
> > > >>>> > > > > > > > >> goes-16/ABI/L2/CONUS/AOD/2019162/OR_ABI-
L2-AODC-
> > > >>>> > > > > > > > >> M6_G16_s20191621821475_e20191621824248_
> > > >>>> > > > > > > > >> c20191621827269.nc
> > > >>>> ~/data/GOES-16/ngac.t12z.aod_550nm.grib2
> > > >>>> > > > > > > > >> OBS_AOD_aqm_g16_20190608_10.nc  -field
> > 'name="AOD";
> > > >>>> > > level="*";'
> > > >>>> > > > > > > > >> -method
> > > >>>> > > > > > > > >> UW_MEAN -v 1 -qc 0
> > > >>>> > > > > > > > >>
> > > >>>> > > > > > > > >> The output was attached.
> > > >>>> > > > > > > > >>
> > > >>>> > > > > > > > >> Cheers,
> > > >>>> > > > > > > > >> Howard
> > > >>>> > > > > > > > >>
> > > >>>> > > > > > > > >>
> > > >>>> > > > > > > > >> On Tue Jun 11 13:49:01 2019,
> > ho-chun.huang at noaa.gov
> > > >>>> wrote:
> > > >>>> > > > > > > > >> > Hi, Howard:
> > > >>>> > > > > > > > >> >
> > > >>>> > > > > > > > >> > Same situation,Segmentation fault,
occurred to
> > > >>>> HYSPLIT
> > > >>>> > model
> > > >>>> > > > > grib2
> > > >>>> > > > > > > > >> > output.
> > > >>>> > > > > > > > >> > Can you look into the issue of
"Segmentation
> > > fault?"
> > > >>>> > > > > > > > >> >
> > > >>>> > > > > > > > >> > Thank you for the help.
> > > >>>> > > > > > > > >> >
> > > >>>> > > > > > > > >> > Ho-Chun
> > > >>>> > > > > > > > >> >
> > > >>>> > > > > > > > >> > On Tue, Jun 11, 2019 at 3:30 PM Ho-Chun
Huang -
> > > NOAA
> > > >>>> > > > Affiliate <
> > > >>>> > > > > > > > >> > ho-chun.huang at noaa.gov> wrote:
> > > >>>> > > > > > > > >> >
> > > >>>> > > > > > > > >> > > Hi, Howard:
> > > >>>> > > > > > > > >> > >
> > > >>>> > > > > > > > >> > > Thanks for the info.  I thought the
table
> used
> > in
> > > >>>> aqm
> > > >>>> > aot
> > > >>>> > > > > output
> > > >>>> > > > > > > > >> > > is
> > > >>>> > > > > > > > >> > > used
> > > >>>> > > > > > > > >> > > by WMO.  Let me consult with EMC AQ
group and
> > get
> > > >>>> back
> > > >>>> > to
> > > >>>> > > > you.
> > > >>>> > > > > > > > >> > > We
> > > >>>> > > > > > > > >> > > may have
> > > >>>> > > > > > > > >> > > to bring Tara in if it is necessary.
> > > >>>> > > > > > > > >> > >
> > > >>>> > > > > > > > >> > > Can you also check the ngac grib2
file?  I
> > > >>>> encounter a
> > > >>>> > > > similar
> > > >>>> > > > > > > > >> > > problem,
> > > >>>> > > > > > > > >> > > segmentation fault.  The ngac file are
in the
> > > same
> > > >>>> ftp
> > > >>>> > > > > > > > >> > > directory.
> > > >>>> > > > > > > > >> > >
> > > >>>> > > > > > > > >> > > Thanks.
> > > >>>> > > > > > > > >> > >
> > > >>>> > > > > > > > >> > > Ho-Chun
> > > >>>> > > > > > > > >> > >
> > > >>>> > > > > > > > >> > > On Tue, Jun 11, 2019 at 3:17 PM Howard
Soh
> via
> > RT
> > > >>>> > > > > > > > >> > > <met_help at ucar.edu>
> > > >>>> > > > > > > > >> > > wrote:
> > > >>>> > > > > > > > >> > >
> > > >>>> > > > > > > > >> > >> The GRIB2 file
(aqm.t06z.aot.f06.148.grib2)
> as
> > > the
> > > >>>> > target
> > > >>>> > > > > grid
> > > >>>> > > > > > > > >> > >> contains
> > > >>>> > > > > > > > >> > >> product definition template #46. It's
not
> > > >>>> supported by
> > > >>>> > > > wgrib2
> > > >>>> > > > > > > > >> > >> (v0.2.0.3
> > > >>>> > > > > > > > >> > >> 11/2015) and MET.
> > > >>>> > > > > > > > >> > >>
> > > >>>> > > > > > > > >> > >> > wgrib2 aqm.t06z.aot.f06.148.grib2
> > > >>>> > > > > > > > >> > >> code_table_4.5a: product definition
template
> > #46
> > > >>>> not
> > > >>>> > > > > supported
> > > >>>> > > > > > > > >> > >> code_table_4.5b: product definition
template
> > #46
> > > >>>> not
> > > >>>> > > > > supported
> > > >>>> > > > > > > > >> > >> 1:0:d=2019060706:AOTK:no_level:5-6
hour ave
> > > fcst:
> > > >>>> > > > > > > > >> > >>
> > > >>>> > > > > > > > >> > >> Would you use another GRIB2 file with
the
> > > product
> > > >>>> > > > definition
> > > >>>> > > > > > > > >> > >> template #48
> > > >>>> > > > > > > > >> > >> or others below?
> > > >>>> > > > > > > > >> > >>
> > > >>>> > > > > > > > >> > >>
> > > >>>> > > > > > > > >> > >>
> > > >>>> > > > > > >
> > > >>>> > >
> > > >>>>
> >
https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table4-
> > > >>>> > > > > > > > >> > >> 0.shtml
> > > >>>> > > > > > > > >> > >>
> > > >>>> > > > > > > > >> > >> Here are template ids (GRIB2) which
MET
> > > supports:
> > > >>>> > > > > > > > >> > >>    0: analysis or forecast
> > > >>>> > > > > > > > >> > >>    1: individual ensemble forecast,
control
> > and
> > > >>>> > > perturbed,
> > > >>>> > > > > at a
> > > >>>> > > > > > > > >> > >> horizontal level or in
> > > >>>> > > > > > > > >> > >>    2: ensemble mean
> > > >>>> > > > > > > > >> > >>    5: probability forecast
> > > >>>> > > > > > > > >> > >>    8: accumulation forecast
> > > >>>> > > > > > > > >> > >>    9: probabilistic accumulation
forecast
> > > >>>> > > > > > > > >> > >>   11: individual ensemble forecast,
control
> > and
> > > >>>> > > perturbed,
> > > >>>> > > > > at a
> > > >>>> > > > > > > > >> > >> horizontal level or in
> > > >>>> > > > > > > > >> > >>   12: derived accumulation forecast
> > > >>>> > > > > > > > >> > >>   48: aerosol data
> > > >>>> > > > > > > > >> > >>
> > > >>>> > > > > > > > >> > >> Cheers,
> > > >>>> > > > > > > > >> > >> Howard
> > > >>>> > > > > > > > >> > >>
> > > >>>> > > > > > > > >> > >> On Tue Jun 11 09:49:46 2019,
> > > >>>> ho-chun.huang at noaa.gov
> > > >>>> > > wrote:
> > > >>>> > > > > > > > >> > >> > To Whom It May Concern:
> > > >>>> > > > > > > > >> > >> >
> > > >>>> > > > > > > > >> > >> > There is an error message on using
the
> > > >>>> > > regrid_data_plane,
> > > >>>> > > > > > > > >> > >> > please
> > > >>>> > > > > > > > >> > >> > help
> > > >>>> > > > > > > > >> > >> me to
> > > >>>> > > > > > > > >> > >> > debug the root of error.
> > > >>>> > > > > > > > >> > >> >
> > > >>>> > > > > > > > >> > >> > DEBUG 1: Reading data file:
> > > >>>> > > > > > > > >> > >> >
> > > >>>> > OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> > > >>>> > > > > > > > >> > >> c20191591005286.nc
> > > >>>> > > > > > > > >> > >> > WARNING:
> > > >>>> > > > > > > > >> > >> > WARNING:
MetGrib2DataFile::data_plane() ->
> > > >>>> unexpected
> > > >>>> > > PDS
> > > >>>> > > > > > > > >> > >> > template
> > > >>>> > > > > > > > >> > >> number
> > > >>>> > > > > > > > >> > >> > (46) may cause unexpected results.
Please
> > > email
> > > >>>> > > > > > > > >> > >> > met_help at ucar.edu.
> > > >>>> > > > > > > > >> > >> > WARNING:
> > > >>>> > > > > > > > >> > >> > run.sh: line 7: 38040 Segmentation
fault
> > > >>>> (core
> > > >>>> > > > dumped)
> > > >>>> > > > > > > > >> > >> > regrid_data_plane
> > > >>>> > > > > > > > >> > >> >
> > > >>>> > OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> > > >>>> > > > > > > > >> > >> c20191591005286.nc
> > > >>>> > > > > > > > >> > >> > aqm.t06z.aot.f06.148.grib2
> > > >>>> > > OBS_AOD_aqm_g16_20190608_10.nc
> > > >>>> > > > > > > > >> > >> > -field
> > > >>>> > > > > > > > >> > >> > 'name="AOD"; level="*";' -method
UW_MEAN
> -v
> > 1
> > > >>>> -qc 0
> > > >>>> > > > > > > > >> > >> >
> > > >>>> > > > > > > > >> > >> > The files, script, and log can be
found in
> > > >>>> > > > > > > > >> > >> >
> > > >>>> https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
> > > >>>> > > > > > > > >> > >> >
> > > >>>> > > > > > > > >> > >> > I notice in 8.1 you no longer need
the
> > -coord
> > > >>>> option
> > > >>>> > > that
> > > >>>> > > > > 8.0
> > > >>>> > > > > > > > >> > >> > needs.
> > > >>>> > > > > > > > >> > >> >
> > > >>>> > > > > > > > >> > >> > The output nc file only contains la
and
> lon
> > > but
> > > >>>> no
> > > >>>> > > > mapping
> > > >>>> > > > > > > > >> > >> > AOD.
> > > >>>> > > > > > > > >> > >> >
> > > >>>> > > > > > > > >> > >> > Than you for your help.
> > > >>>> > > > > > > > >> > >> >
> > > >>>> > > > > > > > >> > >> > Ho-Chun Huang
> > > >>>> > > > > > > > >> > >>
> > > >>>> > > > > > > > >> > >>
> > > >>>> > > > > > > > >> > >>
> > > >>>> > > > > > > > >> > >>
> > > >>>> > > > > > > > >>
> > > >>>> > > > > > > > >>
> > > >>>> > > > > > > > >>
> > > >>>> > > > > > > > >>
> > > >>>> > > > > > >
> > > >>>> > > > > > >
> > > >>>> > > > > > >
> > > >>>> > > > > > >
> > > >>>> > > > > >
> > > >>>> > > > > >
> > > >>>> > > > >
> > > >>>> > > > > --
> > > >>>> > > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> > > >>>> > > > > Tara Jensen
> > > >>>> > > > > Project Manager II
> > > >>>> > > > > NCAR RAL and DTC
> > > >>>> > > > > PO Box 3000, Boulder, Colorado 80307 USA
> > > >>>> > > > > +1 303-497-8479          jensen at ucar.edu
> > > >>>> > > > >
> > > >>>> > > > >
> > > >>>> > > >
> > > >>>> > > >
> > > >>>> > >
> > > >>>> > >
> > > >>>> >
> > > >>>> >
> > > >>>>
> > > >>>>
> > >
> > >
> >
> >
>
>

------------------------------------------------
Subject: error on regrid_data_plane
From: Ho-Chun Huang - NOAA Affiliate
Time: Fri Jul 12 08:18:02 2019

Hi, Julie:

I think met-8.1.1 can recognize CMAQ grib2 #46 template now and the
regrid_data_plane doe not produce "segmentation fault" error.

I am able to map G16 AOD to CMAQ, HYSPLIT, and NGAC grid using
regrid_data_plane.  Below is the CMAQ mapped G16 AOD using
plot_data_plane
utility.

Thank you very much for your effort to resolve the problem.  Please
close
the ticket.

Best regard,
Ho-Chun

[image: image.png]

On Wed, Jul 10, 2019 at 12:17 PM Julie Prestopnik via RT
<met_help at ucar.edu>
wrote:

> Hi Ho-Chun.
>
> I have updated the build on tide with met-8.1.1 (you still run the
same
> module use and module load commands as before, however). This time,
I was
> able to run the following successfully:
>
> module use /global/noscrub/Julie.Prestopnik/modulefiles
> module load met/8.1
> regrid_data_plane test.nc ngac.t12z.aod_550nm.grib2
> OBS_AOD_aqm_g16_20190608_10.nc -field 'name="AOD"; level="(*,*)";'
-method
> UW_MEAN -v 1 -qc 0
>
> but I believe that only tests one of your cases.  Please run your
cases
> using the latest build and let us know how it goes.
>
> Thanks,
> Julie
>
> On Mon, Jul 1, 2019 at 5:49 AM Ho-Chun Huang - NOAA Affiliate via RT
<
> met_help at ucar.edu> wrote:
>
> >
> > <URL: https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550 >
> >
> > Hi, Julie:
> >
> > There are two questions for this ticket.  One is for template #46.
> Another
> > one is execution error on WCOSS Phase II of regrid_data_plane
including
> > using other model grib2 file not using template #46, i.e., NGAC
and
> HYSPLIT
> > output.  Howard using the same data and did not have this error on
NCAR
> > machine.  While waiting for the solution for new template, can we
try to
> > resolve the runtime error first?
> >
> > Ho-Chun
> >
> > On Fri, Jun 28, 2019 at 4:03 PM Julie Prestopnik via RT <
> met_help at ucar.edu
> > >
> > wrote:
> >
> > > Thank you, Ho-Chun.  We are working on a solution and hope to
have this
> > > fixed in the met-8.1 bugfix release met-8.1.1.
> > >
> > > Julie
> > >
> > > On Fri, Jun 28, 2019 at 7:52 AM Ho-Chun Huang - NOAA Affiliate
via RT <
> > > met_help at ucar.edu> wrote:
> > >
> > > >
> > > > <URL: https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550
>
> > > >
> > > > To Whom It May concern:
> > > >
> > > > Due to disk quota full on phase 1, changing working directory
> > > > to  /meso2/noscrub/Ho-Chun.Huang/methelp.
> > > >
> > > > Please note, the NCO also have a met8.1 build
> > > >    module use  /usrx/local/dev/modulefiles
> > > >    module load  met/8.1
> > > >
> > > > I also test using
> > > >    module use  /global/noscrub/Julie.Prestopnik/modulefiles
> > > >    module load  met/8.1
> > > >
> > > > The core dump error message remains.  Note, when Howard tested
it on
> > NCAR
> > > > machine, he did not receive the error message.
> > > >
> > > > Update all data to ftp site with latest test,
> > > > https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
> > > >
> > > > Thank you for your help.
> > > >
> > > > Ho-Chun
> > > >
> > > > On Wed, Jun 19, 2019 at 2:25 PM Ho-Chun Huang - NOAA Affiliate
<
> > > > ho-chun.huang at noaa.gov> wrote:
> > > >
> > > > > Hi,
> > > > >
> > > > > My local working directory on tide is
> > > /meso/noscrub/Ho-Chun.Huang/methelp
> > > > >
> > > > > Ho-Chun
> > > > >
> > > > > On Wed, Jun 19, 2019 at 2:19 PM Ho-Chun Huang - NOAA
Affiliate <
> > > > > ho-chun.huang at noaa.gov> wrote:
> > > > >
> > > > >> Hi, Julie:
> > > > >>
> > > > >> When you have time, please help me to find out why there is
a core
> > > > dumped
> > > > >> using regrid-data_plane on tide (to NGAC grid).
> > > > >>
> > > > >> all data file should be on
> > > > >>
> > > > >> https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
> > > > >>
> > > > >> Script need to revised to use the setting on tide (as
below)
> > > > >>
> > > > >> Thank you.
> > > > >>
> > > > >> Ho-Chun
> > > > >>
> > > > >> p.s.
> > > > >> > cat run.ngac.sh
> > > > >> #!/bin/sh
> > > > >> hl=`hostname | cut -c1-1`
> > > > >> if [ ${hl} == 'g' ]; then
> > > > >>    module purge
> > > > >>    module use /global/noscrub/Julie.Prestopnik/modulefiles
> > > > >>    module load  met/8.1
> > > > >> else
> > > > >>    module purge
> > > > >>    module use  /usrx/local/dev/modulefiles
> > > > >>    module load  met/8.1
> > > > >> fi
> > > > >>
> > > > >>    regrid_data_plane
> > > > >> OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> > > > c20191591005286.nc
> > > > >>  ngac.t12z.aod_550nm.grib2 \
> > > > >>                      OBS_AOD_aqm_g16_20190608_10.nc  -field
> > > 'name="AOD";
> > > > >> level="(*,*)";' -method UW_MEAN -v 1 -qc 0
> > > > >>    exit
> > > > >>
> > > > >>  > bash run.ngac.sh
> > > > >> DEBUG 1: Reading data file:
> > > > >> OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> > > > c20191591005286.nc
> > > > >> run.ngac.sh: line 14: 24808 Segmentation fault      (core
dumped)
> > > > >> regrid_data_plane
> > > > >> OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> > > > c20191591005286.nc
> > > > >> ngac.t12z.aod_550nm.grib2 OBS_AOD_aqm_g16_20190608_10.nc
-field
> > > > >> 'name="AOD"; level="(*,*)";' -method UW_MEAN -v 1 -qc 0
> > > > >>
> > > > >> On Wed, Jun 12, 2019 at 1:35 PM Ho-Chun Huang - NOAA
Affiliate <
> > > > >> ho-chun.huang at noaa.gov> wrote:
> > > > >>
> > > > >>> Julie:
> > > > >>>
> > > > >>> Thanks for the reminder.  I forgot about the met/8.1
installation
> > on
> > > > >>> tide. I will keep testing the script till it can
successfully
> load
> > > > met/8.1
> > > > >>> on tide.  You don't need to spend time to inform me
separately.
> > > > >>>
> > > > >>> Will contact the helpdesk again, if I encounter the same
> > segmentation
> > > > >>> fault error on tide.
> > > > >>>
> > > > >>> Ho-Chun
> > > > >>>
> > > > >>> On Wed, Jun 12, 2019 at 1:29 PM Julie Prestopnik via RT <
> > > > >>> met_help at ucar.edu> wrote:
> > > > >>>
> > > > >>>> Hi Ho-Chun.
> > > > >>>>
> > > > >>>> I will need to install met-8.1 on tide after I regain
access as
> > that
> > > > >>>> machine has not been available to me since the met-8.1
release.
> I
> > > can
> > > > >>>> follow up once I have done that.
> > > > >>>>
> > > > >>>> If you try on tide and still have trouble, please follow
up on
> > this
> > > > >>>> ticket
> > > > >>>> and let me know the exact command that you are running so
that I
> > can
> > > > >>>> try to
> > > > >>>> reproduce the problem on tide.
> > > > >>>>
> > > > >>>> Thank you!
> > > > >>>>
> > > > >>>> Julie
> > > > >>>>
> > > > >>>> On Wed, Jun 12, 2019 at 11:19 AM Ho-Chun Huang - NOAA
Affiliate
> > via
> > > > RT <
> > > > >>>> met_help at ucar.edu> wrote:
> > > > >>>>
> > > > >>>> >
> > > > >>>> > <URL:
https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550
> >
> > > > >>>> >
> > > > >>>> > Hi, Julie:
> > > > >>>> >
> > > > >>>> > Thank you for being able to help. In addition to the
template
> > > issue,
> > > > >>>> I have
> > > > >>>> > a core dump due to Segmentation Fault when running on
WCOSS
> but
> > > > >>>> Howard did
> > > > >>>> > not has the same problem when he ran.  I am wondering
maybe I
> > did
> > > > not
> > > > >>>> set
> > > > >>>> > the environmental variables correctly, but I do not
know why
> > > since I
> > > > >>>> only
> > > > >>>> > know to load module met/8.1 (please see the log message
in
> > > previous
> > > > >>>> > email).  Maybe you can debug the causes after the dev
asses is
> > > > >>>> returned
> > > > >>>> > tomorrow
> > > > >>>> >
> > > > >>>> > I tried CMAQ AOT, NGAC, and HYSPLIT grib2 files, they
all had
> > the
> > > > same
> > > > >>>> > error.  Maybe it is machine dependence?  I was running
the
> > > > >>>> > regrid_data_plane on gyre.  After production switch, I
will
> try
> > it
> > > > >>>> again on
> > > > >>>> > tide.
> > > > >>>> >
> > > > >>>> > best regards,
> > > > >>>> > Ho-Chun
> > > > >>>> >
> > > > >>>> > On Wed, Jun 12, 2019 at 1:08 PM Julie Prestopnik via RT
<
> > > > >>>> met_help at ucar.edu
> > > > >>>> > >
> > > > >>>> > wrote:
> > > > >>>> >
> > > > >>>> > > Please let me know if I can do anything to help, as
Tara
> > > > mentioned,
> > > > >>>> > > possibly copying it into the grib table path for the
> > "standard"
> > > > >>>> > > METv8.1could help.  I don't have dev access to WCOSS
at this
> > > time
> > > > >>>> with
> > > > >>>> > the
> > > > >>>> > > current production switch occurring, but I am happy
to help
> if
> > > > >>>> needed
> > > > >>>> > when
> > > > >>>> > > I can.
> > > > >>>> > >
> > > > >>>> > > Julie
> > > > >>>> > >
> > > > >>>> > > On Wed, Jun 12, 2019 at 11:04 AM Ho-Chun Huang - NOAA
> > Affiliate
> > > > via
> > > > >>>> RT <
> > > > >>>> > > met_help at ucar.edu> wrote:
> > > > >>>> > >
> > > > >>>> > > >
> > > > >>>> > > > <URL:
> > https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550
> > > >
> > > > >>>> > > >
> > > > >>>> > > > Hi, Tara:
> > > > >>>> > > >
> > > > >>>> > > > /nwprod2/grib_util.v1.0.*4*/exec/wgrib2  is the
earliest
> > > version
> > > > >>>> > > recognizes
> > > > >>>> > > > template #46.  Grib2 version higher than v1.0.4 is
also
> > > worked.
> > > > >>>> > > >
> > > > >>>> > > > Thank you for the reply, I will pass your response
to
> Jason
> > > and
> > > > >>>> Jeff.
> > > > >>>> > > >
> > > > >>>> > > > Ho-Chun
> > > > >>>> > > >
> > > > >>>> > > > On Wed, Jun 12, 2019 at 12:11 PM Tara Jensen via RT
<
> > > > >>>> met_help at ucar.edu
> > > > >>>> > >
> > > > >>>> > > > wrote:
> > > > >>>> > > >
> > > > >>>> > > > > Ho-Chun (and Howard),
> > > > >>>> > > > >
> > > > >>>> > > > > Thought it might be good to jump in here.
> > > > >>>> > > > >
> > > > >>>> > > > > It looks like the wgrib2 that works is at:
> > > > >>>> > > > > /nwprod2/grib_util.v1.0.3/exec/wgrib2  on WCOSS,
is that
> > > > >>>> correct?  We
> > > > >>>> > > > might
> > > > >>>> > > > > be able to find table 46 and be able to grab it
for
> > > inclusion
> > > > >>>> in the
> > > > >>>> > > next
> > > > >>>> > > > > release.  Julie might even be able to copy it
into the
> > grib
> > > > >>>> table
> > > > >>>> > path
> > > > >>>> > > > for
> > > > >>>> > > > > the "standard" METv8.1 as well.  If that doesn't
resolve
> > the
> > > > >>>> issue,
> > > > >>>> > > there
> > > > >>>> > > > > are other work arounds that we can point you to
until
> the
> > > next
> > > > >>>> > release
> > > > >>>> > > > > (either bug fix or beta).
> > > > >>>> > > > >
> > > > >>>> > > > > Cheers, Tara
> > > > >>>> > > > >
> > > > >>>> > > > > On Wed, Jun 12, 2019 at 9:02 AM Ho-Chun Huang -
NOAA
> > > Affiliate
> > > > >>>> via
> > > > >>>> > RT <
> > > > >>>> > > > > met_help at ucar.edu> wrote:
> > > > >>>> > > > >
> > > > >>>> > > > > >
> > > > >>>> > > > > > <URL:
> > > > https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550
> > > > >>>> >
> > > > >>>> > > > > >
> > > > >>>> > > > > > Howard,
> > > > >>>> > > > > >
> > > > >>>> > > > > > Thanks.  I will consult with EMC management
whether to
> > > > request
> > > > >>>> > adding
> > > > >>>> > > > > > support of new template in MET.
> > > > >>>> > > > > >
> > > > >>>> > > > > > Ho-Chun
> > > > >>>> > > > > >
> > > > >>>> > > > > > On Wed, Jun 12, 2019 at 10:57 AM Howard Soh via
RT <
> > > > >>>> > > met_help at ucar.edu>
> > > > >>>> > > > > > wrote:
> > > > >>>> > > > > >
> > > > >>>> > > > > > > There is no relationship between wgrib2 and
MET.
> > > > >>>> > > > > > > wgrib2 was an example which does not support
the
> > > template
> > > > >>>> ID 46.
> > > > >>>> > We
> > > > >>>> > > > did
> > > > >>>> > > > > > > not have the GRIB2 file with template id 46.
MET
> gives
> > > an
> > > > >>>> > warning.
> > > > >>>> > > > MET
> > > > >>>> > > > > > will
> > > > >>>> > > > > > > stop if the template ID from the GRIB2 is not
> > supported
> > > > >>>> instead
> > > > >>>> > of
> > > > >>>> > > > > > > continuing as a short term solution. MET will
> support
> > > > >>>> template ID
> > > > >>>> > > 46
> > > > >>>> > > > as
> > > > >>>> > > > > > the
> > > > >>>> > > > > > > long term solution.
> > > > >>>> > > > > > >
> > > > >>>> > > > > > > Cheers,
> > > > >>>> > > > > > > Howard
> > > > >>>> > > > > > >
> > > > >>>> > > > > > > On Wed Jun 12 08:43:03 2019, ho-
chun.huang at noaa.gov
> > > > wrote:
> > > > >>>> > > > > > > > Hi, Howard:
> > > > >>>> > > > > > > >
> > > > >>>> > > > > > > > There are several versions on WCOSS of
wgrib2,
> from
> > > > >>>> loading
> > > > >>>> > > module
> > > > >>>> > > > > > > > grib_util/v1.0.0(default) to  v1.1.0.
> > > > >>>> > > > > > > >
> > > > >>>> > > > > > > > g20a1: > module avail grib_util
> > > > >>>> > > > > > > >
> > > > >>>> > > > > > > >
> > > > >>>>
-----------------------------------------------------------
> > > > >>>> > > > > > > > /nwprod2/modulefiles
> > > > >>>> > > > > > > >
> > > > >>>>
-----------------------------------------------------------
> > > > >>>> > > > > > > > grib_util/v1.0.0(default) grib_util/v1.0.2
> > > > >>>> > > > grib_util/v1.0.4
> > > > >>>> > > > > > > >    grib_util/v1.0.6
> > > > >>>> > > > > > > > grib_util/v1.0.1          grib_util/v1.0.3
> > > > >>>> > > > grib_util/v1.0.5
> > > > >>>> > > > > > > >    grib_util/v1.1.0
> > > > >>>> > > > > > > >
> > > > >>>> > > > > > > > After using different version of wgrib2, I
found
> > > > >>>> > grib_util/v1.0.4
> > > > >>>> > > > and
> > > > >>>> > > > > > > > above
> > > > >>>> > > > > > > > can read CMAQ AOT template #46 (see below
for more
> > > > >>>> detail).
> > > > >>>> > > > > > > >
> > > > >>>> > > > > > > > Does MET v8.1 uses older version of wgrib2?
The
> > > version
> > > > >>>> number
> > > > >>>> > > of
> > > > >>>> > > > > > > > wgrib2
> > > > >>>> > > > > > > > is v0.1.9.6a 5/2012 and v0.2.0.7 12/2017
for
> > > > >>>> grib_util/v1.0.0
> > > > >>>> > and
> > > > >>>> > > > > > > > grib_util/v1.1.0, respectively.
> > > > >>>> > > > > > > > (using
/nwprod2/grib_util.v1.0.0/exec/wgrib2
> > -version)
> > > > >>>> > > > > > > >
> > > > >>>> > > > > > > > Can MET v8.1 built on WCOSS using newer
version of
> > > > wgrib2
> > > > >>>> to
> > > > >>>> > > solve
> > > > >>>> > > > > > > > current
> > > > >>>> > > > > > > > issue?
> > > > >>>> > > > > > > >
> > > > >>>> > > > > > > > Ho-Chun
> > > > >>>> > > > > > > >
> > > > >>>> > > > > > > > p.s.
> > > > >>>> > > > > > > >
> > > > >>>> > > > > > > > g20a1:~ >
/nwprod2/grib_util.v1.0.3/exec/wgrib2 -V
> > > > >>>> > > > > > > >
> > > > >>>> > > > >
> > > > >>>> >
> > > >
>
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > > > >>>> > > > > > > > code_table_4.5a: product definition
template #46
> not
> > > > >>>> supported
> > > > >>>> > > > > > > > code_table_4.5b: product definition
template #46
> not
> > > > >>>> supported
> > > > >>>> > > > > > > > 1:0:vt=2019061200:no_level:11-12 hour ave
> fcst:AOTK
> > > > >>>> Aerosol
> > > > >>>> > > Optical
> > > > >>>> > > > > > > > Thickness [Numeric]:
> > > > >>>> > > > > > > >
> > > > >>>>
ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> > > > >>>> > > > > > > >     grid_template=30:winds(grid):
> > > > >>>> > > > > > > >         Lambert Conformal: (442 x 265)
input WE:SN
> > > > output
> > > > >>>> WE:SN
> > > > >>>> > > > res 8
> > > > >>>> > > > > > > >         Lat1 21.821000 Lon1 239.372000 LoV
> > 263.000000
> > > > >>>> > > > > > > >         LatD 33.000000 Latin1 33.000000
Latin2
> > > 45.000000
> > > > >>>> > > > > > > >         LatSP 0.000000 LonSP 0.000000
> > > > >>>> > > > > > > >         North Pole (442 x 265) Dx
12000.000000 m
> Dy
> > > > >>>> > 12000.000000
> > > > >>>> > > m
> > > > >>>> > > > > > > > mode 8
> > > > >>>> > > > > > > >
> > > > >>>> > > > > > > > g20a1:~ >
/nwprod2/grib_util.v1.0.4/exec/wgrib2 -V
> > > > >>>> > > > > > > >
> > > > >>>> > > > >
> > > > >>>> >
> > > >
>
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > > > >>>> > > > > > > > 1:0:vt=2019061200:1 sigma level:11-12 hour
ave
> > > fcst:AOTK
> > > > >>>> > Aerosol
> > > > >>>> > > > > > > > Optical
> > > > >>>> > > > > > > > Thickness [Numeric]:aerosol=Ozone
> > > > >>>> > > > > > > >
> > > > >>>>
ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> > > > >>>> > > > > > > >     grid_template=30:winds(grid):
> > > > >>>> > > > > > > >         Lambert Conformal: (442 x 265)
input WE:SN
> > > > output
> > > > >>>> WE:SN
> > > > >>>> > > > res 8
> > > > >>>> > > > > > > >         Lat1 21.821000 Lon1 239.372000 LoV
> > 263.000000
> > > > >>>> > > > > > > >         LatD 33.000000 Latin1 33.000000
Latin2
> > > 45.000000
> > > > >>>> > > > > > > >         LatSP 0.000000 LonSP 0.000000
> > > > >>>> > > > > > > >         North Pole (442 x 265) Dx
12000.000000 m
> Dy
> > > > >>>> > 12000.000000
> > > > >>>> > > m
> > > > >>>> > > > > > > > mode 8
> > > > >>>> > > > > > > >
> > > > >>>> > > > > > > > g20a1:~ >
/nwprod2/grib_util.v1.1.0/exec/wgrib2 -V
> > > > >>>> > > > > > > >
> > > > >>>> > > > >
> > > > >>>> >
> > > >
>
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > > > >>>> > > > > > > > 1:0:vt=2019061200:1 sigma level:11-12 hour
ave
> > > fcst:AOTK
> > > > >>>> > Aerosol
> > > > >>>> > > > > > > > Optical
> > > > >>>> > > > > > > > Thickness
[Numeric]:aerosol=Ozone:aerosol_size <0
> > > > >>>> > > > > > > >
> > > > >>>>
ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> > > > >>>> > > > > > > >     grid_template=30:winds(grid):
> > > > >>>> > > > > > > >         Lambert Conformal: (442 x 265)
input WE:SN
> > > > output
> > > > >>>> WE:SN
> > > > >>>> > > > res 8
> > > > >>>> > > > > > > >         Lat1 21.821000 Lon1 239.372000 LoV
> > 263.000000
> > > > >>>> > > > > > > >         LatD 33.000000 Latin1 33.000000
Latin2
> > > 45.000000
> > > > >>>> > > > > > > >         LatSP 0.000000 LonSP 0.000000
> > > > >>>> > > > > > > >         North Pole (442 x 265) Dx
12000.000000 m
> Dy
> > > > >>>> > 12000.000000
> > > > >>>> > > m
> > > > >>>> > > > > > > > mode 8
> > > > >>>> > > > > > > >
> > > > >>>> > > > > > > >
> > > > >>>> > > > > > > > On Wed, Jun 12, 2019 at 8:03 AM Ho-Chun
Huang -
> NOAA
> > > > >>>> Affiliate
> > > > >>>> > <
> > > > >>>> > > > > > > > ho-chun.huang at noaa.gov> wrote:
> > > > >>>> > > > > > > >
> > > > >>>> > > > > > > > > Hi, Howard:
> > > > >>>> > > > > > > > >
> > > > >>>> > > > > > > > > Did you run the command on NCAR's
machines?  We
> > > might
> > > > >>>> have to
> > > > >>>> > > > bring
> > > > >>>> > > > > > > > > John
> > > > >>>> > > > > > > > > in because there is a possibility that
the MET
> > v8,.1
> > > > >>>> built on
> > > > >>>> > > > > > > > > WCOSS/Gyre is
> > > > >>>> > > > > > > > > not right, at least for
regrid_data_plane.  Do
> you
> > > > have
> > > > >>>> any
> > > > >>>> > > > > > > > > suggestion on
> > > > >>>> > > > > > > > > the environment setting I should include?
I do
> > not
> > > > >>>> think I
> > > > >>>> > can
> > > > >>>> > > > > > > > > figure it
> > > > >>>> > > > > > > > > out what went wrong on the same run
script
> worked
> > > for
> > > > >>>> you.
> > > > >>>> > > > > > > > >
> > > > >>>> > > > > > > > > Ho-Chun
> > > > >>>> > > > > > > > >
> > > > >>>> > > > > > > > > On Tue, Jun 11, 2019 at 6:50 PM Howard
Soh via
> RT
> > <
> > > > >>>> > > > > met_help at ucar.edu
> > > > >>>> > > > > > >
> > > > >>>> > > > > > > > > wrote:
> > > > >>>> > > > > > > > >
> > > > >>>> > > > > > > > >> It works for me.
> > > > >>>> > > > > > > > >>
> > > > >>>> > > > > > > > >> met-8.1/bin/regrid_data_plane
> > > > >>>> > > > > > > > >>
> goes-16/ABI/L2/CONUS/AOD/2019162/OR_ABI-L2-AODC-
> > > > >>>> > > > > > > > >> M6_G16_s20191621821475_e20191621824248_
> > > > >>>> > > > > > > > >> c20191621827269.nc
> > > > >>>> ~/data/GOES-16/ngac.t12z.aod_550nm.grib2
> > > > >>>> > > > > > > > >> OBS_AOD_aqm_g16_20190608_10.nc  -field
> > > 'name="AOD";
> > > > >>>> > > level="*";'
> > > > >>>> > > > > > > > >> -method
> > > > >>>> > > > > > > > >> UW_MEAN -v 1 -qc 0
> > > > >>>> > > > > > > > >>
> > > > >>>> > > > > > > > >> The output was attached.
> > > > >>>> > > > > > > > >>
> > > > >>>> > > > > > > > >> Cheers,
> > > > >>>> > > > > > > > >> Howard
> > > > >>>> > > > > > > > >>
> > > > >>>> > > > > > > > >>
> > > > >>>> > > > > > > > >> On Tue Jun 11 13:49:01 2019,
> > > ho-chun.huang at noaa.gov
> > > > >>>> wrote:
> > > > >>>> > > > > > > > >> > Hi, Howard:
> > > > >>>> > > > > > > > >> >
> > > > >>>> > > > > > > > >> > Same situation,Segmentation fault,
occurred
> to
> > > > >>>> HYSPLIT
> > > > >>>> > model
> > > > >>>> > > > > grib2
> > > > >>>> > > > > > > > >> > output.
> > > > >>>> > > > > > > > >> > Can you look into the issue of
"Segmentation
> > > > fault?"
> > > > >>>> > > > > > > > >> >
> > > > >>>> > > > > > > > >> > Thank you for the help.
> > > > >>>> > > > > > > > >> >
> > > > >>>> > > > > > > > >> > Ho-Chun
> > > > >>>> > > > > > > > >> >
> > > > >>>> > > > > > > > >> > On Tue, Jun 11, 2019 at 3:30 PM Ho-
Chun
> Huang -
> > > > NOAA
> > > > >>>> > > > Affiliate <
> > > > >>>> > > > > > > > >> > ho-chun.huang at noaa.gov> wrote:
> > > > >>>> > > > > > > > >> >
> > > > >>>> > > > > > > > >> > > Hi, Howard:
> > > > >>>> > > > > > > > >> > >
> > > > >>>> > > > > > > > >> > > Thanks for the info.  I thought the
table
> > used
> > > in
> > > > >>>> aqm
> > > > >>>> > aot
> > > > >>>> > > > > output
> > > > >>>> > > > > > > > >> > > is
> > > > >>>> > > > > > > > >> > > used
> > > > >>>> > > > > > > > >> > > by WMO.  Let me consult with EMC AQ
group
> and
> > > get
> > > > >>>> back
> > > > >>>> > to
> > > > >>>> > > > you.
> > > > >>>> > > > > > > > >> > > We
> > > > >>>> > > > > > > > >> > > may have
> > > > >>>> > > > > > > > >> > > to bring Tara in if it is necessary.
> > > > >>>> > > > > > > > >> > >
> > > > >>>> > > > > > > > >> > > Can you also check the ngac grib2
file?  I
> > > > >>>> encounter a
> > > > >>>> > > > similar
> > > > >>>> > > > > > > > >> > > problem,
> > > > >>>> > > > > > > > >> > > segmentation fault.  The ngac file
are in
> the
> > > > same
> > > > >>>> ftp
> > > > >>>> > > > > > > > >> > > directory.
> > > > >>>> > > > > > > > >> > >
> > > > >>>> > > > > > > > >> > > Thanks.
> > > > >>>> > > > > > > > >> > >
> > > > >>>> > > > > > > > >> > > Ho-Chun
> > > > >>>> > > > > > > > >> > >
> > > > >>>> > > > > > > > >> > > On Tue, Jun 11, 2019 at 3:17 PM
Howard Soh
> > via
> > > RT
> > > > >>>> > > > > > > > >> > > <met_help at ucar.edu>
> > > > >>>> > > > > > > > >> > > wrote:
> > > > >>>> > > > > > > > >> > >
> > > > >>>> > > > > > > > >> > >> The GRIB2 file
> (aqm.t06z.aot.f06.148.grib2)
> > as
> > > > the
> > > > >>>> > target
> > > > >>>> > > > > grid
> > > > >>>> > > > > > > > >> > >> contains
> > > > >>>> > > > > > > > >> > >> product definition template #46.
It's not
> > > > >>>> supported by
> > > > >>>> > > > wgrib2
> > > > >>>> > > > > > > > >> > >> (v0.2.0.3
> > > > >>>> > > > > > > > >> > >> 11/2015) and MET.
> > > > >>>> > > > > > > > >> > >>
> > > > >>>> > > > > > > > >> > >> > wgrib2 aqm.t06z.aot.f06.148.grib2
> > > > >>>> > > > > > > > >> > >> code_table_4.5a: product definition
> template
> > > #46
> > > > >>>> not
> > > > >>>> > > > > supported
> > > > >>>> > > > > > > > >> > >> code_table_4.5b: product definition
> template
> > > #46
> > > > >>>> not
> > > > >>>> > > > > supported
> > > > >>>> > > > > > > > >> > >> 1:0:d=2019060706:AOTK:no_level:5-6
hour
> ave
> > > > fcst:
> > > > >>>> > > > > > > > >> > >>
> > > > >>>> > > > > > > > >> > >> Would you use another GRIB2 file
with the
> > > > product
> > > > >>>> > > > definition
> > > > >>>> > > > > > > > >> > >> template #48
> > > > >>>> > > > > > > > >> > >> or others below?
> > > > >>>> > > > > > > > >> > >>
> > > > >>>> > > > > > > > >> > >>
> > > > >>>> > > > > > > > >> > >>
> > > > >>>> > > > > > >
> > > > >>>> > >
> > > > >>>>
> > >
https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table4-
> > > > >>>> > > > > > > > >> > >> 0.shtml
> > > > >>>> > > > > > > > >> > >>
> > > > >>>> > > > > > > > >> > >> Here are template ids (GRIB2) which
MET
> > > > supports:
> > > > >>>> > > > > > > > >> > >>    0: analysis or forecast
> > > > >>>> > > > > > > > >> > >>    1: individual ensemble forecast,
> control
> > > and
> > > > >>>> > > perturbed,
> > > > >>>> > > > > at a
> > > > >>>> > > > > > > > >> > >> horizontal level or in
> > > > >>>> > > > > > > > >> > >>    2: ensemble mean
> > > > >>>> > > > > > > > >> > >>    5: probability forecast
> > > > >>>> > > > > > > > >> > >>    8: accumulation forecast
> > > > >>>> > > > > > > > >> > >>    9: probabilistic accumulation
forecast
> > > > >>>> > > > > > > > >> > >>   11: individual ensemble forecast,
> control
> > > and
> > > > >>>> > > perturbed,
> > > > >>>> > > > > at a
> > > > >>>> > > > > > > > >> > >> horizontal level or in
> > > > >>>> > > > > > > > >> > >>   12: derived accumulation forecast
> > > > >>>> > > > > > > > >> > >>   48: aerosol data
> > > > >>>> > > > > > > > >> > >>
> > > > >>>> > > > > > > > >> > >> Cheers,
> > > > >>>> > > > > > > > >> > >> Howard
> > > > >>>> > > > > > > > >> > >>
> > > > >>>> > > > > > > > >> > >> On Tue Jun 11 09:49:46 2019,
> > > > >>>> ho-chun.huang at noaa.gov
> > > > >>>> > > wrote:
> > > > >>>> > > > > > > > >> > >> > To Whom It May Concern:
> > > > >>>> > > > > > > > >> > >> >
> > > > >>>> > > > > > > > >> > >> > There is an error message on
using the
> > > > >>>> > > regrid_data_plane,
> > > > >>>> > > > > > > > >> > >> > please
> > > > >>>> > > > > > > > >> > >> > help
> > > > >>>> > > > > > > > >> > >> me to
> > > > >>>> > > > > > > > >> > >> > debug the root of error.
> > > > >>>> > > > > > > > >> > >> >
> > > > >>>> > > > > > > > >> > >> > DEBUG 1: Reading data file:
> > > > >>>> > > > > > > > >> > >> >
> > > > >>>> > OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> > > > >>>> > > > > > > > >> > >> c20191591005286.nc
> > > > >>>> > > > > > > > >> > >> > WARNING:
> > > > >>>> > > > > > > > >> > >> > WARNING:
MetGrib2DataFile::data_plane()
> ->
> > > > >>>> unexpected
> > > > >>>> > > PDS
> > > > >>>> > > > > > > > >> > >> > template
> > > > >>>> > > > > > > > >> > >> number
> > > > >>>> > > > > > > > >> > >> > (46) may cause unexpected
results.
> Please
> > > > email
> > > > >>>> > > > > > > > >> > >> > met_help at ucar.edu.
> > > > >>>> > > > > > > > >> > >> > WARNING:
> > > > >>>> > > > > > > > >> > >> > run.sh: line 7: 38040
Segmentation fault
> > > > >>>> (core
> > > > >>>> > > > dumped)
> > > > >>>> > > > > > > > >> > >> > regrid_data_plane
> > > > >>>> > > > > > > > >> > >> >
> > > > >>>> > OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> > > > >>>> > > > > > > > >> > >> c20191591005286.nc
> > > > >>>> > > > > > > > >> > >> > aqm.t06z.aot.f06.148.grib2
> > > > >>>> > > OBS_AOD_aqm_g16_20190608_10.nc
> > > > >>>> > > > > > > > >> > >> > -field
> > > > >>>> > > > > > > > >> > >> > 'name="AOD"; level="*";' -method
UW_MEAN
> > -v
> > > 1
> > > > >>>> -qc 0
> > > > >>>> > > > > > > > >> > >> >
> > > > >>>> > > > > > > > >> > >> > The files, script, and log can be
found
> in
> > > > >>>> > > > > > > > >> > >> >
> > > > >>>> https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
> > > > >>>> > > > > > > > >> > >> >
> > > > >>>> > > > > > > > >> > >> > I notice in 8.1 you no longer
need the
> > > -coord
> > > > >>>> option
> > > > >>>> > > that
> > > > >>>> > > > > 8.0
> > > > >>>> > > > > > > > >> > >> > needs.
> > > > >>>> > > > > > > > >> > >> >
> > > > >>>> > > > > > > > >> > >> > The output nc file only contains
la and
> > lon
> > > > but
> > > > >>>> no
> > > > >>>> > > > mapping
> > > > >>>> > > > > > > > >> > >> > AOD.
> > > > >>>> > > > > > > > >> > >> >
> > > > >>>> > > > > > > > >> > >> > Than you for your help.
> > > > >>>> > > > > > > > >> > >> >
> > > > >>>> > > > > > > > >> > >> > Ho-Chun Huang
> > > > >>>> > > > > > > > >> > >>
> > > > >>>> > > > > > > > >> > >>
> > > > >>>> > > > > > > > >> > >>
> > > > >>>> > > > > > > > >> > >>
> > > > >>>> > > > > > > > >>
> > > > >>>> > > > > > > > >>
> > > > >>>> > > > > > > > >>
> > > > >>>> > > > > > > > >>
> > > > >>>> > > > > > >
> > > > >>>> > > > > > >
> > > > >>>> > > > > > >
> > > > >>>> > > > > > >
> > > > >>>> > > > > >
> > > > >>>> > > > > >
> > > > >>>> > > > >
> > > > >>>> > > > > --
> > > > >>>> > > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> > > > >>>> > > > > Tara Jensen
> > > > >>>> > > > > Project Manager II
> > > > >>>> > > > > NCAR RAL and DTC
> > > > >>>> > > > > PO Box 3000, Boulder, Colorado 80307 USA
> > > > >>>> > > > > +1 303-497-8479          jensen at ucar.edu
> > > > >>>> > > > >
> > > > >>>> > > > >
> > > > >>>> > > >
> > > > >>>> > > >
> > > > >>>> > >
> > > > >>>> > >
> > > > >>>> >
> > > > >>>> >
> > > > >>>>
> > > > >>>>
> > > >
> > > >
> > >
> > >
> >
> >
>
>

------------------------------------------------
Subject: error on regrid_data_plane
From: Julie Prestopnik
Time: Fri Jul 12 09:33:51 2019

That's great news, Ho-Chun! Thank you for letting us know.  I will
close
this ticket.  Have a great weekend!

Julie

On Fri, Jul 12, 2019 at 8:18 AM Ho-Chun Huang - NOAA Affiliate via RT
<
met_help at ucar.edu> wrote:

>
> <URL: https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550 >
>
> Hi, Julie:
>
> I think met-8.1.1 can recognize CMAQ grib2 #46 template now and the
> regrid_data_plane doe not produce "segmentation fault" error.
>
> I am able to map G16 AOD to CMAQ, HYSPLIT, and NGAC grid using
> regrid_data_plane.  Below is the CMAQ mapped G16 AOD using
plot_data_plane
> utility.
>
> Thank you very much for your effort to resolve the problem.  Please
close
> the ticket.
>
> Best regard,
> Ho-Chun
>
> [image: image.png]
>
> On Wed, Jul 10, 2019 at 12:17 PM Julie Prestopnik via RT <
> met_help at ucar.edu>
> wrote:
>
> > Hi Ho-Chun.
> >
> > I have updated the build on tide with met-8.1.1 (you still run the
same
> > module use and module load commands as before, however). This
time, I was
> > able to run the following successfully:
> >
> > module use /global/noscrub/Julie.Prestopnik/modulefiles
> > module load met/8.1
> > regrid_data_plane test.nc ngac.t12z.aod_550nm.grib2
> > OBS_AOD_aqm_g16_20190608_10.nc -field 'name="AOD"; level="(*,*)";'
> -method
> > UW_MEAN -v 1 -qc 0
> >
> > but I believe that only tests one of your cases.  Please run your
cases
> > using the latest build and let us know how it goes.
> >
> > Thanks,
> > Julie
> >
> > On Mon, Jul 1, 2019 at 5:49 AM Ho-Chun Huang - NOAA Affiliate via
RT <
> > met_help at ucar.edu> wrote:
> >
> > >
> > > <URL: https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550 >
> > >
> > > Hi, Julie:
> > >
> > > There are two questions for this ticket.  One is for template
#46.
> > Another
> > > one is execution error on WCOSS Phase II of regrid_data_plane
including
> > > using other model grib2 file not using template #46, i.e., NGAC
and
> > HYSPLIT
> > > output.  Howard using the same data and did not have this error
on NCAR
> > > machine.  While waiting for the solution for new template, can
we try
> to
> > > resolve the runtime error first?
> > >
> > > Ho-Chun
> > >
> > > On Fri, Jun 28, 2019 at 4:03 PM Julie Prestopnik via RT <
> > met_help at ucar.edu
> > > >
> > > wrote:
> > >
> > > > Thank you, Ho-Chun.  We are working on a solution and hope to
have
> this
> > > > fixed in the met-8.1 bugfix release met-8.1.1.
> > > >
> > > > Julie
> > > >
> > > > On Fri, Jun 28, 2019 at 7:52 AM Ho-Chun Huang - NOAA Affiliate
via
> RT <
> > > > met_help at ucar.edu> wrote:
> > > >
> > > > >
> > > > > <URL:
https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550 >
> > > > >
> > > > > To Whom It May concern:
> > > > >
> > > > > Due to disk quota full on phase 1, changing working
directory
> > > > > to  /meso2/noscrub/Ho-Chun.Huang/methelp.
> > > > >
> > > > > Please note, the NCO also have a met8.1 build
> > > > >    module use  /usrx/local/dev/modulefiles
> > > > >    module load  met/8.1
> > > > >
> > > > > I also test using
> > > > >    module use  /global/noscrub/Julie.Prestopnik/modulefiles
> > > > >    module load  met/8.1
> > > > >
> > > > > The core dump error message remains.  Note, when Howard
tested it
> on
> > > NCAR
> > > > > machine, he did not receive the error message.
> > > > >
> > > > > Update all data to ftp site with latest test,
> > > > > https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
> > > > >
> > > > > Thank you for your help.
> > > > >
> > > > > Ho-Chun
> > > > >
> > > > > On Wed, Jun 19, 2019 at 2:25 PM Ho-Chun Huang - NOAA
Affiliate <
> > > > > ho-chun.huang at noaa.gov> wrote:
> > > > >
> > > > > > Hi,
> > > > > >
> > > > > > My local working directory on tide is
> > > > /meso/noscrub/Ho-Chun.Huang/methelp
> > > > > >
> > > > > > Ho-Chun
> > > > > >
> > > > > > On Wed, Jun 19, 2019 at 2:19 PM Ho-Chun Huang - NOAA
Affiliate <
> > > > > > ho-chun.huang at noaa.gov> wrote:
> > > > > >
> > > > > >> Hi, Julie:
> > > > > >>
> > > > > >> When you have time, please help me to find out why there
is a
> core
> > > > > dumped
> > > > > >> using regrid-data_plane on tide (to NGAC grid).
> > > > > >>
> > > > > >> all data file should be on
> > > > > >>
> > > > > >> https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
> > > > > >>
> > > > > >> Script need to revised to use the setting on tide (as
below)
> > > > > >>
> > > > > >> Thank you.
> > > > > >>
> > > > > >> Ho-Chun
> > > > > >>
> > > > > >> p.s.
> > > > > >> > cat run.ngac.sh
> > > > > >> #!/bin/sh
> > > > > >> hl=`hostname | cut -c1-1`
> > > > > >> if [ ${hl} == 'g' ]; then
> > > > > >>    module purge
> > > > > >>    module use
/global/noscrub/Julie.Prestopnik/modulefiles
> > > > > >>    module load  met/8.1
> > > > > >> else
> > > > > >>    module purge
> > > > > >>    module use  /usrx/local/dev/modulefiles
> > > > > >>    module load  met/8.1
> > > > > >> fi
> > > > > >>
> > > > > >>    regrid_data_plane
> > > > > >> OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> > > > > c20191591005286.nc
> > > > > >>  ngac.t12z.aod_550nm.grib2 \
> > > > > >>                      OBS_AOD_aqm_g16_20190608_10.nc
-field
> > > > 'name="AOD";
> > > > > >> level="(*,*)";' -method UW_MEAN -v 1 -qc 0
> > > > > >>    exit
> > > > > >>
> > > > > >>  > bash run.ngac.sh
> > > > > >> DEBUG 1: Reading data file:
> > > > > >> OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> > > > > c20191591005286.nc
> > > > > >> run.ngac.sh: line 14: 24808 Segmentation fault      (core
> dumped)
> > > > > >> regrid_data_plane
> > > > > >> OR_ABI-L2-AODC-M6_G16_s20191591001457_e20191591004230_
> > > > > c20191591005286.nc
> > > > > >> ngac.t12z.aod_550nm.grib2 OBS_AOD_aqm_g16_20190608_10.nc
-field
> > > > > >> 'name="AOD"; level="(*,*)";' -method UW_MEAN -v 1 -qc 0
> > > > > >>
> > > > > >> On Wed, Jun 12, 2019 at 1:35 PM Ho-Chun Huang - NOAA
Affiliate <
> > > > > >> ho-chun.huang at noaa.gov> wrote:
> > > > > >>
> > > > > >>> Julie:
> > > > > >>>
> > > > > >>> Thanks for the reminder.  I forgot about the met/8.1
> installation
> > > on
> > > > > >>> tide. I will keep testing the script till it can
successfully
> > load
> > > > > met/8.1
> > > > > >>> on tide.  You don't need to spend time to inform me
separately.
> > > > > >>>
> > > > > >>> Will contact the helpdesk again, if I encounter the same
> > > segmentation
> > > > > >>> fault error on tide.
> > > > > >>>
> > > > > >>> Ho-Chun
> > > > > >>>
> > > > > >>> On Wed, Jun 12, 2019 at 1:29 PM Julie Prestopnik via RT
<
> > > > > >>> met_help at ucar.edu> wrote:
> > > > > >>>
> > > > > >>>> Hi Ho-Chun.
> > > > > >>>>
> > > > > >>>> I will need to install met-8.1 on tide after I regain
access
> as
> > > that
> > > > > >>>> machine has not been available to me since the met-8.1
> release.
> > I
> > > > can
> > > > > >>>> follow up once I have done that.
> > > > > >>>>
> > > > > >>>> If you try on tide and still have trouble, please
follow up on
> > > this
> > > > > >>>> ticket
> > > > > >>>> and let me know the exact command that you are running
so
> that I
> > > can
> > > > > >>>> try to
> > > > > >>>> reproduce the problem on tide.
> > > > > >>>>
> > > > > >>>> Thank you!
> > > > > >>>>
> > > > > >>>> Julie
> > > > > >>>>
> > > > > >>>> On Wed, Jun 12, 2019 at 11:19 AM Ho-Chun Huang - NOAA
> Affiliate
> > > via
> > > > > RT <
> > > > > >>>> met_help at ucar.edu> wrote:
> > > > > >>>>
> > > > > >>>> >
> > > > > >>>> > <URL:
> https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550
> > >
> > > > > >>>> >
> > > > > >>>> > Hi, Julie:
> > > > > >>>> >
> > > > > >>>> > Thank you for being able to help. In addition to the
> template
> > > > issue,
> > > > > >>>> I have
> > > > > >>>> > a core dump due to Segmentation Fault when running on
WCOSS
> > but
> > > > > >>>> Howard did
> > > > > >>>> > not has the same problem when he ran.  I am wondering
maybe
> I
> > > did
> > > > > not
> > > > > >>>> set
> > > > > >>>> > the environmental variables correctly, but I do not
know why
> > > > since I
> > > > > >>>> only
> > > > > >>>> > know to load module met/8.1 (please see the log
message in
> > > > previous
> > > > > >>>> > email).  Maybe you can debug the causes after the dev
asses
> is
> > > > > >>>> returned
> > > > > >>>> > tomorrow
> > > > > >>>> >
> > > > > >>>> > I tried CMAQ AOT, NGAC, and HYSPLIT grib2 files, they
all
> had
> > > the
> > > > > same
> > > > > >>>> > error.  Maybe it is machine dependence?  I was
running the
> > > > > >>>> > regrid_data_plane on gyre.  After production switch,
I will
> > try
> > > it
> > > > > >>>> again on
> > > > > >>>> > tide.
> > > > > >>>> >
> > > > > >>>> > best regards,
> > > > > >>>> > Ho-Chun
> > > > > >>>> >
> > > > > >>>> > On Wed, Jun 12, 2019 at 1:08 PM Julie Prestopnik via
RT <
> > > > > >>>> met_help at ucar.edu
> > > > > >>>> > >
> > > > > >>>> > wrote:
> > > > > >>>> >
> > > > > >>>> > > Please let me know if I can do anything to help, as
Tara
> > > > > mentioned,
> > > > > >>>> > > possibly copying it into the grib table path for
the
> > > "standard"
> > > > > >>>> > > METv8.1could help.  I don't have dev access to
WCOSS at
> this
> > > > time
> > > > > >>>> with
> > > > > >>>> > the
> > > > > >>>> > > current production switch occurring, but I am happy
to
> help
> > if
> > > > > >>>> needed
> > > > > >>>> > when
> > > > > >>>> > > I can.
> > > > > >>>> > >
> > > > > >>>> > > Julie
> > > > > >>>> > >
> > > > > >>>> > > On Wed, Jun 12, 2019 at 11:04 AM Ho-Chun Huang -
NOAA
> > > Affiliate
> > > > > via
> > > > > >>>> RT <
> > > > > >>>> > > met_help at ucar.edu> wrote:
> > > > > >>>> > >
> > > > > >>>> > > >
> > > > > >>>> > > > <URL:
> > > https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550
> > > > >
> > > > > >>>> > > >
> > > > > >>>> > > > Hi, Tara:
> > > > > >>>> > > >
> > > > > >>>> > > > /nwprod2/grib_util.v1.0.*4*/exec/wgrib2  is the
earliest
> > > > version
> > > > > >>>> > > recognizes
> > > > > >>>> > > > template #46.  Grib2 version higher than v1.0.4
is also
> > > > worked.
> > > > > >>>> > > >
> > > > > >>>> > > > Thank you for the reply, I will pass your
response to
> > Jason
> > > > and
> > > > > >>>> Jeff.
> > > > > >>>> > > >
> > > > > >>>> > > > Ho-Chun
> > > > > >>>> > > >
> > > > > >>>> > > > On Wed, Jun 12, 2019 at 12:11 PM Tara Jensen via
RT <
> > > > > >>>> met_help at ucar.edu
> > > > > >>>> > >
> > > > > >>>> > > > wrote:
> > > > > >>>> > > >
> > > > > >>>> > > > > Ho-Chun (and Howard),
> > > > > >>>> > > > >
> > > > > >>>> > > > > Thought it might be good to jump in here.
> > > > > >>>> > > > >
> > > > > >>>> > > > > It looks like the wgrib2 that works is at:
> > > > > >>>> > > > > /nwprod2/grib_util.v1.0.3/exec/wgrib2  on
WCOSS, is
> that
> > > > > >>>> correct?  We
> > > > > >>>> > > > might
> > > > > >>>> > > > > be able to find table 46 and be able to grab it
for
> > > > inclusion
> > > > > >>>> in the
> > > > > >>>> > > next
> > > > > >>>> > > > > release.  Julie might even be able to copy it
into the
> > > grib
> > > > > >>>> table
> > > > > >>>> > path
> > > > > >>>> > > > for
> > > > > >>>> > > > > the "standard" METv8.1 as well.  If that
doesn't
> resolve
> > > the
> > > > > >>>> issue,
> > > > > >>>> > > there
> > > > > >>>> > > > > are other work arounds that we can point you to
until
> > the
> > > > next
> > > > > >>>> > release
> > > > > >>>> > > > > (either bug fix or beta).
> > > > > >>>> > > > >
> > > > > >>>> > > > > Cheers, Tara
> > > > > >>>> > > > >
> > > > > >>>> > > > > On Wed, Jun 12, 2019 at 9:02 AM Ho-Chun Huang -
NOAA
> > > > Affiliate
> > > > > >>>> via
> > > > > >>>> > RT <
> > > > > >>>> > > > > met_help at ucar.edu> wrote:
> > > > > >>>> > > > >
> > > > > >>>> > > > > >
> > > > > >>>> > > > > > <URL:
> > > > > https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=90550
> > > > > >>>> >
> > > > > >>>> > > > > >
> > > > > >>>> > > > > > Howard,
> > > > > >>>> > > > > >
> > > > > >>>> > > > > > Thanks.  I will consult with EMC management
whether
> to
> > > > > request
> > > > > >>>> > adding
> > > > > >>>> > > > > > support of new template in MET.
> > > > > >>>> > > > > >
> > > > > >>>> > > > > > Ho-Chun
> > > > > >>>> > > > > >
> > > > > >>>> > > > > > On Wed, Jun 12, 2019 at 10:57 AM Howard Soh
via RT <
> > > > > >>>> > > met_help at ucar.edu>
> > > > > >>>> > > > > > wrote:
> > > > > >>>> > > > > >
> > > > > >>>> > > > > > > There is no relationship between wgrib2 and
MET.
> > > > > >>>> > > > > > > wgrib2 was an example which does not
support the
> > > > template
> > > > > >>>> ID 46.
> > > > > >>>> > We
> > > > > >>>> > > > did
> > > > > >>>> > > > > > > not have the GRIB2 file with template id
46. MET
> > gives
> > > > an
> > > > > >>>> > warning.
> > > > > >>>> > > > MET
> > > > > >>>> > > > > > will
> > > > > >>>> > > > > > > stop if the template ID from the GRIB2 is
not
> > > supported
> > > > > >>>> instead
> > > > > >>>> > of
> > > > > >>>> > > > > > > continuing as a short term solution. MET
will
> > support
> > > > > >>>> template ID
> > > > > >>>> > > 46
> > > > > >>>> > > > as
> > > > > >>>> > > > > > the
> > > > > >>>> > > > > > > long term solution.
> > > > > >>>> > > > > > >
> > > > > >>>> > > > > > > Cheers,
> > > > > >>>> > > > > > > Howard
> > > > > >>>> > > > > > >
> > > > > >>>> > > > > > > On Wed Jun 12 08:43:03 2019,
> ho-chun.huang at noaa.gov
> > > > > wrote:
> > > > > >>>> > > > > > > > Hi, Howard:
> > > > > >>>> > > > > > > >
> > > > > >>>> > > > > > > > There are several versions on WCOSS of
wgrib2,
> > from
> > > > > >>>> loading
> > > > > >>>> > > module
> > > > > >>>> > > > > > > > grib_util/v1.0.0(default) to  v1.1.0.
> > > > > >>>> > > > > > > >
> > > > > >>>> > > > > > > > g20a1: > module avail grib_util
> > > > > >>>> > > > > > > >
> > > > > >>>> > > > > > > >
> > > > > >>>>
-----------------------------------------------------------
> > > > > >>>> > > > > > > > /nwprod2/modulefiles
> > > > > >>>> > > > > > > >
> > > > > >>>>
-----------------------------------------------------------
> > > > > >>>> > > > > > > > grib_util/v1.0.0(default)
grib_util/v1.0.2
> > > > > >>>> > > > grib_util/v1.0.4
> > > > > >>>> > > > > > > >    grib_util/v1.0.6
> > > > > >>>> > > > > > > > grib_util/v1.0.1
grib_util/v1.0.3
> > > > > >>>> > > > grib_util/v1.0.5
> > > > > >>>> > > > > > > >    grib_util/v1.1.0
> > > > > >>>> > > > > > > >
> > > > > >>>> > > > > > > > After using different version of wgrib2,
I found
> > > > > >>>> > grib_util/v1.0.4
> > > > > >>>> > > > and
> > > > > >>>> > > > > > > > above
> > > > > >>>> > > > > > > > can read CMAQ AOT template #46 (see below
for
> more
> > > > > >>>> detail).
> > > > > >>>> > > > > > > >
> > > > > >>>> > > > > > > > Does MET v8.1 uses older version of
wgrib2?  The
> > > > version
> > > > > >>>> number
> > > > > >>>> > > of
> > > > > >>>> > > > > > > > wgrib2
> > > > > >>>> > > > > > > > is v0.1.9.6a 5/2012 and v0.2.0.7 12/2017
for
> > > > > >>>> grib_util/v1.0.0
> > > > > >>>> > and
> > > > > >>>> > > > > > > > grib_util/v1.1.0, respectively.
> > > > > >>>> > > > > > > > (using
/nwprod2/grib_util.v1.0.0/exec/wgrib2
> > > -version)
> > > > > >>>> > > > > > > >
> > > > > >>>> > > > > > > > Can MET v8.1 built on WCOSS using newer
version
> of
> > > > > wgrib2
> > > > > >>>> to
> > > > > >>>> > > solve
> > > > > >>>> > > > > > > > current
> > > > > >>>> > > > > > > > issue?
> > > > > >>>> > > > > > > >
> > > > > >>>> > > > > > > > Ho-Chun
> > > > > >>>> > > > > > > >
> > > > > >>>> > > > > > > > p.s.
> > > > > >>>> > > > > > > >
> > > > > >>>> > > > > > > > g20a1:~ >
/nwprod2/grib_util.v1.0.3/exec/wgrib2
> -V
> > > > > >>>> > > > > > > >
> > > > > >>>> > > > >
> > > > > >>>> >
> > > > >
> >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > > > > >>>> > > > > > > > code_table_4.5a: product definition
template #46
> > not
> > > > > >>>> supported
> > > > > >>>> > > > > > > > code_table_4.5b: product definition
template #46
> > not
> > > > > >>>> supported
> > > > > >>>> > > > > > > > 1:0:vt=2019061200:no_level:11-12 hour ave
> > fcst:AOTK
> > > > > >>>> Aerosol
> > > > > >>>> > > Optical
> > > > > >>>> > > > > > > > Thickness [Numeric]:
> > > > > >>>> > > > > > > >
> > > > > >>>>
ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> > > > > >>>> > > > > > > >     grid_template=30:winds(grid):
> > > > > >>>> > > > > > > >         Lambert Conformal: (442 x 265)
input
> WE:SN
> > > > > output
> > > > > >>>> WE:SN
> > > > > >>>> > > > res 8
> > > > > >>>> > > > > > > >         Lat1 21.821000 Lon1 239.372000
LoV
> > > 263.000000
> > > > > >>>> > > > > > > >         LatD 33.000000 Latin1 33.000000
Latin2
> > > > 45.000000
> > > > > >>>> > > > > > > >         LatSP 0.000000 LonSP 0.000000
> > > > > >>>> > > > > > > >         North Pole (442 x 265) Dx
12000.000000 m
> > Dy
> > > > > >>>> > 12000.000000
> > > > > >>>> > > m
> > > > > >>>> > > > > > > > mode 8
> > > > > >>>> > > > > > > >
> > > > > >>>> > > > > > > > g20a1:~ >
/nwprod2/grib_util.v1.0.4/exec/wgrib2
> -V
> > > > > >>>> > > > > > > >
> > > > > >>>> > > > >
> > > > > >>>> >
> > > > >
> >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > > > > >>>> > > > > > > > 1:0:vt=2019061200:1 sigma level:11-12
hour ave
> > > > fcst:AOTK
> > > > > >>>> > Aerosol
> > > > > >>>> > > > > > > > Optical
> > > > > >>>> > > > > > > > Thickness [Numeric]:aerosol=Ozone
> > > > > >>>> > > > > > > >
> > > > > >>>>
ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> > > > > >>>> > > > > > > >     grid_template=30:winds(grid):
> > > > > >>>> > > > > > > >         Lambert Conformal: (442 x 265)
input
> WE:SN
> > > > > output
> > > > > >>>> WE:SN
> > > > > >>>> > > > res 8
> > > > > >>>> > > > > > > >         Lat1 21.821000 Lon1 239.372000
LoV
> > > 263.000000
> > > > > >>>> > > > > > > >         LatD 33.000000 Latin1 33.000000
Latin2
> > > > 45.000000
> > > > > >>>> > > > > > > >         LatSP 0.000000 LonSP 0.000000
> > > > > >>>> > > > > > > >         North Pole (442 x 265) Dx
12000.000000 m
> > Dy
> > > > > >>>> > 12000.000000
> > > > > >>>> > > m
> > > > > >>>> > > > > > > > mode 8
> > > > > >>>> > > > > > > >
> > > > > >>>> > > > > > > > g20a1:~ >
/nwprod2/grib_util.v1.1.0/exec/wgrib2
> -V
> > > > > >>>> > > > > > > >
> > > > > >>>> > > > >
> > > > > >>>> >
> > > > >
> >
/gpfs/hps/nco/ops/com/aqm/prod/aqm.20190611/aqm.t12z.aot.f12.148.grib2
> > > > > >>>> > > > > > > > 1:0:vt=2019061200:1 sigma level:11-12
hour ave
> > > > fcst:AOTK
> > > > > >>>> > Aerosol
> > > > > >>>> > > > > > > > Optical
> > > > > >>>> > > > > > > > Thickness
[Numeric]:aerosol=Ozone:aerosol_size
> <0
> > > > > >>>> > > > > > > >
> > > > > >>>>
ndata=117130:undef=0:mean=0.0394628:min=0.00304:max=0.31972
> > > > > >>>> > > > > > > >     grid_template=30:winds(grid):
> > > > > >>>> > > > > > > >         Lambert Conformal: (442 x 265)
input
> WE:SN
> > > > > output
> > > > > >>>> WE:SN
> > > > > >>>> > > > res 8
> > > > > >>>> > > > > > > >         Lat1 21.821000 Lon1 239.372000
LoV
> > > 263.000000
> > > > > >>>> > > > > > > >         LatD 33.000000 Latin1 33.000000
Latin2
> > > > 45.000000
> > > > > >>>> > > > > > > >         LatSP 0.000000 LonSP 0.000000
> > > > > >>>> > > > > > > >         North Pole (442 x 265) Dx
12000.000000 m
> > Dy
> > > > > >>>> > 12000.000000
> > > > > >>>> > > m
> > > > > >>>> > > > > > > > mode 8
> > > > > >>>> > > > > > > >
> > > > > >>>> > > > > > > >
> > > > > >>>> > > > > > > > On Wed, Jun 12, 2019 at 8:03 AM Ho-Chun
Huang -
> > NOAA
> > > > > >>>> Affiliate
> > > > > >>>> > <
> > > > > >>>> > > > > > > > ho-chun.huang at noaa.gov> wrote:
> > > > > >>>> > > > > > > >
> > > > > >>>> > > > > > > > > Hi, Howard:
> > > > > >>>> > > > > > > > >
> > > > > >>>> > > > > > > > > Did you run the command on NCAR's
machines?
> We
> > > > might
> > > > > >>>> have to
> > > > > >>>> > > > bring
> > > > > >>>> > > > > > > > > John
> > > > > >>>> > > > > > > > > in because there is a possibility that
the MET
> > > v8,.1
> > > > > >>>> built on
> > > > > >>>> > > > > > > > > WCOSS/Gyre is
> > > > > >>>> > > > > > > > > not right, at least for
regrid_data_plane.  Do
> > you
> > > > > have
> > > > > >>>> any
> > > > > >>>> > > > > > > > > suggestion on
> > > > > >>>> > > > > > > > > the environment setting I should
include?  I
> do
> > > not
> > > > > >>>> think I
> > > > > >>>> > can
> > > > > >>>> > > > > > > > > figure it
> > > > > >>>> > > > > > > > > out what went wrong on the same run
script
> > worked
> > > > for
> > > > > >>>> you.
> > > > > >>>> > > > > > > > >
> > > > > >>>> > > > > > > > > Ho-Chun
> > > > > >>>> > > > > > > > >
> > > > > >>>> > > > > > > > > On Tue, Jun 11, 2019 at 6:50 PM Howard
Soh via
> > RT
> > > <
> > > > > >>>> > > > > met_help at ucar.edu
> > > > > >>>> > > > > > >
> > > > > >>>> > > > > > > > > wrote:
> > > > > >>>> > > > > > > > >
> > > > > >>>> > > > > > > > >> It works for me.
> > > > > >>>> > > > > > > > >>
> > > > > >>>> > > > > > > > >> met-8.1/bin/regrid_data_plane
> > > > > >>>> > > > > > > > >>
> > goes-16/ABI/L2/CONUS/AOD/2019162/OR_ABI-L2-AODC-
> > > > > >>>> > > > > > > > >>
M6_G16_s20191621821475_e20191621824248_
> > > > > >>>> > > > > > > > >> c20191621827269.nc
> > > > > >>>> ~/data/GOES-16/ngac.t12z.aod_550nm.grib2
> > > > > >>>> > > > > > > > >> OBS_AOD_aqm_g16_20190608_10.nc  -field
> > > > 'name="AOD";
> > > > > >>>> > > level="*";'
> > > > > >>>> > > > > > > > >> -method
> > > > > >>>> > > > > > > > >> UW_MEAN -v 1 -qc 0
> > > > > >>>> > > > > > > > >>
> > > > > >>>> > > > > > > > >> The output was attached.
> > > > > >>>> > > > > > > > >>
> > > > > >>>> > > > > > > > >> Cheers,
> > > > > >>>> > > > > > > > >> Howard
> > > > > >>>> > > > > > > > >>
> > > > > >>>> > > > > > > > >>
> > > > > >>>> > > > > > > > >> On Tue Jun 11 13:49:01 2019,
> > > > ho-chun.huang at noaa.gov
> > > > > >>>> wrote:
> > > > > >>>> > > > > > > > >> > Hi, Howard:
> > > > > >>>> > > > > > > > >> >
> > > > > >>>> > > > > > > > >> > Same situation,Segmentation fault,
occurred
> > to
> > > > > >>>> HYSPLIT
> > > > > >>>> > model
> > > > > >>>> > > > > grib2
> > > > > >>>> > > > > > > > >> > output.
> > > > > >>>> > > > > > > > >> > Can you look into the issue of
> "Segmentation
> > > > > fault?"
> > > > > >>>> > > > > > > > >> >
> > > > > >>>> > > > > > > > >> > Thank you for the help.
> > > > > >>>> > > > > > > > >> >
> > > > > >>>> > > > > > > > >> > Ho-Chun
> > > > > >>>> > > > > > > > >> >
> > > > > >>>> > > > > > > > >> > On Tue, Jun 11, 2019 at 3:30 PM Ho-
Chun
> > Huang -
> > > > > NOAA
> > > > > >>>> > > > Affiliate <
> > > > > >>>> > > > > > > > >> > ho-chun.huang at noaa.gov> wrote:
> > > > > >>>> > > > > > > > >> >
> > > > > >>>> > > > > > > > >> > > Hi, Howard:
> > > > > >>>> > > > > > > > >> > >
> > > > > >>>> > > > > > > > >> > > Thanks for the info.  I thought
the table
> > > used
> > > > in
> > > > > >>>> aqm
> > > > > >>>> > aot
> > > > > >>>> > > > > output
> > > > > >>>> > > > > > > > >> > > is
> > > > > >>>> > > > > > > > >> > > used
> > > > > >>>> > > > > > > > >> > > by WMO.  Let me consult with EMC
AQ group
> > and
> > > > get
> > > > > >>>> back
> > > > > >>>> > to
> > > > > >>>> > > > you.
> > > > > >>>> > > > > > > > >> > > We
> > > > > >>>> > > > > > > > >> > > may have
> > > > > >>>> > > > > > > > >> > > to bring Tara in if it is
necessary.
> > > > > >>>> > > > > > > > >> > >
> > > > > >>>> > > > > > > > >> > > Can you also check the ngac grib2
file?
> I
> > > > > >>>> encounter a
> > > > > >>>> > > > similar
> > > > > >>>> > > > > > > > >> > > problem,
> > > > > >>>> > > > > > > > >> > > segmentation fault.  The ngac file
are in
> > the
> > > > > same
> > > > > >>>> ftp
> > > > > >>>> > > > > > > > >> > > directory.
> > > > > >>>> > > > > > > > >> > >
> > > > > >>>> > > > > > > > >> > > Thanks.
> > > > > >>>> > > > > > > > >> > >
> > > > > >>>> > > > > > > > >> > > Ho-Chun
> > > > > >>>> > > > > > > > >> > >
> > > > > >>>> > > > > > > > >> > > On Tue, Jun 11, 2019 at 3:17 PM
Howard
> Soh
> > > via
> > > > RT
> > > > > >>>> > > > > > > > >> > > <met_help at ucar.edu>
> > > > > >>>> > > > > > > > >> > > wrote:
> > > > > >>>> > > > > > > > >> > >
> > > > > >>>> > > > > > > > >> > >> The GRIB2 file
> > (aqm.t06z.aot.f06.148.grib2)
> > > as
> > > > > the
> > > > > >>>> > target
> > > > > >>>> > > > > grid
> > > > > >>>> > > > > > > > >> > >> contains
> > > > > >>>> > > > > > > > >> > >> product definition template #46.
It's
> not
> > > > > >>>> supported by
> > > > > >>>> > > > wgrib2
> > > > > >>>> > > > > > > > >> > >> (v0.2.0.3
> > > > > >>>> > > > > > > > >> > >> 11/2015) and MET.
> > > > > >>>> > > > > > > > >> > >>
> > > > > >>>> > > > > > > > >> > >> > wgrib2
aqm.t06z.aot.f06.148.grib2
> > > > > >>>> > > > > > > > >> > >> code_table_4.5a: product
definition
> > template
> > > > #46
> > > > > >>>> not
> > > > > >>>> > > > > supported
> > > > > >>>> > > > > > > > >> > >> code_table_4.5b: product
definition
> > template
> > > > #46
> > > > > >>>> not
> > > > > >>>> > > > > supported
> > > > > >>>> > > > > > > > >> > >> 1:0:d=2019060706:AOTK:no_level:5-
6 hour
> > ave
> > > > > fcst:
> > > > > >>>> > > > > > > > >> > >>
> > > > > >>>> > > > > > > > >> > >> Would you use another GRIB2 file
with
> the
> > > > > product
> > > > > >>>> > > > definition
> > > > > >>>> > > > > > > > >> > >> template #48
> > > > > >>>> > > > > > > > >> > >> or others below?
> > > > > >>>> > > > > > > > >> > >>
> > > > > >>>> > > > > > > > >> > >>
> > > > > >>>> > > > > > > > >> > >>
> > > > > >>>> > > > > > >
> > > > > >>>> > >
> > > > > >>>>
> > > >
https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table4-
> > > > > >>>> > > > > > > > >> > >> 0.shtml
> > > > > >>>> > > > > > > > >> > >>
> > > > > >>>> > > > > > > > >> > >> Here are template ids (GRIB2)
which MET
> > > > > supports:
> > > > > >>>> > > > > > > > >> > >>    0: analysis or forecast
> > > > > >>>> > > > > > > > >> > >>    1: individual ensemble
forecast,
> > control
> > > > and
> > > > > >>>> > > perturbed,
> > > > > >>>> > > > > at a
> > > > > >>>> > > > > > > > >> > >> horizontal level or in
> > > > > >>>> > > > > > > > >> > >>    2: ensemble mean
> > > > > >>>> > > > > > > > >> > >>    5: probability forecast
> > > > > >>>> > > > > > > > >> > >>    8: accumulation forecast
> > > > > >>>> > > > > > > > >> > >>    9: probabilistic accumulation
> forecast
> > > > > >>>> > > > > > > > >> > >>   11: individual ensemble
forecast,
> > control
> > > > and
> > > > > >>>> > > perturbed,
> > > > > >>>> > > > > at a
> > > > > >>>> > > > > > > > >> > >> horizontal level or in
> > > > > >>>> > > > > > > > >> > >>   12: derived accumulation
forecast
> > > > > >>>> > > > > > > > >> > >>   48: aerosol data
> > > > > >>>> > > > > > > > >> > >>
> > > > > >>>> > > > > > > > >> > >> Cheers,
> > > > > >>>> > > > > > > > >> > >> Howard
> > > > > >>>> > > > > > > > >> > >>
> > > > > >>>> > > > > > > > >> > >> On Tue Jun 11 09:49:46 2019,
> > > > > >>>> ho-chun.huang at noaa.gov
> > > > > >>>> > > wrote:
> > > > > >>>> > > > > > > > >> > >> > To Whom It May Concern:
> > > > > >>>> > > > > > > > >> > >> >
> > > > > >>>> > > > > > > > >> > >> > There is an error message on
using the
> > > > > >>>> > > regrid_data_plane,
> > > > > >>>> > > > > > > > >> > >> > please
> > > > > >>>> > > > > > > > >> > >> > help
> > > > > >>>> > > > > > > > >> > >> me to
> > > > > >>>> > > > > > > > >> > >> > debug the root of error.
> > > > > >>>> > > > > > > > >> > >> >
> > > > > >>>> > > > > > > > >> > >> > DEBUG 1: Reading data file:
> > > > > >>>> > > > > > > > >> > >> >
> > > > > >>>> > OR_ABI-L2-AODC-
M6_G16_s20191591001457_e20191591004230_
> > > > > >>>> > > > > > > > >> > >> c20191591005286.nc
> > > > > >>>> > > > > > > > >> > >> > WARNING:
> > > > > >>>> > > > > > > > >> > >> > WARNING:
> MetGrib2DataFile::data_plane()
> > ->
> > > > > >>>> unexpected
> > > > > >>>> > > PDS
> > > > > >>>> > > > > > > > >> > >> > template
> > > > > >>>> > > > > > > > >> > >> number
> > > > > >>>> > > > > > > > >> > >> > (46) may cause unexpected
results.
> > Please
> > > > > email
> > > > > >>>> > > > > > > > >> > >> > met_help at ucar.edu.
> > > > > >>>> > > > > > > > >> > >> > WARNING:
> > > > > >>>> > > > > > > > >> > >> > run.sh: line 7: 38040
Segmentation
> fault
> > > > > >>>> (core
> > > > > >>>> > > > dumped)
> > > > > >>>> > > > > > > > >> > >> > regrid_data_plane
> > > > > >>>> > > > > > > > >> > >> >
> > > > > >>>> > OR_ABI-L2-AODC-
M6_G16_s20191591001457_e20191591004230_
> > > > > >>>> > > > > > > > >> > >> c20191591005286.nc
> > > > > >>>> > > > > > > > >> > >> > aqm.t06z.aot.f06.148.grib2
> > > > > >>>> > > OBS_AOD_aqm_g16_20190608_10.nc
> > > > > >>>> > > > > > > > >> > >> > -field
> > > > > >>>> > > > > > > > >> > >> > 'name="AOD"; level="*";'
-method
> UW_MEAN
> > > -v
> > > > 1
> > > > > >>>> -qc 0
> > > > > >>>> > > > > > > > >> > >> >
> > > > > >>>> > > > > > > > >> > >> > The files, script, and log can
be
> found
> > in
> > > > > >>>> > > > > > > > >> > >> >
> > > > > >>>> https://www.emc.ncep.noaa.gov/mmb/hchuang/methelp/
> > > > > >>>> > > > > > > > >> > >> >
> > > > > >>>> > > > > > > > >> > >> > I notice in 8.1 you no longer
need the
> > > > -coord
> > > > > >>>> option
> > > > > >>>> > > that
> > > > > >>>> > > > > 8.0
> > > > > >>>> > > > > > > > >> > >> > needs.
> > > > > >>>> > > > > > > > >> > >> >
> > > > > >>>> > > > > > > > >> > >> > The output nc file only
contains la
> and
> > > lon
> > > > > but
> > > > > >>>> no
> > > > > >>>> > > > mapping
> > > > > >>>> > > > > > > > >> > >> > AOD.
> > > > > >>>> > > > > > > > >> > >> >
> > > > > >>>> > > > > > > > >> > >> > Than you for your help.
> > > > > >>>> > > > > > > > >> > >> >
> > > > > >>>> > > > > > > > >> > >> > Ho-Chun Huang
> > > > > >>>> > > > > > > > >> > >>
> > > > > >>>> > > > > > > > >> > >>
> > > > > >>>> > > > > > > > >> > >>
> > > > > >>>> > > > > > > > >> > >>
> > > > > >>>> > > > > > > > >>
> > > > > >>>> > > > > > > > >>
> > > > > >>>> > > > > > > > >>
> > > > > >>>> > > > > > > > >>
> > > > > >>>> > > > > > >
> > > > > >>>> > > > > > >
> > > > > >>>> > > > > > >
> > > > > >>>> > > > > > >
> > > > > >>>> > > > > >
> > > > > >>>> > > > > >
> > > > > >>>> > > > >
> > > > > >>>> > > > > --
> > > > > >>>> > > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> > > > > >>>> > > > > Tara Jensen
> > > > > >>>> > > > > Project Manager II
> > > > > >>>> > > > > NCAR RAL and DTC
> > > > > >>>> > > > > PO Box 3000, Boulder, Colorado 80307 USA
> > > > > >>>> > > > > +1 303-497-8479          jensen at ucar.edu
> > > > > >>>> > > > >
> > > > > >>>> > > > >
> > > > > >>>> > > >
> > > > > >>>> > > >
> > > > > >>>> > >
> > > > > >>>> > >
> > > > > >>>> >
> > > > > >>>> >
> > > > > >>>>
> > > > > >>>>
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >
> >
> >
>
>

------------------------------------------------


More information about the Met_help mailing list