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
Something like this should do the trick:
features = [{'type': 'Feature', 'properties': {}, 'geometry': shapely.geometry.mapping(shapelyObject)}]
Now you can try to map features
in mapbox.
Hope this helps.
Reference: https://gis.stackexchange.com/questions/213717/geometry-workflow-from-shapely-to-geojson