-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yaml
More file actions
129 lines (116 loc) · 3.93 KB
/
Copy pathconfig.yaml
File metadata and controls
129 lines (116 loc) · 3.93 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# Main directory for the project (required)
main_dir: '/arc/home/heestersnick/DwarfView'
# Directory containing raw tile data
data_dir: '/arc/projects/unions/ssl/data/raw/tiles/dwarforge'
# Directories for tables, figures, and tile info (formatted with main_dir)
table_dir: '{main_dir}/tables'
figure_dir: '{main_dir}/figures'
tile_info_dir: '{main_dir}/tile_info'
# Path to master catalog
master_catalog_path: '{table_dir}/goblin_plus.parquet'
# Path to host (from hecate) - satellite catalog
host_sat_path: '{table_dir}/hecate_gri_sat.csv'
# Path to master catalog KDTree file
master_tree_path: '{tile_info_dir}/master_catalog_tree.joblib'
# Path to my custom catalog of objects to query
custom_df_path: '{table_dir}/literature_non_dwarfs.csv'
# Coordinate pair of object to query
coordinates: [185.315, 65.872]
# Parameters for proximity search around a host galaxy
proximity_search:
enabled: false # enable proximity search mode
coordinates: [188.0064, 66.3326] # coordinates of host galaxy
distance_mpc: 33 # distance to host galaxy
radius_kpc: 400 # query radius in kpc
radius_deg: 0.5 # Default angular radius in deg
p_min: 0.7 # Minimum model prediction probability
p_max: 1.0 # Maximum model prediction probability
# Parameters for satellite search
satellite_search:
enabled: false
p_min: 0.5
p_max: 1.0
delta_v_max: 400 # maximum absolute velocity difference between host and satellite in km/s
d_max: 50 # maximum host distance in Mpc
env: ["isolated", "pair", 'group'] # host environment filter
# Available bands with their configurations
bands:
cfis-u:
name: CFIS # Fits file prefix
band: u # Band identifier
vos: vos:cfis/tiles_DR5/ # VOSpace path
suffix: .u.fits # File suffix
delimiter: . # Delimiter for filename
fits_ext: 0 # FITS extension
zfill: 3 # Zero-padding for tile numbers
zp: 30 # Zero-point magnitude
whigs-g:
name: calexp-CFIS
band: g
vos: vos:cfis/whigs/stack_images_CFIS_scheme/
suffix: .fits
delimiter: _
fits_ext: 1
zfill: 0
zp: 27
cfis_lsb-r:
name: CFIS_LSB
band: r
vos: vos:cfis/tiles_LSB_DR5/
suffix: .r.fits
delimiter: .
fits_ext: 0
zfill: 3
zp: 30
ps-i:
name: PS-DR3
band: i
vos: vos:cfis/panstarrs/DR3/tiles/
suffix: .i.fits
delimiter: .
fits_ext: 0
zfill: 3
zp: 30
wishes-z:
name: WISHES
band: z
vos: vos:cfis/wishes_1/coadd/
suffix: .z.fits
delimiter: .
fits_ext: 1
zfill: 0
zp: 27
ps-z:
name: PSS.DR4
band: ps-z
vos: vos:cfis/panstarrs/DR4/resamp/
suffix: .z.fits
delimiter: .
fits_ext: 0
zfill: 3
zp: 30
# Default bands to use if not overridden
default_bands: ["whigs-g", "cfis_lsb-r", "ps-i"]
# Probability limits for filtering candidates
probability_limits:
p_min: 0.0 # Minimum model prediction probability
p_max: 1.0 # Maximum model prediction probability
# Plot mode: 'grid' (RGB grid) or 'channel' (individual channels + RGB)
plot_mode: grid
# Maximum number of columns in the grid plot
max_cols: 10
# Show model predictions
show_p: true
# Show model predictions for both versions, false will only show the second version
show_p1_p2: false
# Show source catalog for known objects
show_source: false
# Whether to filter out known objects when using the default catalog
filter_out_known_objects: false
# Save dataframe of plotted objects from the master catalog
save_plotted: false
# Number of objects to plot
n_objects: 18
# Right ascension and declination keys in your input table
ra_key: ra
dec_key: dec