-
Notifications
You must be signed in to change notification settings - Fork 384
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into jan/auto-cherry-pick
- Loading branch information
Showing
108 changed files
with
3,116 additions
and
365 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
41 changes: 41 additions & 0 deletions
41
crates/store/re_types/definitions/rerun/archetypes/geo_line_strings.fbs
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
namespace rerun.archetypes; | ||
|
||
// --- | ||
|
||
/// Geospatial line strings with positions expressed in [EPSG:4326](https://epsg.io/4326) altitude and longitude (North/East-positive degrees), and optional colors and radii. | ||
/// | ||
/// Also known as "line strips" or "polylines". | ||
/// | ||
/// **Note**: Geospatial entities are experimental. | ||
/// | ||
/// \example archetypes/geo_line_string_simple title="Log a geospatial line string" | ||
// TODO(ab): add screenshot | ||
table GeoLineStrings ( | ||
"attr.rust.derive": "PartialEq", | ||
"attr.rust.new_pub_crate", | ||
"attr.docs.category": "Geospatial", | ||
"attr.docs.view_types": "MapView", | ||
"attr.docs.unreleased" | ||
) { | ||
// --- Required --- | ||
|
||
/// The line strings, expressed in [EPSG:4326](https://epsg.io/4326) coordinates (North/East-positive degrees). | ||
line_strings: [rerun.components.GeoLineString] ("attr.rerun.component_required", order: 1000); | ||
|
||
// --- Recommended --- | ||
|
||
/// Optional radii for the line strings. | ||
/// | ||
/// *Note*: scene units radiii are interpreted as meters. Currently, the display scale only considers the latitude of | ||
/// the first vertex of each line string (see [this issue](https://github.com/rerun-io/rerun/issues/8013)). | ||
radii: [rerun.components.Radius] ("attr.rerun.component_recommended", nullable, order: 2000); | ||
|
||
/// Optional colors for the line strings. | ||
/// | ||
/// \py The colors are interpreted as RGB or RGBA in sRGB gamma-space, | ||
/// \py As either 0-1 floats or 0-255 integers, with separate alpha. | ||
colors: [rerun.components.Color] ("attr.rerun.component_recommended", nullable, order: 2100); | ||
|
||
//TODO(ab): add `Label` and `ShowLabels` components | ||
//TODO(ab): add `Altitude` component | ||
} |
13 changes: 8 additions & 5 deletions
13
crates/store/re_types/definitions/rerun/archetypes/geo_points.fbs
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.