Skip to content

Commit e3dee78

Browse files
committed
chore(bigquery): convert from wkb now that we always produce it
1 parent 1e7a47f commit e3dee78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ibis/backends/bigquery/converter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def convert_GeoSpatial(cls, s, dtype, pandas_type):
99
import geopandas as gpd
1010
import shapely as shp
1111

12-
return gpd.GeoSeries(shp.from_wkt(s))
12+
return gpd.GeoSeries(shp.from_wkb(s))
1313

1414
convert_Point = convert_LineString = convert_Polygon = convert_MultiLineString = (
1515
convert_MultiPoint

0 commit comments

Comments
 (0)