Skip to content

Commit

Permalink
passing Python tests
Browse files Browse the repository at this point in the history
  • Loading branch information
paleolimbot committed Sep 17, 2023
1 parent c9c4c8b commit 945ab52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/geoarrow-pyarrow/src/geoarrow/pyarrow/_kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ def visit_void_agg(type_in):

@staticmethod
def as_wkt(type_in):
return Kernel("as_wkt", type_in)
return Kernel.as_geoarrow(type_in, 100003)

@staticmethod
def as_wkb(type_in):
return Kernel("as_wkb", type_in)
return Kernel.as_geoarrow(type_in, 100001)

@staticmethod
def format_wkt(type_in, precision=None, max_element_size_bytes=None):
Expand Down

0 comments on commit 945ab52

Please sign in to comment.