Beispiel #1
0
 def camera_exposure_time(self):
     return read_array(self._fh, 'double', self._label_map.camera_exposure_time)
Beispiel #2
0
 def pfs_status(self):
     return read_array(self._fh, 'int', self._label_map.pfs_status)
Beispiel #3
0
 def pfs_offset(self):
     return read_array(self._fh, 'int', self._label_map.pfs_offset)
Beispiel #4
0
 def acquisition_times(self):
     acquisition_times = read_array(self._fh, 'double', self._label_map.acquisition_times)
     if acquisition_times:
         for acquisition_time in map(lambda x: x / 1000.0, acquisition_times):
             yield acquisition_time
Beispiel #5
0
 def z_data(self):
     return read_array(self._fh, 'double', self._label_map.z_data)
Beispiel #6
0
 def camera_exposure_time(self):
     return read_array(self._fh, 'double', self._label_map.camera_exposure_time)
Beispiel #7
0
 def camera_temp(self):
     camera_temp = read_array(self._fh, 'double', self._label_map.camera_temp)
     if camera_temp:
         for temp in map(lambda x: round(x * 100.0, 2), camera_temp):
             yield temp
Beispiel #8
0
 def pfs_offset(self):
     return read_array(self._fh, 'int', self._label_map.pfs_offset)
Beispiel #9
0
 def pfs_status(self):
     return read_array(self._fh, 'int', self._label_map.pfs_status)
Beispiel #10
0
 def z_data(self):
     return read_array(self._fh, 'double', self._label_map.z_data)
Beispiel #11
0
 def acquisition_times(self):
     acquisition_times = read_array(self._fh, 'double', self._label_map.acquisition_times)
     if acquisition_times:
         for acquisition_time in map(lambda x: x / 1000.0, acquisition_times):
             yield acquisition_time
Beispiel #12
0
 def camera_temp(self):
     camera_temp = read_array(self._fh, 'double', self._label_map.camera_temp)
     if camera_temp:
         for temp in map(lambda x: round(x * 100.0, 2), camera_temp):
             yield temp