python(feat): ULog data imports#663
Merged
Merged
Conversation
Contributor
|
Python docs preview: https://sift-stack.github.io/sift/python/pr-663/ Deployed from |
wei-qlu
marked this pull request as ready for review
July 1, 2026 23:45
wei-qlu
force-pushed
the
eng-12125-sift-client-ulog-imports
branch
from
July 2, 2026 00:35
1d2d394 to
7b64adb
Compare
marc-sift
requested changes
Jul 6, 2026
wei-qlu
marked this pull request as draft
July 8, 2026 17:52
wei-qlu
force-pushed
the
eng-12125-sift-client-ulog-imports
branch
from
July 9, 2026 20:24
fb44f44 to
c8e91da
Compare
wei-qlu
marked this pull request as ready for review
July 9, 2026 21:37
marc-sift
requested changes
Jul 10, 2026
marc-sift
approved these changes
Jul 10, 2026
alexluck-sift
pushed a commit
that referenced
this pull request
Jul 11, 2026
Bump version to 0.19.0 and update the changelog for the PRs merged since v0.18.0: ABAC attributes (#646), get_data cache improvements (#650), pytest docstring cleaning (#658), ULog data imports (#663), access control API grouping (#666), report templates (#672), download_file extra headers (#677), and the get_data pagination fix plus progress bars (#678). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Y5U49rrpvQm5bPbvEjR4xr
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds PX4 ULog (
.ulg) as a data import format in the Python client. ULog files are self-describing, so import is one call with no schema:ulogextra:pip install sift-stack-py[ulog].detect_configto inspect the channels first and drop, rename, or retype them before importing.message_name,instance, andfield_name. The derivedchannelproperty gives the full name, e.g."sensor_accel_0.x", which is also the default Sift channel name.relative_start_time(anchors the timeline; required when the log has no GPS fix),info_keys/param_keys(imported as run metadata), andparse_error_policy.Test
.ulgfiles (all scalar types, multi-instance topics, logged strings, corrupt records) and config round-trips through the proto.