Radioastronomy utility. For more information, see the MLAB wiki.
-
Install the following libraries:
- libfftw3 (http://www.fftw.org/download.html,
sudo apt-get install libfftw3-devon Ubuntu) - cfitsio (http://heasarc.gsfc.nasa.gov/fitsio/,
sudo apt-get install cfitsio-devon Ubuntu) - JACK (http://jackaudio.org/download)
- libfftw3 (http://www.fftw.org/download.html,
-
Clone the repository using (for instance):
git clone git://github.com/nnen/waterfall.git. -
Checkout and build the
cppappsubmodule:$ git submodule init $ git submodule update $ cd cppapp $ make -
Change directory to the
cppappsubdirectory and build the cppapp library:$ cd cppapp $ autoreconf --install $ ./configure $ make -
In the
waterfalldirectory, runmake. The resulting binary, namedwaterfall, should appear in the project's root directory. -
If anything goes wrong, please send me an email with the output at [email protected] .
The program attempts to read a config file in the user's home directory called
.waterfall. Example config file is stored in waterfall/watefall.cfg. You
can copy it to your home directory and edit as you like ($ mv waterfall.cfg $HOME/.waterfall).
$ waterfall [WAV_FILE]
Without the WAV_FILE argument, waterfall attempts to connect to a jack
server and then listen forever to the data sent by Jack. If WAV_FILE is
specifed, waterfall uses WAV frontend, reads the WAV file and exits. In
either case, the program stores the resulting data in a series of FITS files
(snapshots) in its current working directory (the directory from which you run
the program).
Currently, the format of the snapshot file name is
snapshot_LOCATION_YEAR_MM_DD_HH_mm_ss.fits, where LOCATION is the value of
the location configuration option, YEAR is a four-digit year, MM is
two-digit month, DD two-digit day and so on.
Despite there being a log_file configuration option, the log is currently
written only to the stderr. To append it to a file, do output redirection ($ waterfall 2> your_log_file.log).
See CHANGELOG.md.