October 2018
Beginner to intermediate
676 pages
18h 30m
English
The following are the steps required for plotting the map:
netCDF_temp = Dataset('temperature_annual_1deg.nc')
lat = netCDF_temp.variables['lat'][:]lon = netCDF_temp.variables['lon'][:]temp = netCDF_temp.variables['t_an'][0,0,:,:]
temp_cyc, lon_cyc = add_cyclic_point(temp, coord=lon)
plt.figure(figsize=(12,6))ax = plt.subplot(111, projection=ccrs.Robinson()) ...
Read now
Unlock full access