-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.ini
101 lines (86 loc) · 2.63 KB
/
config.ini
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
###############################################################################
# Configuration file for RASA Transient Detection Tool
###############################################################################
[Paths]
# Base directory containing the image files (subtracted, new, and reference)
data_directory = /data4/gecko/GECKO/S230518h/data/rasa36/sci_image
# Pattern for matching image files
file_pattern = hdCalib-RASA36-*
# Path to save the classification results CSV file containing all metadata
output_csv_file = transient_candidates1.csv
[TileSettings]
# Comma-separated list of tile IDs to process (leave blank to auto-detect)
tile_ids =
# Cache and preloading settings
# Maximum number of image sets to cache in memory
cache_size = 100
# Number of images to keep before and after current image
cache_window = 20
# Number of next images to preload in background
preload_batch_size = 20
[Settings]
# Image file type: 'fits' for FITS files or 'png' for PNG images
file_type = png
# Available classification categories for transient candidates
classification_labels = Significant, Marginal, Subtraction, Error
# Zoom control settings for image display
# Minimum zoom level
zoom_min = 1
# Maximum zoom level
zoom_max = 10
# Zoom increment/decrement step
zoom_step = 0.1
# Default zoom level on startup
initial_zoom = 1
# Display settings
# Show reference image by default
default_sci_ref_visible = True
# Image scaling options: 'zscale', 'linear', or 'log'
scale = zscale
# Intensity scaling settings for each image type
# Values can be: 'min', 'max', 'median', 'mean', or numeric
vmin_subtracted = median
vmax_subtracted = max
vmin_science = median
vmax_science = max
vmin_reference = median
vmax_reference = max
[Logging]
# Logging configuration
# Log file path
log_file = transient_tool.log
# Logging level (DEBUG, INFO, WARNING, ERROR)
log_level = INFO
[Shortcuts]
# Keyboard shortcuts for classifications
# Mark as significant detection
significant_key = q
# Mark as marginal detection
marginal_key = w
# Mark as subtraction artifact
subtraction_key = e
# Mark as error
error_key = r
# Navigation and display shortcuts
# Next image
next_key = Right
# Previous image
prev_key = Left
# Jump to next unclassified
goto_unclassified_key = u
# Toggle reference image
toggle_sci_ref_key = Control-s
# Zoom in
zoom_in_key = Up
# Zoom out
zoom_out_key = Down
# Reset zoom to default
reset_zoom_key = t
[Mode]
# Application operation modes
# True: View only, False: Allow classification
view_mode = True
# Filter to show specific classification only
specific_view_mode = None
# Quick start mode: If True, only load images from CSV without folder scanning
quick_start = True