Documentation: Tool options

This commit is contained in:
Shahram Najm 2017-02-13 11:01:54 +00:00
parent 7a1ec25458
commit ba7cd53210
4 changed files with 6 additions and 6 deletions

View File

@ -5,6 +5,6 @@ echo "-# bufr_get fails if a key is not found.\\n "
echo "\\verbatim " echo "\\verbatim "
echo ">bufr_get -p centreName ../data/bufr/syno_1.bufr" echo ">bufr_get -p centreName ../data/bufr/syno_1.bufr"
set +e set +e
./grib_get -p gcentreName ../data/bufr/syno_1.bufr ./bufr_get -p gcentreName ../data/bufr/syno_1.bufr
set -e set -e
echo "\\endverbatim " echo "\\endverbatim "

View File

@ -23,9 +23,9 @@ grib_option grib_options[]={
{"p:",0,0,1,1,0}, {"p:",0,0,1,1,0},
{"P:",0,0,0,1,0}, {"P:",0,0,0,1,0},
{"w:","key[:{s|d|i}]=value,key[:{s|d|i}]=value,...", {"w:","key[:{s|d|i}]=value,key[:{s|d|i}]=value,...",
"\n\t\tWhere clause.\n\t\tSet is only executed for grib messages matching all the " "\n\t\tWhere clause.\n\t\tSet is only executed for BUFR messages matching all the "
"key/value constraints.\n\t\tIf a grib message does not match the constraints it is" "key/value constraints.\n\t\tIf a BUFR message does not match the constraints it is"
" copied unchanged\n\t\tto the output_grib_file. This behaviour can be changed " " copied unchanged\n\t\tto the output_bufr_file. This behaviour can be changed "
"setting the option -S.\n\t\tFor each key a string (key:s), a double (key:d) or" "setting the option -S.\n\t\tFor each key a string (key:s), a double (key:d) or"
" an integer (key:i)\n\t\ttype can be defined. Default type is string.\n",0,1,0}, " an integer (key:i)\n\t\ttype can be defined. Default type is string.\n",0,1,0},
{"q",0,0,1,0,0}, {"q",0,0,1,0,0},

View File

@ -95,7 +95,7 @@ grib_options_help grib_options_help_list[] ={
"\tCompare floating point values using the relative error as tolerance." "\tCompare floating point values using the relative error as tolerance."
"\n\t\tkey1=relative_error will compare key1 using relative_error1." "\n\t\tkey1=relative_error will compare key1 using relative_error1."
"\n\t\tall=relative_error will compare all the floating point keys using relative_error. Default all=0.\n"}, "\n\t\tall=relative_error will compare all the floating point keys using relative_error. Default all=0.\n"},
{"S",0,"Strict. Only grib messages matching all the constraints are copied to" {"S",0,"Strict. Only messages matching all the constraints are copied to"
"\n\t\tthe output file\n"}, "\n\t\tthe output file\n"},
{"T:","T | B | M | A","Message type. T->GTS, B->BUFR, M->METAR (Experimental),A->Any (Experimental).\n\t\t\tThe input file is interpreted according to the message type.\n"}, {"T:","T | B | M | A","Message type. T->GTS, B->BUFR, M->METAR (Experimental),A->Any (Experimental).\n\t\t\tThe input file is interpreted according to the message type.\n"},
{"V",0,"Version.\n"}, {"V",0,"Version.\n"},

View File

@ -23,7 +23,7 @@ grib_option grib_options[]={
{"p:",0,0,1,1,0}, {"p:",0,0,1,1,0},
{"P:",0,0,0,1,0}, {"P:",0,0,0,1,0},
{"w:","key[:{s|d|i}]=value,key[:{s|d|i}]=value,...","\n\t\tWhere clause." {"w:","key[:{s|d|i}]=value,key[:{s|d|i}]=value,...","\n\t\tWhere clause."
"\n\t\tOnly grib messages matching the key/value constraints are " "\n\t\tOnly messages matching the key/value constraints are "
"copied to the\n\t\toutput_grib_file.\n\t\tFor each key a string (key:s), a " "copied to the\n\t\toutput_grib_file.\n\t\tFor each key a string (key:s), a "
"double (key:d) or an integer (key:i)\n\t\ttype can be defined. Default type " "double (key:d) or an integer (key:i)\n\t\ttype can be defined. Default type "
"is string.\n",0,1,0}, "is string.\n",0,1,0},