""" Set the paths to the directories where the scripts are saved and where the data products should be saved. """ scriptsDir = "/the/scripts/directory/" dataDir = "/the/data/directory/" """ Reduce all the obsid pairs with JScanam. After this step the L2.5 red and blue frames products will be saved in dataDir. """ camera = "red" execfile(scriptsDir + "processFrames.py") camera = "blue" execfile(scriptsDir + "processFrames.py") """ Align the frames using a common reference. After this step the L2.5 red and blue aligned frames products will be saved in dataDir. """ camera = "red" execfile(scriptsDir + "alignFrames.py") camera = "blue" execfile(scriptsDir + "alignFrames.py") """ Create the final maps """ execfile(scriptsDir + "createMaps.py")