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