Go package for reading and writing TEAC TAFFmat files.
TAFFmat is TEAC's proprietary file format used to store data from their LX series and other data recorders.
According to the TEAC "LX Series Recording Unit Instruction Manual":
TAFFmat (an acronym for TEAC Data Acquisition File Format) is a file format composed of the following:
- a data file containing A/D (analog to digital) converted data. The file is binary format with the extension dat.
- a header file containing information such as recording conditions. The file is in text format with the extension hdr.
TAFFmat is a trademark of TEAC Corporation.
The following data recorders store their data in the TAFFmat file format:
- TEAC LX-10/20
- TEAC LX-110/120
- TEAC WX-7000 Series
- TEAC es8
$ go get github.com/gotmc/taffmat
Documentation can be found at either:
- https://godoc.org/github.com/gotmc/taffmat
- http://localhost:6060/pkg/github.com/gotmc/taffmat/ after running
$ godoc -http=:6060
To contribute, fork taffmat, create a feature branch, and then submit a pull request.
Prior to submitting a pull request, please run:
$ make check
To update and view the test coverage report:
$ make cover
taffmat is released under the MIT license. Please see the LICENSE.txt file for more information.