2013-03-25 12:04:10 +00:00
|
|
|
import traceback
|
|
|
|
import sys
|
|
|
|
|
2013-04-18 09:23:23 +00:00
|
|
|
# Copyright 2005-2013 ECMWF.
|
2013-03-25 14:23:07 +00:00
|
|
|
#
|
|
|
|
# This software is licensed under the terms of the Apache Licence Version 2.0
|
|
|
|
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
|
|
|
|
#
|
|
|
|
# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by
|
|
|
|
# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction.
|
|
|
|
|
|
|
|
from eccode import *
|
2013-03-25 12:04:10 +00:00
|
|
|
|
|
|
|
INPUT='../../data/reduced_latlon_surface.grib1'
|
|
|
|
VERBOSE=1 # verbose error reporting
|
|
|
|
|
|
|
|
def example():
|
|
|
|
f = open(INPUT)
|
|
|
|
|
|
|
|
keys = [
|
|
|
|
'Ni',
|
|
|
|
'Nj',
|
|
|
|
'latitudeOfFirstGridPointInDegrees',
|
|
|
|
'longitudeOfFirstGridPointInDegrees',
|
|
|
|
'latitudeOfLastGridPointInDegrees',
|
|
|
|
'longitudeOfLastGridPointInDegrees',
|
|
|
|
]
|
|
|
|
|
|
|
|
while 1:
|
2013-05-20 09:34:52 +00:00
|
|
|
gid = new_from_file(f)
|
2013-03-25 12:04:10 +00:00
|
|
|
if gid is None: break
|
|
|
|
|
|
|
|
for key in keys:
|
2013-03-25 14:23:07 +00:00
|
|
|
if not is_defined(gid,key): raise Exception("Key was not defined")
|
|
|
|
print '%s=%s' % (key,get(gid,key))
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2013-03-25 14:23:07 +00:00
|
|
|
if is_defined(gid,"A_very_silly_girl"): raise Exception("Key was defined")
|
|
|
|
|
2013-03-25 12:04:10 +00:00
|
|
|
print 'There are %d values, average is %f, min is %f, max is %f' % (
|
2013-03-25 14:23:07 +00:00
|
|
|
get_size(gid,'values'),
|
|
|
|
get(gid,'average'),
|
|
|
|
get(gid,'min'),
|
|
|
|
get(gid,'max')
|
2013-03-25 12:04:10 +00:00
|
|
|
)
|
|
|
|
|
2013-03-25 14:23:07 +00:00
|
|
|
release(gid)
|
2013-03-25 12:04:10 +00:00
|
|
|
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
def main():
|
|
|
|
try:
|
|
|
|
example()
|
2013-03-25 14:23:07 +00:00
|
|
|
except InternalError,err:
|
2013-03-25 12:04:10 +00:00
|
|
|
if VERBOSE:
|
|
|
|
traceback.print_exc(file=sys.stderr)
|
|
|
|
else:
|
|
|
|
print >>sys.stderr,err.msg
|
|
|
|
|
|
|
|
return 1
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
sys.exit(main())
|