ChunkedNativeArray¶
geoarrow.rust.core ¶
ChunkedNativeArray ¶
An immutable chunked array of geometries using GeoArrow's in-memory representation.
__arrow_c_stream__ ¶
An implementation of the Arrow PyCapsule Interface. This dunder method should not be called directly, but enables zero-copy data transfer to other Python libraries that understand Arrow memory.
For example, you can call pyarrow.chunked_array()
to
convert this array into a pyarrow array, without copying memory.
from_arrow
classmethod
¶
from_arrow(data: ArrowArrayExportable) -> Self
Construct this object from existing Arrow data
Parameters:
-
input
–Arrow array to use for constructing this object
Returns:
-
Self
–Self
from_arrow_pycapsule
classmethod
¶
Construct this object from raw Arrow capsules.