Documentation

This commit is contained in:
Shahram Najm 2019-02-05 14:55:28 +00:00
parent 35e244161e
commit 1d3f068753
3 changed files with 11 additions and 2 deletions

View File

@ -7,10 +7,14 @@
# granted to it by virtue of its status as an intergovernmental organisation
# nor does it submit to any jurisdiction.
# Python implementation: grib_get_keys
#
# Description: how to get values using keys from GRIB messages
#
from __future__ import print_function
import traceback
import sys
from eccodes import *
INPUT = '../../data/reduced_latlon_surface.grib1'

View File

@ -9,7 +9,7 @@
# nor does it submit to any jurisdiction.
#
# Python implementation: get_message_offset
# Python implementation: grib_get_message_offset
#
# Description: how to get the message offset
#

View File

@ -7,6 +7,11 @@
# granted to it by virtue of its status as an intergovernmental organisation
# nor does it submit to any jurisdiction.
# Python Implementation: grib_set_keys
#
# Description: how to set key values in GRIB messages
#
from __future__ import print_function
import traceback
import sys