We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
sorbet.semantic_family
This appears to be a consequence of:
This breaks the new send_dataframe functionality introduced in:
send_dataframe
Code to repro:
from __future__ import annotations import tempfile import rerun as rr with tempfile.TemporaryDirectory() as tmpdir: rrd = tmpdir + "/tmp.rrd" rr.init("rerun_example_test_recording") rr.set_time_seconds("my_index", 1) rr.log("points", rr.Points3D([1, 2, 3])) rr.save(rrd) recording = rr.dataframe.load_recording(rrd) assert recording is not None df = recording.view(index="my_index", contents="points").select().read_all() print(df.schema.field("/points:Position3D").metadata)
Prior to https://github.com/rerun-io/rerun/pull/8499/files
➜ python dump_tags.py {b'sorbet.path': b'/points', b'sorbet.logical_type': b'positions', b'sorbet.semantic_family': b'Points3D', b'sorbet.semantic_type': b'Position3D'}
After https://github.com/rerun-io/rerun/pull/8499/files
➜ python dump_tags.py {b'sorbet.path': b'/points', b'sorbet.semantic_type': b'Position3D'}
The text was updated successfully, but these errors were encountered:
I checked on the 0.19 / 0.20 releases.
Even though the code existed to set semantic_family:
semantic_family
rerun/crates/store/re_chunk_store/src/dataframe.rs
Lines 276 to 281 in d44b701
This repro code shows it wasn't being set there either. We just didn't notice.
Sorry, something went wrong.
Can confirm this can be worked around by specifying include_indicator_columns = True on the view. This makes sense for a pre-tagged-component world.
include_indicator_columns = True
include_indicator_columns=True
Add docstring about need for include_indicator_columns=True (#8528)
5b62c37
### Related - #8522 ### What Explains how to avoid hitting an issue.
No branches or pull requests
This appears to be a consequence of:
This breaks the new
send_dataframe
functionality introduced in:Code to repro:
Prior to https://github.com/rerun-io/rerun/pull/8499/files
After https://github.com/rerun-io/rerun/pull/8499/files
The text was updated successfully, but these errors were encountered: