#!/usr/bin/env python # encoding: utf-8 """ This configuration describes the mapping between the cloud and ozone product variable names in GEOCAT and the AIT Framework. Created by Eva Schiffer August 2009. Copyright (c) 2009 University of Wisconsin SSEC. All rights reserved. """ # various general settings to control how reports are created settings = {} # whether or not images should be generated and shown in the report settings['shouldIncludeImages'] = True # should we create multiple processes to make more than one image at a time? # turning on this option can cause glance to use a very large amount of system # resources (if your data set is particularly large, your machine may not have # enough), but will speed up image generation in cases where your data set is # relatively small or your machine is very powerful settings['doFork'] = False # the names of the latitude and longitude variables lat_lon_info = {} # per variable defaults defaultValues = { # this default is for our variables, type variables # like cloud mask will have individual epsilons # definied in their entries below 'epsilon': 0.0000002, 'missing_value': -999.0, 'only_plot_on_fail': False, } # a list of all the variables to analyze setOfVariables = {} # radiance setOfVariables['Radiance band 01'] = { 'variable_name': 'rad_b01', 'alternate_name_in_B': 'ABI_Rad_b01' } setOfVariables['Radiance band 02'] = { 'variable_name': 'rad_b02', 'alternate_name_in_B': 'ABI_Rad_b02' } setOfVariables['Radiance band 03'] = { 'variable_name': 'rad_b03', 'alternate_name_in_B': 'ABI_Rad_b03' } setOfVariables['Radiance band 05'] = { 'variable_name': 'rad_b05', 'alternate_name_in_B': 'ABI_Rad_b05' } # reflectance setOfVariables['Reflectance band 01'] = { 'variable_name': 'refl_b01', 'alternate_name_in_B': 'ABI_Refl_b01' } setOfVariables['Reflectance band 02'] = { 'variable_name': 'refl_b02', 'alternate_name_in_B': 'ABI_Refl_b02' } setOfVariables['Reflectance band 03'] = { 'variable_name': 'refl_b03', 'alternate_name_in_B': 'ABI_Refl_b03' } setOfVariables['Reflectance band 05'] = { 'variable_name': 'refl_b05', 'alternate_name_in_B': 'ABI_Refl_b05' }