############################################ # # Script for Siril 1.2 # ############################################ # # Script to create a set of dark and bias masters # for an EKOS multi-session project # # Required directory structure: # # [ Home ] # /Bias # /Dark # # Masters will be saved to # # /Master # # Temporary files will be saved to # # /process requires 1.2.0 # Convert Dark Frames to .fit files cd Dark convert dark -out=../process cd ../process # Stack Dark Frames to master_dark.fit stack dark rej 3 3 -nonorm -out=../Master/master_dark cd .. # Convert Bias Frames to .fit files cd Bias convert bias -out=../process cd ../process # Stack Bias Frames to master_bias.fit stack bias rej 3 3 -nonorm -out=../Master/master_bias cd ..