ARPA-SIMC / arkimet-postprocessor-suite

Arkimet postprocessors
GNU General Public License v2.0
0 stars 0 forks source link

BUFR filter postprocessor #4

Closed edigiacomo closed 7 years ago

edigiacomo commented 7 years ago

This postprocessor will filter the BUFR data using the dbadb query syntax.

arki-query --postproc="bufr-filter var=B13011 l2=3600" "reftime:=today" http://arkimet/dataset/gts_synop

The postprocessor is equivalent to:

arki-query --data "reftime:=today" http://arkimet/dataset/gts_synop > out.bufr
dbadb import --dns=sqlite:/tmp/tmp.sqlite3 out.bufr
dbadb export --dsn=sqlite:/tmp/tmp.sqlite3 var=B13011 l2=3600 > result.bufr

@pat1 should like this postprocessor 😉