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