""" 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") execfile(scriptsDir + "processExtraFrames.py") camera = "blue" execfile(scriptsDir + "processFrames.py") execfile(scriptsDir + "processExtraFrames.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") """ Project the frames for each pair of obsids, but including overlapping frames. After this step the red and blue maps will be saved in dataDir """ pixfrac = 0.1 outputPixelSize= 3.2 execfile(scriptsDir + "projectIndividualFields.py") """ Update the maps metadata with the required information for HPDP """ execfile(scriptsDir + "updateMapsMetadata.py") """ Create the maps postcards """ execfile(scriptsDir + "createMapsPostcards.py")