Tamas Foldi
Tamas Foldi
I have the same issue, I am stuck at very beginning: On client side I am here: ``` ClientConnectionManager conMan; QObject::connect(&conMan, SIGNAL(disconnected()), QApplication::instance(), SLOT(quit())); QObject::connect(&conMan, SIGNAL(persistentConnectionError(QString)), &conMan, SLOT(handlePersistentConnectionError(QString))); conMan.connectToHost(serverUrl); ```...
Thank you, will give a shot next week.
> Either upgrade to rustc 1.79 or newer, or use > cargo update [email protected] --precise ver > where `ver` is the latest version of `bitstream-io` supporting rustc 1.76.0 > Error:...
Few changes we discussed: - Remove `GpsCoordinate` archetype - Add `ViewCoordinates.LAT_LON_ALT` enum value to indicate that a `Position3D` represents lat/lon/alt values - Use `ViewCoordinates` in view heuristics to select the...
The new `image` crate depends on a newer version of Rust by default unless you disable it by setting `default-features = false`. Since `walkers` enables default features, this is causing...
- Removed `GpsCoordinates` in favor of pure `Points3D`. - Removed default features from `image` in `walkers` repo so now the code works with older `rustc`. - Formatted/linted/removed all gps position...
Extended the nuScenes example with MapView to have at least one example using the new view: https://github.com/rerun-io/rerun/assets/82426/8b329788-a928-4f5a-b228-514642104203
> would this support plotting a scatter of points across the map (instead of a single point/track) ? from the PR seems yes a la `rr.log("points", Points3D([[47.6344, 19.1397, 0], [47.6334,...
> The same from my side, will it be continued? I’m open to continuing this, but it's largely dependent on the Rerun team's priorities. As you may have seen from...
> For the scope of this PR, the recommended/optional components should be included only so long as they are actually supported by the view. If they are not, then it's...