feat: add kinematics support and Altitude types to Entity#295
Merged
Conversation
Adds a new optional `kinematics` field to the `Entity` type along with a suite of new altitude-related types for representing altitude data across multiple reference datums. The `kinematics` field offers higher-granularity kinematics data preferred for Track Entities as an alternative to `location`/`locationUncertainty`. Key changes: - Add optional `kinematics` field with getter and builder methods to `Entity` - Add new `Altitude` type aggregating multiple altitude reference datums - Add `AltitudeAboveGroundLevel`, `AltitudeAboveMeanSeaLevelEgm96`, `AltitudeAboveMeanSeaLevelPressure`, `AltitudeAboveSeaFloor`, and `AltitudeAboveStandardDatumPlanePressure` types
anduril-gh-bot
force-pushed
the
fern-bot/2026-07-21_16-21-16_823
branch
from
July 21, 2026 16:26
89c3ce4 to
f63c580
Compare
asomera-anduril
approved these changes
Jul 21, 2026
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.
5.19.0 → 5.20.0
What's New
This release introduces richer kinematics modeling for entities. A new
Entity.getKinematics()accessor andEntity.Builder.kinematics()builder method let you supply higher-granularity kinematics data, which is the preferred approach for Track Entities as an alternative to the existinglocation/locationUncertaintyfields.The kinematics feature is backed by a family of new types.
Kinematics,KinematicsGeodetic, andKinematicsGeocentricconvey location, velocity, acceleration, attitude, and measurement time in both geodetic and geocentric (ECEF) reference frames. These are supported by new location typesLocationGeodetic(WGS84) andLocationGeocentricEcef, along withVec3andTMat3primitives for 3D vectors and 3x3 covariance matrices.Altitude handling has also been expanded. A new
Altitudetype aggregates measurements across multiple reference datums, backed by datum-specific types covering above ground level, mean sea level (EGM96 and pressure), sea floor, standard datum plane pressure, WGS84 ellipsoid, and below sea surface. NewAltitudeProvenanceandAltitudeProvenanceSourceTypetypes capture how an altitude value was sourced, such as from a barometer, GNSS, or sonar.See full changelog