[go: up one dir, main page]

Menu

Tree [aba90a] master /
 History

HTTPS access


File Date Author Commit
 src 2018-11-19 Volker Poplawski Volker Poplawski [d293ef] WIP
 CMakeLists.txt 2018-01-28 volker volker [3bc3eb] refaktored
 README.md 2018-11-22 volker volker [aba90a] install instructions
 manpage.txt 2018-11-21 Volker Poplawski Volker Poplawski [6140a5] file format description

Read Me

asterixRecorder

Command line tool for recording Eurocontrol Asterix data http://www.eurocontrol.int/asterix from UDP network streams.
Features multicast support and automatic rotation of output files.

Usage

Record Asterix data from UDP port 12345 to file output.asterix

asterixrecorder 12345 output.asterix

Record Asterix data from UDP port 12345 in multicast group 239.10.0.10
to file output.asterix and rotate file every 250MB

asterixrecorder -m 239.10.0.10 -S 250000 12345 output.asterix

Installing from source

Requirements

  • c++17 compiler
  • asio lib (https://think-async.com/)
  • cmake >= 3.0.2

Building

asterixRecorder uses cmake for building

mkdir build && cd build
cmake ..
make