diff --git a/examples/python/openstreetmap_data/openstreetmap_data.py b/examples/python/openstreetmap_data/openstreetmap_data.py index 1abf15159bc6..5a5cd977f517 100644 --- a/examples/python/openstreetmap_data/openstreetmap_data.py +++ b/examples/python/openstreetmap_data/openstreetmap_data.py @@ -66,7 +66,7 @@ def log_way(way: dict[str, Any]) -> None: coords = [(node["lat"], node["lon"]) for node in way["geometry"]] - rr.qlog(entity_path, rr.GeoLineStrings(lat_lon=[coords], radii=rr.components.Radius.ui_points(2.0))) + rr.log(entity_path, rr.GeoLineStrings(lat_lon=[coords], radii=rr.components.Radius.ui_points(2.0))) rr.log(entity_path, rr.AnyValues(**way.get("tags", {})))