home *** CD-ROM | disk | FTP | other *** search
/ Photo CD Demo 1 / Demo.bin / formats / frmt_84 / frmt_n84
Text File  |  1980-02-04  |  77KB  |  2,311 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.                                     NMC Office Note 84
  8.                                              
  9.                                 Packing and Identification
  10.                                             of
  11.                                    NMC Grid-Point Data
  12.  
  13.  
  14.  
  15.         INTRODUCTION
  16.  
  17.                  The purpose of this Office Note is to provide information
  18.             related to NMC grid point data fields.  It describes the data
  19.             structure used and presents the rationale and details involved in
  20.             identifying and packing the fields.  Because of the availability
  21.             and efficiency of existing software as well as the convenience of
  22.             augmenting existing data sets, a large number of requirements have
  23.             been accommodated since the procedures were first introduced years
  24.             ago.  As might be expected, some exceptions to these procedures
  25.             have crept into usage.  These involve a minor amount of non-
  26.             conformity to the ON84 standard units and to the usual packing
  27.             procedures.  These exceptions, where known, are indicated.
  28.  
  29.  
  30.             NMC PACKED BINARY DATA FORMAT
  31.  
  32.                   Most NMC grid point data fields are packed by transforming
  33.             32-bit IBM floating point numbers into 16-bit IBM halfword
  34.             integers using a scaling algorithm which will be described later.
  35.             A 12-word label which prefaces each data array serves two
  36.             purposes:  1) it uniquely identifies the data field for retrieval
  37.             of the data set from where it is stored, and 2) it contains count
  38.             and scaling information so that the data, which follows the label,
  39.             may be unpacked and converted back into an array of floating point
  40.             numbers.   Spectral coefficients are stored without packing.  In
  41.             this case, each complex coefficient is composed of two 32-bit IBM
  42.             floating point real numbers.
  43.  
  44.  
  45.             DATA PACKING AND UNPACKING
  46.  
  47.                   The most common method for scaling and packing the data is
  48.             as follows.
  49.  
  50.                   First, compute a reference value  A  by finding the maximum
  51.             and minimum data values,  QMAX  and  QMIN, respectively.  Use
  52.             these two values to determine the mid-range of the data array:
  53.  
  54.                                     A = (QMAX + QMIN) / 2.0
  55.  
  56.                   Next, find the binary scaling value  n, the least integer
  57.             such that:
  58.  
  59.                                       (QMAX - A) <  2**n
  60.  
  61.  
  62.             88-01-01                   1                    NMC Office Note 84
  63.             
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.              The reference value  A  is stored as a 32-bit IBM floating
  74.        point number in word 10 of the 12-word label.  The binary scaling
  75.        value  n  is stored as an IBM halfword integer in the right half
  76.        of word 11.  (See Figure 1.)
  77.  
  78.              Then the data array is scaled according to:
  79.  
  80.                        H(j) = (Q(j) - A) * 2**(15 - n),  j=1,J
  81.  
  82.        where  Q(j)  is a 32-bit IBM floating point number to be packed,
  83.        and  J  is the number of data points to be packed.  The scaled
  84.        values  H(j)  are rounded, converted to halfword integers, and
  85.        stored in sequence following word 12 of the label.  If the field
  86.        is of two dimensions or more, the points are taken in the order
  87.        they occur in storage.  J  will be the product of the dimensions.
  88.        Negative values of  n  as well as negative values of  H(j)  are
  89.        stored in standard IBM two's complement form.
  90.        
  91.              NMC data fields can be packed and unpacked following the
  92.        method just described with library subroutines W3AI00 and W3AI01.
  93.        The casual users of NMC packed fields need not concern themselves
  94.        further with the packing details except to note that signed values
  95.        with 15-bit precision are maintained. The precision of the data
  96.        that is retained by the scaling algorithm depends inversely on the
  97.        range of values in the original array; i.e., the smaller the
  98.        range, the greater the precision retained.  The procedure of using
  99.        a reference value which is the mid-range of the data array and
  100.        forming anomalies for packing yields the same precision as using a
  101.        reference level which is the minimum value of the data array and
  102.        forming positive anomalies packed into 16-bit halfwords.  The
  103.        functions IW3GET and IW3PUT have the unpacking and packing
  104.        subroutines built in for the convenience of the user.
  105.  
  106.              In packing a data field, the reference value  A  and the
  107.        scaling factor  n  can, of course be preset by the creator of the
  108.        field rather than using the packing subroutine (W3AI00). This
  109.        procedure affects only the precision of the data generated and
  110.        does not prohibit the use of the unpacking subroutine (W3AI01), as
  111.        long as all 12 label words are properly set.
  112.  
  113.  
  114.        IDENTIFYING THE DATA FIELDS
  115.  
  116.              Each packed data field is uniquely identified in the first 5
  117.        words of its 12-word label.  These 5 words specify the data type,
  118.        the type and value of the (constant) surface on which the data are
  119.        given, the forecast (projection) time (including the value zero),
  120.        the grid type, and any other parameters needed.
  121.  
  122.              Most NMC data fields can be thought of as some quantity  Q
  123.        on a horizontal or quasi-horizontal surface  S  at some level
  124.        value  L. For example, a 500-mb height field would be identified
  125.        by specifying  Q = height,  S = pressure, and  L = 500.  Another
  126.        example is  Q = pressure,  S = mean sea level, and  L = 0 (not
  127.  
  128.        88-01-01                   2                    NMC Office Note 84
  129.        
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137.  
  138.  
  139.             applicable).  If the quantity  Q  is for a layer, the domain of
  140.             the layer is given by  S1  at  L1  and  S2  at  L2.  In this case,
  141.             the surface of  S1  is the one physically above the surface of S2.
  142.             For example, the thickness of the (500/1000)-mb layer is specified
  143.             by Q = height,  S1 and S2 = pressure,  L1 = 500, and  L2 = 1000.
  144.             Another possibility is that the quantity  Q  is formed by
  145.             differencing two fields of the same data type, e.g., constant
  146.             pressure height for different levels (thickness) or constant
  147.             pressure height for the same level for different times (tendency).
  148.             The identifications for these examples, as well as for many other
  149.             possibilities, can be constructed by carefully considered
  150.             combinations of the markers T,  M,  X,  and  N, as described in
  151.             Tables 2 through 5, below.
  152.  
  153.                   The numerical value of the level  L  for the corresponding
  154.             surface  S  is coded in words 2 and 4 of the label as follows.
  155.  
  156.                   Represent  L  as:
  157.  
  158.                                          L = C * 10**E
  159.  
  160.                  where  C  is a 5-digit signed decimal integer whose high-
  161.             order digit is non-zero unless  L  itself is zero, and  E  is a
  162.             signed integer, zero if  L  is zero.  For example, if  L = 500:
  163.  
  164.                                            C = 50000
  165.  
  166.                                             E = -2
  167.  
  168.             so that:
  169.             
  170.                                      L = 50000 * 10**(-2)
  171.  
  172.                   Again, if L = 0.83333
  173.  
  174.                                            C = 83333
  175.  
  176.                                             E = -5
  177.  
  178.             so that:
  179.             
  180.                                      L = 83333 * 10**(-5)
  181.  
  182.  
  183.             LABEL ELEMENT VALUES
  184.  
  185.                   Table 1 gives the code figures for  Q  and  S, the data type
  186.             and surface.
  187.  
  188.                   Table 2 gives the values for the marker  T  which is used to
  189.             specify time intervals.  It also explains how the values of  F1
  190.             and  F2  are to be specified.
  191.  
  192.  
  193.  
  194.             88-01-01                   3                    NMC Office Note 84
  195.             
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202.  
  203.  
  204.  
  205.              Table 3 gives values for the marker  M  which is used to
  206.        specify data fields involving layers, and to indicate whether
  207.        fields have been initialized.
  208.  
  209.              Table 4 gives values to be used for the exception marker  X,
  210.        which is used to specify a data field whose date/time (YYMMDDII)
  211.        precedes that of the date/time found in the data set identifier
  212.        table.  (This option is used, for example, to store first guess
  213.        fields from an earlier cycle in a current cycle data set).
  214.  
  215.              Table 5 gives values for the miscellaneous marker  N, which
  216.        is used to specify types of spectral coefficient data and also to
  217.        indicate that forecast times are in units of half days rather than
  218.        hours.
  219.  
  220.              Table 6 gives values for the markers  CM  and  CD  which
  221.        specify climatological data fields.
  222.  
  223.              Table 7 gives values for the marker  K  which identifies the
  224.        grid for which the data are given.  Table 7 lists a combination of
  225.        grids currently in operational use at NMC as well as others which
  226.        have been used in the past.  The grids thought to be active as of
  227.        the date of this Office Note are so indicated in the table.
  228.  
  229.              The vertical grid lines of an NMC grid can be considered
  230.        columns (i) and the horizontal grid lines can be considered rows
  231.        (j). The coordinate system is the normal right-hand cartesian
  232.        system in which  i  increases from left to right and  j  increases
  233.        from bottom to top.  Grid point values for the columns are stored
  234.        in consecutive array locations starting with the bottom row.
  235.        Succeeding rows are stored in a like manner progressing from the
  236.        bottom to the top of the grid.  This follows the usual FORTRAN
  237.        indexing procedure for a two-dimensional array.
  238.  
  239.              For polar stereographic projection grids, the orientation is
  240.        defined as the longitude value 1) which parallels the vertical
  241.        grid lines and 2) for which latitude increases as  j increases.
  242.        This longitude may lie within or without the domain of the grid
  243.        and may or may not coincide with a grid line.
  244.  
  245.              Table 8 gives the values for the marker  KS  which
  246.        identifies how the field was derived; e.g., by spectral methods,
  247.        by departures from climatological normals, etc.
  248.  
  249.             Values from the tables described above, used in combination
  250.        with values for surfaces (C1,E1  and  C2,E2) and values for
  251.        forecast hours  F1  and F2, are sufficient to identify a data
  252.        field.
  253.  
  254.              Word 6 is for internal (computer) use and can be ignored.
  255.  
  256.              Word 7 gives the date and time of either the nominal
  257.        observation time of the data used in the analysis, or the initial
  258.        time of the forecast.  The time  II  is specified in Universal
  259.  
  260.        88-01-01                   4                    NMC Office Note 84
  261.        
  262.  
  263.  
  264.  
  265.  
  266.  
  267.  
  268.  
  269.  
  270.  
  271.             Coordinated Time (UTC) in hours:  00-23.  For example, for
  272.             midnight UTC  II = 00, for noon UTC  II = 12.  YY is the year of
  273.             the century, 00-99,  MM  is the month of the year, 1-12, and  DD
  274.             is the day of the month, 1-31.  The date and time are entered as
  275.             8-bit integers in the format YYMMDDII.
  276.  
  277.                   The remainder of the label should be filled out as shown in
  278.             Figure 1.  Note that most users rely upon standard NMC library
  279.             subroutines to accomplish packing the data.  These subroutines
  280.             will also initialize words 9 and 10 and the scaling value in word
  281.             11.  The user must supply  J, the number of data points, in word 8
  282.             for the packing subroutine (W3AI01).
  283.  
  284.                   Table 9 gives the values of the marker  R  which specifies
  285.             the run within the cycle.
  286.  
  287.                   Table 10 gives the values for the marker  G  which specifies
  288.             the program which generated the field.  Programs which are
  289.             currently in operational use as of the date of this Office Note
  290.             are so indicated.
  291.  
  292.                   Tables 9 and 10 are intended primarily for internal NMC use.
  293.             The markers  R  and  G  in some data fields may have these
  294.             parameters specified in a manner other than that given in this
  295.             Office Note.
  296.  
  297.                   Table 11 contains the hexadecimal representations of some
  298.             commonly used values of  C.  Negative values of  C  and  E  are
  299.             indicated by turning on the high-order bit of these parameters,
  300.             thus using sign-and-magnitude representation.
  301.  
  302.                   Table 12 shows some examples of identifying some commonly
  303.             generated data fields.
  304.  
  305.                   Table 13 gives the values for the marker  P  which specifies
  306.             the number of bits which have been used to pack each grid point
  307.             value. While the most common number of bits used is 16 (for which
  308.             P = 0), there are some fields which have been packed using fewer
  309.             bits.  In these cases, the data array is scaled according to:
  310.  
  311.                           H(j) = (Q(j) - A) * 2**((P-1) - n),  j=1,J
  312.  
  313.  
  314.  
  315.  
  316.  
  317.  
  318.  
  319.  
  320.  
  321.  
  322.  
  323.  
  324.  
  325.  
  326.             88-01-01                   5                    NMC Office Note 84
  327.             
  328.  
  329.  
  330.  
  331.  
  332.  
  333.  
  334.  
  335.  
  336.  
  337.                                Table 1 - Q and S
  338.                                         
  339.                             PARAMETERS AND SURFACES
  340.             
  341.  
  342.          Number   Abbreviation        Item                   Units
  343.        Hex   Dec      (*)
  344.        -----------------------------------------------------------------
  345.        
  346.                             Height wrt mean sea level
  347.          1     1    -HGT--    Geopotential                   gpm
  348.          2     2    -P-ALT    Pressure altitude              gpm
  349.        
  350.        
  351.                             Distance wrt Earth's surface
  352.          6     6    -DIST-    Geometric distance above       m
  353.          7     7    -DEPTH    Geometric distance below       m
  354.        
  355.          8     8    -PRES-    Atmospheric pressure           mb
  356.          9     9    -PTEND    Pressure tendency              mb/sec
  357.        
  358.        
  359.                             Temperature
  360.         10    16    -TMP--    Atmospheric temperature        degree K
  361.         11    17    -DPT--    Dewpoint temperature           degree K
  362.         12    18    -DEPR-    Dewpoint depression            degree K
  363.         13    19    -POT--    Potential temperature          degree K
  364.         14    20    -T-MAX    Maximum temperature            degree K
  365.         15    21    -T-MIN    Minimum temperature            degree K
  366.         16    22    -TSOIL    Soil temperature               degree K
  367.        
  368.        
  369.                             Vertical motion
  370.         28    40    -V-VEL    Vertical velocity dp/dt        mb/sec
  371.         29    41    -NETVD    Net vertical displacement      mb
  372.         2A    42    -DZDT-    Vertical velocity dz/dt        m/sec
  373.         2B    43    -OROW-    Orographic component dz/dt     m/sec
  374.         2C    44    -FRCVV    Frictional component dz/dt     m/sec
  375.        
  376.        
  377.                             Wind
  378.         30    48    -U-GRD    U comp. of wind wrt grid       m/sec
  379.         31    49    -V-GRD    V comp. of wind wrt grid       m/sec
  380.         32    50    -WIND-    Wind speed                     m/sec
  381.         33    51    -T-WND    Thermal wind speed             m/sec
  382.         34    52    -VW-SH    Vertical speed shear           1/sec
  383.         35    53    -U-DIV    Divergent u comp wrt grid      m/sec
  384.         36    54    -V-DIV    Divergent v comp wrt grid      m/sec
  385.  
  386.  
  387.  
  388.  
  389.  
  390.  
  391.  
  392.        88-01-01                   6                    NMC Office Note 84
  393.        
  394.  
  395.  
  396.  
  397.  
  398.  
  399.  
  400.  
  401.  
  402.  
  403.               Number   Abbreviation        Item                   Units
  404.             Hex   Dec      (*)       Table 1 - Q and S (cont)
  405.             -----------------------------------------------------------------
  406.             
  407.              37    55    -WDIR-    Direction from which wind is   degree
  408.                                      blowing (wrt North)
  409.              38    56    -WWND-    Westerly comp. of wind         m/sec
  410.              39    57    -SWND-    Southerly comp. of wind        m/sec
  411.              3A    58    -RATS-    Ratio of speeds                non-dim.
  412.              3B    59    -VECW-    Vector wind (spectral)         m/sec
  413.              3C    60    -SFAC-    Steadiness factor              percent
  414.              3D    61    -GUST-    Wind gustiness                 m/sec
  415.              3E    62    D-DUDT    Diffusive u-comp. accel.       m/sec**2
  416.              3F    63    D-DVDT    Diffusive v-comp. accel.       m/sec**2
  417.             
  418.             
  419.                                  Fluid flow functions
  420.              48    72    -ABS-V    Absolute vorticity             1/sec
  421.              49    73    -REL-V    Relative vorticity             1/sec
  422.              4A    74    -DIV--    Divergence                     1/sec
  423.             
  424.              50    80    -STRM-    Stream function                m**2/sec
  425.              51    81    -V-POT    Velocity potential             m**2/sec
  426.             
  427.              52    82    -U-STR    Westerly comp. of wind stress  N/m**2
  428.              53    83    -V-STR    Southerly comp. of wind stress N/m**2
  429.              54    84    -TUVRD    Westerly wind comp. accelera-  N/m**2
  430.                                      tion by vertical diffusion
  431.              55    85    -TVVRD    Southerly wind comp. accelera- N/m**2
  432.                                      tion by vertical diffusion
  433.              56    86    XGWSTR    x-component of gravity wave    N/m**2
  434.                                      drag
  435.              57    87    YGWSTR    y-component of gravity wave    N/m**2
  436.                                      drag
  437.             
  438.                                  Moisture
  439.              58    88    -R-H--    Relative humidity              percent
  440.              59    89    -P-WAT    Precipitable water             kg/m**2
  441.              5A    90    -A-PCP    Accumulated total precip       meter
  442.              5B    91    -P-O-P    Probability of precipitation   percent
  443.              5C    92    -P-O-Z    Prob. of frozen precipitation  percent
  444.              5D    93    -SNO-D    Snow depth                     m
  445.              5E    94    -ACPCP    Accumulated convective precip  m
  446.              5F    95    -SPF-H    Specific humidity              kg/kg
  447.              60    96    -L-H2O    Liquid water                   kg/kg
  448.              61    97    -RRATE    Rainfall rate                  kg/m**2/sec
  449.              62    98    -TSTM-    Probability of thunderstorm    percent
  450.              63    99    -CSVR-    Conditional probability of     percent
  451.                                      severe local storm
  452.              64   100    -CTDR-    Conditional probability of     percent
  453.                                      major tornado outbreak
  454.              65   101    -MIXR-    Mixing ratio                   kg/kg
  455.              66   102    -PSVR-    Unconditional probability      percent
  456.                                      of severe local storm
  457.  
  458.             88-01-01                   7                    NMC Office Note 84
  459.             
  460.  
  461.  
  462.  
  463.  
  464.  
  465.  
  466.  
  467.  
  468.  
  469.         67   103    -MCONV    Moisture convergence           kg/kg/sec
  470.  
  471.  
  472.  
  473.  
  474.  
  475.  
  476.  
  477.  
  478.  
  479.  
  480.  
  481.  
  482.  
  483.  
  484.  
  485.  
  486.  
  487.  
  488.  
  489.  
  490.  
  491.  
  492.  
  493.  
  494.  
  495.  
  496.  
  497.  
  498.  
  499.  
  500.  
  501.  
  502.  
  503.  
  504.  
  505.  
  506.  
  507.  
  508.  
  509.  
  510.  
  511.  
  512.  
  513.  
  514.  
  515.  
  516.  
  517.  
  518.  
  519.  
  520.  
  521.  
  522.  
  523.  
  524.        88-01-01                   8                    NMC Office Note 84
  525.        
  526.  
  527.  
  528.  
  529.  
  530.  
  531.  
  532.  
  533.  
  534.  
  535.               Number   Abbreviation        Item                   Units
  536.             Hex   Dec      (*)       Table 1 - Q and S (cont)
  537.             -----------------------------------------------------------------
  538.             
  539.              68   104    -VAPP-    Vapor pressure                 mb
  540.              69   105    -NCPCP    Accumulated non-convective     m
  541.                                      precipitation
  542.              6A   106    -ICEAC    Ice accretion rate             m/s
  543.              6B   107    -NPRAT    Non-convective precip rate     kg/m**2/sec
  544.              6C   108    -CPRAT    Convective precipitation rate  kg/m**2/sec
  545.              6D   109    -TQDEP    Deep conv. moisture tndcy.     kg/kg/sec
  546.              6E   110    -TQSHL    Shallow conv. moisture tndcy.  kg/kg/sec
  547.              6F   111    -TQVDF    Vertical diffusion moisture    kg/kg/sec
  548.                                      tendency
  549.             
  550.                                  Stability
  551.              70   112    -LFT-X   @Lifted index                   degree K
  552.              71   113    -TOTOS   @Total totals                   degree K
  553.              72   114    -K-X--   @K-index                        degree K
  554.              73   115    -C-INS   @Convective instability         degree K
  555.              74   116    -4LFTX    4-layer lifted index           degree K
  556.              75   117    -A-EVP    Accumulated evaporation        meters
  557.             
  558.             
  559.                                  Wave components
  560.              78   120    -L-WAV    Long wave component of         gpm
  561.                                      geopotential
  562.              79   121    -S-WAV    Short wave component of        gpm
  563.                                      geopotential
  564.             
  565.             
  566.                                  Miscellaneous surfaces/levels
  567.              80   128    -MSL--    Mean sea level                 -----
  568.              81   129    -SFC--    Earth's surface (base of       -----
  569.                                      atmosphere)
  570.              82   130    -TRO--    Tropopause                     -----
  571.              83   131    -MWSL-    Maximum wind speed level       -----
  572.              84   132    -PLYR-    Oceanographic primary layer    -----
  573.              85   133    -A-LEV    Anemometer Level               -----
  574.              86   134    -T-AIL    Top of Aircraft Icing Layer
  575.              87   135    -B-AIL    Bottom of Aircraft Icing Layer
  576.             
  577.             
  578.                                  Sigma domain
  579.              90   144    -BDY--    Boundary                       -----
  580.              91   145    -TRS--    Troposphere                    -----
  581.              92   146    -STS--    Stratosphere                   -----
  582.              93   147    -QCP--    Quiet cap                      -----
  583.              94   148    -SIG--    Entire atmosphere              -----
  584.  
  585.  
  586.  
  587.  
  588.  
  589.  
  590.             88-01-01                   9                    NMC Office Note 84
  591.             
  592.  
  593.  
  594.  
  595.  
  596.  
  597.  
  598.  
  599.  
  600.  
  601.          Number   Abbreviation        Item                   Units
  602.        Hex   Dec      (*)       Table 1 - Q and S (cont)
  603.        -----------------------------------------------------------------
  604.        
  605.                             Miscellaneous parameters
  606.         A0   160    -DRAG-    Drag coefficient               non-dim.
  607.                                 approx. range:
  608.                                  100-1200  (on maps 5&27)
  609.                                 .001-.009 (on maps 29&30)
  610.         A1   161    -LAND-    Land/sea flag                  non-dim.
  611.                                   values: land=-1; sea=0
  612.         A2   162    -KFACT    K factors (700 mb to 500 mb    non-dim.
  613.                                 normal ratio)
  614.         A3   163    -10TSL    Conversion consts (1000 mb to  mb/m
  615.                                 sea level pressure)
  616.         A4   164    -7TSL-    Sea level pressure specifi-    mb/m
  617.                                 cation from 700 mb heights
  618.         A5   165    -RCPOP    Regression coefficients for    percent/m
  619.                                 probability of precip.
  620.         A6   166    -RCMT-    Regression coefficients for    deg K/m
  621.                                 mean temperature
  622.         A7   167    -RCMP-    Regression coefficients for    m(precip)/m
  623.                                 mean precipitation
  624.         A8   168    -ORTHP    Orthogonal pressure function   mb
  625.         A9   169    -ALBDO    Albedo                         non-dim.
  626.                                 approx. range: 0.06 - 0.80
  627.         AA   170    -ENFLX    Energy flux                    watt/m**2
  628.         AB   171    -TTHTG    Temperature tendency from      deg K/sec
  629.                                 heating
  630.         AC   172    -ENRGY    Energy statistics              (various)
  631.         AD   173    -TOTHF    Total heat flux downward       watt/m**2
  632.         AE   174    -SPEHF    Sensible + evaporative heat    watt/m**2
  633.                                 flux upward
  634.         AF   175    -SORAD    Solar heat flux downward       watt/m**2
  635.         B0   176    -LAT--    Latitude                       degree N
  636.         B1   177    -LON--    Longitude                      degree W
  637.         B2   178    -RADIC    Radar intensity                non-dim.
  638.        
  639.         B3   179    ------  @@Ceiling Height (TDL)           m
  640.         B4   180    ------  ##Visibility (TDL)               m
  641.         B5   181    ------    Liquid Precip. (Y/N) (TDL)     binary
  642.         B6   182    ------    Freezing Precip. (Y/N) (TDL)   binary
  643.         B7   183    ------    Frozen Precip. (Y/N) (TDL)     binary
  644.        
  645.         B8   184    -PROB-    Probability                    percent
  646.         B9   185    -CPROB    Conditional probability        percent
  647.         BA   186    -USTAR    Surface friction velocity      m/sec
  648.         BB   187    -TSTAR    Surface friction temperature   degree K
  649.         BC   188    -MIXHT    Mixing height                  m
  650.  
  651.  
  652.  
  653.  
  654.  
  655.  
  656.        88-01-01                   10                   NMC Office Note 84
  657.        
  658.  
  659.  
  660.  
  661.  
  662.  
  663.  
  664.  
  665.  
  666.  
  667.               Number   Abbreviation        Item                   Units
  668.             Hex   Dec      (*)       Table 1 - Q and S (cont)
  669.             -----------------------------------------------------------------
  670.             
  671.              BD   189    -MIXLY    Number of mixed layers next    (integer)
  672.                                      to the surface
  673.              BE   190    -DLRFL    Downward flux of long-wave     watt/m**2
  674.                                      radiation
  675.              BF   191    -ULRFL    Upward flux of long-wave       watt/m**2
  676.                                      radiation
  677.              C0   192    -DSRFL    Downward flux of short-wave    watt/m**2
  678.                                      radiation
  679.              C1   193    -USRFL    Upward flux of short-wave      watt/m**2
  680.                                      radiation
  681.              C2   194    -UTHFL    Upward turbulent flux of       watt/m**2
  682.                                      sensible heat
  683.              C3   195    -UTWFL    Upward turbulent flux of water kg/m**2/sec
  684.              C4   196    -TTLWR    Temperature tendency from      deg K/sec
  685.                                      long-wave radiation
  686.              C5   197    -TTSWR    Temperature tendency from      deg K/sec
  687.                                      short-wave radiation
  688.              C6   198    -TTRAD    Temperature tendency from      deg K/sec
  689.                                      all radiation
  690.              C7   199    -MSTAV    Moisture availabililty         non-dim.
  691.              C8   200    -RDNCE  **Radiance                    watt/m**2/sr/m
  692.              C9   201    -BRTMP  **Brightness temperature         degree K
  693.              CA   202    -TCOZ-  **Total column ozone             kg/m**2
  694.              CB   203    -OZMR-  **Ozone mixing ratio             kg/kg
  695.              CC   204    -SWABS    Rate of absorption of short-   watt/m**2
  696.                                      wave radiation
  697.              CD   205    -TTLRG    Temperature tendency from      deg K/sec
  698.                                      large scale precipitation
  699.              CE   206    -TTSHL    Temperature tendency from      deg K/sec
  700.                                      shallow convection
  701.              CF   207    -TTDEP    Temperature tendency from      deg K/sec
  702.                                      deep convection
  703.              D0   208    -TTVDF    Temperature tendency from      deg K/sec
  704.                                      vertical diffusion
  705.              D1   209    -STCOF    Soil thermal coefficient   joules/m**2/deg
  706.  
  707.  
  708.  
  709.  
  710.  
  711.  
  712.  
  713.  
  714.  
  715.  
  716.  
  717.  
  718.  
  719.  
  720.  
  721.  
  722.             88-01-01                   11                   NMC Office Note 84
  723.             
  724.  
  725.  
  726.  
  727.  
  728.  
  729.  
  730.  
  731.  
  732.  
  733.          Number   Abbreviation        Item                   Units
  734.        Hex   Dec      (*)       Table 1 - Q and S (cont)
  735.        -----------------------------------------------------------------
  736.        
  737.                             Cloud-cover variables
  738.         D2   210    -CDLYR    Amount of non-convective cloud non-dim.
  739.         D3   211    -CDCON    Amount of convective cloud     non-dim.
  740.         D4   212    -PBCLY    Pressure at the base of a      mb
  741.                                 non-convective cloud
  742.         D5   213    -PTCLY    Pressure at the top of a       mb
  743.                                 non-convective cloud
  744.         D6   214    -PBCON    Pressure at the base of a      mb
  745.                                 convective cloud
  746.         D7   215    -PTCON    Pressure at the top of a       mb
  747.                                 convective cloud
  748.         D8   216    -SFEXC    Exchange coefficient at     (kg/m**3)*m/sec
  749.                                 surface
  750.         D9   217    -ZSTAR    Surface roughness length       m
  751.         DA   218    -STDZG    Standard deviation of ground   m
  752.                                 height
  753.        
  754.                             Oceanographic variables
  755.        130   304    -UOGRD    U comp. of current wrt grid    m/sec
  756.        131   305    -VOGRD    V comp. of current wrt grid    m/sec
  757.        180   384    -WTMP-    Water temperature              degree K
  758.        181   385    -WVHGT    Height of wind-driven waves    m
  759.        182   386    -SWELL    Height of sea swells           m
  760.        183   387    -WVSWL    Combined height of waves and   m
  761.                                 swell
  762.        184   388    -WVPER    Period of wind-driven waves    sec
  763.        185   389    -WVDIR    Direction from which waves     degree
  764.                                 are moving (wrt North)
  765.        186   390    -SWPER    Period of sea swells           sec
  766.        187   391    -SWDIR    Direction from which swells    degree
  767.                                 are moving (wrt North)
  768.        188   392    -ICWAT    Ice-free water surface         percent
  769.        190   400    -HTSGW    Significant wave height        m
  770.        191   401    -PERPW    Primary wave period            sec
  771.  
  772.  
  773.  
  774.  
  775.  
  776.  
  777.  
  778.  
  779.  
  780.  
  781.  
  782.  
  783.  
  784.  
  785.  
  786.  
  787.  
  788.        88-01-01                   12                   NMC Office Note 84
  789.        
  790.  
  791.  
  792.  
  793.  
  794.  
  795.  
  796.  
  797.  
  798.  
  799.             
  800.               Number   Abbreviation        Item                   Units
  801.             Hex   Dec      (*)       Table 1 - Q and S (cont)
  802.             -----------------------------------------------------------------
  803.             
  804.             192   402    -DIRPW    Direction from which primary   degree
  805.                                      waves are moving (wrt North)
  806.             193   403    -PERSW    Secondary wave period          sec
  807.             194   404    -DIRSW    Direction from which secondary degree
  808.                                      waves are moving (wrt North)
  809.             195   405    -WCAPS    White cap coverage             percent
  810.             
  811.             
  812.             
  813.             -----------------------------------------------------------------
  814.             
  815.             *   Abbreviations are 6 characters.  A dash (-) is used to
  816.                 indicate a blank when printed.
  817.             
  818.             **  These data types do not use the standardized ON84
  819.                 identification scheme and may have been stored in non-
  820.                 standard units.  Contact NMC/CAC/AIB for further infor-
  821.                 mation.
  822.             
  823.             @   273.15 degrees has been added to the original data values.
  824.             
  825.             @@  Has been stored in units of 100s of feet.
  826.             
  827.             ##  Has been stored in the units of miles.
  828.             
  829.                 wrt means "with respect to"
  830.             
  831.             --------------------------------------------------------------
  832.  
  833.  
  834.  
  835.  
  836.  
  837.  
  838.  
  839.  
  840.  
  841.  
  842.  
  843.  
  844.  
  845.  
  846.  
  847.  
  848.  
  849.  
  850.  
  851.  
  852.  
  853.  
  854.             88-01-01                   13                   NMC Office Note 84
  855.             
  856.  
  857.  
  858.  
  859.  
  860.  
  861.  
  862.  
  863.  
  864.  
  865.                                   Table 2 - T
  866.                                   TIME MARKER
  867.                                         
  868.                                     (4 bits)
  869.                                         
  870.         T (Dec)     Meaning                      F1 (*)      F2 (*)
  871.        ----------------------------------------------------------------
  872.        
  873.          0   Instantaneous field. E.g., 500-mb   Fcst time  0
  874.              height forecast: Q                  of Q
  875.              F1 = 0 denotes an analysis unless
  876.              M set equal to 8, 9, or 10.  See Table 3.
  877.        
  878.          1   Field formed from 2 fields whose    Fcst time  Fcst time
  879.              valid times are equal but whose     of Q2      of Q2 minus
  880.              forecast times may or may not be               fcst time
  881.              equal. E.g., difference between 2              of Q1
  882.              analyses (times equal), or diff-
  883.              erence between a forecast and the
  884.              verifying analysis (times unequal):
  885.                   Q2 - Q1
  886.        
  887.          2   Field formed from 2 fields whose    Fcst time  Valid time
  888.              forecast times are equal but whose  of Q1 and  of Q2 minus
  889.              valid times are unequal. E.g., a    Q2         valid time
  890.              tendency field formed by differ-               of Q1
  891.              encing 2 analyses which are 12
  892.              hours apart:  Q2 - Q1
  893.        
  894.          3   Field formed from 2 fields whose    Fcst time  Fcst time
  895.              initial times are equal but whose   of Q2      of Q2 minus
  896.              forecast times are unequal. E.g.,              fcst time
  897.              a forecast tendency field: Q2 - Q1             of Q1
  898.        
  899.          4   Field of normal values averaged     Days used  0
  900.              over a number of days, where F1     in average
  901.              = number of days and F2 = 0, or
  902.              averaged over a number of years,       -or-       -or-
  903.              where F1 = 0 and F2 = number of
  904.              years.                              0          Years used
  905.                                                             in average
  906.        
  907.          5   Non-instantaneous field. E.g., a    Fcst time  Fcst time
  908.              field of forecast probability of    at end of  at end of
  909.              precipitation during some time      period     period minus
  910.              period.                                        fcst time
  911.                                                             at bgng.
  912.  
  913.  
  914.  
  915.  
  916.  
  917.  
  918.  
  919.  
  920.        88-01-01                   14                   NMC Office Note 84
  921.        
  922.  
  923.  
  924.  
  925.  
  926.  
  927.  
  928.  
  929.  
  930.  
  931.              T (Dec)     Meaning                      F1 (*)      F2 (*)
  932.             ----------------------------------------------------------------
  933.             
  934.               6   Field of time-averaged values.      Fcst time   Length of
  935.                   E.g., a 5-day height mean:          of bgng of  period in
  936.                     (Q1+Q2+Q3+Q4+Q5)/5                period in   half days
  937.                   with F1 the fcst time of Q1 in      half days,
  938.                   half days and F2 = 8 half days.     high-order
  939.                                                       bit on if
  940.                                                       negative
  941.             
  942.               7   Field of differences between 2      Fcst time   Fcst time
  943.                   fields of time-averaged values of   of Q2 in    of Q2 minus
  944.                   type T=6. E.g., the difference of   half days   fcst time
  945.                   two 5-day height means Q2 - Q1,                 of Q1 in
  946.                   Q2 centered at D+8, Q1 centered at              half days
  947.                   D+3.
  948.             
  949.             
  950.             
  951.             
  952.             
  953.              10   Same meaning as case T=2 except F1
  954.                   and F2 are in days.
  955.             
  956.             
  957.             (*) F1 and F2 are in hours unless N=15 (Table 5) or unless half
  958.                 days, days or years are specified.
  959.             
  960.             ----------------------------------------------------------------
  961.  
  962.  
  963.  
  964.  
  965.  
  966.  
  967.  
  968.  
  969.  
  970.  
  971.  
  972.  
  973.  
  974.  
  975.  
  976.  
  977.  
  978.  
  979.  
  980.  
  981.  
  982.  
  983.  
  984.  
  985.  
  986.             88-01-01                   15                   NMC Office Note 84
  987.             
  988.  
  989.  
  990.  
  991.  
  992.  
  993.  
  994.  
  995.  
  996.  
  997.                                   Table 3 - M
  998.                                         
  999.                    LEVEL DIFFERENCE AND INITIALIZATION MARKER
  1000.                                         
  1001.                                     (4 bits)
  1002.        
  1003.        
  1004.        
  1005.         M                Value
  1006.        -----------------------------------------------
  1007.        
  1008.         0       Indicates  S2  and  L2  are not applicable.
  1009.                 (In this case S2 = L2 = 0)
  1010.        
  1011.         1       Indicates a field formed by taking the
  1012.                 value of  Q  at  S1  minus the value of  Q
  1013.                 at  S2.
  1014.        
  1015.         2       Indicates a field of  Q  for a layer
  1016.                 bounded by  S1  and  S2.
  1017.        
  1018.         3 - 7   Available
  1019.        
  1020.        
  1021.         8 - 10  Same meanings as 0-2 above except the
  1022.                 field has been initialized by a model
  1023.                 identified by the Generating Code in Table 10.
  1024.                 Such initialized fields are often referred to
  1025.                 as "00-hour forecasts".
  1026.        
  1027.        11 - 15  Available
  1028.        
  1029.        
  1030.        
  1031.        
  1032.        
  1033.        
  1034.        
  1035.        -----------------------------------------------
  1036.  
  1037.  
  1038.  
  1039.  
  1040.  
  1041.  
  1042.  
  1043.  
  1044.  
  1045.  
  1046.  
  1047.  
  1048.  
  1049.  
  1050.  
  1051.  
  1052.        88-01-01                   16                   NMC Office Note 84
  1053.        
  1054.  
  1055.  
  1056.  
  1057.  
  1058.  
  1059.  
  1060.  
  1061.  
  1062.  
  1063.                                        Table 4 - X
  1064.                                              
  1065.                                      EXCEPTION MARKER
  1066.                                              
  1067.                                          (8 bits)
  1068.             
  1069.               X               Value
  1070.             -------------------------------------------------------------
  1071.             
  1072.               0     Indicates the date/time of the field is the
  1073.                     same as the date/time of the file in which
  1074.                     the field is stored.
  1075.             
  1076.               1     Indicates the date/time of the field is 6
  1077.                     hours prior to the date/time of the file
  1078.                     in which the field is stored.
  1079.             
  1080.               2     Indicates the date/time of the field is 12
  1081.                     hours prior to the date/time of the file
  1082.                     in which the field is stored.
  1083.             
  1084.              ...     ...
  1085.             
  1086.               n     Indicates the date/time of the field is 6*n
  1087.                     hours prior to the date/time of the file
  1088.                     which the field is stored.
  1089.             
  1090.              ...     ...
  1091.             
  1092.              80     Special use marker to indicate a field produced with
  1093.                     spectral wave truncation.
  1094.             
  1095.             100     Field formed from NMC field and ECMWF field
  1096.             
  1097.             101     Field formed from NMC field and UKMET field
  1098.             
  1099.             255     Not applicable.  The exception marker does not apply
  1100.                     to this field.
  1101.             
  1102.             -------------------------------------------------------------
  1103.  
  1104.  
  1105.  
  1106.  
  1107.  
  1108.  
  1109.  
  1110.  
  1111.  
  1112.  
  1113.  
  1114.  
  1115.  
  1116.  
  1117.  
  1118.             88-01-01                   17                   NMC Office Note 84
  1119.             
  1120.  
  1121.  
  1122.  
  1123.  
  1124.  
  1125.  
  1126.  
  1127.  
  1128.  
  1129.                                   Table 5 - N
  1130.        
  1131.                               MISCELLANEOUS MARKER
  1132.        
  1133.                                     (4 bits)
  1134.            N                   Value
  1135.         --------------------------------------------
  1136.        
  1137.            0          None of the following
  1138.  
  1139.            1          Spectral specification
  1140.  
  1141.            2          Zonal coefficient
  1142.  
  1143.            3          Spectral amplitude
  1144.  
  1145.            4          Spectral phase angle
  1146.  
  1147.            5          Summation over wave numbers 0 - 5
  1148.        
  1149.        
  1150.        
  1151.           15          F1  and/or  F2  are in half days
  1152.         --------------------------------------------
  1153.  
  1154.  
  1155.  
  1156.  
  1157.  
  1158.  
  1159.  
  1160.  
  1161.  
  1162.  
  1163.  
  1164.  
  1165.  
  1166.  
  1167.  
  1168.  
  1169.  
  1170.  
  1171.  
  1172.  
  1173.  
  1174.  
  1175.  
  1176.  
  1177.  
  1178.  
  1179.  
  1180.  
  1181.  
  1182.  
  1183.  
  1184.        88-01-01                   18                   NMC Office Note 84
  1185.        
  1186.  
  1187.  
  1188.  
  1189.  
  1190.  
  1191.  
  1192.  
  1193.  
  1194.  
  1195.                                    Table 6 - CM and CD
  1196.                                              
  1197.                                    CLIMATOLOGY MARKERS
  1198.                                              
  1199.                                       (8 bits each)
  1200.                                                                  
  1201.                                   CM       Month-Hour
  1202.                                 -------------------------
  1203.                                 
  1204.                                   00    Not applicable
  1205.                                 
  1206.                                   01    JAN - 0000 UTC
  1207.                                   02    FEB - 0000 UTC
  1208.                                  ...    ...
  1209.                                   12    DEC - 0000 UTC
  1210.                                 
  1211.                                   13    JAN - 1200 UTC
  1212.                                   14    FEB - 1200 UTC
  1213.                                  ...    ...
  1214.                                   24    DEC - 1200 UTC
  1215.                                 
  1216.                                 -------------------------
  1217.             
  1218.                                 
  1219.                                 
  1220.                                   CD    Day of Month
  1221.                                 -------------------------
  1222.                                 
  1223.                                   00    Not applicable
  1224.                                   01    1st day of month
  1225.                                   02    2nd day of month
  1226.                                  ...    ...
  1227.                                   31    31st day of month
  1228.                                 
  1229.                                 -------------------------
  1230.  
  1231.  
  1232.  
  1233.  
  1234.  
  1235.  
  1236.  
  1237.  
  1238.  
  1239.  
  1240.  
  1241.  
  1242.  
  1243.  
  1244.  
  1245.  
  1246.  
  1247.  
  1248.  
  1249.  
  1250.             88-01-01                   19                   NMC Office Note 84
  1251.             
  1252.  
  1253.  
  1254.  
  1255.  
  1256.  
  1257.  
  1258.  
  1259.  
  1260.  
  1261.                                   Table 7 - K
  1262.        
  1263.                                    GRID TYPE
  1264.                                         
  1265.             K                        Grid                      Grid
  1266.        Hex   Dec                                             Increment
  1267.        -----------------------------------------------------------------
  1268.        
  1269.          0     0 A  1977-point N. Hemisphere polar stereo-   381 km
  1270.                     graphic grid (octagon) oriented 80W;     at 60N
  1271.                     Pole at (24,26).
  1272.        
  1273.          1     1 A  1679-point (73x23) Mercator grid with    5 degs of
  1274.                     (1,1) at (0W,48.09S), (73,23) at (0W,    longitude
  1275.                     48.09N); I increasing eastward, Equator
  1276.                     at J=12.
  1277.        
  1278.          2     2    1752-point (73x24) Mercator grid for     5 degs of
  1279.                     latitudes 49.73S to 49.73N.              longitude
  1280.        
  1281.          3     3    3021-point (53x57) N. Hemisphere polar   381 km
  1282.                     stereographic grid oriented 80W; Pole    at 60N
  1283.                     (27,29).
  1284.        
  1285.          4     4    reserved
  1286.        
  1287.          5     5 A  3021-point (53x57) N. Hemisphere polar   190.5 km
  1288.                     stereographic grid oriented 105W; Pole   at 60N
  1289.                     at (27,49).
  1290.        
  1291.          6     6    1977-point octagonal subset of grid      190.5 km
  1292.                     type 5; Pole at (24,46).                 at 60N
  1293.        
  1294.          7     7    2329-point N. Hemisphere polar stereo-   381 km
  1295.                     graphic grid (octagon) oriented 80W.     at 60N
  1296.        
  1297.          8     8    5104-point (116x44) Mercator grid with   3.1035
  1298.                     (1,1) at (0W,48.67S) and (116,44) at     degs of
  1299.                     (3.1035W,61.05N); I increasing eastward, longitude
  1300.                     Equator at J=19.
  1301.        
  1302.          9     9 A  Station grid (US and Canada) for TDL
  1303.                     wind, cloud, flight weather, sunshine,
  1304.                     dewpoint, temperature, and max/min
  1305.                     products.  Number of stations varies
  1306.                     from product to product, but usually
  1307.                     ranges from 143 to over 200.
  1308.  
  1309.  
  1310.  
  1311.  
  1312.  
  1313.  
  1314.  
  1315.  
  1316.        88-01-01                   20                   NMC Office Note 84
  1317.        
  1318.  
  1319.  
  1320.  
  1321.  
  1322.  
  1323.  
  1324.  
  1325.  
  1326.  
  1327.                 K                  Table 7 - K (cont)               Grid
  1328.             Hex   Dec                  GRID TYPE                  Increment
  1329.             -----------------------------------------------------------------
  1330.             
  1331.               A    10 A  Station grid (US cities) for TDL prob-
  1332.                          ability of precipitation type (POPT).
  1333.             
  1334.               B    11    286 US cities for TDL precipitation
  1335.                          amount.
  1336.             
  1337.               C    12    1702-point (74x23) Mercator grid for     5 degs of
  1338.                          latitudes 48.09S to 48.09N.              longitude
  1339.             
  1340.               D    13    576-point (36x16) N. Hemisphere
  1341.                          longitude/latitude LRPG diamond array--
  1342.                          pole stored at top of every 10 degs of
  1343.                          longitude--for latitudes 15S to 90N.
  1344.             
  1345.               E    14    108 U.S. stations for TDL max/min
  1346.                          temperatures.
  1347.             
  1348.               F    15    40 U.S. stations for TDL max/min
  1349.                          temperatures.
  1350.             
  1351.              10    16    1560-point (39x40) N. Hemisphere polar   95.25 km
  1352.                          stereographic grid (Eastern U.S.)        at 60N
  1353.                          oriented 80W.
  1354.             
  1355.              11    17 A  221-point (17x13) N. Hemisphere polar    381 km
  1356.                          stereographic grid oriented 105W; Pole   at 60N
  1357.                          at (7,21).  US grid used for TDL
  1358.                          trajectory model.
  1359.             
  1360.              12    18    Reserved.
  1361.             
  1362.              13    19    1977-point S. Hemisphere polar stereo-   381 km
  1363.                          graphic grid (octagon) oriented 100E;    at 60S
  1364.                          Pole at (24,26).
  1365.             
  1366.              14    20    2655-point (45x59) Mercator grid for     1.5 degs of
  1367.                          latitudes 30S to 30N.                    longitude
  1368.             
  1369.              15    21 A  1387-point (73x19) N. Hemisphere lon-    5 degs
  1370.                          gitude/latitude grid for latitudes 0N
  1371.                          to 90N.
  1372.  
  1373.  
  1374.  
  1375.  
  1376.  
  1377.  
  1378.  
  1379.  
  1380.  
  1381.  
  1382.             88-01-01                   21                   NMC Office Note 84
  1383.             
  1384.  
  1385.  
  1386.  
  1387.  
  1388.  
  1389.  
  1390.  
  1391.  
  1392.  
  1393.            K                  Table 7 - K (cont)               Grid
  1394.        Hex   Dec                  GRID TYPE                  Increment
  1395.        -----------------------------------------------------------------
  1396.        
  1397.         16    22 A  1387-point (73x19) S. Hemisphere lon-    5 degs
  1398.                     gitude/latitude grid for latitudes 90S
  1399.                     to 0S.
  1400.        
  1401.         17    23    783-point (29x27) N. Hemisphere polar     190.5 km
  1402.                     stereographic grid oriented 105W.        at 60N
  1403.                     US grid is used for NMC/TDL boundary
  1404.                     layer model.
  1405.        
  1406.         18    24 A  651-point (31x21) N. Hemisphere polar    190.5 km
  1407.                     stereographic grid oriented 98W; Pole    at 60N
  1408.                     at (15,41).  US grid is used for TDL
  1409.                     probability of precipitation, max/min
  1410.                     temperature, dewpoint, surface temp-
  1411.                     erature, and sunshine.
  1412.        
  1413.         19    25    3021-point (53x57) S. Hemisphere polar   381 km
  1414.                     stereographic grid oriented 100E; Pole   at 60S
  1415.                     at (27,29).
  1416.        
  1417.         1A    26 A  2385-point (53x45) N. Hemisphere polar   190.5 km
  1418.                     stereographic grid oriented 105W; Pole   at 60N
  1419.                     at (27,49).
  1420.        
  1421.         1B    27 A  4225-point (65x65) N. Hemisphere polar   381 km
  1422.                     stereographic grid oriented 80W; Pole    at 60N
  1423.                     at (33,33).
  1424.        
  1425.         1C    28 A  4225-point (65x65) S. Hemisphere polar   381 km
  1426.                     stereographic grid oriented 100E; Pole   at 60S
  1427.                     at (33,33).
  1428.        
  1429.         1D    29 A  5365-point (145x37) N. Hemisphere lon-   2.5 degs
  1430.                     gitude/latitude grid for latitudes 0N
  1431.                     to 90N; (1,1) at (0E,0N).
  1432.        
  1433.         1E    30 A  5365-point (145x37) S. Hemisphere lon-   2.5 degs
  1434.                     gitude/latitude grid for latitudes 90S
  1435.                     to 0S; (1,1) at (0E,90S).
  1436.  
  1437.  
  1438.  
  1439.  
  1440.  
  1441.  
  1442.  
  1443.  
  1444.  
  1445.  
  1446.  
  1447.  
  1448.        88-01-01                   22                   NMC Office Note 84
  1449.        
  1450.  
  1451.  
  1452.  
  1453.  
  1454.  
  1455.  
  1456.  
  1457.  
  1458.  
  1459.             
  1460.                 K                  Table 7 - K (cont)               Grid
  1461.             Hex   Dec                  GRID TYPE                  Increment
  1462.             -----------------------------------------------------------------
  1463.             
  1464.              1F    31 A  327-point TDL field composed of 4 grids: 381 km
  1465.                          US, Alaska, Hawaii, and Puerto Rico.     at 60N
  1466.                          The US grid is a 255-point (17x15)
  1467.                          N. Hemisphere polar stereographic grid
  1468.                          oriented 80W; Pole at (13,22).  Alaska
  1469.                          grid is a 56-point (7x8) N. Hemisphere
  1470.                          polar stereographic grid oriented 80W;
  1471.                          pole at (11,8).  The Hawaii grid is a
  1472.                          12-point (3x4) N. Hemisphere polar
  1473.                          stereographic grid oriented 80W; Pole
  1474.                          at (23,7).  The Puerto Rico grid is a
  1475.                          4-point (2x2) N. Hemisphere polar stereo-
  1476.                          graphic grid oriented 80W; Pole at (-4,23).
  1477.                          (These grids are used to archive MRF
  1478.                          Model data).
  1479.             
  1480.              20    32 A  744-point (31x24) N. Hemisphere polar    190.5 km
  1481.                          stereographic grid oriented 105W;        at 60N
  1482.                          Pole at (13,42).  The TDL grid (US)
  1483.                          is used to archive LFM data.
  1484.             
  1485.              21    33 A  8326-point (181x46) N. Hemisphere lon-   2 degs
  1486.                          gitude/latitude grid for latitudes 0N
  1487.                          to 90N; (1,1) at (0E,0N).
  1488.             
  1489.              22    34 A  8326-point (181x46) S. Hemisphere lon-   2 degs
  1490.                          gitude/latitude grid for latitudes 90S
  1491.                          to 0S; (1,1) at (0E,90S).
  1492.             
  1493.              23    35    228 U.S. cities for TDL MOS max/min
  1494.                          temperatures.
  1495.             
  1496.              24    36 A  1558-point (41x38) N. Hemisphere polar   190.5 km
  1497.                          stereographic grid oriented 105W; Pole   at 60N
  1498.                          at (19,42).  The TDL grid (N. America)
  1499.                          is used to archive LFM and NGM data.
  1500.             
  1501.              25    37    5365-point (145x37) N. Hemisphere lon-   2.5 degs
  1502.                          gitude/latitude grid for latitudes
  1503.                          1.25 to 88.75N; (1,1) at (1.25E,1.25N);
  1504.                          row 37 is fictitious.
  1505.  
  1506.  
  1507.  
  1508.  
  1509.  
  1510.  
  1511.  
  1512.  
  1513.  
  1514.             88-01-01                   23                   NMC Office Note 84
  1515.             
  1516.  
  1517.  
  1518.  
  1519.  
  1520.  
  1521.  
  1522.  
  1523.  
  1524.  
  1525.        
  1526.            K                  Table 7 - K (cont)               Grid
  1527.        Hex   Dec                  GRID TYPE                  Increment
  1528.        -----------------------------------------------------------------
  1529.         26    38    5365-point (145x37) S. Hemisphere lon-   2.5 degs
  1530.                     gitude/latitude grid for latitudes
  1531.                     88.75S to 1.25S;  (1,2) at
  1532.                     (1.25E,88.75S); row 1 is fictitious.
  1533.        
  1534.         27    39    8326-point (181x46) N. Hemisphere lon-   2 degs
  1535.                     gitude/latitude grid for latitudes 1N
  1536.                     to 89N, (1,1) at (1E,1N); row 46 is
  1537.                     fictitious.
  1538.        
  1539.         28    40    8326-point (181x46) S. Hemisphere lon-   2 degs
  1540.                     gitude/latitude grid for latitudes 89S
  1541.                     to 1S, (1,2) at (1E,89S); row 1 is
  1542.                     fictitious.
  1543.        
  1544.         29    41    850-point (34x25) N. Hemisphere lon-     1 deg
  1545.                     gitude/latitude grid for latitudes 22N
  1546.                     to 46N; (1,1) at (87W,22N).
  1547.        
  1548.         2A    42    Reserved.
  1549.        
  1550.         2B    43    4225-point (65x65) N. Hemisphere polar   381 km
  1551.                     stereographic grid oriented 105W; Pole   at 60N
  1552.                     at (33,33).
  1553.        
  1554.         2C    44    4225-point (65x65) S. Hemisphere polar   381 km
  1555.                     stereographic grid oriented 75E; Pole    at 60S
  1556.                     (33,33).
  1557.        
  1558.         2D    45    2425-point (97x25) N. Hemisphere lon-    3.75 degs
  1559.                     gitude/latitude grid for latitudes
  1560.                     0N to 90N; (1,1) at (0E,0N).
  1561.        
  1562.         2E    46    2425-point (97x25) S. Hemisphere lon-    3.75 degs
  1563.                     gitude/latitude grid for latitudes
  1564.                     90S to 0N; (1,1) at (0E,90S).
  1565.        
  1566.         2F    47 A  10057-point (113x89) N. Hemisphere       47.625 km
  1567.                     polar stereographic grid oriented 105W;  at 60N
  1568.                     Pole at (41,161).
  1569.  
  1570.  
  1571.  
  1572.  
  1573.  
  1574.  
  1575.  
  1576.  
  1577.  
  1578.  
  1579.  
  1580.        88-01-01                   24                   NMC Office Note 84
  1581.        
  1582.  
  1583.  
  1584.  
  1585.  
  1586.  
  1587.  
  1588.  
  1589.  
  1590.  
  1591.                 K                  Table 7 - K (cont)               Grid
  1592.             Hex   Dec                  GRID TYPE                  Increment
  1593.             -----------------------------------------------------------------
  1594.             
  1595.              30    48    3477-point (61x57) N. Hemisphere         190.5 km
  1596.                          polar stereographic grid oriented 105W;  at 60N
  1597.                          Pole at (27,49).
  1598.             
  1599.              31    49    16641-point (129x129) N. Hemisphere      190.5 km
  1600.                          polar stereographic grid oriented 80W;   at 60N
  1601.                          Pole at (65,65).
  1602.             
  1603.              32    50    16641-point (129x129) S. Hemisphere      190.5 km
  1604.                          polar stereographic grid oriented 100E;  at 60S
  1605.                          Pole at (65,65).
  1606.             
  1607.              33    51 A  16641-point (129x129) N. Hemisphere      190.5 km
  1608.                          polar stereographic grid oriented 105W;  at 60N
  1609.                          Pole at (65,65).
  1610.             
  1611.              34    52    Reserved.
  1612.             
  1613.              35    53    5967-point (117x51) Mercator grid with   3.1035
  1614.                          (1,1) at (0W,61.05S) and (117,51) at     degs of
  1615.                          (0W,61.05N); I increasing eastward,      longitude
  1616.                          Equator at J=26.
  1617.             
  1618.              36    54 A  1050-point (35x30) N. Hemisphere polar   95.25 km
  1619.                          stereographic grid oriented 80W; Pole    at 60N
  1620.                          at (1,75).  The TDL grid (eastern US)
  1621.                          is used for a boundary layer model.
  1622.             
  1623.              37    55 A  6177-point (87x71) N. Hemisphere polar   254 km
  1624.                          stereographic grid oriented 105W; Pole   at 60N
  1625.                          at (44,38).
  1626.             
  1627.              38    56 A  6177-point (87x71) N. Hemisphere polar   127 km
  1628.                          stereographic grid oriented 105W; Pole   at 60N
  1629.                          at (40,73).
  1630.             
  1631.              39    57    Reserved
  1632.             
  1633.              3A    58    100 U.S. cities for 24-hour accumulated
  1634.                          precipitation.
  1635.  
  1636.  
  1637.  
  1638.  
  1639.  
  1640.  
  1641.  
  1642.  
  1643.  
  1644.  
  1645.  
  1646.             88-01-01                   25                   NMC Office Note 84
  1647.             
  1648.  
  1649.  
  1650.  
  1651.  
  1652.  
  1653.  
  1654.  
  1655.  
  1656.  
  1657.            K                  Table 7 - K (cont)               Grid
  1658.        Hex   Dec                  GRID TYPE                  Increment
  1659.        -----------------------------------------------------------------
  1660.        
  1661.         3B    59    5293-point (79x67) subset of grid type   127 km
  1662.                     56 (used for LFM-II mountains); Pole     at 60N
  1663.                     at (40,73).
  1664.        
  1665.         3C    60 A  3249-point (57x57) N. Hemisphere polar   190.5 km
  1666.                     stereographic grid oriented 105W; Pole   at 60N
  1667.                     at (29,49).
  1668.        
  1669.         3D    61 A  Spectral coefficients, scalar fields.    30 modes
  1670.                     (961 COMPLEX*8 words).
  1671.        
  1672.         3E    62 A  Spectral coefficients, U- or V-          30 modes
  1673.                     component fields.
  1674.                     (992 COMPLEX*8 words).
  1675.        
  1676.         3F    63 A  1095-point (73x15) longitude/latitude    5 degs
  1677.                     grid for latitudes 35S to 35N; (1,1)
  1678.                     at (0,35S) and I increasing eastward.
  1679.        
  1680.         40    64    Available
  1681.        
  1682.         41    65    Available
  1683.        
  1684.         42    66    2701-point (73x37) longitude/latitude    5 degs
  1685.                     grid for latitudes 90S to 90N; (1,1)
  1686.                     at (0,90S); I increasing eastward.
  1687.        
  1688.         43    67 A  13689-point (117x117) N.W. Atlantic      23.8125 km
  1689.                     polar stereographic grid oriented 80W;   at 60N
  1690.                     Pole at (9,317).
  1691.        
  1692.         44    68 A  13689-point (117x117) Gulf of Mexico     23.8125 km
  1693.                     polar stereographic grid oriented 105W;  at 60N
  1694.                     Pole at (-35,361).
  1695.        
  1696.         45    69 A  13689-point (117x117) Gulf of Alaska     23.8125 km
  1697.                     polar stereographic grid oriented 105W;  at 60N
  1698.                     Pole at (177,209).
  1699.  
  1700.  
  1701.  
  1702.  
  1703.  
  1704.  
  1705.  
  1706.  
  1707.  
  1708.  
  1709.  
  1710.  
  1711.  
  1712.        88-01-01                   26                   NMC Office Note 84
  1713.        
  1714.  
  1715.  
  1716.  
  1717.  
  1718.  
  1719.  
  1720.  
  1721.  
  1722.  
  1723.             
  1724.                 K                  Table 7 - K (cont)               Grid
  1725.             Hex   Dec                  GRID TYPE                  Increment
  1726.             -----------------------------------------------------------------
  1727.             
  1728.              46    70 A  13689-point (117x117) Calif. Pacific     23.8125 km
  1729.                          polar stereographic grid oriented 105W;  at 60N
  1730.                          Pole at (169,285).
  1731.             
  1732.              47    71 A  13689-point (117x117) Mexican Pacific    23.8125 km
  1733.                          polar stereographic grid oriented 105W;  at 60N
  1734.                          Pole at (137,377).
  1735.             
  1736.              48    72    406-point (29x14) Mercator grid with     2.5 degs of
  1737.                          (1,1) at (170.00E,46.40N) and (29,14)    longitude
  1738.                          at (120.00W,64.40N).
  1739.             
  1740.              49    73    13056-point (128x102) global gaussian    R40 trans
  1741.                          longitude/latitude grid.
  1742.             
  1743.              4A    74 A  10800-point (180x60) N. Hemisphere       2.0 deg lon
  1744.                          longitude/latitude grid for latitudes    1.5 deg lat
  1745.                          0N to 90N; (1,1) at (0E,0N).
  1746.             
  1747.              4B    75 A  12321-point (111x111) N. Hemisphere      40 km at
  1748.                          Lambert Conformal grid.  No fixed        30&60 deg N
  1749.                          location; used by QLM Hurricane model.
  1750.             
  1751.              4C    76 A  12321-point (111x111) S. Hemisphere      40 km at
  1752.                          Lambert Conformal grid.  No fixed        30&60 deg S
  1753.                          location; used by QLM Hurricane model.
  1754.             
  1755.              4D    77 A  12321-point (111x111) N. Hemisphere      40 km at
  1756.                          Mercator grid.  No fixed location;       equator
  1757.                          used by QLM Hurricane model.
  1758.             
  1759.              51    81 A  7921-point (89x89) N. Hemisphere polar   190.5 km
  1760.                          stereographic grid oriented 105W; pole   at 60N
  1761.                          at (44.5,44.5)
  1762.             
  1763.              52    82 A  15066-point (243x62) N. Hemisphere       variable
  1764.                          T80 gaussian transform lat/lon grid
  1765.             
  1766.              53    83 A  15066-point (243x62) S. Hemisphere       variable
  1767.                          T80 gaussian transform lat/lon grid
  1768.             
  1769.              64   100 A  6889-point (83x83) N. Hemisphere polar   91.452 km
  1770.                          stereographic grid oriented 105W; Pole   at 60N
  1771.                          at (40.5,88.5). (NGM Original Grid C)
  1772.             
  1773.              65   101 A  10283-point (113x91) N. Hemisphere       91.452 km
  1774.                          stereographic grid oriented 105W; Pole   at 60N
  1775.                          at (58.5,92.5). (NGM Expanded Grid C)
  1776.             
  1777.  
  1778.             88-01-01                   27                   NMC Office Note 84
  1779.             
  1780.  
  1781.  
  1782.  
  1783.  
  1784.  
  1785.  
  1786.  
  1787.  
  1788.  
  1789.         99   153 A  240-point (16x15) N. Hemisphere polar    190.5 km
  1790.                     stereographic grid oriented 105W; Pole   at 60N
  1791.                     at (-2,47).  TDL grid (Gulf of Mexico)
  1792.                     used for wind wave forecasts.
  1793.        
  1794.        
  1795.        
  1796.         FF   255    Not applicable.
  1797.        
  1798.        -----------------------------------------------------------------
  1799.        
  1800.        Footnote:  "A" indicates a currently active Grid Type
  1801.  
  1802.  
  1803.  
  1804.  
  1805.  
  1806.  
  1807.  
  1808.  
  1809.  
  1810.  
  1811.  
  1812.  
  1813.  
  1814.  
  1815.  
  1816.  
  1817.  
  1818.  
  1819.  
  1820.  
  1821.  
  1822.  
  1823.  
  1824.  
  1825.  
  1826.  
  1827.  
  1828.  
  1829.  
  1830.  
  1831.  
  1832.  
  1833.  
  1834.  
  1835.  
  1836.  
  1837.  
  1838.  
  1839.  
  1840.  
  1841.  
  1842.  
  1843.  
  1844.        88-01-01                   28                   NMC Office Note 84
  1845.        
  1846.  
  1847.  
  1848.  
  1849.  
  1850.  
  1851.  
  1852.  
  1853.  
  1854.  
  1855.                                        Table 8 - KS
  1856.                                              
  1857.                                     DERIVATION MARKER
  1858.                                              
  1859.                                          (8 bits)
  1860.             
  1861.             
  1862.               KS            Derivation method
  1863.             ----------------------------------------------------
  1864.             
  1865.                0     None of the following
  1866.             
  1867.                1     Hough spectral method
  1868.             
  1869.                2     Field formed by subtracting a climatological
  1870.                      normal from each data value; e.g., a field
  1871.                      of departure from normal heights.
  1872.             
  1873.             ----------------------------------------------------
  1874.             
  1875.             
  1876.                                        Table 9 - R
  1877.             
  1878.                                         RUN MARKER
  1879.             
  1880.                                          (8 bits)
  1881.             
  1882.             
  1883.               R             Run
  1884.             ----------------------------------------------------
  1885.             
  1886.               0      Early run (ERL)
  1887.             
  1888.               1      Initializing run (NMC)
  1889.             
  1890.               2      Regional run (RGL)
  1891.             
  1892.               3      Aviation run (AVN)
  1893.             
  1894.               4      Medium Range Forecast run (MRF)
  1895.             
  1896.               5      Final operational run in a given
  1897.                        observational cycle (FNL)
  1898.             
  1899.               6      Hurricane Run (HCN)
  1900.             
  1901.             
  1902.              15      Runs from non-NMC networks
  1903.             
  1904.             255      Not applicable
  1905.             
  1906.             ----------------------------------------------------
  1907.  
  1908.  
  1909.  
  1910.             88-01-01                   29                   NMC Office Note 84
  1911.             
  1912.  
  1913.  
  1914.  
  1915.  
  1916.  
  1917.  
  1918.  
  1919.  
  1920.  
  1921.                                   Table 10 - G
  1922.        
  1923.                                GENERATING PROGRAM
  1924.        
  1925.                                     (8 bits)
  1926.        
  1927.        
  1928.             G            Name of program generating data          Map
  1929.         Hex  Dec                                                 Label
  1930.        -----------------------------------------------------------------
  1931.        
  1932.          0     0    Objective analysis (Cressman octagon)
  1933.          1     1 A  Barotropic fcst model                        BATROP
  1934.          2     2    Mesh model 1958
  1935.          3     3    Mesh model 1964 (imprv. terr.)
  1936.          4     4    Reed 1000-mb fcst model
  1937.          5     5    3-level baroclinic fcst model
  1938.          6     6    4-level baroclinic fcst model
  1939.          7     7    4-layer Primitive Equation model (PE)
  1940.        
  1941.          8     8    6-layer PE model
  1942.          9     9 A  Maximum and minimum temperature fcst
  1943.          A    10    Sea height and swell fcst
  1944.          B    11    Tropical analysis
  1945.          C    12    Tropical fcst
  1946.          D    13    Bat analysis
  1947.          E    14    Tropical fcst
  1948.          F    15    Tropical fcst with satellite modification
  1949.        
  1950.         10    16    Sub-synoptic advection model
  1951.         11    17    Compute long wave components
  1952.         12    18 A  Trajectory forecast
  1953.         13    19 A  Successive Correction Method analysis         SCM
  1954.         14    20    Limited-area successive correction method    LFM1
  1955.         15    21    Perfect prog precipitation fcst
  1956.         16    22 A  Hough analysis                               HOUGH
  1957.         17    23    Eddy analysis and SANBAR fcst (NHC Miami)
  1958.        
  1959.         18    24    NWRC/NCAR climatology data
  1960.         19    25 A  Snow cover
  1961.         1A    26    Planetary boundary layer analysis and fcst
  1962.         1B    27    Extended fcst data processor
  1963.         1C    28    PE and trajectory model output statistics
  1964.         1D    29    9-layer global PE model (5-deg mesh)
  1965.         1E    30    9-layer N.H. PE model (2.5-deg mesh)
  1966.         1F    31    6-layer PE model (360/195 version)           6LPE
  1967.  
  1968.  
  1969.  
  1970.  
  1971.  
  1972.  
  1973.  
  1974.  
  1975.  
  1976.        88-01-01                   30                   NMC Office Note 84
  1977.        
  1978.  
  1979.  
  1980.  
  1981.  
  1982.  
  1983.  
  1984.  
  1985.  
  1986.  
  1987.                  G               Table 10 - G (cont)                   Map
  1988.              Hex  Dec            GENERATING PROGRAM                   Label
  1989.             -----------------------------------------------------------------
  1990.              20    32    Sea surface temp., satellite derived
  1991.              21    33    Land shelter temperature analysis
  1992.              22    34    Energy statistics code
  1993.              23    35    9-layer global PE model (2.5-deg mesh)
  1994.              24    36    As above except used for 6-hour cycle
  1995.              25    37    3-layer global PE model
  1996.              26    38    7-layer PE Hemis. fine mesh model, 190.5 km  7LPE
  1997.              27    39 A  Nested Grid Model                            NGM
  1998.             
  1999.              28    40    9-layer N. H. PE model (2-deg mesh)
  2000.              29    41    LFM with 127-km grid increment               LFM2
  2001.              2A    42    7-layer PE model (381 km grid)               7LCM
  2002.              2B    43 A  Global Optimum Interpolation analysis        GOI
  2003.              2C    44 A  Sea surface temperature analysis
  2004.              2D    45 A  Spectral Model Global 24-mode 12-layer       SMG2C
  2005.              2E    46 A  Spectral Model Global 30-mode 12-layer       SMG3C
  2006.              2F    47    Spectral Model Hemis. 24-mode-12 layer       SMH2C
  2007.             
  2008.              30    48    Spectral model Hemis. 30-mode-12 layer       SMH3C
  2009.              31    49    Ozone Analysis Tiros Operational             TOVS
  2010.              32    50    Spectral model Global 24-mode 6-layer        SMG26
  2011.              33    51    Spectral model Global 30-mode 6-layer        SMG36
  2012.              34    52    Ozone Analysis Nimbus 7                      SBUV
  2013.              35    53 A  LFM with Fourth-Order differencing           LFM
  2014.              36    54    Spectral model Hemis. 24-mode 6-layer        SMH26
  2015.              37    55 A  N. American sea level pressure analysis
  2016.             
  2017.              38    56 A  N. H. sea level pressure analysis
  2018.              39    57 A  European Center for Medium-range Wea. Fcst.  ECMWF
  2019.              3A    58    Fleet Numerical Oceanography Center          FNOC
  2020.              3B    59    Air Force Global Weather Central             AFGWC
  2021.              3C    60    NWS Central Region                           CRGN
  2022.              3D    61    NWS Western Region                           WRGN
  2023.              3E    62    NWS Eastern Region                           ERGN
  2024.              3F    63 A  Spectral model Global 40-mode 12-layer       SMG4C
  2025.             
  2026.              40    64 A  Regional Optimum Interpolation Analysis      ROI
  2027.              41    65 A  Spectral model Global 40-mode 18-layer       SMG4I
  2028.              42    66 A  U.K. Meteorological Office                   UKMET
  2029.              43    67 A  Statistical correction by linear regression  SCLR
  2030.              44    68 A  10-layer hurricane model                     HCN
  2031.              45    69 A  Medium Range Forecast Model w/ GFDL Physics  MRF
  2032.              46    70 A  Quasi-Lagrangiam Hurricane Model             QLM
  2033.              47    71 A  Stastical Blending (MRFG)
  2034.             
  2035.              48    72 A  Isentropic Analysis
  2036.             -----------------------------------------------------------------
  2037.             
  2038.             Footnote:  "A" indicates a currently active Generating Program
  2039.  
  2040.  
  2041.  
  2042.             88-01-01                   31                   NMC Office Note 84
  2043.             
  2044.  
  2045.  
  2046.  
  2047.  
  2048.  
  2049.  
  2050.  
  2051.  
  2052.  
  2053.        
  2054.                                     Table 11
  2055.        
  2056.                      HEXADECIMAL EQUIVALENTS FOR FREQUENTLY
  2057.                                 USED VALUES OF C
  2058.        
  2059.                                  (Coding of L)
  2060.        
  2061.                              Decimal      Hexadecimal
  2062.                             -----------------------
  2063.                               10000         02710
  2064.                               16667         04116
  2065.                               15000         03A98
  2066.                               15240         03B88
  2067.                               18290         04772
  2068.                               20000         04E20
  2069.                               21340         0535C
  2070.                               25000         061A8
  2071.                               27315         06AB3
  2072.                               27430         06B26
  2073.                               30000         07530
  2074.                               30480         07710
  2075.                               33333         08235
  2076.                               35000         088B8
  2077.                               36580         08EE4
  2078.                               40000         09C40
  2079.                               41667         0A2C3
  2080.                               42670         0A6AE
  2081.                               45000         0AFC8
  2082.                               50000         0C350
  2083.                               55000         0D6D8
  2084.                               58333         0E3DD
  2085.                               60000         0EA60
  2086.                               65000         0FDE8
  2087.                               66667         1046B
  2088.                               70000         11170
  2089.                               75000         124F8
  2090.                               80000         13880
  2091.                               83333         14585
  2092.                               85000         14C08
  2093.                               90000         15F90
  2094.                               91400         16508
  2095.                               91667         16613
  2096.                               95000         17318
  2097.                               99000         182B8
  2098.                             -----------------------
  2099.  
  2100.  
  2101.  
  2102.  
  2103.  
  2104.  
  2105.  
  2106.  
  2107.  
  2108.        88-01-01                   32                   NMC Office Note 84
  2109.        
  2110.  
  2111.  
  2112.  
  2113.  
  2114.  
  2115.  
  2116.  
  2117.  
  2118.  
  2119.                                          Table 12
  2120.             
  2121.                       EXAMPLES OF IDENTIFIER WORDS FOR COMMON FIELDS
  2122.             
  2123.             
  2124.             
  2125.             (1)  1000-mb height analysis for N.H. (grid type 27):
  2126.             
  2127.                       00100800 00271081 00000000 00000000 0000001B
  2128.             
  2129.             (2)  500-mb height analysis for N.H. (grid type 27):
  2130.             
  2131.                       00100800 00C35082 00000000 00000000 0000001B
  2132.             
  2133.             (3)  500-mb temperature analysis for N.H. (grid type 27):
  2134.             
  2135.                       01000800 00C35082 00000000 00000000 0000001B
  2136.             
  2137.             (4)  500-mb 12-hour height forecast for LFM (grid type 26):
  2138.             
  2139.                       0010080C 00C35082 00000000 00000000 0000001A
  2140.             
  2141.             (5)  12-hour forecast of potential temperature for the
  2142.                  boundary layer, expressed in sigma coordinates,
  2143.                  for the N.H. 2.5 long/lat (grid type 29):
  2144.             
  2145.                       0130900C 00000000 20009000 00271084 0000001D
  2146.             
  2147.             (6)  100-mb forecast height tendency, for 6 to 18 hours
  2148.                  after an initial time, which is 12 hours prior
  2149.                  to the date/time of the file (grid type 27):
  2150.             
  2151.                       00100812 30271082 0020000C 00000000 0000001B
  2152.             
  2153.             (7)  Precipitation at the surface which is forecast to be
  2154.                  accumulated between 24 and 30 hours after the initial
  2155.                  time (grid type 27):
  2156.             
  2157.                       05A0811E 30000000 00000006 00000000 0000001B
  2158.  
  2159.  
  2160.  
  2161.  
  2162.  
  2163.  
  2164.  
  2165.  
  2166.  
  2167.  
  2168.  
  2169.  
  2170.  
  2171.  
  2172.  
  2173.  
  2174.             88-01-01                   33                   NMC Office Note 84
  2175.             
  2176.  
  2177.  
  2178.  
  2179.  
  2180.  
  2181.  
  2182.  
  2183.  
  2184.  
  2185.                                   Table 13 - P
  2186.        
  2187.                                  PACKING MARKER
  2188.        
  2189.                                     (4 bits)
  2190.        
  2191.                          P                 Value
  2192.                   --------------------------------------------
  2193.                                         
  2194.                          0        16 bits used for packing
  2195.                                         
  2196.                          2         2 bits used for packing
  2197.                                         
  2198.                          4         4 bits used for packing
  2199.                                         
  2200.                          8         8 bits used for packing
  2201.                                         
  2202.                         12        12 bits used for packing
  2203.                   --------------------------------------------
  2204.        DJDE FORMS=JOY,END;
  2205.  
  2206.  
  2207.  
  2208.  
  2209.  
  2210.  
  2211.  
  2212.  
  2213.  
  2214.  
  2215.  
  2216.  
  2217.  
  2218.  
  2219.  
  2220.  
  2221.  
  2222.  
  2223.  
  2224.  
  2225.  
  2226.  
  2227.  
  2228.  
  2229.  
  2230.  
  2231.  
  2232.  
  2233.  
  2234.  
  2235.  
  2236.  
  2237.  
  2238.  
  2239.  
  2240.        88-01-01                   34                   NMC Office Note 84
  2241.        
  2242.  
  2243.  
  2244.  
  2245.  
  2246.  
  2247.  
  2248.  
  2249.  
  2250.  
  2251.                        Figure 1 - NMC Format for Packed Data Fields
  2252.             W                Upper left: Table reference, if any
  2253.             o                Upper right: Field size in bits
  2254.             r       Bit . . . .
  2255.             d  0     3 4     7 8    11 12   15 16           23 24           31
  2256.             
  2257.                1                    12 1                    12               8
  2258.             1   Q  Data type            S1  Type of surface 1   F1  Time 1
  2259.             
  2260.                2  T  4       Numerical value of             20               8
  2261.             2  Marker   C1   Surface 1 = C1 * 10**E1            E1
  2262.             
  2263.                3  M  4 4  Exception  8 1                    12               8
  2264.             3  Marker   X Marker        S2  Type of surface 2   F2  Time 2
  2265.             
  2266.                5  N  4       Numerical value of             20               8
  2267.             4  Marker   C2   Surface 2 = C2 * 10**E2            E2
  2268.             
  2269.                6  Climat day 8 6   Climat    8 8  Derivation 8 7             8
  2270.             5   CD of month     CM Month Hour   KS  Method      K  Grid type
  2271.             
  2272.                 =0,1 4      For internal    12      For internal use        16
  2273.             6  1st GES  RN  use by I/O only     NW  by I/O routines only
  2274.             
  2275.                              8               8               8     Initial   8
  2276.             7   YY  Year        MM  Month       DD  Day         II Hour
  2277.             
  2278.                9   Run       8 10 Generating 8                              16
  2279.             8   R  Marker       G  Program      J  Number of data points
  2280.             
  2281.                    Number of bytes          16     Exclusive OR             16
  2282.             9   B  in Record                    Z  Checksum
  2283.             
  2284.             1                                                               32
  2285.             0   A  Reference value, REAL*4 floating point
  2286.             
  2287.             1   13 P 4 # of  4   reserved   08     Scaling value            16
  2288.             1   Marker add.rec                  n  (INTEGER*2)
  2289.             
  2290.             1                                                               32
  2291.             2   Reserved
  2292.             
  2293.             1                               16                              16
  2294.             3   Data point 1                    Data point 2
  2295.             
  2296.             1                               16                              16
  2297.             4   Data point 3                    Data point 4
  2298.             
  2299.                 In word 6, first byte indicates source of GES ...
  2300.                         0 = AVN run      1 = FNL run
  2301.             
  2302.                 In word 11, byte 2 is used by VSAM for logical records
  2303.                    that exceed 32,768 bytes
  2304.  
  2305.  
  2306.             88-01-01                   35                   NMC Office Note 84
  2307.             
  2308.  
  2309.  
  2310.  
  2311.