Trait ToPointArray

Source
pub trait ToPointArray {
    // Required method
    fn to_point_builder(&self, typ: PointType) -> Result<PointBuilder>;

    // Provided method
    fn to_point_array(&self, typ: PointType) -> Result<PointArray> { ... }
}
Available on crate feature geozero only.
Expand description

GeoZero trait to convert to GeoArrow PointArray.

Required Methods§

Source

fn to_point_builder(&self, typ: PointType) -> Result<PointBuilder>

Convert to a GeoArrow PointBuilder

Provided Methods§

Source

fn to_point_array(&self, typ: PointType) -> Result<PointArray>

Convert to GeoArrow PointArray

Implementors§