NativeArray¶
geoarrow.rust.core ¶
NativeArray ¶
An immutable array of geometries using GeoArrow's in-memory representation.
__arrow_c_array__ ¶
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.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