GHG Frequently Asked Questions
Last Updated 2/22/06
National Weather Service
Office of Climate, Water, and Weather Services
Questions: Shannon.White@noaa.gov
# Dynamically locate the Hazards grid
index = GridManagerSortOrder.index('Hazards')
# Get all the keys in the VTEC table,
and sort them
keys = VTECTable.VTECTable.keys()
keys.sort()
# Look through the keys
for key in keys:
# If this hazard is a Tornado, Severe,
Tropical or Hurricane Watch, or
# a Tropical or Hurricane Warning
if (key[:2] in ['TO', 'SV', 'TR', 'HU'] and key[3] == 'A') or \
(key[:2] in ['TR', 'HU'] and key[3] == 'W'):
# Cycle through all the possible event
tracking numbers (ETNs)
for count in range(1000):
# Ensure this ETN is a 3 digit number
etnNumber = '%03d' % (count)
# Make a name for this temporary hazard
grid
tname = 'haz' + key[:2] + key[3] + etnNumber
# Add this temporary hazard grid to
the Grid Manager sort list
GridManagerSortOrder.insert(index+1, tname)
# Increase the index where to insert
the next grid name
index = index + 1
else:
# Make a name for this temporary hazard grid
tname = 'haz' + key[:2] + key[3]
# Add this temporary hazard grid to
the Grid Manager sort list
GridManagerSortOrder.insert(index+1, tname)
# Increase the index where to insert
the next grid name
index = index + 1
from Netscape - Click "File" then "Page Setup" and make sure the "Black Text" checkbox IS checked.
from Explorer - Click "Tools" then "Internet Options" then the "Advanced" tab then scroll down to "Printing", make sure "Print background colors and images" is NOT checked. This is the default.