NCEPLIBS-g2 4.0.0
All Data Structures Namespaces Files Functions Variables Pages
NCEPLIBS-g2

Introduction

This document briefly describes the routines available for encoding/decoding GRIB Edition 2 (GRIB2) messages.

A GRIB Edition 2 message is a machine independent format for storing one or more gridded data fields. Each GRIB2 message consists of the following sections:

SECTION 0 - Indicator Section
SECTION 1 - Identification Section
SECTION 2 - (Local Use Section) - optional                           }
SECTION 3 - Grid Definition Section                     }            }
SECTION 4 - Product Definition Section    }             }            }(repeated)
SECTION 5 - Data Representation Section   }             }(repeated)  }
SECTION 6 - Bit-map Section               }(repeated)   }            }
SECTION 7 - Data Section                  }             }            }
SECTION 8 - End Section

Sequences of GRIB sections 2 to 7, 3 to 7, or sections 4 to 7 may be repeated within a single GRIB message. All sections within such repeated sequences must be present and shall appear in the numerical order noted above. Unrepeated sections remain in effect until redefined.

The above overview was taken from WMO's FM 92-XII GRIB description of the experimental GRIB Edition 2 form.

Building NCEPLIBS-g2

The NCEPLIBS-g2 library is built with CMake. Starting with NCEPLIBS-g2-4.0.0, the NCEPLIBS-g2c library is required for the build.

The NCEPLIBS-w3emc library provides GRIB1 support. It's required for some NCEPLIBS-g2 subroutines and some utilities. If built without NCEPLIBS-w3emc, then NCEPLIBS-g2 will not contain any GRIB1 functionality and utilities which need GRIB1 subroutines will not be built.

Utilities

The NCEPLIBS-g2 project contains a collection of NCEP grib related utilities.

The utilities:

  • cnvgrib.F90 - Convert between GRIB1 and GRIB2.
  • copygb.F90 - Copy all or part of a GRIB1 file.
  • copygb2.F90 - Copy all or part of a GRIB2 file.
  • degrib2.F90 - Inventory a GRIB2 file.
  • grbindex.F90 - Create an index from a GRIB1 file.
  • grb2index.F90 - Create an index from a GRIB2 file.
  • tocgrib.F90 - Copy some GRIB2 fields to a new GRIB1 file.
  • tocgrib2.F90 - Copy some GRIB2 fields to a new GRIB2 file.
  • tocgrib2super.F90 - Copy some GRIB2 fields to a new GRIB2 file with super WMO header.

File-Based API

NCEPLIBS-g2-4.0.0 introduces a new file-based API. This API adds the capability of handling GRIB2 files, keeping track of the locations of messages for the user.

To open a file with the new API, call g2cf_open(). This will return a file ID which can be used in other subroutines.

Subroutines in the new API include:

  • g2cf_open() - Open a GRIB2 file.
  • g2cf_open_index() - Open a file using an index file for better performance.
  • g2cf_inq() - Learn about a GRIB2 file.
  • g2cf_inq_msg() - Learn about a GRIB2 message in the file.
  • g2cf_close() - Close an opened GRIB2 file.

Release all resources for the file by calling g2cf_close().

Index Files

The NCEPLIBS-g2 library uses index files to help quickly navigate a GRIB2 file. These index files can result in significant performance improvement for large GRIB2 files.

There are two versions of the index file. The original version (version 1) was used until NCEPLIBS-g2-4.0.0. This version of the index file does not handle files larger than 2 GB.

The second version of the index file (version 2) handles GRIB2 files which are larger than 2 GB.

Create an index file with the grb2index utility.

GRIB2 Encoding Routines

To start a new GRIB2 message, call subroutine gribcreate(). It encodes Sections 0 and 1 at the beginning of the message. This routine must be used to create each message.

Subroutine addlocal() can be used to add a Local Use Section (Section 2). Note that section is optional and need not appear in a GRIB2 message.

Subroutine addgrid() is used to encode a grid definition into Section 3. This grid definition defines the geometry of the the data values in the fields that follow it. addgrid() can be called again to change the grid definition describing subsequent data fields.

Each data field is added to the GRIB2 message using routine addfield(), which adds Sections 4, 5, 6, and 7 to the message.

After all desired data fields have been added to the GRIB2 message, a call to routine gribend() is needed to add the final section 8 to the message and to update the length of the message.

GRIB2 Decoding Routines

Subroutine gb_info() can be used to find out how many Local Use sections and data fields are contained in a given GRIB2 message. This routine also returns the number of octets of the largest Local Use section in the message. This value can be used to ensure that the output array of subroutine getlocal() is dimensioned large enough.

Subroutine getlocal() will return the requested occurrence of Section 2 from a given GRIB2 message.

gf_getfld() can be used to get all information pertaining to the any data field in the message. The subroutine returns all the unpacked values for each Section and Template in a Fortran 90 derived type grib_mod::gribfield, defined in gribmod.F90. The subroutine may also unpack the Bit-map and the data values.

Note that derived type gribfield contains pointers to dynamically allocated memory; callers must free this memory by calling subroutine gf_free().

Extracting GRIB2 Fields from a GRIB2 file

Subroutine getgb2i2() can be used to extract a specified field from a file containing many GRIB2 messages. getgb2i2() searches an index to find the location of the user specified field. The index can be supplied from a seperate GRIB2 index file, or it can be generated internally.

If getgb2i2() is used, call gf_finalize() to free all memory. gf_finalize() only needs to be called once, no matter how many times getgb2i2() is called.

The GRIB2 file (and the index file, if supplied) must be opened with a call to subroutine baopen() prior to the call to getgb2i2().

The decoded information for the selected GRIB field is returned in a derived type variable, gfld. Gfld is of type grib_mod::gribfield; callers will need to include the line "use grib_mod".

Note that derived type gribfield contains pointers to many arrays of data. The memory for these arrays is allocated when the values in the arrays are set, to help minimize problems with array overloading. Because of this, users must free this memory by calling subroutine gf_free().

Example usage:

use grib_mod
type(gribfield) :: gfld
integer,dimension(200) :: jids,jpdt,jgdt
logical :: unpack=.true.
ifile=10
! Open GRIB2 file
call baopenr(ifile,"filename",iret)
.
! Set GRIB2 field identification values to search for
jdisc=
jids(?)=
jpdtn=
jpdt(?)=
jgdtn=
jgdt(?)=
! Get field from file
call getgb2(ifile,0,j,jdisc,jids,jpdtn,jpdt,jgdtn,jgdt,
& unpack,j,gfld,iret)
! Process field ...
firstval=gfld%fld(1)
lastval=gfld%fld(gfld%ndpts)
fldmax=maxval(gfld%fld)
fldmin=minval(gfld%fld)
! Free memory when done with field
call gf_free(gfld)
stop
end

GRIB2 Tables/Templates

WMO's GRIB2 specification "FM 92-XII GRIB - General Regularly-distributed Information in Binary Form" contains descriptions of each template and code table information. This document can be found at http://www.wmo.ch/web/www/WMOCodes.html (PDF and MSWord formats are available)

MDL has made an HTML version of the document available at http://www.nws.noaa.gov/tdl/iwt/grib2/frameset_grib2.htm.

Documentation for Previous Versions of NCEPLIBS-g2