[Met_help] [rt.rap.ucar.edu #97955] History for ensemble_stat

John Halley Gotway via RT met_help at ucar.edu
Mon Dec 21 11:25:12 MST 2020


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

Hello,


I am working with MET_5.2.
I am trying to calculate some ensemble product fields using ensemble_stat with grided NetCDF files produced by NCL. 


Following is a snippet of settings in the config_file:
ens = {
   ens_thresh = 0.5;
   vld_thresh = 1.0;


   field = [
      {
         name       = "qxflux";
         level      = "(0,*,*)";
         cat_thresh = [ NA ];
      }
   ];
}


Following is the attribute of qxflux:
      float qxflux ( lev, ny, nx )
         valid_time_ut :1597168800
         valid_time :20200811_180000
         init_time_ut :1597147200
         init_time :20200811_120000
         long_name :vapor flux in x-direction
         _FillValue :-9999


The command Line is:
/public/home/ranlk/jiaobf/ens_post/MET-5.2/met-5.2_bugfix/bin/ensemble_stat 3    \
/data/ranlk/jiaobf/ens_post_module/output/2020081100/p01/upp/test.2020-08-11_18:00:00.nc  \
/data/ranlk/jiaobf/ens_post_module/output/2020081100/p02/upp/test.2020-08-11_18:00:00.nc  \
/data/ranlk/jiaobf/ens_post_module/output/2020081100/p03/upp/test.2020-08-11_18:00:00.nc           \
/data/ranlk/jiaobf/ens_post_module/output/2020081100/EnsembleStatConfig_test \
-outdir /data/ranlk/jiaobf/ens_post_module/output/2020081100


the following error is reported


I have only worked with GRIB data, so it is not clear whether NetCDF  format is supported.  Or, does the NC file need any special processing?


Looking forward to your reply.



Thanks in advance,
Jiao B. F.
The Institute of Atmospheric Physics, Chinese Academy of Sciences

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

Subject: ensemble_stat
From: 焦宝峰
Time: Sun Dec 20 05:02:06 2020

Hello,


I have solved this problem after taking a close look at the attribute
of NC file produced by pcp_combine tool.


The NC files I created before have only one dimension on latitude and
longitude, such as:
      float lat ( ny )
         long_name :    latitude
         GridType :    Mercator Projection Grid
         units :    degrees_north
ensemble_stat works well after the longitude and latitude become two
dimensional variables using 'conform' in NCL.
      float lat ( lat, lon )
         standard_name :    latitude
         long_name :    latitude
         GridType :    Mercator Projection Grid
         units :    degrees_north




Thanks,
Jiao B. F.
The Institute of Atmospheric Physics, Chinese Academy of Sciences
On 12/19/2020 22:52,met_help at ucar.edu via RT<met_help at ucar.edu> wrote:
THE MET SUPPORT STAFF WILL HAVE LIMITED AVAILABILITY DURING THE WINTER
HOLIDAYS FROM 12/21/2020 THROUGH 1/4/2021 AND RESPONSES MAY BE
DELAYED.

Greetings,

This message has been automatically generated in response to the
creation of a trouble ticket regarding:
"ensemble_stat",
a summary of which appears below.

There is no need to reply to this message right now.  Your ticket has
been assigned an ID of [rt.rap.ucar.edu #97955].

Please include the string:

[rt.rap.ucar.edu #97955]

in the subject line of all future correspondence about this issue. To
do so, you may reply to this message.

For more information, please see:

MET Online Tutorial:
https://www.dtcenter.org/met/users/support/online_tutorial/index.php

MET Users Guide:
https://www.dtcenter.org/met/users/docs/overview.php

MET FAQs:
https://www.dtcenter.org/met/users/support/faqs/index.php

MET-Help Email Archive:
http://mailman.ucar.edu/pipermail/met_help

Thank you,
met_help at ucar.edu

-------------------------------------------------------------------------
Hello,


I am working with MET_5.2.
I am trying to calculate some ensemble product fields using
ensemble_stat with grided NetCDF files produced by NCL.


Following is a snippet of settings in the config_file:
ens = {
ens_thresh = 0.5;
vld_thresh = 1.0;


field = [
{
name       = "qxflux";
level      = "(0,*,*)";
cat_thresh = [ NA ];
}
];
}


Following is the attribute of qxflux:
float qxflux ( lev, ny, nx )
valid_time_ut :1597168800
valid_time :20200811_180000
init_time_ut :1597147200
init_time :20200811_120000
long_name :vapor flux in x-direction
_FillValue :-9999


The command Line is:
/public/home/ranlk/jiaobf/ens_post/MET-5.2/met-
5.2_bugfix/bin/ensemble_stat 3    \
/data/ranlk/jiaobf/ens_post_module/output/2020081100/p01/upp/test.2020-
08-11_18:00:00.nc  \
/data/ranlk/jiaobf/ens_post_module/output/2020081100/p02/upp/test.2020-
08-11_18:00:00.nc  \
/data/ranlk/jiaobf/ens_post_module/output/2020081100/p03/upp/test.2020-
08-11_18:00:00.nc           \
/data/ranlk/jiaobf/ens_post_module/output/2020081100/EnsembleStatConfig_test
\
-outdir /data/ranlk/jiaobf/ens_post_module/output/2020081100


the following error is reported


I have only worked with GRIB data, so it is not clear whether NetCDF
format is supported.  Or, does the NC file need any special
processing?


Looking forward to your reply.



Thanks in advance,
Jiao B. F.
The Institute of Atmospheric Physics, Chinese Academy of Sciences

------------------------------------------------
Subject: ensemble_stat
From: John Halley Gotway
Time: Mon Dec 21 11:25:05 2020

Great, thanks for letting us know you were able to figure out this
issue.

Please be aware that the latest version of MET, version 9.1.1,
includes
many upgrades and bugfixes over version 5.2. And development for
version
10.0.0 in late spring 2021 is underway.

I'd recommend upgrading to a newer version when possible.

Thanks,
John Halley Gotway

On Sun, Dec 20, 2020 at 5:02 AM 焦宝峰 via RT <met_help at ucar.edu> wrote:

>
> <URL: https://rt.rap.ucar.edu/rt/Ticket/Display.html?id=97955 >
>
> Hello,
>
>
> I have solved this problem after taking a close look at the
attribute of
> NC file produced by pcp_combine tool.
>
>
> The NC files I created before have only one dimension on latitude
and
> longitude, such as:
>       float lat ( ny )
>          long_name :    latitude
>          GridType :    Mercator Projection Grid
>          units :    degrees_north
> ensemble_stat works well after the longitude and latitude become two
> dimensional variables using 'conform' in NCL.
>       float lat ( lat, lon )
>          standard_name :    latitude
>          long_name :    latitude
>          GridType :    Mercator Projection Grid
>          units :    degrees_north
>
>
>
>
> Thanks,
> Jiao B. F.
> The Institute of Atmospheric Physics, Chinese Academy of Sciences
> On 12/19/2020 22:52,met_help at ucar.edu via RT<met_help at ucar.edu>
wrote:
> THE MET SUPPORT STAFF WILL HAVE LIMITED AVAILABILITY DURING THE
WINTER
> HOLIDAYS FROM 12/21/2020 THROUGH 1/4/2021 AND RESPONSES MAY BE
DELAYED.
>
> Greetings,
>
> This message has been automatically generated in response to the
creation
> of a trouble ticket regarding:
> "ensemble_stat",
> a summary of which appears below.
>
> There is no need to reply to this message right now.  Your ticket
has been
> assigned an ID of [rt.rap.ucar.edu #97955].
>
> Please include the string:
>
> [rt.rap.ucar.edu #97955]
>
> in the subject line of all future correspondence about this issue.
To do
> so, you may reply to this message.
>
> For more information, please see:
>
> MET Online Tutorial:
> https://www.dtcenter.org/met/users/support/online_tutorial/index.php
>
> MET Users Guide:
> https://www.dtcenter.org/met/users/docs/overview.php
>
> MET FAQs:
> https://www.dtcenter.org/met/users/support/faqs/index.php
>
> MET-Help Email Archive:
> http://mailman.ucar.edu/pipermail/met_help
>
> Thank you,
> met_help at ucar.edu
>
>
-------------------------------------------------------------------------
> Hello,
>
>
> I am working with MET_5.2.
> I am trying to calculate some ensemble product fields using
ensemble_stat
> with grided NetCDF files produced by NCL.
>
>
> Following is a snippet of settings in the config_file:
> ens = {
> ens_thresh = 0.5;
> vld_thresh = 1.0;
>
>
> field = [
> {
> name       = "qxflux";
> level      = "(0,*,*)";
> cat_thresh = [ NA ];
> }
> ];
> }
>
>
> Following is the attribute of qxflux:
> float qxflux ( lev, ny, nx )
> valid_time_ut :1597168800
> valid_time :20200811_180000
> init_time_ut :1597147200
> init_time :20200811_120000
> long_name :vapor flux in x-direction
> _FillValue :-9999
>
>
> The command Line is:
> /public/home/ranlk/jiaobf/ens_post/MET-5.2/met-
5.2_bugfix/bin/ensemble_stat
> 3    \
>
>
/data/ranlk/jiaobf/ens_post_module/output/2020081100/p01/upp/test.2020-
08-11_18:00:
> 00.nc  \
>
>
/data/ranlk/jiaobf/ens_post_module/output/2020081100/p02/upp/test.2020-
08-11_18:00:
> 00.nc  \
>
>
/data/ranlk/jiaobf/ens_post_module/output/2020081100/p03/upp/test.2020-
08-11_18:00:
> 00.nc           \
>
/data/ranlk/jiaobf/ens_post_module/output/2020081100/EnsembleStatConfig_test
> \
> -outdir /data/ranlk/jiaobf/ens_post_module/output/2020081100
>
>
> the following error is reported
>
>
> I have only worked with GRIB data, so it is not clear whether NetCDF
> format is supported.  Or, does the NC file need any special
processing?
>
>
> Looking forward to your reply.
>
>
>
> Thanks in advance,
> Jiao B. F.
> The Institute of Atmospheric Physics, Chinese Academy of Sciences
>
>

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


More information about the Met_help mailing list