【846】自定义cmap,用于GeoPandas、matplotlib制图
参考:自定义颜色条教程
import matplotlib as mpl
cmap = mpl.colors.ListedColormap(['yellow', '#E0E0E0'])
africa_gdf.plot(column='hotspot_category',
cmap=cmap,
legend=True,
figsize=(10,20),
edgecolor="black")
plt.grid(True, alpha=0.5)