We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41cf71f commit d82fce7Copy full SHA for d82fce7
application.py
@@ -605,6 +605,25 @@ def routine_data_sender(self):
605
scopes
606
)
607
# Display absorbance
608
+ to_disp_abs = dict([])
609
+ for key in absorbanceSpectrum:
610
+ to_disp_abs[key] =\
611
+ absorbanceSpectrum[key].getInterpolated(
612
+ startingLamb=float(self.config_dict[
613
+ self.ROUT_START_LAM
614
+ ].get()),
615
+ endingLamb=float(self.config_dict[
616
+ self.ROUT_END_LAM
617
618
+ nrPoints=int(self.config_dict[
619
+ self.ROUT_NR_POINTS
620
621
+ smoothing=True,
622
+ windowSize=int(self.config_dict[
623
+ self.ROUT_INTERP_INT
624
625
+ polDegree=5
626
+ )
627
self.liveDisplay.putSpectrasAndUpdate(
628
self.LIVE_ABS, absorbanceSpectrum
629
0 commit comments