diff --git a/Scripts/best_March2012_temps.py b/Scripts/best_March2012_temps.py index 2df8480..4755d44 100755 --- a/Scripts/best_March2012_temps.py +++ b/Scripts/best_March2012_temps.py @@ -36,9 +36,9 @@ tmax = T.tempunits(tmax,'C','F') ### Extract Particular Dates -tmax = tmax[62:93,:,:] +tmax = tmax[62:94,:,:] -doy = list(xrange(62,93)) +doy = list(xrange(62,94)) ### Basemap Plot Temperature for i in xrange(len(doy)): @@ -49,7 +49,7 @@ m.drawstates() m.drawcountries() m.drawmapboundary(fill_color = 'white') - m.drawcoastlines(color='black',linewidth=0.5) + m.drawcoastlines(color='black',linewidth=1.0) m.drawlsmask(land_color='grey',ocean_color='w') x,y = m(lon,lat) cs = m.contourf(x,y,tmax[i],range(-5,100,2)) @@ -63,4 +63,4 @@ # else: # plt.savefig(directory + '2012.marchtemp.0%d.png' % i,dpi=100) plt.show() - fig.clear() \ No newline at end of file + fig.clear()