Geospatial function #3259
-
Hello! I was wondering if is there any function in Ibis which converts a string into a polygon/point? something similar to ST_ GeomFromText() in SQL? Thank you very much in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
@davidjianu39 It looks like there's no way to do this with ibis right now. We are using Is this something you'd be interested in implementing? |
Beta Was this translation helpful? Give feedback.
-
Along these lines, how does one create a literal geometry object that one can perform spatial queries with? For example,
where
|
Beta Was this translation helpful? Give feedback.
-
You can construct geometry literals using shapely types:
and you can also use
|
Beta Was this translation helpful? Give feedback.
You can construct geometry literals using shapely types:
and you can also use
tuple
s in the case ofpoint
and similarly forpolygon