Skip to content
Snippets Groups Projects
Commit 042f47a0 authored by Thomas Juerges's avatar Thomas Juerges
Browse files

Correct use of received time stamp due to format change of it

parent 6e49ea87
No related branches found
No related tags found
No related merge requests found
......@@ -73,8 +73,7 @@ class StatsCrosslet(Device):
self.debug_stream("fetching data: subband = %d, integration_time = %d", self._subband, self._integration_time)
t, visibilities_list, rcu_modes = self.obj.call_method(self.record_cross, self._subband, self._integration_time)
self.debug_stream("fetching data done")
time_stamp = datetime(t[0], t[1], t[2], t[3], t[4], t[5])
self._time_stamp = time_stamp.isoformat()
self._time_stamp = t
visibilities = numpy.array(visibilities_list)[0] + 1j * numpy.array(visibilities_list[1])
self._visibilities_real = visibilities.real
self._visibilities_imag = visibilities.imag
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment