#!/usr/bin/env python # encoding: utf-8 """ This configuration describes the mapping between the vol ash product variable names in GEOCAT and the AIT Framework. This file makes use of the general mapping encoded in "FWAIT_CloudMask_Specialty". Created by Eva Schiffer August 2009. Copyright (c) 2009 University of Wisconsin SSEC. All rights reserved. """ # we will be using the info in this file for most of our setup import FWAIT_Clouds_not_Mask as GtoF settings = {} settings.update(GtoF.settings) lat_lon_info = {} lat_lon_info.update(GtoF.lat_lon_info) defaultValues = {} defaultValues.update(GtoF.defaultValues) # a list of all the variables to analyze setOfVariables = {} setOfVariables.update(GtoF.setOfVariables) # add Vol Ash only data setOfVariables['Ash Top Height'] = { 'variable_name': 'Ash_Height', 'epsilon': 0.01, } setOfVariables['Ash Mass Loading'] = { 'variable_name': 'Ash_Loading', } setOfVariables['Ash Effective Radius'] = { 'variable_name': 'Ash_Reff', }