#/usr/bin/env python # encoding: utf-8 """ This configuration describes GOES-R product variable names in the AIT Framework. Created by Zhaohui Zhang in 2014. Copyright (c) 2014 NOAA/NESDIS/STAR 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 # per variable defaults defaultValues = { #'do_plot_hex': False, # this default is for our variables, type variables # like cloud mask will have individual epsilons # definied in their entries below #'epsilon': 0.0008, # we will accept up to 1% of difference between the files # before we start looking more carefully at the problem #'epsilon_failure_tolerance': 0.00001, # we will not accept any non finite data difference between the files #'nonfinite_data_tolerance': 0.01, # we only need to see plots of the variable data if the # variable fails comparison # 'only_plot_on_fail': True } # a list of all the variables to analyze setOfVariables = {} # general variables #setOfVariables[''] = { # 'variable_name': '', # } setOfVariables['geolocation__lat_ge'] = { 'variable_name': 'geolocation__lat_ge', 'epsilon': 0.0, } setOfVariables['geolocation__lat_gw'] = { 'variable_name': 'geolocation__lat_gw', 'epsilon': 0.0, } setOfVariables['geolocation__lon_ge'] = { 'variable_name': 'geolocation__lon_ge', 'epsilon': 0.0, } setOfVariables['geolocation__lon_gw'] = { 'variable_name': 'geolocation__lon_gw', 'epsilon': 0.0, } setOfVariables['product__pm25sat_ge'] = { 'variable_name': 'product__pm25sat_ge', 'epsilon': 0.0, } setOfVariables['product__pm25sat_gw'] = { 'variable_name': 'product__pm25sat_gw', 'epsilon': 0.0, } setOfVariables['support_data__tempo_alh_ge'] = { 'variable_name': 'support_data__tempo_alh_ge', 'epsilon': 0.0, } setOfVariables['support_data__tempo_alh_gw'] = { 'variable_name': 'support_data__tempo_alh_gw', 'epsilon': 0.0, } setOfVariables['support_data__tempo_aod_ge'] = { 'variable_name': 'support_data__tempo_aod_ge', 'epsilon': 0.0, } setOfVariables['support_data__tempo_aod_gw'] = { 'variable_name': 'support_data__tempo_aod_gw', 'epsilon': 0.0, } setOfVariables['xdim_ge'] = { 'variable_name': 'xdim_ge', 'epsilon': 0.0, } setOfVariables['xdim_gw'] = { 'variable_name': 'xdim_gw', 'epsilon': 0.0, } setOfVariables['ydim_ge'] = { 'variable_name': 'ydim_ge', 'epsilon': 0.0, } setOfVariables['ydim_gw'] = { 'variable_name': 'ydim_gw', 'epsilon': 0.0, }