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
If I take an encoded waveform, read it and write it to a new file, it will not be written as encoded. (It will be written as a gzipped array, but this is because LH5Store.write() now defaults to compression.) However, it will still have the attributes associated with encoding ('codec', etc.) This does not seem like behavior that the user would expect. Reading in a data set and then writing it to file should not change how the data is stored.
This is because read decodes the waveform and stores it in an ArrayOfEqualSizedArrays. When write comes to this object, it does not encode it because it is not an ArrayOfEncodedEqualSizedArrays.
If I take an encoded waveform, read it and write it to a new file, it will not be written as encoded. (It will be written as a gzipped array, but this is because
LH5Store.write()
now defaults to compression.) However, it will still have the attributes associated with encoding ('codec', etc.) This does not seem like behavior that the user would expect. Reading in a data set and then writing it to file should not change how the data is stored.This is because
read
decodes the waveform and stores it in anArrayOfEqualSizedArrays
. Whenwrite
comes to this object, it does not encode it because it is not anArrayOfEncodedEqualSizedArrays
.gives
The text was updated successfully, but these errors were encountered: