geopandas: from a column of coordinate list to geometry
Solution 1:
You can just apply Point
to the 'coors'
column to generate point geometry.
from shapely.geometry import Point
df['geometry'] = df.coors.apply(Point)
gdf = gpd.GeoDataFrame(df) # you should also specify CRS