├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── binding.gyp ├── package.json ├── src ├── addon.cpp ├── ais.h ├── aisdecoder.cpp ├── aisdecoder.h ├── aivdm_decode.c ├── aivdm_decode.h ├── bits.c ├── bits.h ├── driver_ais.c ├── driver_ais.h ├── gpsd.c ├── gpsd.h ├── gpsd_config.h ├── hex.c └── strl.c └── test └── aisdecoder.test.js /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kintel/aisdecoder/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kintel/aisdecoder/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kintel/aisdecoder/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kintel/aisdecoder/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kintel/aisdecoder/HEAD/binding.gyp -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kintel/aisdecoder/HEAD/package.json -------------------------------------------------------------------------------- /src/addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kintel/aisdecoder/HEAD/src/addon.cpp -------------------------------------------------------------------------------- /src/ais.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kintel/aisdecoder/HEAD/src/ais.h -------------------------------------------------------------------------------- /src/aisdecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kintel/aisdecoder/HEAD/src/aisdecoder.cpp -------------------------------------------------------------------------------- /src/aisdecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kintel/aisdecoder/HEAD/src/aisdecoder.h -------------------------------------------------------------------------------- /src/aivdm_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kintel/aisdecoder/HEAD/src/aivdm_decode.c -------------------------------------------------------------------------------- /src/aivdm_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kintel/aisdecoder/HEAD/src/aivdm_decode.h -------------------------------------------------------------------------------- /src/bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kintel/aisdecoder/HEAD/src/bits.c -------------------------------------------------------------------------------- /src/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kintel/aisdecoder/HEAD/src/bits.h -------------------------------------------------------------------------------- /src/driver_ais.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kintel/aisdecoder/HEAD/src/driver_ais.c -------------------------------------------------------------------------------- /src/driver_ais.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kintel/aisdecoder/HEAD/src/driver_ais.h -------------------------------------------------------------------------------- /src/gpsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kintel/aisdecoder/HEAD/src/gpsd.c -------------------------------------------------------------------------------- /src/gpsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kintel/aisdecoder/HEAD/src/gpsd.h -------------------------------------------------------------------------------- /src/gpsd_config.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kintel/aisdecoder/HEAD/src/hex.c -------------------------------------------------------------------------------- /src/strl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kintel/aisdecoder/HEAD/src/strl.c -------------------------------------------------------------------------------- /test/aisdecoder.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kintel/aisdecoder/HEAD/test/aisdecoder.test.js --------------------------------------------------------------------------------