lime-stable 2.2.dev1__py3-none-any.whl → 2.2.dev5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- lime/archives/read_fits.py +4 -19
- lime/fitting/lines.py +2 -2
- lime/lime.toml +1 -1
- lime/observations.py +26 -17
- lime/plotting/bokeh_plots.py +91 -16
- lime/plotting/format.py +0 -3
- lime/plotting/theme_lime.toml +1 -1
- lime/resources/lines_database_v2.0.6.txt +292 -0
- lime/retrieve/line_bands.py +104 -3
- lime/tools.py +1 -0
- lime/workflow.py +161 -4
- {lime_stable-2.2.dev1.dist-info → lime_stable-2.2.dev5.dist-info}/METADATA +2 -2
- {lime_stable-2.2.dev1.dist-info → lime_stable-2.2.dev5.dist-info}/RECORD +16 -15
- {lime_stable-2.2.dev1.dist-info → lime_stable-2.2.dev5.dist-info}/WHEEL +0 -0
- {lime_stable-2.2.dev1.dist-info → lime_stable-2.2.dev5.dist-info}/licenses/LICENSE.rst +0 -0
- {lime_stable-2.2.dev1.dist-info → lime_stable-2.2.dev5.dist-info}/top_level.txt +0 -0
lime/archives/read_fits.py
CHANGED
|
@@ -7,6 +7,7 @@ from astropy.wcs import WCS
|
|
|
7
7
|
|
|
8
8
|
from lime.io import LiMe_Error, lime_cfg
|
|
9
9
|
from urllib.parse import urlparse
|
|
10
|
+
from io import BytesIO
|
|
10
11
|
|
|
11
12
|
try:
|
|
12
13
|
import requests
|
|
@@ -265,7 +266,6 @@ def check_fits_instructions(fits_source, online_provider=False):
|
|
|
265
266
|
fits_reader = getattr(fits_manager, fits_source)
|
|
266
267
|
else:
|
|
267
268
|
source_type = 'instrument' if online_provider is False else 'survey'
|
|
268
|
-
# TODO show instruments supported
|
|
269
269
|
raise LiMe_Error(f'Input {source_type} "{fits_source}" is not recognized. LiMe observation cannot be created.')
|
|
270
270
|
|
|
271
271
|
else:
|
|
@@ -280,14 +280,12 @@ def load_txt(text_address, **kwargs):
|
|
|
280
280
|
out_array = np.loadtxt(text_address, **kwargs)
|
|
281
281
|
|
|
282
282
|
# File address
|
|
283
|
-
if
|
|
283
|
+
if isinstance(text_address, BytesIO) or (type(text_address).__name__ == "UploadedFile"):
|
|
284
|
+
lines = text_address.getvalue().decode("utf-8").splitlines()
|
|
285
|
+
else:
|
|
284
286
|
with open(text_address, "r") as f:
|
|
285
287
|
lines = f.readlines()
|
|
286
288
|
|
|
287
|
-
# Uploaded file
|
|
288
|
-
else:
|
|
289
|
-
lines = text_address.getvalue().decode("utf-8").splitlines()
|
|
290
|
-
|
|
291
289
|
# Reverse loop over the lines
|
|
292
290
|
params_dict = {}
|
|
293
291
|
for line in reversed(lines):
|
|
@@ -297,19 +295,6 @@ def load_txt(text_address, **kwargs):
|
|
|
297
295
|
key, value = line[1:].split(":", 1)
|
|
298
296
|
params_dict[key.strip()] = value.strip()
|
|
299
297
|
|
|
300
|
-
# # Transform foot comments as dictionary data
|
|
301
|
-
# params_dict = {}
|
|
302
|
-
# with open(text_address, "r") as f:
|
|
303
|
-
#
|
|
304
|
-
# # Reverse loop while the lines start by a "#"
|
|
305
|
-
# for line in reversed(f.readlines()):
|
|
306
|
-
# line = line.strip()
|
|
307
|
-
# if not line.startswith("#") or (line.startswith("# LiMe")):
|
|
308
|
-
# break
|
|
309
|
-
#
|
|
310
|
-
# # Extract key-value pairs
|
|
311
|
-
# key, value = line[1:].split(":", 1) # Split at the first ':'
|
|
312
|
-
# params_dict[key.strip()] = value.strip()
|
|
313
298
|
|
|
314
299
|
return out_array, params_dict
|
|
315
300
|
|
lime/fitting/lines.py
CHANGED
|
@@ -232,7 +232,7 @@ def voigt_area(line, idx, n_steps):
|
|
|
232
232
|
sigma = np.random.normal(line.sigma[idx], line.sigma_err[idx], n_steps)
|
|
233
233
|
gamma = np.random.normal(line.gamma[idx], line.gamma_err[idx], n_steps)
|
|
234
234
|
|
|
235
|
-
return gaussian_area(amp, sigma) + lorentz_area(amp, gamma)
|
|
235
|
+
return gaussian_area(amp, sigma, n_steps) + lorentz_area(amp, gamma, n_steps)
|
|
236
236
|
|
|
237
237
|
|
|
238
238
|
def pseudo_voigt_area(line, idx, n_steps):
|
|
@@ -268,7 +268,7 @@ def pseudo_power_area(line, idx, n_steps):
|
|
|
268
268
|
|
|
269
269
|
def velocity_to_wavelength_band(n_sigma, band_velocity_sigma, lambda_obs, delta_instr):
|
|
270
270
|
|
|
271
|
-
return n_sigma * ((band_velocity_sigma / c_KMpS) * lambda_obs + delta_instr)
|
|
271
|
+
return n_sigma * np.sqrt(np.square((band_velocity_sigma / c_KMpS) * lambda_obs) + np.square(delta_instr))
|
|
272
272
|
|
|
273
273
|
|
|
274
274
|
ALL_PARAMS = np.array(['m_cont', 'n_cont', 'amp', 'center', 'sigma', 'gamma', 'alpha', 'frac', 'a', 'b', 'c'])
|
lime/lime.toml
CHANGED
lime/observations.py
CHANGED
|
@@ -340,6 +340,10 @@ class Spectrum:
|
|
|
340
340
|
internally for fitting and removed in reported measurements.
|
|
341
341
|
crop_waves : tuple or numpy.ndarray, optional
|
|
342
342
|
Two-element ``(min, max)`` wavelength range used to crop the input arrays.
|
|
343
|
+
crop_flux : tuple, optional
|
|
344
|
+
Two-element ``(min_percentile, max_percentile)`` range used to clip the flux array
|
|
345
|
+
by percentile. Defaults to ``None``, equivalent to ``(1, 100)`` (i.e. the 1st to
|
|
346
|
+
100th percentile).
|
|
343
347
|
res_power : float or numpy.ndarray, optional
|
|
344
348
|
Instrument resolving power :math:`R = \\lambda/\\Delta\\lambda`. If provided,
|
|
345
349
|
it can be used to compute and apply an instrumental broadening correction
|
|
@@ -923,14 +927,18 @@ class Spectrum:
|
|
|
923
927
|
|
|
924
928
|
# Confirm the lines in the log match the one of the spectrum
|
|
925
929
|
if line_0.units_wave != self.units_wave:
|
|
926
|
-
_logger.
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
# Confirm all the log lines have the same units
|
|
930
|
-
au_str = 'A' if line_0.units_wave == 'Angstrom' else str(line_0.units_wave)
|
|
931
|
-
same_units_check = np.flatnonzero(np.core.defchararray.find(line_list.astype(str), au_str) != -1).size == line_list.size
|
|
932
|
-
|
|
933
|
-
|
|
930
|
+
_logger.critical(f'Different units in the spectrum dispersion ({self.units_wave}) axis and the lines log'
|
|
931
|
+
f' in {line_0.units_wave[0]}')
|
|
932
|
+
|
|
933
|
+
# # Confirm all the log lines have the same units This fails if blended or merged in table
|
|
934
|
+
# au_str = 'A' if line_0.units_wave == 'Angstrom' else str(line_0.units_wave)
|
|
935
|
+
# same_units_check = np.flatnonzero(np.core.defchararray.find(line_list.astype(str), au_str) != -1).size == line_list.size
|
|
936
|
+
# same_units_check = np.char.find(line_list.astype(str), au_str)
|
|
937
|
+
# (np.char.find(line_list.astype(str), au_str) != -1).all()
|
|
938
|
+
# np.array([str(l) for l in line_list]).astype(str)
|
|
939
|
+
#
|
|
940
|
+
# if not same_units_check:
|
|
941
|
+
# _logger.warning(f'The log has lines with different units')
|
|
934
942
|
|
|
935
943
|
# Assign the log
|
|
936
944
|
self.frame = log_df
|
|
@@ -957,7 +965,7 @@ class Spectrum:
|
|
|
957
965
|
if frame is not None:
|
|
958
966
|
if line_label in frame.index:
|
|
959
967
|
bands_limits = frame.loc[line_label, 'w1':'w6']
|
|
960
|
-
idcs_bands = np.searchsorted(self.
|
|
968
|
+
idcs_bands = np.searchsorted(self.wave.data, bands_limits * (1 + self.redshift))
|
|
961
969
|
idcs = (idcs_bands[0], idcs_bands[5])
|
|
962
970
|
line_measured = True
|
|
963
971
|
else:
|
|
@@ -973,9 +981,9 @@ class Spectrum:
|
|
|
973
981
|
line_list = line.list_comps
|
|
974
982
|
|
|
975
983
|
# Compute the linear components
|
|
976
|
-
gaussian_arr = profiles_computation(line_list, frame, 1 + self.
|
|
977
|
-
x_array=self.
|
|
978
|
-
linear_arr = linear_continuum_computation(line_list, frame, 1 + self.
|
|
984
|
+
gaussian_arr = profiles_computation(line_list, frame, 1 + self.redshift, line.profile,
|
|
985
|
+
x_array=self.wave.data[idcs[0]: idcs[1]])
|
|
986
|
+
linear_arr = linear_continuum_computation(line_list, frame, 1 + self.redshift, x_array=self.wave.data[idcs[0]: idcs[1]])
|
|
979
987
|
|
|
980
988
|
# Determine which component you want to extract:
|
|
981
989
|
if split_components is False:
|
|
@@ -1145,13 +1153,14 @@ class Spectrum:
|
|
|
1145
1153
|
>>> spec.frame.shape
|
|
1146
1154
|
(0, 10)
|
|
1147
1155
|
"""
|
|
1156
|
+
if self.frame is not None:
|
|
1148
1157
|
|
|
1149
|
-
|
|
1150
|
-
|
|
1158
|
+
if line_data:
|
|
1159
|
+
self.frame = self.frame[0:0]
|
|
1151
1160
|
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1161
|
+
if cont_data:
|
|
1162
|
+
self.cont = None
|
|
1163
|
+
self.cont_std = None
|
|
1155
1164
|
|
|
1156
1165
|
return
|
|
1157
1166
|
|
lime/plotting/bokeh_plots.py
CHANGED
|
@@ -39,6 +39,10 @@ category_conf_styles = {0: 'dotted',
|
|
|
39
39
|
1: 'dashed',
|
|
40
40
|
2: 'solid'}
|
|
41
41
|
|
|
42
|
+
def ensure_list(x):
|
|
43
|
+
return x if isinstance(x, list) else [x]
|
|
44
|
+
|
|
45
|
+
|
|
42
46
|
def update_bokeh_figure(figure_obj, config_dict):
|
|
43
47
|
|
|
44
48
|
# Set general figure properties
|
|
@@ -48,30 +52,40 @@ def update_bokeh_figure(figure_obj, config_dict):
|
|
|
48
52
|
if isinstance(value, dict):
|
|
49
53
|
match key:
|
|
50
54
|
case "xaxis":
|
|
51
|
-
for
|
|
52
|
-
|
|
53
|
-
|
|
55
|
+
for item_obj in ensure_list(figure_obj):
|
|
56
|
+
if item_obj is not None:
|
|
57
|
+
for axis in item_obj.xaxis: # Update all x-axes
|
|
58
|
+
for attr, val in value.items():
|
|
59
|
+
setattr(axis, attr, val)
|
|
54
60
|
|
|
55
61
|
case "yaxis":
|
|
56
|
-
for
|
|
57
|
-
|
|
58
|
-
|
|
62
|
+
for item_obj in ensure_list(figure_obj):
|
|
63
|
+
if item_obj is not None:
|
|
64
|
+
for axis in item_obj.yaxis: # Update all y-axes
|
|
65
|
+
for attr, val in value.items():
|
|
66
|
+
setattr(axis, attr, val)
|
|
59
67
|
|
|
60
68
|
case "title":
|
|
61
69
|
for attr, val in value.items():
|
|
62
|
-
|
|
70
|
+
for item_obj in ensure_list(figure_obj):
|
|
71
|
+
if item_obj is not None:
|
|
72
|
+
setattr(item_obj.title, attr, val)
|
|
63
73
|
|
|
64
74
|
case "xgrid":
|
|
65
|
-
for
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
75
|
+
for item_obj in ensure_list(figure_obj):
|
|
76
|
+
if item_obj is not None:
|
|
77
|
+
for grid in item_obj.xgrid: # Update all x-grids
|
|
78
|
+
for attr, val in value.items():
|
|
79
|
+
val = None if val == 'None' else val
|
|
80
|
+
setattr(grid, attr, val)
|
|
69
81
|
|
|
70
82
|
case "ygrid":
|
|
71
|
-
for
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
83
|
+
for item_obj in ensure_list(figure_obj):
|
|
84
|
+
if item_obj is not None:
|
|
85
|
+
for grid in item_obj.ygrid: # Update all y-grids
|
|
86
|
+
for attr, val in value.items():
|
|
87
|
+
val = None if val == 'None' else val
|
|
88
|
+
setattr(grid, attr, val)
|
|
75
89
|
|
|
76
90
|
# Single value entries
|
|
77
91
|
else:
|
|
@@ -86,7 +100,12 @@ def update_bokeh_figure(figure_obj, config_dict):
|
|
|
86
100
|
case 'active_tap':
|
|
87
101
|
figure_obj.toolbar.active_tap = figure_obj.select_one(getattr(models, value))
|
|
88
102
|
case _ :
|
|
89
|
-
|
|
103
|
+
if isinstance(figure_obj, list):
|
|
104
|
+
for ax in figure_obj:
|
|
105
|
+
if ax is not None:
|
|
106
|
+
setattr(ax, key, value)
|
|
107
|
+
else:
|
|
108
|
+
setattr(figure_obj, key, value)
|
|
90
109
|
|
|
91
110
|
# # Set zoom and pan as active
|
|
92
111
|
# figure_obj.toolbar.active_scroll = figure_obj.select_one(WheelZoomTool) # Activate zoom wheel
|
|
@@ -129,6 +148,7 @@ def save_close_fig_swicth(file_path, fig_obj, display_check):
|
|
|
129
148
|
|
|
130
149
|
return
|
|
131
150
|
|
|
151
|
+
|
|
132
152
|
def bokeh_bands(fig, bands, x, y, z_corr, redshift):
|
|
133
153
|
|
|
134
154
|
# Open the bands file the bands
|
|
@@ -314,6 +334,61 @@ def profile_bokeh(fig, line, z_cor, log, redshift, norm_flux):
|
|
|
314
334
|
return line_single
|
|
315
335
|
|
|
316
336
|
|
|
337
|
+
def redshift_fit_evaluation_bokeh(spectrum, z_infered, data_mask, gauss_arr, z_arr, flux_sum_arr, rest_frame=True):
|
|
338
|
+
|
|
339
|
+
# gauss_arr_max = compute_z_key(z_infer, theo_lambda, wave_matrix, 1, sigma_arr)
|
|
340
|
+
|
|
341
|
+
wave_plot, flux_plot, z_corr, idcs_mask = frame_mask_switch(spectrum.wave, spectrum.flux, z_infered, rest_frame)
|
|
342
|
+
wave_corr = wave_plot / z_corr
|
|
343
|
+
flux_corr = flux_plot * z_corr
|
|
344
|
+
|
|
345
|
+
# Masked flux (red overlay)
|
|
346
|
+
y_mask = np.full(flux_plot.size, np.nan)
|
|
347
|
+
y_mask[data_mask] = flux_corr[data_mask]
|
|
348
|
+
|
|
349
|
+
# --- Top panel: spectrum ---
|
|
350
|
+
p1 = figure(width=800, height=300,
|
|
351
|
+
x_axis_label=str(spectrum.units_wave),
|
|
352
|
+
y_axis_label=str(spectrum.units_flux),
|
|
353
|
+
tools="xpan,xwheel_zoom,reset,save")
|
|
354
|
+
|
|
355
|
+
# Full spectrum
|
|
356
|
+
p1.step(wave_corr, flux_corr, color='white', line_width=1, mode='center', legend_label='Spectrum')
|
|
357
|
+
|
|
358
|
+
# Masked region
|
|
359
|
+
p1.step(wave_corr, y_mask, color='red', line_width=1, mode='center', legend_label='Mask')
|
|
360
|
+
|
|
361
|
+
p1.legend.location = "top_right"
|
|
362
|
+
p1.legend.click_policy = "hide"
|
|
363
|
+
|
|
364
|
+
# --- Twin axis equivalent: gauss_arr on secondary y ---
|
|
365
|
+
# Bokeh doesn't have true twinx, so we normalize gauss_arr to flux scale for overlay
|
|
366
|
+
flux_max = np.nanmax(flux_corr)
|
|
367
|
+
gauss_scaled = gauss_arr * flux_max # scale to flux range
|
|
368
|
+
|
|
369
|
+
p1.step(wave_corr, gauss_scaled, color='yellow', line_width=1, mode='center', legend_label='Bands')
|
|
370
|
+
|
|
371
|
+
# --- Bottom panel: redshift search ---
|
|
372
|
+
title = f'z_prediction = {z_infered:.3f}'
|
|
373
|
+
p2 = figure(width=800, height=200, title=title,
|
|
374
|
+
x_axis_label='Redshift range',
|
|
375
|
+
y_axis_label='F_sum / max(F_sum)',
|
|
376
|
+
tools="xpan,xwheel_zoom,reset,save")
|
|
377
|
+
|
|
378
|
+
flux_sum_norm = flux_sum_arr / np.max(flux_sum_arr)
|
|
379
|
+
|
|
380
|
+
p2.step(z_arr, flux_sum_norm, color='white', line_width=1, mode='center')
|
|
381
|
+
|
|
382
|
+
# Peak marker
|
|
383
|
+
p2.scatter([z_infered], [1], marker='circle', color='red', size=10)
|
|
384
|
+
|
|
385
|
+
# y ticks
|
|
386
|
+
p2.yaxis.ticker = [0, 1]
|
|
387
|
+
|
|
388
|
+
# Link x ranges if rest_frame shares a common axis (optional)
|
|
389
|
+
# p2.x_range = p1.x_range # uncomment if x axes are the same
|
|
390
|
+
|
|
391
|
+
# streamlit_bokeh(column(p1, p2), use_container_width=True)
|
|
317
392
|
|
|
318
393
|
|
|
319
394
|
# Sentinel object for non input figures
|
lime/plotting/format.py
CHANGED
|
@@ -201,8 +201,6 @@ class Themer:
|
|
|
201
201
|
# Figure colors for bokeh
|
|
202
202
|
colors_bokeh = nested_dict(deepcopy(self.conf['bokeh']['colors']), self.colors)
|
|
203
203
|
self.active_conf['bokeh'].update(colors_bokeh)
|
|
204
|
-
# for key, value in self.conf['bokeh']['colors'].items():
|
|
205
|
-
# self.active_conf['bokeh'][key] = self.colors.get(value, value)
|
|
206
204
|
|
|
207
205
|
# Set the size
|
|
208
206
|
if self.scale[0] in self.conf['matplotlib']['size']:
|
|
@@ -211,7 +209,6 @@ class Themer:
|
|
|
211
209
|
if self.scale[0] in self.conf['bokeh']['size']:
|
|
212
210
|
self.bokeh = self.conf['bokeh']['size'][self.scale[0]]
|
|
213
211
|
|
|
214
|
-
|
|
215
212
|
return
|
|
216
213
|
|
|
217
214
|
|
lime/plotting/theme_lime.toml
CHANGED
|
@@ -58,7 +58,7 @@ default."label_lines" = 10
|
|
|
58
58
|
[bokeh]
|
|
59
59
|
default."width" = 600
|
|
60
60
|
default."height" = 300
|
|
61
|
-
default."tools" = 'fullscreen,pan,wheel_zoom,box_zoom,
|
|
61
|
+
default."tools" = 'fullscreen,pan,wheel_zoom,box_zoom,xwheel_zoom,reset,save'
|
|
62
62
|
default.'active_drag' = 'PanTool'
|
|
63
63
|
default.'active_scroll' = 'WheelZoomTool'
|
|
64
64
|
|
|
@@ -0,0 +1,292 @@
|
|
|
1
|
+
wavelength wave_vac w1 w2 w3 w4 w5 w6 latex_label units_wave particle trans rel_int osc_str trans_prob Reference
|
|
2
|
+
H1_950A 949.740700 949.740700 946.446512 947.270059 948.093606 951.387794 952.211341 953.034888 $HI949.7\mathring{A}$ Angstrom H1 rec NaN 0.013900 4.204000e+07 VOIGTFIT
|
|
3
|
+
H1_973A 972.534500 972.534500 969.161252 970.004564 970.847876 974.221124 975.064436 975.907748 $HI972.5\mathring{A}$ Angstrom H1 rec NaN 0.029000 8.127000e+07 VOIGTFIT
|
|
4
|
+
C3_977A 977.020000 977.020000 973.631194 974.478395 975.325597 978.714403 979.561605 980.408806 $CIII977\mathring{A}$ Angstrom C3 rec NaN 0.759000 1.622000e+09 VOIGTFIT
|
|
5
|
+
O1_989A 988.578000 988.578000 985.149105 986.006328 986.863552 990.292448 991.149672 992.006895 $OI988.6\mathring{A}$ Angstrom O1 rec NaN 0.000569 2.512000e+08 VOIGTFIT
|
|
6
|
+
Si2_990A 989.873100 989.873100 986.439713 987.298059 988.156406 991.589794 992.448141 993.306487 $SiII989.9\mathring{A}$ Angstrom Si2 rec NaN 0.147000 7.762000e+08 VOIGTFIT
|
|
7
|
+
Si2_1021A 1020.698900 1020.698900 1017.158593 1018.043670 1018.928746 1022.469054 1023.354130 1024.239207 $SiII1021\mathring{A}$ Angstrom Si2 rec 0.0 0.018900 4.266000e+08 VOIGTFIT
|
|
8
|
+
H1_1026A 1025.720100 1025.720100 1022.162377 1023.051808 1023.941238 1027.498962 1028.388392 1029.277823 $HI1026\mathring{A}$ Angstrom H1 rec 0.0 0.079100 1.897000e+08 VOIGTFIT
|
|
9
|
+
O1_1026A 1025.762000 1025.762000 1022.204131 1023.093599 1023.983066 1027.540934 1028.430401 1029.319869 $OI1026\mathring{A}$ Angstrom O1 rec 0.0 0.016900 6.166000e+07 VOIGTFIT
|
|
10
|
+
O6_1032A 1031.912000 1031.912000 1028.332800 1029.227600 1030.122400 1033.701600 1034.596400 1035.491200 $OVI1032\mathring{A}$ Angstrom O6 rec 0.0 0.133000 4.074000e+08 VOIGTFIT
|
|
11
|
+
C2_1036A 1036.336700 1036.336700 1032.742153 1033.640790 1034.539426 1038.133974 1039.032610 1039.931247 $CII1036\mathring{A}$ Angstrom C2 rec 0.0 0.066100 4.074000e+08 VOIGTFIT
|
|
12
|
+
O6_1038A 1037.613000 1037.613000 1034.014026 1034.913770 1035.813513 1039.412487 1040.312230 1041.211974 $OVI1038\mathring{A}$ Angstrom O6 rec 0.0 0.133000 4.074000e+08 VOIGTFIT
|
|
13
|
+
O1_1039A 1039.000000 1039.000000 1035.396215 1036.297161 1037.198108 1040.801892 1041.702839 1042.603785 $OI1039\mathring{A}$ Angstrom O1 rec 0.0 0.009100 1.870000e+08 VOIGTFIT
|
|
14
|
+
N2_1084A 1083.993700 1083.993700 1080.233854 1081.173816 1082.113777 1085.873623 1086.813584 1087.753546 $NII1084\mathring{A}$ Angstrom N2 rec 0.0 NaN NaN NaN
|
|
15
|
+
N2_1085A 1084.565900 1084.565900 1080.804069 1081.744527 1082.684985 1086.446815 1087.387273 1088.327731 $NII1085\mathring{A}$ Angstrom N2 rec 0.0 NaN NaN NaN
|
|
16
|
+
Fe2_1097A 1096.876870 1096.876870 1093.072339 1094.023471 1094.974604 1098.779136 1099.730269 1100.681401 $FeII1097\mathring{A}$ Angstrom Fe2 rec 0.0 0.032700 5.012000e+08 VOIGTFIT
|
|
17
|
+
Fe2_1107A 1107.412010 1107.412010 1103.570937 1104.531205 1105.491474 1109.332546 1110.292815 1111.253083 $FeII1107\mathring{A}$ Angstrom Fe2 rec 0.0 NaN NaN NaN
|
|
18
|
+
Fe2_1112A 1112.048320 1112.048320 1108.191166 1109.155455 1110.119743 1113.976897 1114.941185 1115.905474 $FeII1112\mathring{A}$ Angstrom Fe2 rec 0.0 NaN NaN NaN
|
|
19
|
+
Fe2_1122A 1121.974710 1121.974710 1118.083126 1119.056022 1120.028918 1123.920502 1124.893398 1125.866294 $FeII1122\mathring{A}$ Angstrom Fe2 rec 0.0 NaN NaN NaN
|
|
20
|
+
Fe2_1125A 1125.447630 1125.447630 1121.544001 1122.519908 1123.495815 1127.399445 1128.375352 1129.351259 $FeII1125\mathring{A}$ Angstrom Fe2 rec 0.0 NaN NaN NaN
|
|
21
|
+
Fe2_1127A 1127.098400 1127.098400 1123.189045 1124.166384 1125.143722 1129.053078 1130.030416 1131.007755 $FeII1127\mathring{A}$ Angstrom Fe2 rec 0.0 NaN NaN NaN
|
|
22
|
+
Fe3_1128A 1128.483190 1128.483190 1124.569032 1125.547571 1126.526111 1130.440269 1131.418809 1132.397348 $FeIII1128\mathring{A}$ Angstrom Fe3 rec 0.0 NaN NaN NaN
|
|
23
|
+
Fe2_1134A 1133.675200 1133.675200 1129.743033 1130.726075 1131.709117 1135.641283 1136.624325 1137.607367 $FeII1134\mathring{A}$ Angstrom Fe2 rec 0.0 NaN NaN NaN
|
|
24
|
+
N1_1134A 1134.165290 1134.165290 1130.231134 1131.214601 1132.198067 1136.131933 1137.115399 1138.098866 $NI1134\mathring{A}$ Angstrom N1 rec 0.0 NaN NaN VALD0
|
|
25
|
+
N1_1134.4A 1134.414890 1134.414890 1130.480157 1131.463841 1132.447524 1136.382256 1137.365939 1138.349623 $NI1134\mathring{A}$ Angstrom N1 rec 0.0 NaN NaN NaN
|
|
26
|
+
N1_1135A 1134.980250 1134.980250 1131.043557 1132.027730 1133.011903 1136.948597 1137.932770 1138.916943 $NI1135\mathring{A}$ Angstrom N1 rec 0.0 NaN NaN NaN
|
|
27
|
+
Fe2_1142A 1142.365650 1142.365650 1138.403340 1139.393918 1140.384495 1144.346805 1145.337382 1146.327960 $FeII1142\mathring{A}$ Angstrom Fe2 rec 0.0 0.004010 5.012000e+08 VOIGTFIT
|
|
28
|
+
Fe2_1143A 1143.225730 1143.225730 1139.260437 1140.251760 1141.243083 1145.208377 1146.199700 1147.191023 $FeII1143\mathring{A}$ Angstrom Fe2 rec 0.0 0.019200 5.623000e+08 VOIGTFIT
|
|
29
|
+
Fe2_1145A 1144.939200 1144.939200 1140.967964 1141.960773 1142.953582 1146.924818 1147.917627 1148.910436 $FeII1145\mathring{A}$ Angstrom Fe2 rec 0.0 0.112000 6.026000e+08 VOIGTFIT
|
|
30
|
+
P2_1153A 1152.818000 1152.818000 1148.819436 1149.819077 1150.818718 1154.817282 1155.816923 1156.816564 $PII1153\mathring{A}$ Angstrom P2 rec 0.0 NaN NaN NaN
|
|
31
|
+
P2_1154A 1153.995100 1153.995100 1149.992453 1150.993115 1151.993777 1155.996423 1156.997085 1157.997747 $PII1154\mathring{A}$ Angstrom P2 rec 0.0 NaN NaN NaN
|
|
32
|
+
C3_1176A 1176.100000 1176.100000 1172.020682 1173.040512 1174.060341 1178.139659 1179.159488 1180.179318 $CIII1176\mathring{A}$ Angstrom C3 rec 0.0 NaN NaN NaN
|
|
33
|
+
S3_1190A 1190.203000 1190.203000 1186.074766 1187.106824 1188.138883 1192.267117 1193.299176 1194.331234 $SIII1190\mathring{A}$ Angstrom S3 rec 0.0 0.022000 6.166000e+07 VOIGTFIT
|
|
34
|
+
Si2_1190A 1190.415800 1190.415800 1186.286828 1187.319071 1188.351314 1192.480286 1193.512529 1194.544772 $SiII1190\mathring{A}$ Angstrom Si2 rec 0.0 0.284000 4.266000e+09 VOIGTFIT
|
|
35
|
+
Si2_1193A 1193.289700 1193.289700 1189.150759 1190.185495 1191.220230 1195.359170 1196.393905 1197.428641 $SiII1193\mathring{A}$ Angstrom Si2 rec 0.0 0.594000 4.266000e+09 VOIGTFIT
|
|
36
|
+
Si2_1195A 1194.500100 1194.500100 1190.356961 1191.392746 1192.428531 1196.571669 1197.607454 1198.643239 $SiII1195\mathring{A}$ Angstrom Si2 rec 0.0 NaN NaN NaN
|
|
37
|
+
Si2_1197A 1197.393700 1197.393700 1193.240525 1194.278819 1195.317112 1199.470288 1200.508581 1201.546875 $SiII1197\mathring{A}$ Angstrom Si2 rec 0.0 NaN NaN NaN
|
|
38
|
+
N1_1200A 1199.549640 1199.549640 1195.388987 1196.429150 1197.469313 1201.629967 1202.670130 1203.710293 $NI1200\mathring{A}$ Angstrom N1 rec 0.0 NaN NaN NaN
|
|
39
|
+
N1_1200.2A 1200.223290 1200.223290 1196.060300 1197.101048 1198.141795 1202.304785 1203.345532 1204.386280 $NI1200\mathring{A}$ Angstrom N1 rec 0.0 NaN NaN NaN
|
|
40
|
+
N1_1201A 1200.709810 1200.709810 1196.545133 1197.586302 1198.627471 1202.792149 1203.833318 1204.874487 $NI1201\mathring{A}$ Angstrom N1 rec 0.0 NaN NaN NaN
|
|
41
|
+
Si3_1206A 1206.499500 1206.499500 1202.314741 1203.360931 1204.407121 1208.591879 1209.638069 1210.684259 $SiIII1206\mathring{A}$ Angstrom Si3 rec 0.0 1.700000 2.570000e+09 VOIGTFIT
|
|
42
|
+
Fe3_1207A 1207.049000 1207.049000 1202.862335 1203.909001 1204.955668 1209.142332 1210.188999 1211.235665 $FeIII1207\mathring{A}$ Angstrom Fe3 rec 0.0 NaN NaN NaN
|
|
43
|
+
Fe3_1214A 1214.000000 1214.000000 1209.789226 1210.841919 1211.894613 1216.105387 1217.158081 1218.210774 $FeIII1214\mathring{A}$ Angstrom Fe3 rec 0.0 NaN NaN NaN
|
|
44
|
+
H1_1216A 1215.670000 1215.670000 1211.453433 1212.507575 1213.561717 1217.778283 1218.832425 1219.886567 $HI1216\mathring{A}$ Angstrom H1 rec 0.0 0.416000 6.265000e+08 VOIGTFIT
|
|
45
|
+
N5_1239A 1238.821000 1238.821000 1234.524134 1235.598350 1236.672567 1240.969433 1242.043650 1243.117866 $NV1239\mathring{A}$ Angstrom N5 rec 0.0 0.156000 3.388000e+08 VOIGTFIT
|
|
46
|
+
N5_1243A 1242.804000 1242.804000 1238.493318 1239.570989 1240.648659 1244.959341 1246.037011 1247.114682 $NV1243\mathring{A}$ Angstrom N5 rec 0.0 0.078000 3.388000e+08 VOIGTFIT
|
|
47
|
+
S2_1251A 1250.578000 1250.578000 1246.246832 1247.331249 1248.415666 1252.753334 1253.837751 1254.922168 $SII1251\mathring{A}$ Angstrom S2 rec 0.0 0.005200 5.129000e+07 VOIGTFIT
|
|
48
|
+
S2_1254A 1253.805000 1253.805000 1249.462240 1250.549455 1251.636670 1255.985530 1257.072745 1258.159960 $SII1254\mathring{A}$ Angstrom S2 rec 0.0 0.010000 4.266000e+07 VOIGTFIT
|
|
49
|
+
S2_1260A 1259.518000 1259.518000 1255.150342 1256.242507 1257.334671 1261.703329 1262.795493 1263.887658 $SII1260\mathring{A}$ Angstrom S2 rec 0.0 0.016000 3.388000e+07 VOIGTFIT
|
|
50
|
+
Fe2_1260A 1260.000000 1260.000000 1255.629674 1256.722255 1257.814837 1262.185163 1263.277745 1264.370326 $FeII1260\mathring{A}$ Angstrom Fe2 rec 0.0 0.020100 1.318000e+09 VOIGTFIT
|
|
51
|
+
Si2_1260A 1260.422100 1260.422100 1256.050310 1257.143257 1258.236205 1262.607995 1263.700943 1264.793890 $SiII1260\mathring{A}$ Angstrom Si2 rec 0.0 1.450000 3.631000e+09 VOIGTFIT
|
|
52
|
+
Si2_1264.7A 1264.737700 1264.737700 1260.350742 1261.447431 1262.544121 1266.930879 1268.027569 1269.124258 $SiII1265\mathring{A}$ Angstrom Si2 * 0.0 NaN NaN NaN
|
|
53
|
+
Si2_1265A 1265.002000 1265.002000 1260.614125 1261.711044 1262.807963 1267.195637 1268.292556 1269.389475 $SiII1265\mathring{A}$ Angstrom Si2 * 0.0 NaN NaN NaN
|
|
54
|
+
P2_1302A 1301.874300 1301.874300 1297.358732 1298.487624 1299.616516 1304.132084 1305.260976 1306.389868 $PII1302\mathring{A}$ Angstrom P2 rec 0.0 NaN NaN NaN
|
|
55
|
+
O1_1302A 1302.168480 1302.168480 1297.651892 1298.781039 1299.910186 1302.168000 1302.168000 1306.685068 $OI1302\mathring{A}$ Angstrom O1 rec 0.0 0.052000 5.623000e+08 VOIGTFIT
|
|
56
|
+
Si2_1304A 1304.370200 1304.370200 1299.845975 1300.977031 1302.108088 1306.632312 1307.763369 1308.894425 $SiII1304\mathring{A}$ Angstrom Si2 rec 0.0 0.106000 1.122000e+09 VOIGTFIT
|
|
57
|
+
O1_1305A 1304.900000 1304.900000 1300.373938 1301.505453 1302.636969 1307.163031 1308.294547 1309.426062 $OI1305\mathring{A}$ Angstrom O1 rec 0.0 NaN NaN NaN
|
|
58
|
+
O1_1306A 1306.000000 1306.000000 1301.470122 1302.602592 1303.735061 1308.264939 1309.397408 1310.529878 $OI1306\mathring{A}$ Angstrom O1 rec 0.0 NaN NaN NaN
|
|
59
|
+
Si2_1309A 1309.275500 1309.275500 1304.734261 1305.869571 1307.004881 1311.546119 1312.681429 1313.816739 $SiII1309\mathring{A}$ Angstrom Si2 rec 0.0 NaN NaN NaN
|
|
60
|
+
Ni2_1317A 1317.220530 1317.220530 1312.651734 1313.793933 1314.936132 1319.504928 1320.647127 1321.789326 $NiII1317\mathring{A}$ Angstrom Ni2 rec 0.0 NaN NaN NaN
|
|
61
|
+
C2_1335A 1334.532300 1334.532300 1329.903458 1331.060668 1332.217879 1336.846721 1338.003932 1339.161142 $CII1335\mathring{A}$ Angstrom C2 rec 0.0 0.129000 3.981000e+08 VOIGTFIT
|
|
62
|
+
C2_1336A 1335.662700 1335.662700 1331.029937 1332.188128 1333.346318 1337.979082 1339.137272 1340.295463 $CII1336\mathring{A}$ Angstrom C2 * 0.0 0.012700 3.981000e+08 VOIGTFIT
|
|
63
|
+
C2_1335.7A 1335.707700 1335.707700 1331.074781 1332.233011 1333.391240 1338.024160 1339.182389 1340.340619 $CII1336\mathring{A}$ Angstrom C2 * 0.0 0.116000 3.890000e+08 VOIGTFIT
|
|
64
|
+
Ni2_1346A 1345.883550 1345.883550 1341.215336 1342.382389 1343.549443 1348.217657 1349.384711 1350.551764 $NiII1346\mathring{A}$ Angstrom Ni2 rec 0.0 NaN NaN NaN
|
|
65
|
+
O1_1356A 1355.597670 1355.597670 1350.895762 1352.071239 1353.246716 1357.948624 1359.124101 1360.299578 $OI1356\mathring{A}$ Angstrom O1 rec 0.0 0.000001 5.560000e+03 VOIGTFIT
|
|
66
|
+
O1_1358A 1358.500000 1358.500000 1353.788025 1354.966019 1356.144013 1360.855987 1362.033981 1363.211975 $OI1358\mathring{A}$ Angstrom O1 rec 0.0 NaN NaN NaN
|
|
67
|
+
Ni2_1370A 1370.136530 1370.136530 1365.384194 1366.572278 1367.760362 1372.512698 1373.700782 1374.888866 $NiII1370\mathring{A}$ Angstrom Ni2 NaN 0.0 NaN NaN NaN
|
|
68
|
+
Ni2_1393A 1393.327270 1393.327270 1388.494497 1389.702690 1390.910883 1395.743657 1396.951850 1398.160043 $NiII1393\mathring{A}$ Angstrom Ni2 rec 0.0 NaN NaN NaN
|
|
69
|
+
Si4_1394A 1393.755000 1393.755000 1388.920344 1390.128908 1391.337472 1396.171728 1397.380292 1398.588856 $SiIV1394\mathring{A}$ Angstrom Si4 rec 0.0 0.536000 9.120000e+08 VOIGTFIT
|
|
70
|
+
Si4_1403A 1402.770000 1402.770000 1397.904175 1399.120557 1400.336938 1405.202462 1406.418843 1407.635225 $SiIV1403\mathring{A}$ Angstrom Si4 rec 0.0 0.262000 9.120000e+08 VOIGTFIT
|
|
71
|
+
Si2_1527A 1526.706600 1526.706600 1521.411199 1522.735049 1524.058899 1529.354301 1530.678151 1532.002001 $SiII1527\mathring{A}$ Angstrom Si2 rec 0.0 0.127000 1.096000e+09 VOIGTFIT
|
|
72
|
+
Si2_1533A 1533.431000 1533.431000 1528.112275 1529.441956 1530.771638 1536.090362 1537.420044 1538.749725 $SiII1533\mathring{A}$ Angstrom Si2 rec 0.0 NaN NaN NaN
|
|
73
|
+
C4_1548A 1548.203000 1548.203000 1542.833038 1544.175529 1545.518019 1550.887981 1552.230471 1553.572962 $CIV1548\mathring{A}$ Angstrom C4 NaN NaN NaN NaN NaN
|
|
74
|
+
C4_1551A 1550.777000 1550.777000 1545.398110 1546.742833 1548.087555 1553.466445 1554.811167 1556.155890 $CIV1551\mathring{A}$ Angstrom C4 NaN NaN NaN NaN NaN
|
|
75
|
+
Fe2_1589A 1588.687400 1588.687400 1583.177017 1584.554613 1585.932209 1591.442591 1592.820187 1594.197783 $FeII1589\mathring{A}$ Angstrom Fe2 rec 0.0 0.000148 3.802000e+08 VOIGTFIT
|
|
76
|
+
Fe2_1608A 1608.450830 1608.450830 1602.871898 1604.266631 1605.661364 1611.240296 1612.635029 1614.029762 $FeII1608\mathring{A}$ Angstrom Fe2 rec 0.0 0.058100 3.090000e+08 VOIGTFIT
|
|
77
|
+
Fe2_1611A 1611.200300 1611.200300 1605.611831 1607.008948 1608.406066 1613.994534 1615.391652 1616.788769 $FeII1611\mathring{A}$ Angstrom Fe2 rec 0.0 0.001360 3.090000e+08 VOIGTFIT
|
|
78
|
+
He2_1640A 1640.420000 1640.420000 1600.000000 1630.000000 1638.231259 1642.608741 1700.000000 1750.000000 $HeII1640\mathring{A}$ Angstrom He2 rec 1.0 NaN NaN NaN
|
|
79
|
+
O3_1661A 1660.809200 1660.809200 1655.272293 1657.482325 1658.593255 1663.025145 1664.130161 1666.352020 $OIII]1661\mathring{A}$ Angstrom O3 sem 1.0 NaN NaN NaN
|
|
80
|
+
O3_1666A 1666.149700 1666.149700 1600.000000 1630.000000 1663.926629 1668.372771 1700.000000 1750.000000 $OIII]1666\mathring{A}$ Angstrom O3 sem 1.0 NaN NaN NaN
|
|
81
|
+
Al2_1671A 1670.786700 1670.786700 1664.992253 1666.441039 1667.889826 1673.684974 1675.133761 1676.582547 $AlII1671\mathring{A}$ Angstrom Al2 rec 0.0 1.700000 1.460000e+09 VOIGTFIT
|
|
82
|
+
S3_1713A 1713.113700 1713.113700 1707.402418 1709.682051 1710.827967 1715.399433 1716.539250 1718.831082 $SIII]1713\mathring{A}$ Angstrom S3 sem 0.0 NaN NaN NaN
|
|
83
|
+
S3_1729A 1728.941500 1728.941500 1723.177450 1725.478145 1726.634649 1731.248351 1732.398699 1734.711706 $SIII]1729\mathring{A}$ Angstrom S3 sem 0.0 NaN NaN NaN
|
|
84
|
+
N3_1747A 1746.823000 1746.823000 1740.999335 1743.323826 1744.492290 1749.153710 1750.315955 1752.652884 $NIII]1747\mathring{A}$ Angstrom N3 sem 1.0 NaN NaN NaN
|
|
85
|
+
N3_1749A 1748.646000 1748.646000 1742.816258 1745.143174 1746.312858 1750.979142 1752.142600 1754.481968 $NIII]1749\mathring{A}$ Angstrom N3 sem 1.0 NaN NaN NaN
|
|
86
|
+
N3_1750A 1749.674000 1749.674000 1743.840831 1746.169115 1747.339486 1752.008514 1753.172656 1755.513399 $NIII]1750\mathring{A}$ Angstrom N3 sem 1.0 NaN NaN NaN
|
|
87
|
+
N3_1752A 1752.160000 1752.160000 1746.318543 1748.650135 1749.822169 1754.497831 1755.663627 1758.007696 $NIII]1752\mathring{A}$ Angstrom N3 sem 1.0 NaN NaN NaN
|
|
88
|
+
N3_1754A 1753.995000 1753.995000 1748.147425 1750.481459 1751.654721 1756.335279 1757.502296 1759.848820 $NIII]1754\mathring{A}$ Angstrom N3 sem 1.0 NaN NaN NaN
|
|
89
|
+
Si3_1892A 1892.030000 1892.030000 1885.467470 1887.108102 1888.748735 1895.311265 1896.951898 1898.592530 $SiIII1892\mathring{A}$ Angstrom Si3 rec 0.0 NaN NaN NaN
|
|
90
|
+
C3_1907A 1906.683000 1906.683000 1900.326384 1902.863600 1904.138996 1909.227004 1910.495612 1913.046404 $CIII]1907\mathring{A}$ Angstrom C3 sem 1.0 NaN NaN NaN
|
|
91
|
+
C3_1909A 1908.734000 1908.734000 1870.000000 1895.000000 1906.187259 1911.280741 1930.000000 1950.000000 $CIII]1909\mathring{A}$ Angstrom C3 sem 1.0 NaN NaN NaN
|
|
92
|
+
O2_2470A 2470.181000 2470.966000 2461.945761 2465.232820 2466.885145 2473.476855 2475.120385 2478.425034 $[OII]2470\mathring{A}$ Angstrom O2 col 0.0 NaN NaN NaN
|
|
93
|
+
O2_2470.3A 2470.303000 2471.088000 2462.067354 2465.354576 2467.006982 2473.599018 2475.242629 2478.547442 $[OII]2470\mathring{A}$ Angstrom O2 col 0.0 NaN NaN NaN
|
|
94
|
+
Mg2_2795A 2795.484000 2796.352000 2786.164246 2789.884185 2791.754108 2799.213892 2801.073862 2804.813708 $[MgII]2795\mathring{A}$ Angstrom Mg2 col 0.0 NaN NaN NaN
|
|
95
|
+
Mg2_2803A 2802.661000 2803.531000 2700.000000 2750.000000 2798.921532 2806.400468 2850.000000 2900.000000 $[MgII]2803\mathring{A}$ Angstrom Mg2 col 1.0 NaN NaN NaN
|
|
96
|
+
Ne5_3345A 3345.400000 3346.400000 3334.246902 3338.698612 3340.936379 3349.863621 3352.089476 3356.565009 $[NeV]3345\mathring{A}$ Angstrom Ne5 col 0.0 NaN NaN NaN
|
|
97
|
+
Ne5_3426A 3425.500000 3426.500000 3390.000000 3410.000000 3420.929505 3430.070495 3445.000000 3465.000000 $[NeV]3426\mathring{A}$ Angstrom Ne5 col 0.0 NaN NaN NaN
|
|
98
|
+
H1_3704A 3703.794000 3704.906000 3671.309441 3681.364925 3698.852189 3708.735811 3758.000000 3764.000000 $HI3704\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN NaN
|
|
99
|
+
H1_3722A 3721.880000 3722.997000 3665.750000 3694.260000 3721.002595 3730.945405 3754.880000 3767.500000 $HI3722\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN NaN
|
|
100
|
+
O2_3726A 3725.974000 3727.092000 3665.750000 3694.260000 3721.002595 3730.945405 3754.880000 3767.500000 $[OII]3726\mathring{A}$ Angstrom O2 col 1.0 NaN NaN NaN
|
|
101
|
+
O2_3729A 3728.756000 3729.875000 3665.750000 3694.260000 3723.780884 3733.731116 3754.880000 3767.500000 $[OII]3729\mathring{A}$ Angstrom O2 col 1.0 NaN NaN NaN
|
|
102
|
+
H1_3734A 3734.310000 3735.430000 3665.750000 3694.260000 3721.002595 3730.945405 3754.880000 3767.500000 $HI3734\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN NaN
|
|
103
|
+
H1_3750A 3750.092000 3751.217000 3664.503848 3675.720417 3745.088416 3755.095584 3775.220000 3792.040000 $HI3750\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN NaN
|
|
104
|
+
H1_3771A 3770.571000 3771.701000 3758.000441 3763.017925 3765.540092 3775.601908 3778.110650 3783.154984 $HI3771\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN NaN
|
|
105
|
+
H1_3798A 3797.838000 3798.976000 3780.949179 3792.078244 3792.770710 3802.905290 3807.127865 3816.774280 $HI3798\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN NaN
|
|
106
|
+
H1_3835A 3835.324000 3836.472000 3823.148476 3829.538777 3830.206694 3840.441306 3844.260000 3852.830000 $HI3835\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN NaN
|
|
107
|
+
Ne3_3869A 3869.000000 3870.160000 3848.429950 3858.099497 3863.837762 3874.162238 3895.538694 3910.048413 $[NeIII]3869\mathring{A}$ Angstrom Ne3 col 1.0 NaN NaN NaN
|
|
108
|
+
He1_3889A 3888.584917 3889.747508 3842.087829 3861.282614 3883.396548 3893.773287 3905.000000 3950.000000 $HeI3889\mathring{A}$ Angstrom He1 rec 1.0 NaN NaN NaN
|
|
109
|
+
H1_3889A 3888.988000 3890.151000 3842.087829 3861.282614 3883.799093 3894.176907 3905.000000 3950.000000 $HI3889\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN NaN
|
|
110
|
+
Ne3_3968A 3967.730000 3968.910000 3954.502141 3959.781983 3962.436031 3973.023969 3975.663890 3980.971986 $[NeIII]3968\mathring{A}$ Angstrom Ne3 col 1.0 NaN NaN NaN
|
|
111
|
+
H1_3970A 3970.010000 3971.195000 3945.566344 3957.862489 3964.712989 3975.307011 3979.317175 3989.942405 $HI3970\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN NaN
|
|
112
|
+
Fe3_4008A 4008.270000 4009.470000 3994.906986 4000.240775 4002.921940 4013.618060 4016.284954 4021.647285 $[FeIII]4008\mathring{A}$ Angstrom Fe3 col 1.0 NaN NaN NaN
|
|
113
|
+
He1_4026A 4026.123000 4027.323000 4012.700467 4018.058012 4020.751120 4031.494880 4034.173653 4039.559868 $HeI4026\mathring{A}$ Angstrom He1 rec 1.0 NaN NaN NaN
|
|
114
|
+
S2_4069A 4068.537000 4069.749000 4054.973064 4060.387050 4063.108529 4073.965471 4076.672464 4082.115422 $[SII]4069\mathring{A}$ Angstrom S2 col 1.0 NaN NaN NaN
|
|
115
|
+
S2_4076A 4076.300000 4077.500000 4062.710184 4068.134499 4070.861171 4081.738829 4084.450987 4089.904330 $[SII]4076\mathring{A}$ Angstrom S2 col 0.0 NaN NaN NaN
|
|
116
|
+
H1_4102A 4101.671000 4102.892000 4084.633589 4093.799103 4096.198319 4107.143681 4110.113141 4119.294537 $HI4102\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN NaN
|
|
117
|
+
Fe2_4287A 4287.326780 4288.599580 4273.033430 4278.738558 4281.606387 4293.047173 4295.899737 4301.635395 $[FeII]4287\mathring{A}$ Angstrom Fe2 col 1.0 NaN NaN NaN
|
|
118
|
+
H1_4340A 4340.396000 4341.684000 4322.549217 4332.509864 4334.604799 4346.187201 4350.262697 4360.488238 $HI4340\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN NaN
|
|
119
|
+
Fe2_4358A 4358.028800 4359.321200 4343.499739 4349.298950 4352.214072 4363.843528 4366.743133 4372.573378 $[FeII]4358\mathring{A}$ Angstrom Fe2 col 0.0 NaN NaN NaN
|
|
120
|
+
O3_4363A 4363.142000 4364.436000 4297.700000 4323.660000 4357.320450 4368.963550 4390.760000 4416.200000 $[OIII]4363\mathring{A}$ Angstrom O3 col 1.0 NaN NaN NaN
|
|
121
|
+
He1_4388A 4388.080339 4389.381125 4373.451090 4379.290291 4382.225515 4393.935163 4396.854763 4402.725211 $HeI4388\mathring{A}$ Angstrom He1 rec 1.0 NaN NaN NaN
|
|
122
|
+
He1_4471A 4471.404000 4472.728000 4451.913360 4465.069336 4465.438001 4477.369999 4480.772156 4496.909458 $HeI4471\mathring{A}$ Angstrom He1 rec 1.0 NaN NaN NaN
|
|
123
|
+
Fe3_4658A 4658.090000 4659.470000 4637.507567 4650.238986 4651.874914 4664.305086 4669.709024 4679.097970 $[FeIII]4658\mathring{A}$ Angstrom Fe3 col 1.0 NaN NaN NaN
|
|
124
|
+
He2_4686A 4685.640000 4687.020000 4663.804252 4678.301808 4679.388155 4691.891845 4718.751912 4733.650293 $HeII4686\mathring{A}$ Angstrom He2 rec 1.0 NaN NaN NaN
|
|
125
|
+
Ar4_4711A 4711.300000 4712.690000 4664.639652 4680.894598 4705.013918 4717.586082 4723.932671 4738.660669 $[ArIV]4711\mathring{A}$ Angstrom Ar4 col 1.0 NaN NaN NaN
|
|
126
|
+
He1_4713A 4713.083425 4714.474819 4697.370661 4703.642342 4706.794963 4719.371887 4722.507727 4728.812970 $HeI4713\mathring{A}$ Angstrom He1 rec 1.0 NaN NaN NaN
|
|
127
|
+
Ar4_4740A 4740.090000 4741.490000 4724.287200 4730.594819 4733.765505 4746.414495 4749.568304 4755.909677 $[ArIV]4740\mathring{A}$ Angstrom Ar4 col 1.0 NaN NaN NaN
|
|
128
|
+
H1_4861A 4861.250000 4862.683000 4809.800000 4836.100000 4854.763846 4867.736154 4883.130000 4908.400000 $HI4861\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN NaN
|
|
129
|
+
Fe3_4881A 4880.998000 4882.436000 4864.725433 4871.220557 4874.485497 4887.510503 4890.758065 4897.287946 $[FeIII]4881\mathring{A}$ Angstrom Fe3 col 1.0 NaN NaN NaN
|
|
130
|
+
He1_4922A 4922.333000 4923.783000 4905.922627 4912.472756 4915.765346 4928.900654 4932.175718 4938.760898 $HeI4922\mathring{A}$ Angstrom He1 rec 1.0 NaN NaN NaN
|
|
131
|
+
Fe3_4925A 4924.580000 4926.031000 4908.162136 4914.715255 4918.009348 4931.150652 4934.427211 4941.015398 $[FeIII]4925\mathring{A}$ Angstrom Fe3 col 1.0 NaN NaN NaN
|
|
132
|
+
O3_4959A 4958.835000 4960.295000 4929.281844 4946.732665 4952.218643 4965.451357 4972.820372 4984.416360 $[OIII]4959\mathring{A}$ Angstrom O3 col 1.0 NaN NaN NaN
|
|
133
|
+
Fe3_4986A 4985.800000 4987.270000 4969.178037 4975.812621 4979.147665 4992.452335 4995.769627 5002.439715 $[FeIII]4986\mathring{A}$ Angstrom Fe3 col 0.0 NaN NaN NaN
|
|
134
|
+
O3_5007A 5006.770000 5008.240000 4971.796688 4984.514249 5000.089685 5013.450315 5027.743260 5043.797081 $[OIII]5007\mathring{A}$ Angstrom O3 col 1.0 NaN NaN NaN
|
|
135
|
+
He1_5016A 5015.600000 5017.080000 4998.878688 5005.552927 5008.907904 5022.292096 5025.629215 5032.339170 $HeI5016\mathring{A}$ Angstrom He1 rec 1.0 NaN NaN NaN
|
|
136
|
+
Ar3_5192A 5191.740000 5193.270000 5174.431462 5181.340089 5184.812888 5198.667112 5202.121426 5209.067023 $[ArIII]5192\mathring{A}$ Angstrom Ar3 col 0.0 NaN NaN NaN
|
|
137
|
+
N1_5198A 5197.822000 5199.349000 5180.493185 5187.409906 5190.886773 5204.757227 5208.215587 5215.169321 $[NI]5198\mathring{A}$ Angstrom N1 col 1.0 NaN NaN NaN
|
|
138
|
+
N1_5200A 5200.177600 5201.705500 5182.840932 5189.760787 5193.239230 5207.115970 5210.575898 5217.532783 $[NI]5200\mathring{A}$ Angstrom N1 col 1.0 NaN NaN NaN
|
|
139
|
+
N2_5755A 5754.560000 5756.240000 5700.000000 5720.000000 5746.881942 5762.238058 5800.000000 5820.000000 $[NII]5755\mathring{A}$ Angstrom N2 col 1.0 NaN NaN NaN
|
|
140
|
+
He1_5876A 5875.535200 5877.253500 5845.715833 5865.712378 5867.695730 5883.374670 5888.378245 5901.854752 $HeI5876\mathring{A}$ Angstrom He1 rec 1.0 NaN NaN NaN
|
|
141
|
+
O1_6300A 6300.208000 6302.046000 6270.921363 6282.896208 6291.801907 6308.614093 6326.667186 6338.205448 $[OI]6300\mathring{A}$ Angstrom O1 col 1.0 NaN NaN NaN
|
|
142
|
+
S3_6312A 6312.000000 6313.800000 6270.921363 6282.896208 6303.578174 6320.421826 6326.667186 6338.205448 $[SIII]6312\mathring{A}$ Angstrom S3 col 1.0 NaN NaN NaN
|
|
143
|
+
N2_6548A 6547.940000 6549.850000 6480.030000 6520.660000 6539.203369 6556.676631 6627.700000 6661.820000 $[NII]6548\mathring{A}$ Angstrom N2 col 1.0 NaN NaN NaN
|
|
144
|
+
H1_6563A 6562.700000 6564.610000 6480.030000 6520.660000 6553.943676 6571.456324 6627.700000 6661.820000 $HI6563\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN NaN
|
|
145
|
+
N2_6583A 6583.360000 6585.280000 6480.030000 6520.660000 6574.576110 6592.143890 6627.700000 6661.820000 $[NII]6583\mathring{A}$ Angstrom N2 col 1.0 NaN NaN NaN
|
|
146
|
+
He1_6677A 6676.875300 6678.820500 6654.615528 6663.500418 6667.966637 6685.783963 6690.226409 6699.158845 $HeI6677\mathring{A}$ Angstrom He1 rec 1.0 NaN NaN NaN
|
|
147
|
+
S2_6716A 6716.330000 6718.290000 6686.785257 6706.310255 6707.368694 6725.291306 6744.438091 6759.956250 $[SII]6716\mathring{A}$ Angstrom S2 col 1.0 NaN NaN NaN
|
|
148
|
+
S2_6731A 6730.710000 6732.670000 6686.785257 6706.310255 6721.729507 6739.690493 6744.438091 6759.956250 $[SII]6731\mathring{A}$ Angstrom S2 col 1.0 NaN NaN NaN
|
|
149
|
+
He1_7065A 7065.108000 7067.163000 7029.100000 7041.640000 7055.681335 7074.534665 7087.490000 7104.450000 $HeI7065\mathring{A}$ Angstrom He1 rec 1.0 NaN NaN NaN
|
|
150
|
+
Ar3_7136A 7135.700000 7137.800000 7099.804897 7122.016894 7126.179147 7145.220853 7149.984073 7166.354990 $[ArIII]7136\mathring{A}$ Angstrom Ar3 col 1.0 NaN NaN NaN
|
|
151
|
+
O2_7319A 7318.810000 7320.940000 7286.410854 7298.535385 7309.044831 7328.575169 7357.871653 7373.463900 $[OII]7319\mathring{A}$ Angstrom O2 col 1.0 NaN NaN NaN
|
|
152
|
+
O2_7320A 7319.880000 7322.010000 7286.410854 7298.535385 7310.113403 7329.646597 7357.871653 7373.463900 $[OII]7320\mathring{A}$ Angstrom O2 col 0.0 NaN NaN NaN
|
|
153
|
+
O2_7330A 7329.550000 7331.680000 7286.410854 7298.535385 7319.770501 7339.329499 7357.871653 7373.463900 $[OII]7330\mathring{A}$ Angstrom O2 col 1.0 NaN NaN NaN
|
|
154
|
+
O2_7331A 7330.620000 7332.750000 7286.410854 7298.535385 7320.839073 7340.400927 7357.871653 7373.463900 $[OII]7331\mathring{A}$ Angstrom O2 col 0.0 NaN NaN NaN
|
|
155
|
+
Ar3_7751A 7750.900000 7753.200000 7725.059579 7735.373670 7740.558312 7761.241688 7766.398733 7776.768018 $[ArIII]7751\mathring{A}$ Angstrom Ar3 col 1.0 NaN NaN NaN
|
|
156
|
+
H1_8392A 8392.269000 8394.702000 8364.290344 8375.457902 8381.071562 8403.466438 8409.050217 8420.277536 $HI8392\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN NaN
|
|
157
|
+
H1_8413A 8413.190000 8415.629000 8385.141596 8396.336994 8401.964648 8424.415352 8430.013051 8441.268359 $HI8413\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN NaN
|
|
158
|
+
H1_8438A 8437.827000 8440.273000 8396.910000 8408.320000 8426.568775 8449.085225 8452.150208 8464.463395 $HI8438\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN NaN
|
|
159
|
+
H1_8467A 8467.130000 8469.580000 8438.901768 8450.168943 8455.832678 8478.427322 8484.060910 8495.388379 $HI8467\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN NaN
|
|
160
|
+
H1_8502A 8502.354000 8504.819000 8474.008336 8485.322384 8491.009680 8513.698320 8519.355344 8530.729936 $HI8502\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN NaN
|
|
161
|
+
H1_8545A 8545.250000 8547.730000 8516.761327 8528.132456 8533.848446 8556.651554 8562.337119 8573.769098 $HI8545\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN NaN
|
|
162
|
+
H1_8598A 8598.262000 8600.754000 8569.596592 8581.038264 8586.789714 8609.734286 8615.455122 8626.958022 $HI8598\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN NaN
|
|
163
|
+
H1_8665A 8664.887000 8667.398000 8635.999474 8647.529803 8653.325819 8676.448181 8682.213346 8693.805378 $HI8665\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN NaN
|
|
164
|
+
H1_8750A 8750.339000 8752.875000 8721.166589 8732.810629 8738.663804 8762.014196 8767.836216 8779.542567 $HI8750\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN NaN
|
|
165
|
+
H1_8863A 8862.649000 8865.217000 8826.510933 8849.703031 8850.823954 8874.474046 8875.570594 8886.725336 $HI8863\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN NaN
|
|
166
|
+
H1_9015A 9014.774000 9017.385000 8975.870000 9001.890000 9002.745980 9026.802020 9029.944250 9048.681886 $HI9015\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN NaN
|
|
167
|
+
S3_9068A 9068.500000 9071.100000 9028.280000 9056.360000 9056.400296 9080.599704 9083.325784 9100.603298 $[SIII]9068\mathring{A}$ Angstrom S3 col 1.0 NaN NaN NaN
|
|
168
|
+
H1_9229A 9228.875000 9231.547000 9198.107216 9210.388042 9216.561315 9241.188685 9247.329098 9259.675643 $HI9229\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN NaN
|
|
169
|
+
S3_9530A 9530.400000 9533.200000 9471.122554 9489.978978 9517.684003 9543.115997 9569.193420 9600.501253 $[SIII]9530\mathring{A}$ Angstrom S3 col 1.0 NaN NaN NaN
|
|
170
|
+
H1_9546A 9545.830000 9548.590000 9471.122554 9489.978978 9533.093415 9558.566585 9569.193420 9600.501253 $HI9546\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN NaN
|
|
171
|
+
H1_10052A 10052.128000 10052.128000 9963.330920 10014.100110 10038.715884 10065.540116 10085.683630 10157.030360 $HI10050\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN NaN
|
|
172
|
+
He1_10832A 10832.057000 10832.057000 10753.419250 10794.263650 10817.604259 10846.509741 10856.984350 10895.058030 $HeI10830\mathring{A}$ Angstrom He1 rec 1.0 NaN NaN NaN
|
|
173
|
+
H1_10941A 10941.090000 10941.090000 10720.442470 10778.669070 10926.491781 10955.688219 11006.496460 11117.881210 $HI10940\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN NaN
|
|
174
|
+
O1_11290A 11290.000000 11290.000000 11200.000000 11260.000000 11274.936245 11305.063755 11310.000000 11370.000000 $[OI]11290\mathring{A}$ Angstrom O1 col 1.0 NaN NaN NaN
|
|
175
|
+
P2_11471A 11471.000000 11471.000000 11431.212690 11441.159518 11451.106345 11490.893655 11500.840482 11510.787310 $[PII]11470\mathring{A}$ Angstrom P2 col 0.0 NaN NaN Neville
|
|
176
|
+
P2_11886A 11886.000000 11886.000000 11844.773257 11855.079943 11865.386629 11906.613371 11916.920057 11927.226743 $[PII]11890\mathring{A}$ Angstrom P2 col 0.0 NaN NaN Neville
|
|
177
|
+
Fe2_12570A 12570.206800 12570.206800 12528.299481 12545.026604 12553.434921 12586.978679 12595.342240 12612.158875 $[FeII]12570\mathring{A}$ Angstrom Fe2 col 1.0 NaN NaN NaN
|
|
178
|
+
Fe2_12791A 12791.000000 12791.000000 12746.634253 12757.725690 12768.817127 12813.182873 12824.274310 12835.365747 $[FeII]12790\mathring{A}$ Angstrom Fe2 col 0.0 NaN NaN Neville
|
|
179
|
+
H1_12822A 12821.590000 12821.590000 12707.118358 12770.347194 12804.482712 12838.697288 12883.388729 12974.122245 $HI12820\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN NaN
|
|
180
|
+
H1_15346A 15346.000000 15346.000000 15292.772203 15306.079152 15319.386102 15372.613898 15385.920848 15399.227797 $HI15350\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN Neville
|
|
181
|
+
H1_15443A 15443.000000 15443.000000 15389.435757 15402.826818 15416.217879 15469.782121 15483.173182 15496.564243 $HI15440\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN Neville
|
|
182
|
+
H1_15561A 15561.000000 15561.000000 15507.026473 15520.519855 15534.013236 15587.986764 15601.480145 15614.973527 $HI15560\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN Neville
|
|
183
|
+
H1_15705A 15705.000000 15705.000000 15650.527007 15664.145255 15677.763504 15732.236496 15745.854745 15759.472993 $HI15700\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN Neville
|
|
184
|
+
H1_15885A 15885.000000 15885.000000 15829.902675 15843.677006 15857.451337 15912.548663 15926.322994 15940.097325 $HI15880\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN Neville
|
|
185
|
+
H1_16114A 16114.000000 16114.000000 16058.108385 16072.081289 16086.054193 16141.945807 16155.918711 16169.891615 $HI16110\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN Neville
|
|
186
|
+
H1_16412A 16412.000000 16412.000000 16355.074769 16369.306076 16383.537384 16440.462616 16454.693924 16468.925231 $HI16410\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN Neville
|
|
187
|
+
Fe2_16440A 16440.016900 16440.016900 16385.208174 16407.084837 16418.081703 16461.952097 16472.890429 16494.884161 $[FeII]16440\mathring{A}$ Angstrom Fe2 col 1.0 NaN NaN NaN
|
|
188
|
+
H1_16811A 16811.000000 16811.000000 16752.690832 16767.268124 16781.845416 16840.154584 16854.731876 16869.309168 $HI16810\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN Neville
|
|
189
|
+
He1_17008A 17008.000000 17008.000000 16949.007535 16963.755651 16978.503767 17037.496233 17052.244349 17066.992465 $HeI17010\mathring{A}$ Angstrom He1 rec 0.0 NaN NaN Neville
|
|
190
|
+
H1_17367A 17367.000000 17367.000000 17306.762339 17321.821754 17336.881169 17397.118831 17412.178246 17427.237661 $HI17370\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN Neville
|
|
191
|
+
Fe2_18099A 18099.000000 18099.000000 18036.223388 18051.917541 18067.611694 18130.388306 18146.082459 18161.776612 $[FeII]18100\mathring{A}$ Angstrom Fe2 col 0.0 NaN NaN Neville
|
|
192
|
+
H1_18179A 18179.000000 18179.000000 18115.945907 18131.709430 18147.472953 18210.527047 18226.290570 18242.054093 $HI18180\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN Neville
|
|
193
|
+
H2-1-0-S5_18358A 18358.000000 18358.000000 18294.325043 18310.243782 18326.162521 18389.837479 18405.756218 18421.674957 $H2-1-0-SV18360\mathring{A}$ Angstrom H2-1-0-S5 mol 0.0 NaN NaN Neville
|
|
194
|
+
He1_18691A 18691.000000 18691.000000 18626.170028 18642.377521 18658.585014 18723.414986 18739.622479 18755.829972 $HeI18690\mathring{A}$ Angstrom He1 rec 0.0 NaN NaN Neville
|
|
195
|
+
H1_18756A 18756.130000 18756.130000 18609.558032 18656.837942 18731.104514 18781.155486 18813.400465 18894.450760 $HI18760\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN NaN
|
|
196
|
+
H1_19451A 19450.871000 19450.871000 19316.427400 19392.542082 19424.918551 19476.823449 19488.494259 19546.645072 $HI19450\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN NaN
|
|
197
|
+
H2_19570A 19570.000000 19570.000000 19317.214761 19417.398018 19543.888603 19596.111397 19622.326345 19678.132739 $[HII]19570\mathring{A}$ Angstrom H2 col 1.0 NaN NaN NaN
|
|
198
|
+
Si6_19650A 19650.000000 19650.000000 19584.489637 19610.637811 19623.781862 19676.218138 19689.292225 19715.580326 $[SiVI]19650\mathring{A}$ Angstrom Si6 col 1.0 NaN NaN NaN
|
|
199
|
+
H2-1-0-S2_20338A 20338.000000 20338.000000 20267.457387 20285.093041 20302.728694 20373.271306 20390.906959 20408.542613 $H2-1-0-SII20340\mathring{A}$ Angstrom H2-1-0-S2 mol 0.0 NaN NaN Neville
|
|
200
|
+
He1_20587A 20586.900000 20586.900000 20436.136293 20506.474038 20559.431797 20614.368203 20638.302080 20718.624046 $HeI20590\mathring{A}$ Angstrom He1 rec 1.0 NaN NaN NaN
|
|
201
|
+
H2-2-1-S3_20735A 20735.000000 20735.000000 20663.080388 20681.060291 20699.040194 20770.959806 20788.939709 20806.919612 $H2-2-1-SIII20740\mathring{A}$ Angstrom H2-2-1-S3 mol 0.0 NaN NaN Neville
|
|
202
|
+
H2_21220A 21220.000000 21220.000000 21098.000543 21169.879588 21191.687080 21248.312920 21276.821582 21329.416005 $[HII]21220\mathring{A}$ Angstrom H2 col 1.0 NaN NaN NaN
|
|
203
|
+
H1_21661A 21661.200000 21661.200000 21519.246668 21614.386714 21632.298406 21690.101594 21726.878918 21795.633622 $HI21660\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN NaN
|
|
204
|
+
H2-1-0-S0_22233A 22233.000000 22233.000000 22155.884556 22175.163417 22194.442278 22271.557722 22290.836583 22310.115444 $H2-1-0-S22230\mathring{A}$ Angstrom H2-1-0-S0 mol 0.0 NaN NaN Neville
|
|
205
|
+
H2-1-0-S1_22477A 22477.000000 22477.000000 22399.038239 22418.528679 22438.019119 22515.980881 22535.471321 22554.961761 $H2-1-0-SI22480\mathring{A}$ Angstrom H2-1-0-S1 mol 0.0 NaN NaN Neville
|
|
206
|
+
H2-2-1-S0_23556A 23556.000000 23556.000000 23474.295713 23494.721785 23515.147857 23596.852143 23617.278215 23637.704287 $H2-2-1-S23560\mathring{A}$ Angstrom H2-2-1-S0 mol 0.0 NaN NaN Neville
|
|
207
|
+
H2-1-0-Q1_24066A 24066.000000 24066.000000 23982.526772 24003.395079 24024.263386 24107.736614 24128.604921 24149.473228 $H2-1-0-QI24070\mathring{A}$ Angstrom H2-1-0-Q1 mol 0.0 NaN NaN Neville
|
|
208
|
+
H2-1-0-Q2_24134A 24134.000000 24134.000000 24050.290913 24071.218185 24092.145457 24175.854543 24196.781815 24217.709087 $H2-1-0-QII24130\mathring{A}$ Angstrom H2-1-0-Q2 mol 0.0 NaN NaN Neville
|
|
209
|
+
H2-1-0-Q3_24237A 24237.000000 24237.000000 24152.933656 24173.950242 24194.966828 24279.033172 24300.049758 24321.066344 $H2-1-0-QIII24240\mathring{A}$ Angstrom H2-1-0-Q3 mol 0.0 NaN NaN Neville
|
|
210
|
+
H2-1-0-Q4_24375A 24375.000000 24375.000000 24290.455001 24311.591251 24332.727501 24417.272499 24438.408749 24459.544999 $H2-1-0-QIV24380\mathring{A}$ Angstrom H2-1-0-Q4 mol 0.0 NaN NaN Neville
|
|
211
|
+
H2-1-0-Q5_24548A 24548.000000 24548.000000 24462.854949 24484.141212 24505.427474 24590.572526 24611.858788 24633.145051 $H2-1-0-QV24550\mathring{A}$ Angstrom H2-1-0-Q5 mol 0.0 NaN NaN NevilleCheck
|
|
212
|
+
H1_24953A 24953.000000 24953.000000 24866.450201 24888.087651 24909.725101 24996.274899 25017.912349 25039.549799 $HI24950\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN Neville
|
|
213
|
+
He1_25014A 25014.000000 25014.000000 24927.238622 24948.928966 24970.619311 25057.380689 25079.071034 25100.761378 $HeI25010\mathring{A}$ Angstrom He1 rec 1.0 NaN NaN Neville
|
|
214
|
+
H1_25261A 25261.000000 25261.000000 25173.381899 25195.286424 25217.190950 25304.809050 25326.713576 25348.618101 $HI25260\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN Neville
|
|
215
|
+
H2-2-1-Q1_25510A 25510.000000 25510.000000 25421.518239 25443.638680 25465.759120 25554.240880 25576.361320 25598.481761 $H2-2-1-QI25510\mathring{A}$ Angstrom H2-2-1-Q1 mol 0.0 NaN NaN Neville
|
|
216
|
+
H2-2-1-Q2_25585A 25585.000000 25585.000000 25496.258101 25518.443576 25540.629050 25629.370950 25651.556424 25673.741899 $H2-2-1-QII25580\mathring{A}$ Angstrom H2-2-1-Q2 mol 0.0 NaN NaN Neville
|
|
217
|
+
H1_25643A 25643.000000 25643.000000 25554.056927 25576.292695 25598.528464 25687.471536 25709.707305 25731.943073 $HI25640\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN Neville
|
|
218
|
+
H2-2-1-Q3_25698A 25698.000000 25698.000000 25608.866159 25631.149619 25653.433080 25742.566920 25764.850381 25787.133841 $H2-2-1-QIII25700\mathring{A}$ Angstrom H2-2-1-Q3 mol 0.0 NaN NaN Neville
|
|
219
|
+
H2-2-1-Q4_25850A 25850.000000 25850.000000 25760.338945 25782.754209 25805.169473 25894.830527 25917.245791 25939.661055 $H2-2-1-QIV25850\mathring{A}$ Angstrom H2-2-1-Q4 mol 0.0 NaN NaN Neville
|
|
220
|
+
H2-2-1-Q5_26040A 26040.000000 26040.000000 25949.679928 25972.259946 25994.839964 26085.160036 26107.740054 26130.320072 $H2-2-1-QV26040\mathring{A}$ Angstrom H2-2-1-Q5 mol 0.0 NaN NaN Neville
|
|
221
|
+
H1_26126A 26126.000000 26126.000000 26035.381636 26058.036227 26080.690818 26171.309182 26193.963773 26216.618364 $HI26130\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN Neville
|
|
222
|
+
H1_26259A 26258.670000 26258.670000 26200.000000 26220.000000 26223.634202 26293.705798 26300.000000 26320.000000 $HI26260\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN NaN
|
|
223
|
+
H1_26751A 26751.000000 26751.000000 26658.213815 26681.410361 26704.606908 26797.393092 26820.589639 26843.786185 $HI26750\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN Neville
|
|
224
|
+
H1_27583A 27583.000000 27583.000000 27487.328012 27511.246009 27535.164006 27630.835994 27654.753991 27678.671988 $HI27580\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN Neville
|
|
225
|
+
H2-2-1-O2_27862A 27862.000000 27862.000000 27765.360297 27789.520223 27813.680149 27910.319851 27934.479777 27958.639703 $H2-2-1-OII27860\mathring{A}$ Angstrom H2-2-1-O2 mol 0.0 NaN NaN Neville
|
|
226
|
+
H2-1-0-O3_28025A 28025.000000 28025.000000 27927.794930 27952.096197 27976.397465 28073.602535 28097.903803 28122.205070 $H2-1-0-OIII28020\mathring{A}$ Angstrom H2-1-0-O3 mol 0.0 NaN NaN Neville
|
|
227
|
+
H1_28730A 28730.000000 28730.000000 28630.349628 28655.262221 28680.174814 28779.825186 28804.737779 28829.650372 $HI28730\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN Neville
|
|
228
|
+
H2-4-3-O3_29120A 29120.000000 29120.000000 29018.996908 29044.247681 29069.498454 29170.501546 29195.752319 29221.003092 $H2-4-3-OIII29120\mathring{A}$ Angstrom H2-4-3-O3 mol 0.0 NaN NaN Neville
|
|
229
|
+
H2-2-1-O3_29741A 29741.000000 29741.000000 29637.842962 29663.632221 29689.421481 29792.578519 29818.367779 29844.157038 $H2-2-1-OIII29740\mathring{A}$ Angstrom H2-2-1-O3 mol 0.0 NaN NaN Neville
|
|
230
|
+
H2-3-2-O3_30039A 30039.000000 30039.000000 29934.809345 29960.857009 29986.904673 30091.095327 30117.142991 30143.190655 $H2-3-2-OIII30040\mathring{A}$ Angstrom H2-3-2-O3 mol 0.0 NaN NaN Neville
|
|
231
|
+
H1_30392A 30392.022000 30392.022000 30290.699232 30331.141771 30351.471251 30432.572749 30452.794019 30493.452978 $HI30390\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN NaN
|
|
232
|
+
H2-4-3-O2_31588A 31588.000000 31588.000000 31478.436619 31505.827464 31533.218309 31642.781691 31670.172536 31697.563381 $H2-4-3-OII31590\mathring{A}$ Angstrom H2-4-3-O2 mol 0.0 NaN NaN Neville
|
|
233
|
+
H2-3-2-O3_31638A 31638.000000 31638.000000 31528.263193 31555.697395 31583.131597 31692.868403 31720.302605 31747.736807 $H2-3-2-OIII31640\mathring{A}$ Angstrom H2-3-2-O3 mol 0.0 NaN NaN Neville
|
|
234
|
+
H2-2-1-O4_31898A 31898.000000 31898.000000 31787.361380 31815.021035 31842.680690 31953.319310 31980.978965 32008.638620 $H2-2-1-OIV31900\mathring{A}$ Angstrom H2-2-1-O4 mol 0.0 NaN NaN Neville
|
|
235
|
+
H2-2-1-O5_32350A 32350.000000 32350.000000 32237.793612 32265.845209 32293.896806 32406.103194 32434.154791 32462.206388 $H2-2-1-OV32350\mathring{A}$ Angstrom H2-2-1-O5 mol 0.0 NaN NaN Neville
|
|
236
|
+
H1_32970A 32969.920000 32969.920000 32860.002879 32903.875816 32925.929674 33013.910326 33035.846795 33079.954510 $HI32970\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN NaN
|
|
237
|
+
PAH_33000A 33000.000000 33000.000000 30800.000000 30850.000000 30900.000000 35200.000000 35350.000000 35400.000000 PAH-$33000\mathring{A}$ Angstrom PAH col 1.0 NaN NaN NaN
|
|
238
|
+
H1_33764A 33764.000000 33764.000000 33646.889135 33676.166851 33705.444568 33822.555432 33851.833149 33881.110865 $HI33760\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN Neville
|
|
239
|
+
H2-3-2-O4_33958A 33958.000000 33958.000000 33840.216244 33869.662183 33899.108122 34016.891878 34046.337817 34075.783756 $H2-3-2-OIV33960\mathring{A}$ Angstrom H2-3-2-O4 mol 0.0 NaN NaN Neville
|
|
240
|
+
H2-3-2-O4_34379A 34379.000000 34379.000000 34259.756000 34289.567000 34319.378000 34438.622000 34468.433000 34498.244000 $H2-3-2-OIV34380\mathring{A}$ Angstrom H2-3-2-O4 mol 0.0 NaN NaN Neville
|
|
241
|
+
H2-0-0-O15_36262A 36262.000000 36262.000000 36136.224790 36167.668593 36199.112395 36324.887605 36356.331407 36387.775210 $H2-0-0-OXV36260\mathring{A}$ Angstrom H2-0-0-O15 mol 0.0 NaN NaN Neville
|
|
242
|
+
H1_36459A 36459.000000 36459.000000 36332.541493 36364.156120 36395.770747 36522.229253 36553.843880 36585.458507 $HI36460\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN Neville
|
|
243
|
+
H1_36632A 36632.000000 36632.000000 36504.941441 36536.706080 36568.470720 36695.529280 36727.293920 36759.058559 $HI36630\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN Neville
|
|
244
|
+
H1_36926A 36926.000000 36926.000000 36797.921698 36829.941273 36861.960849 36990.039151 37022.058727 37054.078302 $HI36930\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN Neville
|
|
245
|
+
H1_37406A 37405.560000 37405.560000 37280.855073 37330.630498 37355.651393 37455.468607 37480.356320 37530.398109 $HI37410\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN NaN
|
|
246
|
+
H1_37494A 37494.000000 37494.000000 37363.951583 37396.463687 37428.975791 37559.024209 37591.536313 37624.048417 $HI37490\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN Neville
|
|
247
|
+
H1_38195A 38195.000000 38195.000000 38062.520155 38095.640116 38128.760078 38261.239922 38294.359884 38327.479845 $HI38200\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN Neville
|
|
248
|
+
H1_39075A 39075.000000 39075.000000 38939.467864 38973.350898 39007.233932 39142.766068 39176.649102 39210.532136 $HI39080\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN Neville
|
|
249
|
+
H2-3-2-O6_39719A 39719.000000 39719.000000 39581.234142 39615.675606 39650.117071 39787.882929 39822.324394 39856.765858 $H2-3-2-OVI39720\mathring{A}$ Angstrom H2-3-2-O6 mol 0.0 NaN NaN Neville
|
|
250
|
+
H1_40209A 40209.000000 40209.000000 40069.534570 40104.400928 40139.267285 40278.732715 40313.599072 40348.465430 $HI40210\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN Neville
|
|
251
|
+
He1_40378A 40378.000000 40378.000000 40237.948392 40272.961294 40307.974196 40448.025804 40483.038706 40518.051608 $HeI40380\mathring{A}$ Angstrom He1 rec 0.0 NaN NaN Neville
|
|
252
|
+
H1_40523A 40522.620000 40522.620000 40387.523229 40441.446514 40468.552436 40576.687564 40603.649206 40657.861051 $HI40520\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN NaN
|
|
253
|
+
H1_41708A 41708.000000 41708.000000 41563.335270 41599.501452 41635.667635 41780.332365 41816.498548 41852.664730 $HI41710\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN Neville
|
|
254
|
+
H2-0-0-S11_41811A 41811.000000 41811.000000 41665.978013 41702.233510 41738.489006 41883.510994 41919.766490 41956.021987 $H2-0-0-SXI41810\mathring{A}$ Angstrom H2-0-0-S11 mol 0.0 NaN NaN Neville
|
|
255
|
+
He1_42959A 42959.000000 42959.000000 42809.996160 42847.247120 42884.498080 43033.501920 43070.752880 43108.003840 $HeI42960\mathring{A}$ Angstrom He1 rec 0.0 NaN NaN Neville
|
|
256
|
+
H1_43765A 43765.000000 43765.000000 43613.200539 43651.150404 43689.100269 43840.899731 43878.849596 43916.799461 $HI43760\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN Neville
|
|
257
|
+
H1_46164A 46164.000000 46164.000000 46003.879577 46043.909683 46083.939788 46244.060212 46284.090317 46324.120423 $HI46160\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN Neville
|
|
258
|
+
H1_46538A 46537.780000 46537.780000 46382.629524 46444.557157 46475.686670 46599.873330 46630.837146 46693.096173 $HI46540\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN NaN
|
|
259
|
+
H1_46725A 46725.000000 46725.000000 46562.933741 46603.450306 46643.966871 46806.033129 46846.549694 46887.066259 $HI46720\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN Neville
|
|
260
|
+
He1_46949A 46949.000000 46949.000000 46786.156794 46826.867596 46867.578397 47030.421603 47071.132404 47111.843206 $HeI46950\mathring{A}$ Angstrom He1 rec 0.0 NaN NaN Neville
|
|
261
|
+
H2-S8_50531A 50531.151550 50531.151550 50230.000000 50330.000000 50463.730039 50598.573061 50730.000000 50830.000000 $H2-SVIII50530\mathring{A}$ Angstrom H2-S8 mol 1.0 NaN NaN NaN
|
|
262
|
+
H1_51287A 51287.000000 51287.000000 51109.110386 51153.582789 51198.055193 51375.944807 51420.417211 51464.889614 $HI51290\mathring{A}$ Angstrom H1 rec 0.0 NaN NaN Neville
|
|
263
|
+
He2_52280A 52279.970000 52279.970000 52105.675862 52175.244604 52210.215116 52349.724884 52384.509254 52454.450280 $HeII52280\mathring{A}$ Angstrom He2 rec 1.0 NaN NaN NaN
|
|
264
|
+
Fe2_53402A 53401.693000 53401.693000 53145.938288 53241.460874 53330.441450 53472.944550 53570.597313 53635.795269 $[FeII]53400\mathring{A}$ Angstrom Fe2 col 1.0 NaN NaN NaN
|
|
265
|
+
Fe8_54470A 54470.000000 54470.000000 54053.226773 54190.024550 54397.323055 54542.676945 54748.651269 54904.823115 $[FeVIII]54470\mathring{A}$ Angstrom Fe8 col 1.0 NaN NaN NaN
|
|
266
|
+
Mg7_55033A 55033.000000 55033.000000 54778.036527 54898.913873 54959.571869 55106.428131 55299.024808 55364.222763 $[MgVII]55030\mathring{A}$ Angstrom Mg7 col 1.0 NaN NaN NaN
|
|
267
|
+
H2-S7_55112A 55111.832590 55111.832590 54883.745676 54943.552586 55038.299276 55185.365904 55228.610422 55332.851338 $H2-SVII55110\mathring{A}$ Angstrom H2-S7 mol 1.0 NaN NaN NaN
|
|
268
|
+
Mg5_56098A 56098.000000 56098.000000 55793.213215 55905.498582 56023.150886 56172.849114 56247.399697 56430.611005 $[MgV]56100\mathring{A}$ Angstrom Mg5 col 1.0 NaN NaN NaN
|
|
269
|
+
H2-S6_61086A 61085.638400 61085.638400 60825.445324 60937.477986 61004.134497 61167.142303 61211.296132 61316.337282 $H2-SVI61090\mathring{A}$ Angstrom H2-S6 mol 1.0 NaN NaN NaN
|
|
270
|
+
PAH_62000A 62000.000000 62000.000000 58700.000000 58800.000000 59000.000000 65000.000000 65100.000000 65200.000000 PAH-$62000\mathring{A}$ Angstrom PAH PAH 1.0 NaN NaN NaN
|
|
271
|
+
H2-S5_69095A 69095.085490 69095.085490 68800.000000 68900.000000 69002.894931 69187.276049 69288.522754 69397.186012 $H2-SV69100\mathring{A}$ Angstrom H2-S5 mol 1.0 NaN NaN NaN
|
|
272
|
+
Ar2_69853A 69852.740000 69852.740000 69535.937925 69637.356966 69759.538536 69945.941464 70032.317091 70124.975684 $[ArII]69850\mathring{A}$ Angstrom Ar2 col 1.0 NaN NaN NaN
|
|
273
|
+
H1_74599A 74598.580000 74598.580000 74338.934632 74469.930721 74499.046369 74698.113631 74735.089766 74910.640952 $HI74600\mathring{A}$ Angstrom H1 rec 1.0 NaN NaN NaN
|
|
274
|
+
Ne6_76524A 76524.000000 76524.000000 76193.555622 76289.646797 76421.897365 76626.102635 76640.749167 76759.015228 $[NeVI]76520\mathring{A}$ Angstrom Ne6 col 1.0 NaN NaN NaN
|
|
275
|
+
PAH_77000A 77000.000000 77000.000000 68700.000000 68800.000000 69000.000000 97000.000000 97200.000000 97300.000000 PAH-$77000\mathring{A}$ Angstrom PAH PAH 1.0 NaN NaN NaN
|
|
276
|
+
Fe7_78130A 78130.000000 78130.000000 77819.173875 77953.318250 78025.754549 78234.245451 78319.527908 78481.048687 $[FeVII]78130\mathring{A}$ Angstrom Fe7 col 1.0 NaN NaN NaN
|
|
277
|
+
Ar5_79016A 79015.800000 79015.800000 78752.372329 78857.518330 78910.372665 79121.227335 79173.800336 79279.509005 $[ArV]79020\mathring{A}$ Angstrom Ar5 col 1.0 NaN NaN NaN
|
|
278
|
+
H2-S4_80250A 80250.410360 80250.410360 79957.819686 80072.800579 80143.335738 80357.484982 80421.575955 80548.054938 $H2-SIV80250\mathring{A}$ Angstrom H2-S4 mol 1.0 NaN NaN NaN
|
|
279
|
+
Ar3_89914A 89913.800000 89913.800000 89566.734578 89651.053900 89793.831939 90033.768061 90087.416206 90235.248783 $[ArIII]89910\mathring{A}$ Angstrom Ar3 col 1.0 NaN NaN NaN
|
|
280
|
+
H2-S3_96649A 96649.109180 96649.109180 96254.067180 96453.367395 96520.154489 96778.063871 96842.512966 97021.349319 $H2-SIII96650\mathring{A}$ Angstrom H2-S3 mol 1.0 NaN NaN NaN
|
|
281
|
+
S4_105105A 105104.900000 105104.900000 104697.342144 104808.558782 104964.663117 105245.136883 105326.779318 105471.326727 $[SIV]105100\mathring{A}$ Angstrom S4 col 1.0 NaN NaN NaN
|
|
282
|
+
PAH_112000A 112000.000000 112000.000000 107700.000000 107800.000000 108000.000000 117000.000000 117200.000000 117300.000000 PAH-$112000\mathring{A}$ Angstrom PAH PAH 1.0 NaN NaN NaN
|
|
283
|
+
H2-S2_122786A 122786.119910 122786.119910 122403.521608 122597.909523 122622.291746 122949.948074 122998.001975 123194.368953 $H2-SII122800\mathring{A}$ Angstrom H2-S2 mol 1.0 NaN NaN NaN
|
|
284
|
+
Ne2_128135A 128135.480000 128135.480000 127733.371970 127841.780615 127964.514418 128306.445582 128423.006704 128630.808265 $[NeII]128100\mathring{A}$ Angstrom Ne2 col 1.0 NaN NaN NaN
|
|
285
|
+
Ne5_143217A 143216.800000 143216.800000 142800.483633 142942.536340 143025.712071 143407.887929 143423.009344 143594.308197 $[NeV]143200\mathring{A}$ Angstrom Ne5 col 1.0 NaN NaN NaN
|
|
286
|
+
Ne3_155550A 155550.500000 155550.500000 155008.881230 155234.494353 155342.955753 155758.044247 155941.891863 156103.735195 $[NeIII]155600\mathring{A}$ Angstrom Ne3 col 1.0 NaN NaN NaN
|
|
287
|
+
PAH_170000A 170000.000000 170000.000000 154700.000000 154800.000000 155000.000000 185000.000000 185200.000000 185300.000000 PAH-$170000\mathring{A}$ Angstrom PAH PAH 1.0 NaN NaN NaN
|
|
288
|
+
H2-S1_170348A 170348.457560 170348.457560 169780.539530 170007.221524 170121.169044 170575.746076 170689.087074 170916.982112 $H2-SI170300\mathring{A}$ Angstrom H2-S1 mol 1.0 NaN NaN NaN
|
|
289
|
+
S3_187130A 187130.300000 187130.300000 186289.064584 186679.342348 186880.620203 187379.979797 187500.313181 187909.350378 $[SIII]187100\mathring{A}$ Angstrom S3 col 1.0 NaN NaN NaN
|
|
290
|
+
O4_225800A 225800.000000 225800.000000 225047.214251 225347.685386 225498.724909 226101.275091 226251.510658 226553.589705 $[OIV]225800\mathring{A}$ Angstrom O4 col 1.0 NaN NaN NaN
|
|
291
|
+
Ne5_243175A 243175.000000 243175.000000 242364.288421 242687.880397 242850.542205 243499.457795 243661.253783 243986.577398 $[NeV]243200\mathring{A}$ Angstrom Ne5 col 1.0 NaN NaN NaN
|
|
292
|
+
H2-S0_282188A 282188.437930 282188.437930 281247.660983 281623.167981 281811.926206 282564.949654 282752.703153 283130.219603 $H2-S282200\mathring{A}$ Angstrom H2-S0 mol 1.0 NaN NaN NaN
|
lime/retrieve/line_bands.py
CHANGED
|
@@ -18,6 +18,63 @@ def deblend_criteria(mu_arr, sigma_arr, Rayleigh_threshold):
|
|
|
18
18
|
return resolvable
|
|
19
19
|
|
|
20
20
|
|
|
21
|
+
def find_sharing_groups(lines: np.ndarray, matrix: np.ndarray) -> list[np.ndarray]:
|
|
22
|
+
superdiag = np.diag(matrix, k=1).astype(bool)
|
|
23
|
+
breaks = np.where(np.diff(superdiag.astype(int), prepend=0, append=0) != 0)[0]
|
|
24
|
+
starts, ends = breaks[0::2], breaks[1::2]
|
|
25
|
+
return [lines[s:e + 1] for s, e in zip(starts, ends) if superdiag[s]]
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
def blend_merge_dict(line_list: np.ndarray, relation_list: np.ndarray) -> dict:
|
|
29
|
+
"""
|
|
30
|
+
Build a blend/merge dictionary from a list of lines and their relations.
|
|
31
|
+
|
|
32
|
+
Parameters
|
|
33
|
+
----------
|
|
34
|
+
line_list : np.ndarray
|
|
35
|
+
Ordered array of line names.
|
|
36
|
+
relation_list : np.ndarray of bool
|
|
37
|
+
Connections between consecutive lines. True=blended, False=merged.
|
|
38
|
+
Length must be len(line_list) - 1.
|
|
39
|
+
|
|
40
|
+
Returns
|
|
41
|
+
-------
|
|
42
|
+
dict
|
|
43
|
+
Keys/values describing blend and merge groupings.
|
|
44
|
+
"""
|
|
45
|
+
# All True: single blended group
|
|
46
|
+
if relation_list.all():
|
|
47
|
+
return {f"{line_list[0]}_b": "+".join(line_list)}
|
|
48
|
+
|
|
49
|
+
# All False: single merge group
|
|
50
|
+
if not relation_list.any():
|
|
51
|
+
return {f"{line_list[0]}_m": "+".join(line_list)}
|
|
52
|
+
|
|
53
|
+
# Mixed: find contiguous False entries
|
|
54
|
+
false_mask = ~relation_list
|
|
55
|
+
edges = np.diff(false_mask.astype(int), prepend=0, append=0)
|
|
56
|
+
starts = np.where(edges == 1)[0]
|
|
57
|
+
ends = np.where(edges == -1)[0]
|
|
58
|
+
|
|
59
|
+
# Build merge entries: each False run covers lines[start : end+1]
|
|
60
|
+
merge_entries = {f"{line_list[s]}_m": "+".join(line_list[s:e + 1]) for s, e in zip(starts, ends)}
|
|
61
|
+
|
|
62
|
+
# Build blend parts: replace merged subgroups with their key (Mark hidden in a merge subgroup)
|
|
63
|
+
hidden = np.zeros(len(line_list), dtype=bool)
|
|
64
|
+
for s, e in zip(starts, ends):
|
|
65
|
+
hidden[s + 1:e + 1] = True # keep the first line as anchor, absorb the rest
|
|
66
|
+
|
|
67
|
+
# For non-hidden lines: use line name, but swap merge-subgroup anchors for their key
|
|
68
|
+
is_anchor = np.zeros(len(line_list), dtype=bool)
|
|
69
|
+
is_anchor[starts] = True
|
|
70
|
+
|
|
71
|
+
blend_parts = np.where(is_anchor, np.array([f"{l}_m" for l in line_list]), line_list)
|
|
72
|
+
blend_value = "+".join(blend_parts[~hidden])
|
|
73
|
+
|
|
74
|
+
blend_key = f"{line_list[0]}_b"
|
|
75
|
+
return {blend_key: blend_value, **merge_entries}
|
|
76
|
+
|
|
77
|
+
|
|
21
78
|
def determine_line_groups(spec, bands, fit_conf, composite_lines, automatic_grouping, n_sigma, Rayleigh_threshold):
|
|
22
79
|
|
|
23
80
|
# Check if the input configuration has a list of lines
|
|
@@ -42,7 +99,7 @@ def determine_line_groups(spec, bands, fit_conf, composite_lines, automatic_grou
|
|
|
42
99
|
line_list, group_lines = [], []
|
|
43
100
|
group_names, group_blended_check = [], []
|
|
44
101
|
for comp, group_label in fit_conf.items():
|
|
45
|
-
if comp.endswith(('_b', '_m')):
|
|
102
|
+
if comp.endswith(('_b', '_m')) and groups_dict.get(comp) is None:
|
|
46
103
|
|
|
47
104
|
# No kinematic groups
|
|
48
105
|
|
|
@@ -162,6 +219,47 @@ def determine_line_groups(spec, bands, fit_conf, composite_lines, automatic_grou
|
|
|
162
219
|
return groups_dict
|
|
163
220
|
|
|
164
221
|
|
|
222
|
+
def get_spectrum_line_groups(wave_rest, bands, n_sigma=4, Rayleigh_threshold=2):
|
|
223
|
+
|
|
224
|
+
# Get limits of the bands on the spectrum wavelength range
|
|
225
|
+
idx3_arr = np.searchsorted(wave_rest, bands.w3.to_numpy())
|
|
226
|
+
idx4_arr = np.searchsorted(wave_rest, bands.w4.to_numpy())
|
|
227
|
+
|
|
228
|
+
# Generate binary matrix with the line bands location
|
|
229
|
+
wave_matrix = np.zeros((bands.index.size, wave_rest.size))
|
|
230
|
+
cols = np.arange(wave_matrix.shape[1])
|
|
231
|
+
wave_matrix[(cols >= idx3_arr[:, None]) & (cols <= idx4_arr[:, None])] = 1
|
|
232
|
+
|
|
233
|
+
# Compute the decision matrix with the common pixels
|
|
234
|
+
decision_matrix = wave_matrix @ wave_matrix.T
|
|
235
|
+
|
|
236
|
+
(np.diagonal(decision_matrix, offset=1) > 0).sum() + 1
|
|
237
|
+
|
|
238
|
+
grouped_lines = find_sharing_groups(bands.index.to_numpy(), decision_matrix)
|
|
239
|
+
|
|
240
|
+
idx3_arr = np.searchsorted(wave_rest, bands.w3.to_numpy())
|
|
241
|
+
idx4_arr = np.searchsorted(wave_rest, bands.w4.to_numpy())
|
|
242
|
+
|
|
243
|
+
relation_list = []
|
|
244
|
+
for group in grouped_lines:
|
|
245
|
+
idcs = bands.index.isin(group)
|
|
246
|
+
w3_arr = idx3_arr[idcs]
|
|
247
|
+
w4_arr = idx4_arr[idcs]
|
|
248
|
+
mu_arr = np.searchsorted(wave_rest, bands.loc[group, 'wavelength'].to_numpy())
|
|
249
|
+
obs_group_blend_chek = deblend_criteria(mu_arr=mu_arr,
|
|
250
|
+
sigma_arr=(w4_arr - w3_arr) / (n_sigma * 2),
|
|
251
|
+
Rayleigh_threshold=Rayleigh_threshold)
|
|
252
|
+
relation_list.append(obs_group_blend_chek)
|
|
253
|
+
|
|
254
|
+
group_dict = {}
|
|
255
|
+
for line_list, relation_list in zip(grouped_lines, relation_list):
|
|
256
|
+
group_dict.update(blend_merge_dict(line_list, relation_list))
|
|
257
|
+
|
|
258
|
+
group_dict = None if len(group_dict) == 0 else group_dict
|
|
259
|
+
|
|
260
|
+
return group_dict
|
|
261
|
+
|
|
262
|
+
|
|
165
263
|
def groupify_lines_df(bands, fit_cfg, groups_dict, spec, save_group_label=False):
|
|
166
264
|
|
|
167
265
|
# Containers for the requested changes
|
|
@@ -181,8 +279,11 @@ def groupify_lines_df(bands, fit_cfg, groups_dict, spec, save_group_label=False)
|
|
|
181
279
|
# Extract the single components ignoring extra kinmatics
|
|
182
280
|
unique_comp_list = []
|
|
183
281
|
for trans in line.list_comps:
|
|
184
|
-
if trans.
|
|
185
|
-
unique_comp_list.
|
|
282
|
+
if trans.group == 'm':
|
|
283
|
+
unique_comp_list += [sub_comp.label for sub_comp in trans.list_comps]
|
|
284
|
+
else:
|
|
285
|
+
if trans.kinem == 0:
|
|
286
|
+
unique_comp_list.append(trans.label)
|
|
186
287
|
unique_comp_list = np.unique(unique_comp_list)
|
|
187
288
|
|
|
188
289
|
# Only apply corrections if components are present
|
lime/tools.py
CHANGED
|
@@ -224,6 +224,7 @@ def normalize_fluxes(log, line_list=None, norm_list=None, flux_column='profile_f
|
|
|
224
224
|
raise LiMe_Error(f'Input log is missing "{flux_column}" or "{flux_column}_err" columns')
|
|
225
225
|
|
|
226
226
|
# Check the normalization for the lines
|
|
227
|
+
line_list = log.index.to_numpy() if line_list is None else line_list
|
|
227
228
|
line_array, norm_array = check_lines_normalization(line_list, norm_list, log)
|
|
228
229
|
|
|
229
230
|
# Add new columns if necessary
|
lime/workflow.py
CHANGED
|
@@ -228,10 +228,54 @@ def continuum_model_fit(x_array, y_array, idcs, degree):
|
|
|
228
228
|
|
|
229
229
|
def res_power_approx(wavelength_arr):
|
|
230
230
|
|
|
231
|
+
"""
|
|
232
|
+
Estimate the spectral resolving power R = λ / Δλ approximation for a wavelength array.
|
|
233
|
+
|
|
234
|
+
The dispersion per pixel (Δλ/pixel) is computed from the finite differences
|
|
235
|
+
of the wavelength array. The resolution element is assumed to be Nyquist-sampled
|
|
236
|
+
by 2 pixels, so the FWHM resolution element is 2 * (Δλ/pixel), giving:
|
|
237
|
+
|
|
238
|
+
R ≈ λ / (2 * Δλ_pixel)
|
|
239
|
+
|
|
240
|
+
Note: This is an approximation. The true R depends on the slit width,
|
|
241
|
+
detector sampling, and optical quality of the spectrograph. For precise
|
|
242
|
+
instrumental broadening estimates, an empirical LSF from arc/sky lines
|
|
243
|
+
is preferred.
|
|
244
|
+
|
|
245
|
+
Parameters
|
|
246
|
+
----------
|
|
247
|
+
wavelength_arr : np.ndarray
|
|
248
|
+
1D array of wavelengths, assumed to be in a consistent unit (e.g. Å).
|
|
249
|
+
Must be monotonically increasing and uniformly or smoothly sampled.
|
|
250
|
+
|
|
251
|
+
Returns
|
|
252
|
+
-------
|
|
253
|
+
res_power : np.ndarray
|
|
254
|
+
1D array of resolving power R at each pixel, same shape as wavelength_arr.
|
|
255
|
+
Dimensionless.
|
|
256
|
+
|
|
257
|
+
Notes
|
|
258
|
+
-----
|
|
259
|
+
- The last pixel is extrapolated by repeating the second-to-last dispersion
|
|
260
|
+
value, since np.ediff1d produces N-1 differences for an N-element array.
|
|
261
|
+
- If the wavelength array has non-uniform sampling (e.g. from a non-linear
|
|
262
|
+
dispersion solution), R will vary across the array accordingly.
|
|
263
|
+
- Assumes 2 pixels per resolution element (Nyquist sampling). If your
|
|
264
|
+
spectrograph samples the LSF with a different number of pixels, replace
|
|
265
|
+
the factor of 2 with the appropriate value.
|
|
266
|
+
|
|
267
|
+
Examples
|
|
268
|
+
--------
|
|
269
|
+
>>> wave = np.linspace(4000, 7000, 3000) # 1 Å/pixel
|
|
270
|
+
>>> R = res_power_approx(wave)
|
|
271
|
+
>>> print(R[0]) # expect ~2000 at 4000 Å with 1 Å/pixel dispersion
|
|
272
|
+
2000.0
|
|
273
|
+
|
|
274
|
+
"""
|
|
275
|
+
|
|
231
276
|
delta_lambda = np.ediff1d(wavelength_arr, to_end=0)
|
|
232
277
|
delta_lambda[-1] = delta_lambda[-2]
|
|
233
|
-
|
|
234
|
-
return wavelength_arr/delta_lambda
|
|
278
|
+
return wavelength_arr / (2 * delta_lambda)
|
|
235
279
|
|
|
236
280
|
|
|
237
281
|
|
|
@@ -250,6 +294,120 @@ class SpecRetriever:
|
|
|
250
294
|
update_labels=False, update_latex=False, rejected_lines=None, Rayleigh_threshold=2, lines_redshift=None,
|
|
251
295
|
map_origin=None, components=None, save_group_label=False):
|
|
252
296
|
|
|
297
|
+
"""
|
|
298
|
+
Return a bands dataframe with the spectral lines within the spectrum wavelength range.
|
|
299
|
+
|
|
300
|
+
If the user does not provide a ``ref_bands`` This method queries the `LiMe bands database <https://lime-stable.readthedocs.io/en/latest/inputs/n_inputs3_line_bands.html>`_
|
|
301
|
+
and returns a :class:`pandas.DataFrame` of transitions visible within the spectrum's observed
|
|
302
|
+
wavelength interval, taking into account the spectrum redshift, units, and pixel mask.
|
|
303
|
+
|
|
304
|
+
The central bands (``w3``–``w4``) are optionally adjusted to match the expected line width,
|
|
305
|
+
accounting for the emitting and/or absorbing medium velocity dispersion (``band_vsigma``) and instrumental broadening
|
|
306
|
+
(``instrumental_correction``). Lines whose central band falls entirely within a masked
|
|
307
|
+
pixel region can be excluded via ``exclude_bands_masked``.
|
|
308
|
+
|
|
309
|
+
If a fitting configuration (``fit_cfg``) is provided, blended or merged line groups are
|
|
310
|
+
resolved and the bands table is updated accordingly.
|
|
311
|
+
|
|
312
|
+
Parameters
|
|
313
|
+
----------
|
|
314
|
+
band_vsigma : float, optional
|
|
315
|
+
Velocity sigma in km/s used to set the half-width of the central band (``w3``–``w4``).
|
|
316
|
+
Default is ``70``.
|
|
317
|
+
n_sigma : int, optional
|
|
318
|
+
Number of sigma used to compute the band half-width from ``band_vsigma``. Default is ``4``.
|
|
319
|
+
adjust_central_band : bool, optional
|
|
320
|
+
If ``True`` (default), recompute ``w3`` and ``w4`` from ``band_vsigma``, ``n_sigma``,
|
|
321
|
+
and the instrumental broadening.
|
|
322
|
+
instrumental_correction : bool, optional
|
|
323
|
+
If ``True`` (default), include the instrumental broadening (derived from ``res_power``)
|
|
324
|
+
when adjusting the central band width.
|
|
325
|
+
exclude_bands_masked : bool, optional
|
|
326
|
+
If ``True`` (default), remove lines whose central band pixels are entirely masked.
|
|
327
|
+
map_band_vsigma : dict, optional
|
|
328
|
+
Per-line overrides for ``band_vsigma``, keyed by line label. Lines not present in the
|
|
329
|
+
dict use the global ``band_vsigma`` value.
|
|
330
|
+
grouped_lines : dict, optional
|
|
331
|
+
Explicit line grouping definitions. If ``None``, grouping is read from ``fit_cfg`` if
|
|
332
|
+
available.
|
|
333
|
+
automatic_grouping : bool, optional
|
|
334
|
+
If ``True``, automatically decide the blended or merged line groups which match the observation. Default is ``False``.
|
|
335
|
+
fit_cfg : dict or str or pathlib.Path, optional
|
|
336
|
+
Fitting configuration. Can be a dictionary or a path to a configuration file. When
|
|
337
|
+
provided, grouped lines and rejected lines are read from this configuration unless
|
|
338
|
+
explicitly overridden.
|
|
339
|
+
default_cfg_prefix : str, optional
|
|
340
|
+
Prefix for default parameter entries in ``fit_cfg``. Default is ``"default"``.
|
|
341
|
+
obj_cfg_prefix : str, optional
|
|
342
|
+
Prefix for object-specific parameter entries in ``fit_cfg``. Default is ``None``.
|
|
343
|
+
update_default : bool, optional
|
|
344
|
+
If ``True`` (default), object-specific configuration entries override default entries.
|
|
345
|
+
line_list : list or numpy.ndarray, optional
|
|
346
|
+
Restrict the output to these line labels. Must follow
|
|
347
|
+
`LiMe notation <https://lime-stable.readthedocs.io/en/latest/inputs/n_inputs2_line_labels.html>`_.
|
|
348
|
+
particle_list : list or numpy.ndarray, optional
|
|
349
|
+
Restrict the output to transitions from these ionic species (e.g. ``["H1", "O3"]``).
|
|
350
|
+
sig_digits : int, optional
|
|
351
|
+
Number of decimal figures in the line labels. Default is ``4``.
|
|
352
|
+
ref_bands : pandas.DataFrame, str, or pathlib.Path, optional
|
|
353
|
+
Alternative reference bands database. Defaults to the internal LiMe database.
|
|
354
|
+
vacuum_waves : bool, optional
|
|
355
|
+
If ``True``, convert wavelengths and band limits to vacuum values. Default is ``False``.
|
|
356
|
+
update_labels : bool, optional
|
|
357
|
+
If ``True``, recompute line labels from the transition data. Default is ``False``.
|
|
358
|
+
update_latex : bool, optional
|
|
359
|
+
If ``True``, recompute the ``latex_label`` column. Default is ``False``.
|
|
360
|
+
rejected_lines : list, optional
|
|
361
|
+
Line labels to exclude from the output. If ``None``, falls back to the value in
|
|
362
|
+
``fit_cfg`` if present.
|
|
363
|
+
Rayleigh_threshold : float, optional
|
|
364
|
+
Minimum wavelength separation (in units of ``band_vsigma``) below which two lines
|
|
365
|
+
are considered blended via Rayleigh's criterion. Default is ``2``.
|
|
366
|
+
lines_redshift : float, optional
|
|
367
|
+
Redshift applied to the transition wavelengths when adjusting the central band, if
|
|
368
|
+
no per-line ``z_line`` column is present in the bands table. Falls back to the
|
|
369
|
+
spectrum redshift if ``None``.
|
|
370
|
+
map_origin : dict, optional
|
|
371
|
+
Mapping of origin labels to redshifts for multi-origin line queries.
|
|
372
|
+
components : list, optional
|
|
373
|
+
List of spectral shape components (e.g. ``["emission", "absorption"]``) used to
|
|
374
|
+
filter lines by the predicted profile type from the feature detection algorithm.
|
|
375
|
+
Requires ``spec.infer.pred_arr`` to have been computed beforehand.
|
|
376
|
+
save_group_label : bool, optional
|
|
377
|
+
If ``True``, store the group label in the bands table for grouped lines. Default is
|
|
378
|
+
``False``.
|
|
379
|
+
|
|
380
|
+
Returns
|
|
381
|
+
-------
|
|
382
|
+
pandas.DataFrame
|
|
383
|
+
Bands dataframe with one row per transition, indexed by line label, containing
|
|
384
|
+
wavelength, band limits (``w1``–``w6``), and metadata columns.
|
|
385
|
+
|
|
386
|
+
Notes
|
|
387
|
+
-----
|
|
388
|
+
- If ``res_power`` is not set on the spectrum, an approximate resolving power is
|
|
389
|
+
computed from the wavelength array when ``instrumental_correction=True`` or
|
|
390
|
+
``fit_cfg`` is provided.
|
|
391
|
+
- ``components`` filtering requires the aspect package and a prior call to the
|
|
392
|
+
component detection algorithm; a :exc:`LiMe_Error` is raised otherwise.
|
|
393
|
+
- Per-line redshifts in a ``z_line`` column (added by ``map_origin``) take precedence
|
|
394
|
+
over ``lines_redshift`` and the spectrum redshift when adjusting central bands.
|
|
395
|
+
|
|
396
|
+
Examples
|
|
397
|
+
--------
|
|
398
|
+
Get all lines in the spectrum wavelength range:
|
|
399
|
+
|
|
400
|
+
>>> bands = spec.fit.lines_frame()
|
|
401
|
+
|
|
402
|
+
Restrict to hydrogen and oxygen transitions with a wider velocity band:
|
|
403
|
+
|
|
404
|
+
>>> bands = spec.fit.lines_frame(particle_list=["H1", "O3"], band_vsigma=120)
|
|
405
|
+
|
|
406
|
+
Use a fitting configuration to resolve blended lines:
|
|
407
|
+
|
|
408
|
+
>>> bands = spec.fit.lines_frame(fit_cfg="my_cfg.toml")
|
|
409
|
+
"""
|
|
410
|
+
|
|
253
411
|
|
|
254
412
|
# Remove the mask from the wavelength array if necessary
|
|
255
413
|
wave_intvl = self._spec.wave.compressed()
|
|
@@ -258,6 +416,7 @@ class SpecRetriever:
|
|
|
258
416
|
in_cfg = check_fit_conf(fit_cfg, default_cfg_prefix, obj_cfg_prefix, update_default) if fit_cfg else None
|
|
259
417
|
|
|
260
418
|
# Generate the table of single lines taking into account possible origins
|
|
419
|
+
rejected_lines = rejected_lines if rejected_lines is not None else (in_cfg or {}).get('rejected_lines')
|
|
261
420
|
bands = multi_origin_lines_frame(map_origin, line_list, self._spec.redshift, wave_intvl=wave_intvl,
|
|
262
421
|
particle_list=particle_list, units_wave=self._spec.units_wave,
|
|
263
422
|
sig_digits=sig_digits, ref_bands=ref_bands, vacuum_waves=vacuum_waves,
|
|
@@ -302,7 +461,6 @@ class SpecRetriever:
|
|
|
302
461
|
delta_lambda_inst = 0
|
|
303
462
|
|
|
304
463
|
# Use unique or specific velocity sigma for the bands
|
|
305
|
-
# map_band_vsigma = in_cfg['map_band_vsigma'] if in_cfg and ('map_band_vsigma' in in_cfg) else map_band_vsigma
|
|
306
464
|
map_band_vsigma = map_band_vsigma if map_band_vsigma else (in_cfg or {}).get('map_band_vsigma')
|
|
307
465
|
|
|
308
466
|
if map_band_vsigma is not None:
|
|
@@ -363,7 +521,6 @@ class SpecRetriever:
|
|
|
363
521
|
|
|
364
522
|
return bands
|
|
365
523
|
|
|
366
|
-
|
|
367
524
|
def spectrum(self, redshift=None, norm_flux=None, crop_waves=None, crop_flux=None, pixel_mask=None, mask_intvls=None,
|
|
368
525
|
obj_redshift=False,):
|
|
369
526
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lime-stable
|
|
3
|
-
Version: 2.2.
|
|
3
|
+
Version: 2.2.dev5
|
|
4
4
|
Summary: Line measuring algorithm for astronomical spectra
|
|
5
5
|
Author-email: Vital Fernández <vgf@stsci.edu>
|
|
6
6
|
License: GPL-3.0-or-later
|
|
@@ -18,7 +18,7 @@ Requires-Dist: scipy~=1.16
|
|
|
18
18
|
Requires-Dist: tomli>=2.0.0; python_version < "3.11"
|
|
19
19
|
Provides-Extra: full
|
|
20
20
|
Requires-Dist: asdf~=4.1; extra == "full"
|
|
21
|
-
Requires-Dist: aspect-stable~=0.7.
|
|
21
|
+
Requires-Dist: aspect-stable~=0.7.dev2; extra == "full"
|
|
22
22
|
Requires-Dist: bokeh~=3.8; extra == "full"
|
|
23
23
|
Requires-Dist: mplcursors~=0.6; extra == "full"
|
|
24
24
|
Requires-Dist: openpyxl~=3.1; extra == "full"
|
|
@@ -1,36 +1,37 @@
|
|
|
1
1
|
lime/__init__.py,sha256=oTUSuAwbROsVVLsPKzeUEIVYhJyTN4Rgqqz_G13qFnk,1099
|
|
2
2
|
lime/changelog.txt,sha256=XUYFC9rr23PVBkFAICOG3aljHS2Dh9-6zgF_hSNIbdE,10615
|
|
3
3
|
lime/io.py,sha256=xLYMDfdFR2cjfcWwqwnTldH3NoIvsQnAcwhjpjbfWTY,36199
|
|
4
|
-
lime/lime.toml,sha256=
|
|
5
|
-
lime/observations.py,sha256=
|
|
4
|
+
lime/lime.toml,sha256=QYPXHds95MbDPyDtNfgIHNgSUw0xml0-8cTYqQhxriQ,2309
|
|
5
|
+
lime/observations.py,sha256=o0P97ZYPUL-ht6BYqrEdPSz9wNifE1CZw40bda92Y_U,98652
|
|
6
6
|
lime/rsrc_manager.py,sha256=lTy6byVCoV-Dc43tq5stmocufvPr8gp5cpLmD25FzR8,70
|
|
7
|
-
lime/tools.py,sha256=
|
|
7
|
+
lime/tools.py,sha256=7DCI-97iueiR4mkB30aFk_XU6AjbKL1AGO8Cx3pWKbk,39647
|
|
8
8
|
lime/transitions.py,sha256=RSkvpWbuA4k5eUZV5RV7J2wsjl5HrQDN14C9h_Ipfik,81433
|
|
9
|
-
lime/workflow.py,sha256=
|
|
9
|
+
lime/workflow.py,sha256=DQSK18AX5gBp_tRmaFyw8oCC1EHUcUsJEPGUCNv9ZdM,79624
|
|
10
10
|
lime/archives/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
lime/archives/read_fits.py,sha256=
|
|
11
|
+
lime/archives/read_fits.py,sha256=rPSym_ooPFqxHpvWApTUEk8gOZXZI-aI3JSpbE92maI,49622
|
|
12
12
|
lime/archives/tables.py,sha256=j8axa1FvxOCZYaJE69JJVTOOp4OXlEKdx-m3GhOMFM0,14254
|
|
13
13
|
lime/fitting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
-
lime/fitting/lines.py,sha256=
|
|
14
|
+
lime/fitting/lines.py,sha256=NxbkLOoduX_nqGzC7ovQcj5ElSfVTSAyaNVZB7OF2h4,49644
|
|
15
15
|
lime/fitting/redshift.py,sha256=mzo81MOZScQBsk-XSkVo4Y7lLjU9sV10PAaw9IMBRJo,12366
|
|
16
16
|
lime/inference/detection.py,sha256=evcDl9GfHYo6Zfa0c3L9WA47i-0TEE2JRzH-UZp8zqg,841
|
|
17
17
|
lime/inference/intensity_threshold.py,sha256=Qnax2rimu6yga-4rAgB_AE6TFxqoRp7vChaYM83GQGQ,5308
|
|
18
18
|
lime/plotting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
-
lime/plotting/bokeh_plots.py,sha256=
|
|
20
|
-
lime/plotting/format.py,sha256=
|
|
19
|
+
lime/plotting/bokeh_plots.py,sha256=HUYjMvLr90vpV5d4zeHgzvcG0Uv1NzAa36XayyK8_Z8,33019
|
|
20
|
+
lime/plotting/format.py,sha256=Y85t6ah-MVWW4cJIsxsT2RUANlZ9QLal-Bk9SofdipM,7414
|
|
21
21
|
lime/plotting/plots.py,sha256=L_iy_M2g5E9NgbozhQkKDN9zaKIn4Q8BoNIjAoKkjuE,109861
|
|
22
22
|
lime/plotting/plots_interactive.py,sha256=H1NQpaAjoIAgpbPYrRGYvo-mpKHB8MQ8VF8vvWNtcjA,53873
|
|
23
|
-
lime/plotting/theme_lime.toml,sha256=
|
|
23
|
+
lime/plotting/theme_lime.toml,sha256=tuc2nG4vazYXF56-YBizhgJCz1GEUHOgb21WUb_gMAs,3933
|
|
24
24
|
lime/plotting/utils.py,sha256=n8NYheQ_E__aJOxlgm-4Yn6BzJBlfCanBqW17dHiIHw,2203
|
|
25
25
|
lime/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
26
26
|
lime/resources/generator_db.py,sha256=JZnVx_BEWsxldKnB7y79jGiQILg7M89Wyy5PktvBqvo,5939
|
|
27
27
|
lime/resources/generator_logo.py,sha256=1Mm_5pDQFo_FJCGTAHPVMl6W-amPcbaI5sX68EYgBzw,3045
|
|
28
28
|
lime/resources/lines_database_v2.0.0.txt,sha256=kcE9lxsl4NEh_Gs0Jo65r9UW1k9JlfYDVoDdRrbpyEw,30446
|
|
29
|
+
lime/resources/lines_database_v2.0.6.txt,sha256=iEQEjQSd0LFtpnb_4bmH2A0BzcTPLXsmNZbVlWt3o-U,71831
|
|
29
30
|
lime/resources/types_params.txt,sha256=X2-KQhRQLKLnO4kP3olndfLEUEi5gn7dFA73BcM1mls,10237
|
|
30
31
|
lime/retrieve/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
|
-
lime/retrieve/line_bands.py,sha256
|
|
32
|
-
lime_stable-2.2.
|
|
33
|
-
lime_stable-2.2.
|
|
34
|
-
lime_stable-2.2.
|
|
35
|
-
lime_stable-2.2.
|
|
36
|
-
lime_stable-2.2.
|
|
32
|
+
lime/retrieve/line_bands.py,sha256=s4QfruLbYiliVl0jT2d_PIBcBDjg7skh5w-1lV1HdKM,17046
|
|
33
|
+
lime_stable-2.2.dev5.dist-info/licenses/LICENSE.rst,sha256=seOLF7CWBhO2ouy8K_seWP3undpeEXppbpb7lYgH5vg,35413
|
|
34
|
+
lime_stable-2.2.dev5.dist-info/METADATA,sha256=YaOfuSxRwG0AdlU1tk6MDQOGWcfi2-hmoEusE2aE7Ek,3830
|
|
35
|
+
lime_stable-2.2.dev5.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
36
|
+
lime_stable-2.2.dev5.dist-info/top_level.txt,sha256=F6pWR5Cgjf9EkXNBZlUSKFKcPG8vPzM08QwYFfwpsZc,5
|
|
37
|
+
lime_stable-2.2.dev5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|