ircal
is an analytics dashboard for infrared radiometry data. It enables data visualization, calibration, and control of a system comprised of a blackbody radiation emitter and an infrared radiometer.
$ git clone https://github.com/NWChen/ircal.git
$ cd ircal
$ make
/docs
contains project documentation generated automatically by pdoc from docstrings in source files. If you would like to regenerate documentation, then:$ cd ircal $ make docs
/src
contains all source files, including KT/CT and blackbody drivers and dashboard code./tests
contains all unit tests for this project. It also includes mock (simulated)Serial
andTelnet
objects for testing without a radiometer/blackbody attached. If you make a change and would like to test it prior to deploying the application, then:$ cd ircal $ make tests