-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
unsupported datatype listing group delta_time #17
Comments
I tested this and I got the same error with both versions, I see less errors if we use the latest code from %pip uninstall -y h5coro
%pip install git+https://github.com/ICESat2-SlideRule/h5coro.git@c69e6f0
groups = h5obj.listGroup('/gt1l/heights', w_attr=True, w_inspect=True) stderr output: H5Coro encountered error reading /gt1l/heights/ph_id_channel/DIMENSION_LIST: variable length data types require reading a global heap, which is not yet supported
H5Coro encountered error reading /gt1l/heights/lon_ph/DIMENSION_LIST: variable length data types require reading a global heap, which is not yet supported
H5Coro encountered error reading /gt1l/heights/ph_id_count/DIMENSION_LIST: variable length data types require reading a global heap, which is not yet supported
H5Coro encountered error reading /gt1l/heights/pce_mframe_cnt/DIMENSION_LIST: variable length data types require reading a global heap, which is not yet supported
H5Coro encountered error reading /gt1l/heights/h_ph/DIMENSION_LIST: variable length data types require reading a global heap, which is not yet supported
H5Coro encountered error reading /gt1l/heights/ph_id_pulse/DIMENSION_LIST: variable length data types require reading a global heap, which is not yet supported
H5Coro encountered error reading /gt1l/heights/signal_conf_ph/DIMENSION_LIST: variable length data types require reading a global heap, which is not yet supported
H5Coro encountered error reading /gt1l/heights/dist_ph_along/DIMENSION_LIST: variable length data types require reading a global heap, which is not yet supported
H5Coro encountered error reading /gt1l/heights/dist_ph_across/DIMENSION_LIST: variable length data types require reading a global heap, which is not yet supported
H5Coro encountered error reading /gt1l/heights/lat_ph/DIMENSION_LIST: variable length data types require reading a global heap, which is not yet supported
H5Coro encountered error reading /gt1l/heights/weight_ph/DIMENSION_LIST: variable length data types require reading a global heap, which is not yet supported
H5Coro encountered error reading /gt1l/heights/quality_ph/DIMENSION_LIST: variable length data types require reading a global heap, which is not yet supported
H5Coro encountered error reading /gt1l/heights/delta_time/REFERENCE_LIST: unsupported datatype: 6 with %pip uninstall -y h5coro
%pip install git+https://github.com/ICESat2-SlideRule/h5coro.git@main
groups = h5obj.listGroup('/gt1l/heights', w_attr=True, w_inspect=True) stdout
which is weird because the original errors were send to stderr, the changes on the last commits didn't modify the code in the metadata readers, I wonder if there is something else going on. @jpswinski |
@rwegener2 @betolink Thanks for reporting this. It looks like there are a couple of things going on. I'll try to address each of them.
Here is an update to your script that lists the group with the latest code base: group = h5obj.listGroup('/gt1l/heights', w_attr=True, w_inspect=True)
for variable, listing in group.items():
print(f'{variable}:')
for key, value in listing.items():
print(f' {key}: {value}')
|
Description
While running a
listGroup()
call on an ATL03 product, the groupgt1l/heights/delta_time
returns an error about not supporting the datatype:From the code it looks like this means that some kind of
RuntimeError
was encountered while reading.When I hard reset h5coro back to this commit it seems to work fine, so it may be related to changes from the following commit.
Minimum Reproducible Example
The text was updated successfully, but these errors were encountered: