Skip to content
Snippets Groups Projects
Commit 7e7f0e6d authored by Holger Niemann's avatar Holger Niemann
Browse files

update style

parent 8b6ada8d
No related branches found
No related tags found
No related merge requests found
...@@ -7,22 +7,31 @@ loading IR data and printing plots ...@@ -7,22 +7,31 @@ loading IR data and printing plots
@author: pdd @author: pdd
""" """
import numpy as np #import numpy as np
import datetime
import downloadversionIRdata as downIR import downloadversionIRdata as downIR
import matplotlib.pyplot as plt import matplotlib.pyplot as plt
import datetime
if __name__=='__main__': if __name__ == '__main__':
#%% loading data #%% loading data
print(datetime.datetime.now(),"start") print(datetime.datetime.now(), "start")
status,time,images,valid=downIR.get_temp_from_raw_by_program(10,"20180801.017",time_window=2.5,emi=0.8,T_version=2,version=0,threads=1,give_ERROR=False,verbose=5) status, time, images, valid = downIR.get_temp_from_raw_by_program(10,
"20180920.017",
time_window=[1, 1.1],
emi=0.8,
T_version=2,
version=0,
threads=1,
give_ERROR=False,
verbose=5)
print('fertig') print('fertig')
#%% plotting data #%% plotting data
plt.figure() plt.figure()
plt.imshow(images[220]) plt.imshow(images[0], cmap=plt.jet())
plt.clim([280,630]) plt.clim([280, 630])
plt.tick_params(axis='both', # changes apply to the x-axis plt.tick_params(axis='both', # changes apply to the x-axis
which='both', # both major and minor ticks are affected which='both', # both major and minor ticks are affected
bottom='off', # ticks along the bottom edge are off bottom='off', # ticks along the bottom edge are off
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment