From 5cf1b4720fad2d5e8708b3c540ab46676a6ea197 Mon Sep 17 00:00:00 2001 From: Venkat Prasad Kalet Date: Tue, 1 Oct 2019 21:47:00 +0530 Subject: [PATCH] Update best_March2012_temps.py --- Scripts/best_March2012_temps.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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()