You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need to generate a H5 file which is read by some legacy system which requires STRSIZE and STRPAD to be set to correct values for attributes (it also needs to be ASCII). I'm doing something like this to set the attributes: Hdf5.WriteAsciiStringAttributes(groupId, "To_area_id", new List<string> { "2" });
And I then get the following attribute (extracted using h5dump):
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I need to generate a H5 file which is read by some legacy system which requires STRSIZE and STRPAD to be set to correct values for attributes (it also needs to be ASCII). I'm doing something like this to set the attributes:
Hdf5.WriteAsciiStringAttributes(groupId, "To_area_id", new List<string> { "2" });
And I then get the following attribute (extracted using h5dump):
But I need to get:
Is this possible somehow?
Beta Was this translation helpful? Give feedback.
All reactions