# B.I.Stepanov Institute of Physics # National Academy of Sciences of Belarus """Graphical user interface to the automated version of aerosol profile retrieval algorithm utilizing combined lidar and CIMEL Sun photometer data.""" # Allow this script to be used as a top-level program only. assert __name__ == '__main__' import os, sys # Tie all the relative file paths to this script's directory. os.chdir(sys.path[0]) # Allow the actual code to be hidden in a subdirectory. sys.path.append('code') # Show the splash screen. from common.utils import startup # Load the rest of the application. from _AutomatedRetrieverWidget import * startup.runApplication(AutomatedRetrieverWidget())