Skip to content
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

Introduce the GeoLineStrings archetype and support it in the map view #7968

Merged
merged 28 commits into from
Nov 7, 2024
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
4ee5d0e
Introduce `GeoLineStrings` archetype and support it in the map view
abey79 Oct 31, 2024
b507744
Add snippet and screenshot for the `GeoPoints` archetype
abey79 Nov 1, 2024
034c327
Fix view heuristics
abey79 Nov 1, 2024
f078708
Add `LatLon` and `DVec2D` to `rerun.hpp`
abey79 Nov 1, 2024
970e588
Add snippet (but not screenshot!) for `GeoLineStrings`
abey79 Nov 1, 2024
67610cc
`py-fmt`
abey79 Nov 1, 2024
eefbb33
Attempt to fix C++ ci
abey79 Nov 1, 2024
24c4e8b
Codegen
abey79 Nov 1, 2024
3a7d6fc
cpp-fmt
abey79 Nov 1, 2024
8f552bb
more lint fixes
abey79 Nov 1, 2024
68e5a92
moar lint
abey79 Nov 1, 2024
614a54b
Default line radius 2.0 ui points + revert some messy diff
abey79 Nov 1, 2024
36eb768
Added edit ui for `GeoLineString` (based on `LineStrip2D`)
abey79 Nov 1, 2024
1d4cf02
Add python unit tests for `GeoPoints`
abey79 Nov 1, 2024
42269ca
Add python unit tests for `GeoLineStrings`
abey79 Nov 1, 2024
1cd5f76
Added url to epsg:4326 + clarified degree & N/E positive for lat/lon
abey79 Nov 4, 2024
67aee35
Update C++ and Rust snippet to make constructors more explicit about …
abey79 Nov 4, 2024
cbb267a
Add explicit `from_lat_lon` and `from_lon_lat` to `GeoPoints` in Python
abey79 Nov 4, 2024
d969073
All Python constructor now have `lat_lon=` kw-only argument + revert …
abey79 Nov 4, 2024
2c221fc
Fix `GeoLineString` ui
abey79 Nov 4, 2024
778c47c
Custom ui for `LatLon`
abey79 Nov 4, 2024
cc0e527
Update rerun_cpp/src/rerun/archetypes/geo_points_ext.cpp
abey79 Nov 4, 2024
b262a00
Update rerun_cpp/src/rerun/components/geo_line_string_ext.cpp
abey79 Nov 4, 2024
1925d6d
codegen
abey79 Nov 4, 2024
314e3f1
codegen
abey79 Nov 6, 2024
63425de
Fix map view example snippet
abey79 Nov 6, 2024
6e162e9
Codegen, again
abey79 Nov 6, 2024
eb90eb4
do not ever drain ALL_RECORDINGS
teh-cmc Nov 7, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
py-fmt
  • Loading branch information
abey79 authored and teh-cmc committed Nov 7, 2024
commit 67610cc3ede16894a494f3d15e862f3f3b38aec7
2 changes: 1 addition & 1 deletion rerun_py/rerun_sdk/rerun/__init__.py
Original file line number Diff line number Diff line change
@@ -74,8 +74,8 @@
DisconnectedSpace as DisconnectedSpace,
Ellipsoids3D as Ellipsoids3D,
EncodedImage as EncodedImage,
GeoPoints as GeoPoints,
GeoLineStrings as GeoLineStrings,
GeoPoints as GeoPoints,
Image as Image,
InstancePoses3D as InstancePoses3D,
LineStrips2D as LineStrips2D,