When ever I try to create buffer, it covers the whole area and a big dot is seen. Here, I am trying to make buffer on points which are located in Travis county, Texas (Austin)
gdf_2017 = gpd.GeoDataFrame(df_2017, geometry=gpd.points_from_xy(df_2017.longitude,
df_2017.latitude))
gdf_2017 = gdf_2017.set_crs("EPSG:6588")
gdf_dem17 = gdf_dem17.set_crs("EPSG:6588")
gdf_2017.geometry=gdf_2017.geometry.buffer(0.1)
fig, ax = plt.subplots(figsize=(12,10))
gdf_dem17.plot(ax=ax)
gdf_2017.plot(ax=ax, color="red")
plt.show()