We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7257274 commit 60e07d9Copy full SHA for 60e07d9
examples/fcstmaps_axesgrid.py
@@ -1,4 +1,5 @@
1
from __future__ import print_function
2
+from __future__ import unicode_literals
3
# this example reads today's numerical weather forecasts
4
# from the NOAA OpenDAP servers and makes a multi-panel plot.
5
# This version demonstrates the use of the AxesGrid toolkit.
@@ -100,7 +101,7 @@
100
101
ax.set_title('%d-h forecast valid '%fcsthr+verifdates[nt],fontsize=9)
102
# figure title
103
plt.figtext(0.5,0.95,
- u"2-m temp (\N{DEGREE SIGN}C) forecasts from %s"%verifdates[0],
104
+ "2-m temp (\N{DEGREE SIGN}C) forecasts from %s"%verifdates[0],
105
horizontalalignment='center',fontsize=14)
106
# a single colorbar.
107
cbar = fig.colorbar(cs, cax=grid.cbar_axes[0], orientation='horizontal')
0 commit comments