Skip to content

Commit

Permalink
Fix js build
Browse files Browse the repository at this point in the history
  • Loading branch information
lewiszlw committed Nov 17, 2023
1 parent ea58065 commit a6060be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/src/array/binary.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ impl WKBArray {
pub fn new(values: Vec<u8>, offsets: Vec<i32>) -> Self {
let binary_array = BinaryArray::new(vec_to_offsets(offsets), values.into(), None);

Self(geoarrow::array::WKBArray::new(binary_array))
Self(geoarrow::array::WKBArray::new(binary_array, geoarrow::datatypes::WKBFlavor::ISO))
}

/// Convert this WKBArray into a PointArray
Expand Down

0 comments on commit a6060be

Please sign in to comment.