From 236193de0042ad4574b0db95ae9826d48d9fa2a8 Mon Sep 17 00:00:00 2001 From: Sandor Kertesz Date: Mon, 23 Mar 2015 11:04:29 +0000 Subject: [PATCH] Add examples --- confluence/examples.par | 4 ++-- examples/C/bufr_read_scatterometer.c | 2 +- examples/C/bufr_read_temp.c | 2 +- examples/F90/bufr_read_temp.f90 | 2 +- examples/python/bufr_read_temp.py | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/confluence/examples.par b/confluence/examples.par index a1dd2bfdc..66f0ce5e4 100644 --- a/confluence/examples.par +++ b/confluence/examples.par @@ -1,6 +1,6 @@ #examples -GRIB ( +!GRIB ( grib_clone grib_ensemble_index grib_get_keys @@ -26,9 +26,9 @@ BUFR ( bufr_keys_iterator bufr_missing bufr_read_header + bufr_read_scatterometer bufr_read_synop bufr_read_temp bufr_set_keys - bufr_subset ) diff --git a/examples/C/bufr_read_scatterometer.c b/examples/C/bufr_read_scatterometer.c index 66d59b429..6677cabff 100644 --- a/examples/C/bufr_read_scatterometer.c +++ b/examples/C/bufr_read_scatterometer.c @@ -17,7 +17,7 @@ /* * Please note that scatterometer data can be encoded in various ways in BUFR. Therefore the code - * below might not work directly for other types of SYNOP messages than the one used in the + * below might not work directly for other types of messages than the one used in the * example. It is advised to use bufr_dump to understand the structure of the messages. */ diff --git a/examples/C/bufr_read_temp.c b/examples/C/bufr_read_temp.c index 8371b69b5..c48b73085 100644 --- a/examples/C/bufr_read_temp.c +++ b/examples/C/bufr_read_temp.c @@ -17,7 +17,7 @@ /* * Please note that TEMP reports can be encoded in various ways in BUFR. Therefore the code - * below might not work directly for other types of SYNOP messages than the one used in the + * below might not work directly for other types of TEMP messages than the one used in the * example. It is advised to use bufr_dump to understand the structure of the messages. */ diff --git a/examples/F90/bufr_read_temp.f90 b/examples/F90/bufr_read_temp.f90 index 2e007e166..bfa5d740f 100644 --- a/examples/F90/bufr_read_temp.f90 +++ b/examples/F90/bufr_read_temp.f90 @@ -13,7 +13,7 @@ ! Description: how to read temperature significant levels from TEMP BUFR messages. ! ! Please note that SYNOP reports can be encoded in various ways in BUFR. Therefore the code -! below might not work directly for other types of SYNOP messages than the one used in the +! below might not work directly for other types of TEMP messages than the one used in the ! example. It is advised to bufr_dump to understand the structure of the messages. program bufr_read_temp diff --git a/examples/python/bufr_read_temp.py b/examples/python/bufr_read_temp.py index 297b1b43d..93f7e5484 100644 --- a/examples/python/bufr_read_temp.py +++ b/examples/python/bufr_read_temp.py @@ -13,7 +13,7 @@ # # # Please note that TEMP reports can be encoded in various ways in BUFR. Therefore the code -# below might not work directly for other types of SYNOP messages than the one used in the +# below might not work directly for other types of TEMP messages than the one used in the # example. It is advised to use bufr_dump to understand the structure of the messages. #