This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vpos_panchro = 4230 | |
vpos_spectro = 1180 | |
vpos_monochro = 110 | |
calib1_nm = 27.1 | |
calib1_stepper = 0 | |
calib2_nm = 653.3 | |
calib2_stepper = 100000 | |
min_limit_nm = 100 | |
max_limit_nm = 1000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SIDEPLOTS = 0.0 # defaults 0.15 of width & height; set to 0 to disable them | |
FONTSIZE = 20 | |
SIDEPLOTS = 0.15; FONTSIZE = 18 # defaults 0.15 of width & height; set to 0 to disable them | |
SIDELEGENDS = False # True is useful for small fonts & big plots only | |
SAVEPLOT = True | |
SAVEDECAYS, SAVESPECTRA = False, False # for further processing |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
#-*- coding: utf-8 -*- | |
# Visualise 2D maps from the Horiba Evolution confocal Raman microscope/spectrometer (needs converting .L6M to .TXT) | |
## Import common moduli | |
import sys, os, time, collections | |
from pathlib import Path | |
import matplotlib.pyplot as plt | |
import numpy as np | |
#from scipy.constants import c, hbar, pi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
#-*- coding: utf-8 -*- | |
""" | |
Invocation: | |
explore_liborigins_object.py file.opj | |
Results in recursive printout of all the nested structure of the object provided by liborigin. | |
Code can be modified and reused for other complex objects. | |
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
#-*- coding: utf-8 -*- | |
# Searches for such charset conversion, which would generate a wrong encoded string from a known correct one | |
# Public domain, written by Filip Dominec 2022 | |
# EXAMPLES: | |
#wrong, correct = "╪ konstrukЯnб ¤eчenб", "ě konstrukční řešení" | |
#wrong, correct = "slouÄeninovĂ˝ch", "sloučeninových" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
#-*- coding: utf-8 -*- | |
## Import common moduli | |
import sys | |
import matplotlib.pyplot as plt | |
import numpy as np | |
import struct | |
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
#-*- coding: utf-8 -*- | |
# License: This code is released as public domain. | |
import time | |
import numpy as np | |
import tkinter as tk | |
X_SIZE, Y_SIZE = 200, 200 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
#-*- coding: utf-8 -*- | |
import chardet, pathlib, sys | |
known_enc = {'Win':'Windows-1250', 'ISO':'ISO-8859-2', '1250':'Windows-1250', 'utf':'utf8' } | |
for fn in sys.argv[1:]: | |
found_enc = chardet.detect(pathlib.Path(fn).read_bytes())['encoding'] | |
if found_enc[:3] in known_enc.keys(): | |
found_enc = known_enc[found_enc[:3]] | |
print(f'{fn:20s} auto-detected encoding {found_enc:14s}', end='') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"Meteor" Forschungsergebnisse = "Meteor" Forschungsergeb. | |
2D Materials = 2D Mater. | |
3D Printing and Additive Manufacturing = 3D Print. Addit. Manuf. | |
AACN Clinical Issues = AACN Clin. Issues | |
AACN Clinical Issues in Critical Care Nursing = AACN Clin. Issues Crit. Care Nurs. | |
AADE Editors Journal = AADE Ed. J. | |
AANA Journal = AANA J. | |
AANNT Journal = AANNT J. | |
AAOHN Journal = AAOHN J. | |
AAPG Bulletin = AAPG Bull. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
#-*- coding: utf-8 -*- | |
""" | |
Batch fitting of multiple spectra - evaluation of spectroscopic response of InGaN/GaN quantum-well sensors to the | |
presence of surface charges induced by gases or liquids. | |
Invocation: | |
./multifit.py <filename>.dat | |
where |
NewerOlder