petern48 commented on code in PR #2105:
URL: https://github.com/apache/sedona/pull/2105#discussion_r2214358065
##########
python/sedona/geopandas/tools/sjoin.py:
##########
@@ -166,7 +166,8 @@ def _frame_join(
final_columns = []
# Add geometry column (always from left for geopandas compatibility)
- final_columns.append("l_geometry as geometry")
+ # Currently, Sedona stores geometries in EWKB format
+ final_columns.append("ST_AsEWKB(l_geometry) as geometry")
Review Comment:
Added this fix to make tests pass after the merge. FYI @zhangfengcdt, this
is in `sjoin.py`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]