Date and Time in HDFView

Hello,
I have managed to get my timeseries saved as a hdf5 file through the pytables interface.

I installed hdfview.

When I view my tables, I can only see the date column with stange values like:

204558770
204558771

Is there a possibility to display date and time information in an ISO like format?

Thanks in advance,
Timmie

P.S. Sorry if this may reach you twice.

···

--
Sensationsangebot verl�ngert: GMX FreeDSL - Telefonanschluss + DSL
f�r nur 16,37 Euro/mtl.!* http://dsl.gmx.de/?ac=OM.AD.PD003K1308T4569a

----------------------------------------------------------------------
This mailing list is for HDF software users discussion.
To subscribe to this list, send a message to hdf-forum-subscribe@hdfgroup.org.
To unsubscribe, send a message to hdf-forum-unsubscribe@hdfgroup.org.

Hi Tim,

A Thursday 18 December 2008, timmichelsen@gmx-topmail.de escrigué:

Hello,
I have managed to get my timeseries saved as a hdf5 file through the
pytables interface.

I installed hdfview.

When I view my tables, I can only see the date column with stange
values like:

204558770
204558771

These are not strange values, but most likely the number of seconds
since UNIX Epoch (January 1st, 1970). In your case:

In [9]: time.ctime(204558770)
Out[9]: 'Fri Jun 25 15:52:50 1976'

In [10]: time.ctime(204558771)
Out[10]: 'Fri Jun 25 15:52:51 1976'

···

Is there a possibility to display date and time information in an ISO
like format?

Thanks in advance,
Timmie

P.S. Sorry if this may reach you twice.

--
Francesc Alted

----------------------------------------------------------------------
This mailing list is for HDF software users discussion.
To subscribe to this list, send a message to hdf-forum-subscribe@hdfgroup.org.
To unsubscribe, send a message to hdf-forum-unsubscribe@hdfgroup.org.