-
Notifications
You must be signed in to change notification settings - Fork 26
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
[python] Add the spatial-encoding version to Scene
and PointCloudDataFrame
objects
#3559
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #3559 +/- ##
==========================================
+ Coverage 86.20% 86.25% +0.05%
==========================================
Files 55 55
Lines 6400 6402 +2
==========================================
+ Hits 5517 5522 +5
+ Misses 883 880 -3
Flags with carried forward coverage won't be shown. Click here to find out more.
|
Scene
and PointCloudDataFrame
objectsScene
and PointCloudDataFrame
objects
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-release-1.15 release-1.15
# Navigate to the new working tree
cd .worktrees/backport-release-1.15
# Create a new branch
git switch --create backport-3559-to-release-1.15
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick --mainline 1 686f4f4ad6578c3ea1a9e39404e935ba4003a51e
# Push it to GitHub
git push --set-upstream origin backport-3559-to-release-1.15
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-release-1.15 Then, create a pull request where the |
…DataFrame` objects (#3559) * Add spatial version to `Scene` and `PointCloudDataFrame` * Add python tests for spatial version number
…DataFrame` objects (#3559) (#3603) * Add spatial version to `Scene` and `PointCloudDataFrame` * Add python tests for spatial version number Co-authored-by: Julia Dark <[email protected]>
Issue and/or context: sc-61913
Adds the spatial encoding version to
Scene
andPointCloudDataFrame
objects.