A Python package for working with Nortek instruments and data.
- Install Nortek's PdCommATL library (contact Nortek to obtain the necessary installer).
- Either run
pip install nortek
, orgit clone
this repository, and inside runpython setup.py install
from a command prompt.
>>> from nortek.controls import PdControl
>>> vectrino = PdControl()
>>> vectrino.serial_port = "COM2"
>>> vectrino.state
'Not connected'
>>> vectrino.sample_rate = 200
>>> vectrino.coordinate_system
'ENU'
Thanks to PJ Rusello from Nortek for sharing his code for reading the Nortek binary data files.