summaryrefslogtreecommitdiff
path: root/scripts/EKOS_Multi_Masters.ssf
blob: e3c781b60041ee530f9f800fefb4aeecb8b5ebcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
############################################
#
# 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 ..