Python code for opening a lambert instruments .fli file
- Numpy
Open a local .fli file
>>> from flifile import FliFile
>>> myflifile = FliFile('sample_file.fli')
>>> data = myflifile.getdata()
>>> data.shape
(348, 256, 12)
>>> data.mean()
26342.449652777777
pip install flifile
https://pypi.org/project/flifile/
- Clone the repository
- Install with the development packages:
pip install -e .[dev]
Before making a pull request, make sure the following three commands run without errors
black .
pytest
mypy