From 9b3eb0f1326c59c26142b4e74e5006c61e5cf667 Mon Sep 17 00:00:00 2001
From: "(no author)" <(no author)@8a9318a1-56ba-4d59-b755-99d26321be01>
Date: Tue, 20 Oct 2009 19:56:23 +0000
Subject: [PATCH] default description for the individual plot controls

git-svn-id: https://svn.ssec.wisc.edu/repos/glance/trunk@84 8a9318a1-56ba-4d59-b755-99d26321be01
---
 pyglance/glance/exconfig.py | 20 +++++++++++++++++++-
 1 file changed, 19 insertions(+), 1 deletion(-)

diff --git a/pyglance/glance/exconfig.py b/pyglance/glance/exconfig.py
index 0a01467..1a20c2c 100644
--- a/pyglance/glance/exconfig.py
+++ b/pyglance/glance/exconfig.py
@@ -177,7 +177,25 @@ setOfVariables['Total Precipitable Water'] = {
                                   }
 setOfVariables['Total Precipitable Water, Low'] = {
                                   'variable_name': 'imager_prof_retr_abi_total_precipitable_water_low',
-                                  'epsilon': 3.0
+                                  'epsilon': 3.0,
+                                  
+                                  # the following settings allow you to control plotting on an individual plot basis
+                                  # if these valuse are not defined or set to True, the associated plots will be plotted
+                                  # or not according to the other settings for the variable
+                                  # if any of these are set to false, the associated plot will not be plotted
+                                  
+                                  # should the two original images be plotted?
+                                  'do_plot_originals': True,
+                                  # should the absolute value of the difference between the two data sets be plotted?
+                                  'do_plot_abs_diff':  True,
+                                  # should the (subtractive) difference between the two data sets be plotted?
+                                  'do_plot_sub_diff':  True,
+                                  # should the scatter plot be plotted?
+                                  'do_plot_scatter':   True,
+                                  # should the histogram be plotted?
+                                  'do_plot_histogram': True,
+                                  # should the trouble plot be plotted?
+                                  'do_plot_trouble':   True
                                   }
 setOfVariables['Total Precipitable Water, Mid'] = {
                                   'variable_name': 'imager_prof_retr_abi_total_precipitable_water_mid',
-- 
GitLab