.net - Writing a C# DateTime using HDF5.NET that can be read by PyTables -
i'm writing data logging application in c# using hdf5.net. .h5 files written opened , analysed using pytables.
pytables uses time32col , time64col store timestamps in hdf5 files. files created pytables, works great.
i know hdf5 stores timestamps 4 or 8-byte unix timestamps (https://www.hdfgroup.org/hdf5/doc1.6/ug/12_datatypes.html) , i'm able use c# convert .net datetime unix timestamps no trouble, problem in creating h5 type when open file on other end pytables knows it's timestamp.
the documentation says use 1 of h5t_unix_d32le, h5t_unix_d32le, h5t_unix_d32le or h5t_unix_d32le. problem none of these available in h5t.h5type of hdf5.net.
does have workaround?
Comments
Post a Comment