6#include "../collection.hpp"
7#include "../datatypes/dvec2d.hpp"
8#include "../result.hpp"
28 line_string.lat_lon = std::move(lat_lon_);
45 struct Loggable<components::GeoLineString> {
46 static constexpr const char Name[] =
"rerun.components.GeoLineString";
49 static const std::shared_ptr<arrow::DataType>& arrow_datatype();
52 static Result<std::shared_ptr<arrow::Array>> to_arrow(
53 const components::GeoLineString* instances,
size_t num_instances
58 arrow::ListBuilder* builder,
const components::GeoLineString* elements,
Generic collection of elements that are roughly contiguous in memory.
Definition collection.hpp:49
Status outcome object (success or error) returned for fallible operations.
Definition error.hpp:95
All built-in components. See Types in the Rerun manual.
Definition rerun.hpp:79
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:22
Component: A geospatial line string expressed in EPSG:4326 latitude and longitude (North/East-positiv...
Definition geo_line_string.hpp:21
static GeoLineString from_lat_lon(Collection< datatypes::DVec2D > lat_lon_)
Creates a new GeoLineString object based on EPSG:4326 latitude and longitude (North/East-positive deg...
Definition geo_line_string.hpp:26