October 2018
Beginner to intermediate
676 pages
18h 30m
English
The following are the steps involved in plotting four charts using various options for formatting ticks and labels:
fig = plt.figure(figsize=(12,8))ax1 = fig.add_subplot(221, projection=ccrs.PlateCarree())
ax1.stock_img()ax1.coastlines()
gl1 = ax1.gridlines(crs=ccrs.PlateCarree(), draw_labels=True, linewidth=2, color='gray', alpha=0.5, linestyle='--')
gl1.xlabels_top = Falsegl1.ylabels_right = False
Read now
Unlock full access