Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagetext
% grib_filter -o out.grib2 - in.grib1 <<EOF
 set edition=2;
 print "centre=[centre] paramId=[paramId]";
 write;
EOF

This filter attempts to convert the messages in the input to edition 2,   prints the originating centre and paramId and finally writes the output to disk.

...