Skip to content
Snippets Groups Projects
Commit 2962587f authored by (no author)'s avatar (no author)
Browse files

correctly disabled filter note when fiter is None

git-svn-id: https://svn.ssec.wisc.edu/repos/glance/trunk@49 8a9318a1-56ba-4d59-b755-99d26321be01
parent 43ea0f98
No related branches found
No related tags found
No related merge requests found
......@@ -59,22 +59,22 @@ Copyright (c) 2009 University of Wisconsin SSEC. All rights reserved.
<br>
## display information about any data filtering on the lons/lats
% if ('data_filter_function_lat_in_a' in runInfo) :
% if ('data_filter_function_lat_in_a' in runInfo) and (not (runInfo['data_filter_function_lat_in_a'] is None)) :
Note: The latitude in file A was filtered.
Please see <a href="${runInfo['config_file_name']}">this copy of
the original configuration file</a> to view the data filtering function.<br>
% endif
% if ('data_filter_function_lat_in_b' in runInfo) :
% if ('data_filter_function_lat_in_b' in runInfo) and (not (runInfo['data_filter_function_lat_in_b'] is None)) :
Note: The latitude in file B was filtered.
Please see <a href="${runInfo['config_file_name']}">this copy of
the original configuration file</a> to view the data filtering function.<br>
% endif
% if ('data_filter_function_lon_in_a' in runInfo) :
% if ('data_filter_function_lon_in_a' in runInfo) and (not (runInfo['data_filter_function_lon_in_a'] is None)) :
Note: The longitude in file A was filtered.
Please see <a href="${runInfo['config_file_name']}">this copy of
the original configuration file</a> to view the data filtering function.<br>
% endif
% if ('data_filter_function_lon_in_b' in runInfo) :
% if ('data_filter_function_lon_in_b' in runInfo) and (not (runInfo['data_filter_function_lon_in_b'] is None)) :
Note: The longitude in file B was filtered.
Please see <a href="${runInfo['config_file_name']}">this copy of
the original configuration file</a> to view the data filtering function.<br>
......
......@@ -69,22 +69,22 @@ Copyright (c) 2009 University of Wisconsin SSEC. All rights reserved.
<br>
## display information about any data filtering on the lons/lats
% if ('data_filter_function_lat_in_a' in runInfo) :
% if ('data_filter_function_lat_in_a' in runInfo) and (not (runInfo['data_filter_function_lat_in_a'] is None)) :
Note: The latitude in file A was filtered.
Please see <a href="${runInfo['config_file_name']}">this copy of
the original configuration file</a> to view the data filtering function.<br>
% endif
% if ('data_filter_function_lat_in_b' in runInfo) :
% if ('data_filter_function_lat_in_b' in runInfo) and (not (runInfo['data_filter_function_lat_in_b'] is None)) :
Note: The latitude in file B was filtered.
Please see <a href="${runInfo['config_file_name']}">this copy of
the original configuration file</a> to view the data filtering function.<br>
% endif
% if ('data_filter_function_lon_in_a' in runInfo) :
% if ('data_filter_function_lon_in_a' in runInfo) and (not (runInfo['data_filter_function_lon_in_a'] is None)) :
Note: The longitude in file A was filtered.
Please see <a href="${runInfo['config_file_name']}">this copy of
the original configuration file</a> to view the data filtering function.<br>
% endif
% if ('data_filter_function_lon_in_b' in runInfo) :
% if ('data_filter_function_lon_in_b' in runInfo) and (not (runInfo['data_filter_function_lon_in_b'] is None)) :
Note: The longitude in file B was filtered.
Please see <a href="${runInfo['config_file_name']}">this copy of
the original configuration file</a> to view the data filtering function.<br>
......@@ -148,12 +148,12 @@ Copyright (c) 2009 University of Wisconsin SSEC. All rights reserved.
<br>
## if the data was filtered, say so
% if ('data_filter_function_a' in runInfo) :
% if ('data_filter_function_a' in runInfo) and (not (runInfo['data_filter_function_a'] is None)) :
Note: The data for this variable from file A was filtered.
Please see <a href="${runInfo['config_file_name']}">this copy of
the original configuration file</a> to view the data filtering function.<br>
% endif
% if ('data_filter_function_b' in runInfo) :
% if ('data_filter_function_b' in runInfo) and (not (runInfo['data_filter_function_b'] is None)) :
Note: The data for this variable from file B was filtered.
Please see <a href="${runInfo['config_file_name']}">this copy of
the original configuration file</a> to view the data filtering function.<br>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment