SkillAgentSearch skills...

PyAvantes

Python package to handle Avantes Raw8 files

Install / Use

/learn @scholi/PyAvantes
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

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

View on GitHub
GitHub Stars15
CategoryDevelopment
Updated4mo ago
Forks4

Languages

Python

Security Score

87/100

Audited on Dec 2, 2025

No findings