예제 #1
0
 def __new__(cls):
     anc = _AncillaryFileLoader('mvn_iuv_sensitivity-muv.npy')
     array = anc.load_dict()['wavelength']
     return super().__new__(cls, array, anc.path)
예제 #2
0
 def __new__(cls):
     cls.__warn_this_is_deprecated()
     anc = _AncillaryFileLoader('mvn_iuv_sensitivity-muv-pipeline.npy')
     array = anc.load_dict()['sensitivity']
     return super().__new__(cls, array, anc.path)
예제 #3
0
파일: flatfield.py 프로젝트: kconnour/PyUVS
 def __new__(cls):
     anc = _AncillaryFileLoader('mvn_iuv_flatfield.npy')
     array = anc.load_dict()['wavelengths']
     return super().__new__(cls, array, anc.path)
예제 #4
0
파일: templates.py 프로젝트: kconnour/PyUVS
 def __new__(cls):
     anc = _AncillaryFileLoader('muv_templates.npy')
     array = anc.load_dict()['n2_vk']
     return super().__new__(cls, array, anc.path)
예제 #5
0
파일: templates.py 프로젝트: kconnour/PyUVS
 def __new__(cls):
     anc = _AncillaryFileLoader('muv_wavelengths.npy')
     array = anc.load_dict()['wavelength_edges']
     return super().__new__(cls, array, anc.path)
예제 #6
0
 def __new__(cls):
     anc = _AncillaryFileLoader('magnetic_field_open_probability.npy')
     array = anc.load_array()
     return super().__new__(cls, array, anc.path)
예제 #7
0
 def __new__(cls):
     anc = _AncillaryFileLoader('mars_surface.npy')
     array = anc.load_array()
     return super().__new__(cls, array, anc.path)