#!/usr/bin/env python # encoding: utf-8 """ An example config file to input report generation parameters. Created by Eva Schiffer August 2009. Copyright (c) 2009 University of Wisconsin SSEC. All rights reserved. """ # general settings to control how reports are created settings = {} settings['doFork'] = True settings['shouldIncludeImages'] = True settings['useSharedRangeForOriginal'] = True # info on the latitude and longitude variables that will be used lat_lon_info = {} # per variable defaults defaultValues = { 'epsilon': None, 'epsilon_failure_tolerance': None, 'nonfinite_data_tolerance': None } # a list of all the variables to analyze # # If you wish to analyze all possible variables, # do not place any entries in the setOfVariables (ie. just # leave it as an empty dictionary) setOfVariables = {} setOfVariables['Geocat ch 7 (MSG ch 4) clear sky brightness temperature'] = { 'variable_name': 'channel_7_brightness_temperature_clear', } setOfVariables['Geocat ch 8 (MSG ch 5) clear sky brightness temperature'] = { 'variable_name': 'channel_8_brightness_temperature_clear', } setOfVariables['Geocat ch 10 (MSG ch 6) clear sky brightness temperature'] = { 'variable_name': 'channel_10_brightness_temperature_clear', } setOfVariables['Geocat ch 11 (MSG ch 7) clear sky brightness temperature'] = { 'variable_name': 'channel_11_brightness_temperature_clear', } setOfVariables['Geocat ch 12 (MSG ch 8) clear sky brightness temperature'] = { 'variable_name': 'channel_12_brightness_temperature_clear', } setOfVariables['Geocat ch 14 (MSG ch 9) clear sky brightness temperature'] = { 'variable_name': 'channel_14_brightness_temperature_clear', } setOfVariables['Geocat ch 15 (MSG ch 10) clear sky brightness temperature'] = { 'variable_name': 'channel_15_brightness_temperature_clear', } setOfVariables['Geocat ch 16 (MSG ch 11) clear sky brightness temperature'] = { 'variable_name': 'channel_16_brightness_temperature_clear', }