116 lines
5.9 KiB
C
116 lines
5.9 KiB
C
#ifndef _pdstemplates_H
|
|
#define _pdstemplates_H
|
|
#include "g2libc_inc/grib2.h"
|
|
|
|
// PRGMMR: Gilbert ORG: W/NP11 DATE: 2002-10-26
|
|
//
|
|
// ABSTRACT: This inculde file contains info on all the available
|
|
// GRIB2 Product Definition Templates used in Section 4 (PDS).
|
|
// The information decribing each template is stored in the
|
|
// pdstemplate structure defined below.
|
|
//
|
|
// Each Template has three parts: The number of entries in the template
|
|
// (mappdslen); A map of the template (mappds), which contains the
|
|
// number of octets in which to pack each of the template values; and
|
|
// a logical value (needext) that indicates whether the Template needs
|
|
// to be extended. In some cases the number of entries in a template
|
|
// can vary depending upon values specified in the "static" part of
|
|
// the template. ( See Template 4.3 as an example )
|
|
//
|
|
// NOTE: Array mappds contains the number of octets in which the
|
|
// corresponding template values will be stored. A negative value in
|
|
// mappds is used to indicate that the corresponding template entry can
|
|
// contain negative values. This information is used later when packing
|
|
// (or unpacking) the template data values. Negative data values in GRIB
|
|
// are stored with the left most bit set to one, and a negative number
|
|
// of octets value in mappds[] indicates that this possibility should
|
|
// be considered. The number of octets used to store the data value
|
|
// in this case would be the absolute value of the negative value in
|
|
// mappds[].
|
|
//
|
|
//
|
|
//$$$
|
|
|
|
#define MAXPDSTEMP 23 // maximum number of templates
|
|
#define MAXPDSMAPLEN 200 // maximum template map length
|
|
|
|
struct pdstemplate
|
|
{
|
|
g2int template_num;
|
|
g2int mappdslen;
|
|
g2int needext;
|
|
g2int mappds[MAXPDSMAPLEN];
|
|
};
|
|
|
|
const struct pdstemplate templatespds[MAXPDSTEMP] = {
|
|
// 4.0: Analysis or Forecast at Horizontal Level/Layer
|
|
// at a point in time
|
|
{0,15,0, {1,1,1,1,1,2,1,1,4,1,-1,4,1,-1,4} },
|
|
// 4.1: Individual Ensemble Forecast at Horizontal Level/Layer
|
|
// at a point in time
|
|
{1,18,0, {1,1,1,1,1,2,1,1,4,1,-1,4,1,-1,4,1,1,1} },
|
|
// 4.2: Derived Fcst based on whole Ensemble at Horiz Level/Layer
|
|
// at a point in time
|
|
{2,17,0, {1,1,1,1,1,2,1,1,4,1,-1,4,1,-1,4,1,1} },
|
|
// 4.3: Derived Fcst based on Ensemble cluster over rectangular
|
|
// area at Horiz Level/Layer at a point in time
|
|
{3,31,1, {1,1,1,1,1,2,1,1,4,1,-1,4,1,-1,4,1,1,1,1,1,1,1,-4,-4,4,4,1,-1,4,-1,4} },
|
|
// 4.4: Derived Fcst based on Ensemble cluster over circular
|
|
// area at Horiz Level/Layer at a point in time
|
|
{4,30,1, {1,1,1,1,1,2,1,1,4,1,-1,4,1,-1,4,1,1,1,1,1,1,1,-4,4,4,1,-1,4,-1,4} },
|
|
// 4.5: Probablility Forecast at Horiz Level/Layer
|
|
// at a point in time
|
|
{5,22,0, {1,1,1,1,1,2,1,1,4,1,-1,4,1,-1,4,1,1,1,1,4,1,4} },
|
|
// 4.6: Percentile Forecast at Horiz Level/Layer
|
|
// at a point in time
|
|
{6,16,0, {1,1,1,1,1,2,1,1,4,1,-1,4,1,-1,4,1} },
|
|
// 4.7: Analysis or Forecast Error at Horizontal Level/Layer
|
|
// at a point in time
|
|
{7,15,0, {1,1,1,1,1,2,1,1,4,1,-1,4,1,-1,4} },
|
|
// 4.8: Ave/Accum/etc... at Horiz Level/Layer
|
|
// in a time interval
|
|
{8,29,1, {1,1,1,1,1,2,1,1,4,1,-1,4,1,-1,4,2,1,1,1,1,1,1,4,1,1,1,4,1,4} },
|
|
// 4.9: Probablility Forecast at Horiz Level/Layer
|
|
// in a time interval
|
|
{9,36,1, {1,1,1,1,1,2,1,1,4,1,-1,4,1,-1,4,1,1,1,-1,4,-1,4,2,1,1,1,1,1,1,4,1,1,1,4,1,4} },
|
|
// 4.10: Percentile Forecast at Horiz Level/Layer
|
|
// in a time interval
|
|
{10,30,1, {1,1,1,1,1,2,1,1,4,1,-1,4,1,-1,4,1,2,1,1,1,1,1,1,4,1,1,1,4,1,4} },
|
|
// 4.11: Individual Ensemble Forecast at Horizontal Level/Layer
|
|
// in a time interval
|
|
{11,32,1, {1,1,1,1,1,2,1,1,4,1,-1,4,1,-1,4,1,1,1,2,1,1,1,1,1,1,4,1,1,1,4,1,4} },
|
|
// 4.12: Derived Fcst based on whole Ensemble at Horiz Level/Layer
|
|
// in a time interval
|
|
{12,31,1, {1,1,1,1,1,2,1,1,4,1,-1,4,1,-1,4,1,1,2,1,1,1,1,1,1,4,1,1,1,4,1,4} },
|
|
// 4.13: Derived Fcst based on Ensemble cluster over rectangular
|
|
// area at Horiz Level/Layer in a time interval
|
|
{13,45,1, {1,1,1,1,1,2,1,1,4,1,-1,4,1,-1,4,1,1,1,1,1,1,1,-4,-4,4,4,1,-1,4,-1,4,2,1,1,1,1,1,1,4,1,1,1,4,1,4} },
|
|
// 4.14: Derived Fcst based on Ensemble cluster over circular
|
|
// area at Horiz Level/Layer in a time interval
|
|
{14,44,1, {1,1,1,1,1,2,1,1,4,1,-1,4,1,-1,4,1,1,1,1,1,1,1,-4,4,4,1,-1,4,-1,4,2,1,1,1,1,1,1,4,1,1,1,4,1,4} },
|
|
// 4.20: Radar Product
|
|
{20,19,0, {1,1,1,1,1,-4,4,2,4,2,1,1,1,1,1,2,1,3,2} },
|
|
// 4.30: Satellite Product
|
|
{30,5,1, {1,1,1,1,1} },
|
|
// 4.254: CCITT IA5 Character String
|
|
{254,3,0, {1,1,4} },
|
|
// 4.1000: Cross section of analysis or forecast
|
|
// at a point in time
|
|
{1000,9,0, {1,1,1,1,1,2,1,1,4} },
|
|
// 4.1001: Cross section of Ave/Accum/etc... analysis or forecast
|
|
// in a time interval
|
|
{1001,16,0, {1,1,1,1,1,2,1,1,4,4,1,1,1,4,1,4} },
|
|
// 4.1001: Cross section of Ave/Accum/etc... analysis or forecast
|
|
// over latitude or longitude
|
|
{1002,15,0, {1,1,1,1,1,2,1,1,4,1,1,1,4,4,2} },
|
|
// 4.1100: Hovmoller-type grid w/ no averaging or other
|
|
// statistical processing
|
|
{1100,15,0, {1,1,1,1,1,2,1,1,4,1,-1,4,1,-1,4} },
|
|
// 4.1100: Hovmoller-type grid with averaging or other
|
|
// statistical processing
|
|
{1101,22,0, {1,1,1,1,1,2,1,1,4,1,-1,4,1,-1,4,4,1,1,1,4,1,4} }
|
|
|
|
} ;
|
|
|
|
|
|
#endif /* _pdstemplates_H */
|