File: examples.dox

package info (click to toggle)
eccodes 2.44.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 150,248 kB
  • sloc: cpp: 163,056; ansic: 26,308; sh: 21,602; f90: 6,854; perl: 6,363; python: 5,087; java: 2,226; javascript: 1,427; yacc: 854; fortran: 543; lex: 359; makefile: 285; xml: 183; awk: 66
file content (58 lines) | stat: -rw-r--r-- 3,852 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*! \page examples GRIB API examples

\example grib_get_keys.c grib_get_keys.c How to get values through the key names.
\example set.c set.c How to set values through the key names.
\example grib_keys_iterator.c grib_keys_iterator.c How to get the names of all the keys 
defined in a message and how to iterate through them.
\example grib_iterator.c grib_iterator.c How to use an iterator on latitude, longitude, values.
\example grib_precision.c grib_precision.c How to control precision when coding a grib field.
\example grib_multi.c grib_multi.c How to decode a grib message containing many fields.
\example grib_multi_write.c grib_multi_write.c How to encode a grib message containing many fields.
\example grib_print_data.c grib_print_data.c How to print all the data from a grib message.
\example grib_nearest.c grib_nearest.c How to find the nearest grid points.

\example grib_index.f90 How access a grib file through and index. 
\example grib_get_keys.f90 How to get values through the key names. 
\example count_messages.f90 count the messages in a file and loop through them. 
\example get_pl.f90 How to get the list of number of points for each parallel in reduced grids.
\example get_pv.f90 How to get the list of levels.
\example grib_get_data.f90 How to get latitude/longitude/values.
\example set.f90 How to set values through the key names.
\example grib_set_bitmap.f90 How to set and use a bitmap.
\example grib_set_missing.f90 How to set a missing value in the header.
\example grib_set_pv.f90 How to set the list of levels.
\example grib_samples.f90 How to create a new message from a GRIB samples file
\example grib_clone.f90 How to clone a message.
\example grib_copy_message.f90 How to copy a message in memory and create a new message.
\example grib_keys_iterator.f90 How to get the names of all the keys
defined in a message and how to iterate through them.
\example grib_precision.f90 How to control precision when coding a grib field.
\example grib_multi_write.f90 How to encode a grib message containing many fields.
\example grib_multi.f90 How to decode a grib message containing many fields.
\example grib_print_data.f90 How to print all the data contained in a grib file.
\example grib_nearest.f90 How to find the nearest grid points.

\example get_fortran.F get_fortran.F How to get values through the key names.
\example set_fortran.F set_fortran.F How to set values through the key names.
\example keys_iterator_fortran.F keys_iterator_fortran.F How to get the names of all the keys 
defined in a message and how to iterate through them.
\example iterator_fortran.F iterator_fortran.F How to use an iterator on latitude, longitude, values.
\example precision_fortran.F precision_fortran.F How to control precision when coding a grib field.
\example multi_fortran.F multi_fortran.F How to decode a grib message containing many fields.
\example print_data_fortran.F print_data_fortran.F How to print all the data from a grib message.

\example index.py How access a grib file through and index. 
\example grib_get_keys.py How to get values through the key names. 
\example grib_print_data.py How to print all the data contained in a grib file.
\example set.py How to set values through the key names.
\example grib_nearest.py How to find the nearest grid points.
\example grib_set_missing.py How to set a missing value in the GRIB header.
\example count_messages.py How to count the messages in a file and loop through them. 
\example grib_samples.py How to create a new message from a sample.
\example grib_clone.py How to clone a message.
\example grib_iterator.py How to use an iterator on latitude, longitude, values.
\example grib_keys_iterator.py How to get the names of all the keys.
\example grib_multi_write.py How to encode a multi grib message.
\example grib_set_pv.py How to encode the pv coefficients.

*/