Brightness data in Rayleigh for OI 630.0 nm (red line) and OI 557.7 (green line) through the night of August 21-22, 2017 obtained using the HiT&MIS from Carbondale, IL
收藏资源简介:
This file contains brightness data in Rayleigh for OI 630.0 nm (red line), OI 557.7 (green line) and NeI 630.5 nm (cloud indicator) through the night of August 21-22, 2017 obtained using the HiT&MIS from Carbondale, IL. This is a python .npz file that contain numpy arrays with uncertainities, so you would need the uncertainties as well as the numpy modules for python. On python it can be opened up as follows: import numpy as np import uncertainties.unumpy as unp dload=np.load("<file location>/eclipse_night_final.npz")#brightnesses are saved as numpy array files<br> int630=dload["int630"] #630 nm red line brightness<br> int557=dload["int557"] #557.7 nm green line brightness<br> int6305=dload["int6305"]# Ne I 630.5 nm brightness for cloud activity<br> time=dload["time"] #capture times (Local times, Central Daylight time) # uncertainities can be accessed as b630value=unp.nominal_values(int630) # 630 nm brightnesses values e630=unp.std_devs(int630)# 630 nm uncertainities. please email me at saurav_aryal@student.uml.edu if you have any questions.



