When I run the code below I get the warning: MatplotlibDeprecationWarning: The axesPatch function was deprecated in version 2.1. Use Axes.patch instead. limb = ax.axesPatch
I know that the code works but I still want to clean the warnings. thank's for any help
tried updating basemap from 1.0.7 to 1.2.0 using matplotlib 2.2.3 ,pycharm (2019 1.3) won't let me upgrade or downgrade matplotlib's version
changing the code of ...\mpl_toolkits\basemap__init__.py is too risky and complicated for newbie me.
import matplotlib.pyplot as plt
from mpl_toolkits.basemap import Basemap
m = Basemap(projection= 'mill')
m.drawcoastlines()
m.drawmapboundary(fill_color='aqua')
m.fillcontinents()
plt.savefig('my first map')
plt.show()