Skip to content

scholi/pyAvantes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pyAvantes

This python package allows you to view and parse Avantes raw8 spectrum

Example

import os
import numpy as np
import matplotlib.pyplot as plt
from datetime import datetime
%matplotlib inline
import pyAvantes

path = os.path.abspath(pyAvantes.__path__[0]+r'\..\doc\example.Raw8')
S = pyAvantes.Raw8(path)
fig, ax = plt.subplots(1,1,figsize=(10,7))
fig.patch.set_facecolor('white')
ax.plot(S.getWavelength(),S.getRelativeIrradiance());
print(S.getDatetime())

2022-06-09 16:11:00

png

About

Python package to handle Avantes Raw8 files

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages