I am plotting footprints in python in a Colab notebook with the osmnx plot module and it all works great until I add
edge_color='black'
which leads to the error:
TypeError: plot_footprints() got an unexpected keyword argument 'edge_color'
so this works:
ox.plot.plot_footprints(greens, color='green', bgcolor='white')
and this doesn't:
ox.plot.plot_footprints(greens, color='green', bgcolor='white', edge_color='black')
What is my mistake? (The same problem with for edge_linewidth).