From 377e49867275a3a40e6f9bf4f02ee99c15fe6c00 Mon Sep 17 00:00:00 2001
From: kgao <kenny.gao@ssec.wisc.edu>
Date: Tue, 23 Aug 2016 15:39:57 +0000
Subject: [PATCH] Changed font size of title Title was a bit too big changed it
 to 13

---
 aosstower/tower_quicklooks/create_quicklook.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/aosstower/tower_quicklooks/create_quicklook.py b/aosstower/tower_quicklooks/create_quicklook.py
index d799d64..fce1b0d 100644
--- a/aosstower/tower_quicklooks/create_quicklook.py
+++ b/aosstower/tower_quicklooks/create_quicklook.py
@@ -416,7 +416,7 @@ def create_full_plot(frame, ymin, ymax, create_air_dew_plot, output):
         # create plots
         if need_subplots:
             if plots_created == 1:
-                plt.figure().suptitle('AO&SS Building Tower Meteorogram ' + dateString)
+                plt.figure().suptitle('AO&SS Building Tower Meteorogram ' + dateString, fontsize=13)
                 ax1 = plt.subplot(plotNumber + plots_created)
                 ax1.set_title(TITLES[name], x=0.5, y=get_subtitle_location(numberPlots), fontsize=8)
 
@@ -428,7 +428,7 @@ def create_full_plot(frame, ymin, ymax, create_air_dew_plot, output):
             plots_created  += 1
 
         else:
-            plt.figure().suptitle('AO&SS Building Tower ' + IND_TITLES[name] + ' ' + dateString)
+            plt.figure().suptitle('AO&SS Building Tower ' + IND_TITLES[name] + ' ' + dateString, fontsize=13)
             plt.ylabel(TITLES[name])
 
         #if we don't need two lines in same plot, plot
-- 
GitLab