Skip to content

Comments

Science verification analysis#12

Open
zsselcuk wants to merge 12 commits intomainfrom
science_verification_analysis
Open

Science verification analysis#12
zsselcuk wants to merge 12 commits intomainfrom
science_verification_analysis

Conversation

@zsselcuk
Copy link
Contributor

No description provided.

@zsselcuk zsselcuk requested a review from fschlueter January 11, 2026 19:38
@zsselcuk zsselcuk self-assigned this Jan 11, 2026
Comment on lines +34 to +52
# Channel mapping for the first seven RNO-G stations:
SURFACE_CHANNELS_LIST = [12, 13, 14, 15, 16, 17, 18 , 19 , 20]
DEEP_CHANNELS_LIST = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 21, 22, 23]
UPWARD_CHANNELS_LIST = [13, 16, 19]
DOWNWARD_CHANNELS_LIST = [12, 14, 15, 17, 18, 20]
VPOL_LIST = [0, 1, 2, 3, 5, 6, 7, 9, 10, 22, 23]
HPOL_LIST = [4, 8, 11, 21]
PHASED_ARRAY_LIST = [0, 1, 2, 3]
ALL_CHANNELS_LIST = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18 , 19 , 20, 21, 22, 23]

# Channel mapping for Station 14:
STATION_14_SURFACE_CHANNELS_LIST = [12, 13, 14, 15, 16, 17, 18 , 19]
STATION_14_DEEP_CHANNELS_LIST = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 20, 21, 22, 23]
STATION_14_UPWARD_CHANNELS_LIST = [13, 15, 16, 18]
STATION_14_DOWNWARD_CHANNELS_LIST = [12, 14, 17, 19]
STATION_14_VPOL_LIST = [0, 1, 2, 3, 5, 6, 7, 9, 10, 20, 22, 23]
STATION_14_HPOL_LIST = [4, 8, 11, 21]
STATION_14_PHASED_ARRAY_LIST = [0, 1, 2, 3]
STATION_14_ALL_CHANNELS_LIST = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18 , 19 , 20, 21, 22, 23]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is that something which can be either defined globally or in a config file? Also I was wondering if it makes sense to generalize this a bit by only defining a dict with keys which act as label for the channel group and values which list the channel id's, e.g.:

channel_groups = {
   "phased_array": [0, 1, 2, 3],
   "surface": [12, 13, ...],
    ....
}

Comment on lines +59 to +92
mpl.rcParams.update({
'font.family': 'sans-serif',
'font.sans-serif': ['Helvetica', 'Arial', 'DejaVu Sans'],
'font.size': 17,

'axes.labelsize': 17,
'axes.titlesize': 18,
'axes.linewidth': 1.2,
'axes.grid': False,

'xtick.labelsize': 17,
'ytick.labelsize': 17,
'xtick.major.size': 6,
'ytick.major.size': 6,
'xtick.major.width': 1.2,
'ytick.major.width': 1.2,
'xtick.minor.size': 3,
'ytick.minor.size': 3,
'xtick.minor.visible': True,
'ytick.minor.visible': True,

'lines.linewidth': 1.6,
'lines.antialiased': True,
'lines.markersize': 6,

'legend.fontsize': 14,
'legend.frameon': False,
'legend.handlelength': 1,
'legend.borderpad': 0.3,

'figure.dpi': 120,
'savefig.dpi': 300,
'savefig.bbox': 'tight',
})
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you specify that in an extra file? Makes the scripts easier to read.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants