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

fixing less obvious links on variable report template

git-svn-id: https://svn.ssec.wisc.edu/repos/glance/trunk@80 8a9318a1-56ba-4d59-b755-99d26321be01
parent 3383ad89
No related branches found
No related tags found
No related merge requests found
...@@ -71,22 +71,22 @@ Copyright (c) 2009 University of Wisconsin SSEC. All rights reserved. ...@@ -71,22 +71,22 @@ Copyright (c) 2009 University of Wisconsin SSEC. All rights reserved.
## display information about any data filtering on the lons/lats ## display information about any data filtering on the lons/lats
% if ('data_filter_function_lat_in_a' in runInfo) and (not (runInfo['data_filter_function_lat_in_a'] is None)) : % 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. Note: The latitude in file A was filtered.
Please see <a href="${runInfo['config_file_name']}">this copy of Please see <a href="../${runInfo['config_file_name']}">this copy of
the original configuration file</a> to view the data filtering function.<br> the original configuration file</a> to view the data filtering function.<br>
% endif % endif
% if ('data_filter_function_lat_in_b' in runInfo) and (not (runInfo['data_filter_function_lat_in_b'] is None)) : % 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. Note: The latitude in file B was filtered.
Please see <a href="${runInfo['config_file_name']}">this copy of Please see <a href="../${runInfo['config_file_name']}">this copy of
the original configuration file</a> to view the data filtering function.<br> the original configuration file</a> to view the data filtering function.<br>
% endif % endif
% if ('data_filter_function_lon_in_a' in runInfo) and (not (runInfo['data_filter_function_lon_in_a'] is None)) : % 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. Note: The longitude in file A was filtered.
Please see <a href="${runInfo['config_file_name']}">this copy of Please see <a href="../${runInfo['config_file_name']}">this copy of
the original configuration file</a> to view the data filtering function.<br> the original configuration file</a> to view the data filtering function.<br>
% endif % endif
% if ('data_filter_function_lon_in_b' in runInfo) and (not (runInfo['data_filter_function_lon_in_b'] is None)) : % 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. Note: The longitude in file B was filtered.
Please see <a href="${runInfo['config_file_name']}">this copy of Please see <a href="../${runInfo['config_file_name']}">this copy of
the original configuration file</a> to view the data filtering function.<br> the original configuration file</a> to view the data filtering function.<br>
% endif % endif
</p> </p>
...@@ -104,10 +104,10 @@ Copyright (c) 2009 University of Wisconsin SSEC. All rights reserved. ...@@ -104,10 +104,10 @@ Copyright (c) 2009 University of Wisconsin SSEC. All rights reserved.
of the difference.<br> of the difference.<br>
## if we're showing images, link to graphs showing the problem ## if we're showing images, link to graphs showing the problem
% if runInfo['shouldIncludeImages'] : % if runInfo['shouldIncludeImages'] :
<a href="./LonLatMismatch.A.png"> <a href="../LonLatMismatch.A.png">
View mismatching points in A's lon/lat system View mismatching points in A's lon/lat system
</a><br> </a><br>
<a href="./LonLatMismatch.B.png"> <a href="../LonLatMismatch.B.png">
View mismatching points in B's lon/lat system View mismatching points in B's lon/lat system
</a> </a>
% endif % endif
...@@ -150,12 +150,12 @@ Copyright (c) 2009 University of Wisconsin SSEC. All rights reserved. ...@@ -150,12 +150,12 @@ Copyright (c) 2009 University of Wisconsin SSEC. All rights reserved.
## if the data was filtered, say so ## if the data was filtered, say so
% if ('data_filter_function_a' in runInfo) and (not (runInfo['data_filter_function_a'] is None)) : % 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. Note: The data for this variable from file A was filtered.
Please see <a href="${runInfo['config_file_name']}">this copy of Please see <a href="../${runInfo['config_file_name']}">this copy of
the original configuration file</a> to view the data filtering function.<br> the original configuration file</a> to view the data filtering function.<br>
% endif % endif
% if ('data_filter_function_b' in runInfo) and (not (runInfo['data_filter_function_b'] is None)) : % 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. Note: The data for this variable from file B was filtered.
Please see <a href="${runInfo['config_file_name']}">this copy of Please see <a href="../${runInfo['config_file_name']}">this copy of
the original configuration file</a> to view the data filtering function.<br> the original configuration file</a> to view the data filtering function.<br>
% endif % endif
</p> </p>
......
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