I created a circle using geopandas and it returned a shapely polygon:
POLYGON: ((...))
I want this same polygon as a geojson object. I ran acr
Use the driver provided by fiona:
data=shapefile.to_file("file.geojson",driver='GeoJSON') data=geopandas.read_file("file.geojson") data