#!/usr/bin/env python # encoding: utf-8 """ Glance config file to compare cloud products from Geocat to output from CONUS by Justin Otkin Created by Hong Zhang 20120112. Copyright (c) 2010 University of Wisconsin SSEC. All rights reserved. """ import glance.filters as filters import numpy as np # general settings to control how reports are created settings = {} settings['useThreadsToControlMemory'] = False #True settings['shouldIncludeImages'] = True settings['useSharedRangeForOriginal'] = True settings['doFork'] = False settings['detail_DPI'] = 300 # info on the latitude and longitude variables that will be used #lat_lon_info = {} #lat_lon_info['longitude'] = 'pixel_longitude' #lat_lon_info['latitude'] = 'pixel_latitude' #lat_lon_info['longitude_alt_name_in_b'] = 'lon' #lat_lon_info['latitude_alt_name_in_b'] = 'lat' #lat_lon_info['lon_lat_epsilon'] = 0.01 # per variable defaults defaultValues = { 'only_plot_on_fail':False, 'epsilon': 0.0, 'epsilon_failure_tolerance': None, 'nonfinite_data_tolerance': None # 'missing_value_alt_in_b': -999 } # a list of all the variables to analyze # setOfVariables = {} setOfVariables['COMP b16'] = { # this entry should correspond to the name in the data file 'variable_name':'ABI_Scaled_b16', 'alternate_name_in_B':'ABI_Scaled_b16', }