forked from LudoRey/umbra
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparameters.py
More file actions
29 lines (23 loc) · 1.21 KB
/
Copy pathparameters.py
File metadata and controls
29 lines (23 loc) · 1.21 KB
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
from astropy.time import Time
# Platesolved parameters
IMAGE_SCALE = 5.89 # image scale in arcsec/pixels
ROTATION = 44.045 # given by PixInsight !!
# Time and location
ref_time_utc = '2024-04-08 19:29:25' # Known time (UTC !!)
ref_time_measured = '2024-04-09 02:39:56' # Measured time (doesnt need to be super precise)
TIME_OFFSET = Time(ref_time_measured, scale='utc') - Time(ref_time_utc, scale='utc') # do not modify this line
LATITUDE = 45.93664
LONGITUDE = -70.48483
# Misc.
MOON_RADIUS_DEGREE = 0.278 # Stellarium gives 0.280 but its a bit too big. 0.278 is already an upper bound in practice.
GROUP_KEYWORDS = ["EXPTIME"]
#GROUP_KEYWORDS = ["EXPTIME", "ISOSPEED"]
# I/O
INPUT_DIR = "D:\\_ECLIPSE2024\\data\\totality\\fits" # must be an existing directory : the others below will be created by the scripts.
MOON_DIR = "D:\\_ECLIPSE2024\\data\\totality\\moon_fits"
MOON_STACKS_DIR = "D:\\_ECLIPSE2024\\data\\totality\\moon_stacks"
SUN_DIR = "D:\\_ECLIPSE2024\\data\\totality\\sun_fits"
SUN_STACKS_DIR = "D:\\_ECLIPSE2024\\data\\totality\\sun_stacks"
SUN_HDR_DIR = "D:\\_ECLIPSE2024\\data\\totality\\sun_hdr"
MOON_HDR_DIR = "D:\\_ECLIPSE2024\\data\\totality\\moon_hdr"
MERGED_HDR_DIR = "D:\\_ECLIPSE2024\\data\\totality\\merged_hdr"