We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b673738 commit 1afc52bCopy full SHA for 1afc52b
geoarrow-pyarrow/tests/test_pyarrow.py
@@ -150,6 +150,10 @@ def test_array_view_types():
150
assert array.type == ga.wkb_view()
151
assert array.type.storage_type == pa.binary_view()
152
153
+ schema_capsule, array_capsule = array.__arrow_c_array__()
154
+ rearr = pa.Array._import_from_c_capsule(schema_capsule, array_capsule)
155
+ rearr.validate(full=True)
156
+
157
158
def test_array_repr():
159
array = ga.array(["POINT (30 10)"])
0 commit comments