SIF-Tools
SIF-Tools is a light-weight Python toolkit designed to read .sif
data files from an Andor Solis spectrometer, and convert them into easy-to-access numpy arrays.
Requirements
Installation
pip install sif-toolkit
git clone https://github.com/BjornFS/SIF-Toolkit.git
Usage
Importing SIF-Tools in a Python Script
from sif_tools import SIFconvert
data = SIFconvert('tests/UnitTest.sif')
wavelength, count = data[:, 0], data[:, 1]
Support
If you encounter any issues, have suggestions for add-ons, or have questions, feel free to open an issue on the GitHub repository.
Authors