October 2018
Beginner to intermediate
676 pages
18h 30m
English
The following are the steps required to plot time zones on our map:
plt.figure(figsize=(12, 6))ax = plt.axes(projection=ccrs.PlateCarree())
ax.stock_img()ax.coastlines(zorder=0)
shape_feature = ShapelyFeature(Reader('ne_10m_time_zones.shp').geometries(), ccrs.PlateCarree(), edgecolor='black')
ax.add_feature(shape_feature, alpha=0.4, zorder=5, lw=1)
gl = ax.gridlines(crs=ccrs.PlateCarree(), draw_labels=True, ...
Read now
Unlock full access