Esempio n. 1
0
 def camera_exposure_time(self):
     return read_array(self._fh, 'double', self._label_map.camera_exposure_time)
Esempio n. 2
0
 def pfs_status(self):
     return read_array(self._fh, 'int', self._label_map.pfs_status)
Esempio n. 3
0
 def pfs_offset(self):
     return read_array(self._fh, 'int', self._label_map.pfs_offset)
Esempio n. 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
Esempio n. 5
0
 def z_data(self):
     return read_array(self._fh, 'double', self._label_map.z_data)
Esempio n. 6
0
 def camera_exposure_time(self):
     return read_array(self._fh, 'double', self._label_map.camera_exposure_time)
Esempio n. 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
Esempio n. 8
0
 def pfs_offset(self):
     return read_array(self._fh, 'int', self._label_map.pfs_offset)
Esempio n. 9
0
 def pfs_status(self):
     return read_array(self._fh, 'int', self._label_map.pfs_status)
Esempio n. 10
0
 def z_data(self):
     return read_array(self._fh, 'double', self._label_map.z_data)
Esempio n. 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
Esempio n. 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