You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can get a SerializedArrayDyn but trying to cast it to GeometryArray using let res = GeometryArray::try_from(serialized_array.into_array_ref().as_ref())?; results in a panic src/vendor/geoarrow/src/array/dynamic.rs:199:9: not yet implemented
results in a panic src/vendor/geoarrow/src/array/dynamic.rs:199:9: not yet implemented
I accidentally pushed it directly but I fixed that todo!() in b4ecffa.
But still, that only fixes the into_array_ref panic. GeometryArray::try_from won't work from a serialized array. It only supports zero-copy conversions, and parsing from WKT or WKB isn't a zero-copy conversion. You need to use the WKT and WKB apis to parse it.
No description provided.
The text was updated successfully, but these errors were encountered: