From cdcac768723ee74afce4be23ce53207efd298399 Mon Sep 17 00:00:00 2001 From: Askaniy <44873271+Askaniy@users.noreply.github.com> Date: Sat, 16 Apr 2022 13:48:41 +0300 Subject: [PATCH] Error system improvement, Zelario's exoplanet data - [beta] label fixed - now target name is required parameter for calc.to_rgb - replacing tabs with spaces in database.py --- Scripts/TCT.py | 36 +- Scripts/calculations.py | 64 +- Scripts/database.py | 4614 ++++++++++++++++++++------------------- Scripts/strings.py | 18 +- 4 files changed, 2430 insertions(+), 2302 deletions(-) diff --git a/Scripts/TCT.py b/Scripts/TCT.py index ca9d5fe..ec344bf 100644 --- a/Scripts/TCT.py +++ b/Scripts/TCT.py @@ -267,7 +267,7 @@ def frame(num): [sg.Checkbox("sRGB", size=(16, 1), key="T2_srgb"), sg.Radio(tr.gui_interp[lang][2], "T2_interp", size=(12, 1), enable_events=True, key="T2_interp1")], [sg.Checkbox(tr.gui_autoexp[lang], size=(16, 1), key="T2_autoexp"), - sg.Checkbox(tr.gui_autoalign[lang]+" [beta]", size=(16, 1), key="T2_autoalign")], + sg.Checkbox(tr.gui_autoalign[lang], size=(16, 1), key="T2_autoalign")], [sg.Checkbox(tr.gui_single[lang], size=(22, 1), enable_events=True, key="T2_single")], [sg.Input(size=(32, 1), disabled=True, disabled_readonly_background_color="#3A3A3A", key="T2_path"), sg.FileBrowse(button_text=tr.gui_browse[lang], size=(10, 1), disabled=True, key="T2_browse")], [sg.Checkbox(tr.gui_filterset[lang], size=(26, 1), enable_events=True, key="T2_filterset")], @@ -461,13 +461,14 @@ def frame(num): elif event.startswith("T1"): if event in T1_events and values["T1_list"] != []: + T1_name = values["T1_list"][0] T1_nm = cmf.xyz_nm if values["T1_srgb"] else cmf.rgb_nm for i in range(3): if values["T1_br_mode"+str(i)]: T1_mode = br_modes[i] # Spectral data import and processing - T1_spectrum = db.objects[obj_list()[values["T1_list"][0]]] + T1_spectrum = db.objects[obj_list()[T1_name]] T1_albedo = 0 if "albedo" not in T1_spectrum: if T1_mode == "albedo": @@ -486,7 +487,7 @@ def frame(num): except Exception: T1_phase = values["T1_slider"] T1_rgb = calc.to_rgb( - T1_curve, mode=T1_mode, + T1_name, T1_curve, mode=T1_mode, albedo = T1_spectrum["albedo"] or T1_albedo, phase=T1_phase, exp_bit=int(values["T1_bit_num"]), @@ -495,18 +496,13 @@ def frame(num): srgb=values["T1_srgb"] ) T1_rgb_show = calc.to_rgb( - T1_curve, mode=T1_mode, + T1_name, T1_curve, mode=T1_mode, albedo = T1_spectrum["albedo"] or T1_albedo, phase=T1_phase, gamma=values["T1_gamma"], srgb=values["T1_srgb"], html=True ) - if not np.array_equal(np.absolute(T1_rgb), T1_rgb): - T1_rgb_show = "#000000" - print("\n" + tr.error2[lang][0]) - print(tr.error2[lang][1].format(values["T1_list"][0], *T1_rgb) + "\n") - #break # Output window["T1_graph"].TKCanvas.itemconfig(T1_preview, fill=T1_rgb_show) @@ -557,7 +553,7 @@ def frame(num): # Color calculation T1_rgb = calc.to_rgb( - T1_curve, mode=T1_mode, + name_0, T1_curve, mode=T1_mode, albedo = T1_spectrum["albedo"] or T1_albedo, exp_bit=int(values["T1_bit_num"]), gamma=values["T1_gamma"], @@ -787,14 +783,15 @@ def frame(num): for y in range(T2_h): T2_spectrum = T2_data[:, y, x] if np.sum(T2_spectrum) > 0: + T2_name = f'({x}; {y})' T2_curve = calc.polator(input_data["nm"], list(T2_spectrum), T2_nm, fast=T2_fast) - T2_rgb = calc.to_rgb(T2_curve, mode="albedo", albedo=True, inp_bit=T2_input_bit, exp_bit=8, gamma=input_data["gamma"]) + T2_rgb = calc.to_rgb(T2_name, T2_curve, mode="albedo", albedo=True, inp_bit=T2_input_bit, exp_bit=8, gamma=input_data["gamma"]) T2_draw.point((x, y), T2_rgb) if x % 32 == 0 and y % 32 == 0: T2_fig.add_trace(go.Scatter( x = T2_nm, y = T2_curve, - name = f'({x}; {y})', + name = T2_name, line = dict(color="rgb"+str(T2_rgb), width=2) )) T2_counter += 1 @@ -915,14 +912,10 @@ def frame(num): # Color calculation T3_rgb = calc.to_rgb( - T3_curve, mode=T3_mode, + name, T3_curve, mode=T3_mode, albedo = spectrum["albedo"] or T3_albedo, exp_bit=8, gamma=values["T3_gamma"], srgb=values["T3_srgb"] ) - if not np.array_equal(np.absolute(T3_rgb), T3_rgb): - print("\n" + tr.error2[lang][0]) - print(tr.error2[lang][1].format(name, *T3_rgb) + "\n") - break # Object drawing center_x = 100 * (1 + T3_n%T3_num) @@ -977,7 +970,7 @@ def frame(num): T3_img = T3_img.crop((0, 0, T3_w, T3_h2+50 if T3_h2 > T3_min_limit else T3_min_limit+50)) T3_img.save(f'{values["T3_folder"]}/{T3_file_name}') # T3_img.show() - print("Done, saved as", T3_file_name) + print("Done, saved as", T3_file_name, "\n") # ------------ Events in the tab "Blackbody & Redshifts" ------------ @@ -985,8 +978,8 @@ def frame(num): if event == "T4_maxtemp_num": window["T4_slider1"].update(range=(0, int(values["T4_maxtemp_num"]))) + else: - if event == "T4_irr": window["T4_scale"].update(text_color=T4_text_colors[values["T4_irr"]]) window["T4_slider4"].update(disabled=not values["T4_irr"]) @@ -999,8 +992,9 @@ def frame(num): T4_curve *= 10**(-values["T4_slider4"]) except np.core._exceptions.UFuncTypeError: pass + T4_name = f'{values["T4_slider1"]} {values["T4_slider2"]} {values["T4_slider3"]}' T4_rgb = calc.to_rgb( - T4_curve, mode=T4_mode, + T4_name, T4_curve, mode=T4_mode, albedo=values["T4_irr"], exp_bit=int(values["T4_bit_num"]), gamma=values["T4_gamma"], @@ -1008,7 +1002,7 @@ def frame(num): srgb=values["T4_srgb"] ) T4_rgb_show = calc.to_rgb( - T4_curve, mode=T4_mode, + T4_name, T4_curve, mode=T4_mode, albedo=values["T4_irr"], gamma=values["T4_gamma"], srgb=values["T4_srgb"], diff --git a/Scripts/calculations.py b/Scripts/calculations.py index 2cd61d6..39a2a79 100644 --- a/Scripts/calculations.py +++ b/Scripts/calculations.py @@ -1,3 +1,4 @@ +import traceback import numpy as np from scipy.interpolate import Akima1DInterpolator import cmf, database @@ -205,36 +206,41 @@ def xyz_to_sRGB(xyz): def to_bit(color, bit): return color * (2**bit - 1) def to_html(color): return "#{:02x}{:02x}{:02x}".format(*rounder(to_bit(color, 8), 0)) -def to_rgb(spectrum, mode="chromaticity", inp_bit=None, exp_bit=None, rnd=0, albedo=False, phase=0, gamma=False, srgb=False, html=False): - if inp_bit: - spectrum /= (2**inp_bit - 1) - if srgb: - xyz = np.sum(spectrum[:, np.newaxis] * cmf.xyz, axis=0) - rgb = xyz_to_sRGB(xyz) - rgb = rgb / rgb[1] * spectrum[38] # xyz cmf is not normalized, so result was overexposed; spectrum[38] is 550 nm - else: - rgb = np.sum(spectrum[:, np.newaxis] * cmf.rgb, axis=0) - if mode == "albedo 0.5": - if rgb[1] != 0: - rgb /= 2 * rgb[1] - elif mode == "albedo" and albedo: +def to_rgb(target, spectrum, mode="chromaticity", inp_bit=None, exp_bit=None, rnd=0, albedo=False, phase=0, gamma=False, srgb=False, html=False): + try: + if inp_bit: + spectrum /= (2**inp_bit - 1) + if srgb: + xyz = np.sum(spectrum[:, np.newaxis] * cmf.xyz, axis=0) + rgb = xyz_to_sRGB(xyz) + rgb = rgb / rgb[1] * spectrum[38] # xyz cmf is not normalized, so result was overexposed; spectrum[38] is 550 nm + else: + rgb = np.sum(spectrum[:, np.newaxis] * cmf.rgb, axis=0) + if mode == "albedo 0.5": + if rgb[1] != 0: + rgb /= 2 * rgb[1] + elif mode == "albedo" and albedo: + if html: + rgb = np.clip(rgb, 0, 1) + else: # "chromaticity" and when albedo == False + mx = np.max(rgb) + if mx != 0: + rgb /= mx + if phase != 0: + rgb *= lambert(phase) + if gamma: + rgb = gamma_correction(rgb) + if rgb.min() < 0: + print("NegativeColorValues:", target, rgb) + rgb = np.clip(rgb, 0, None) if html: - rgb = np.clip(rgb, 0, 1) - else: # "chromaticity" and when albedo == False - mx = np.max(rgb) - if mx != 0: - rgb /= mx - if phase != 0: - rgb *= lambert(phase) - if gamma: - rgb = gamma_correction(rgb) - if rgb.min() < 0: - # print(f'Negative RGB values were clipped: {rgb}') - rgb = np.clip(rgb, 0, None) - if html: - return to_html(rgb) - else: - return tuple(rounder(rgb if not exp_bit else to_bit(rgb, exp_bit), rnd)) + return to_html(rgb) + else: + return tuple(rounder(rgb if not exp_bit else to_bit(rgb, exp_bit), rnd)) + except: + print("ColorCalcError:", target) + print(traceback.format_exc()) + return "#000000" if html else (0, 0, 0) # Pivot wavelengths and ZeroPoints of filter bandpasses diff --git a/Scripts/database.py b/Scripts/database.py index 83fcc81..8785d1b 100644 --- a/Scripts/database.py +++ b/Scripts/database.py @@ -32,42 +32,44 @@ "\nDOI: ...; https://arxiv.org/abs/1109.3116", "[16]: Photometric study of the major satellites of Uranus" "\nDOI: 10.1134/S0038094607030021; https://link.springer.com/article/10.1134%2FS0038094607030021", - "[17]: Colors of (486958) 2014 MU69 as Observed by New Horizons' Multi-Spectral Visible Imaging Camera (MVIC)" - "\nDOI: ...; https://ui.adsabs.harvard.edu/abs/2019LPI....50.1982H/abstract", - "[18]: Interstellar Interloper 1I/2017 U1: Observations from the NOT and WIYN Telescopes" - "\nDOI: 10.3847/2041-8213/aa9b2f; https://arxiv.org/abs/1711.05687", - "[19]: Col-OSSOS: Colors of the Interstellar Planetesimal 1I/`Oumuamua" - "\nDOI: 10.3847/2041-8213/aaa07c; https://arxiv.org/abs/1711.06214", - "[20]: A Visual Spectrum of Triton from the Hubble Space Telescope" - "\nDOI: 10.1006/icar.1999.6224; https://www.sciencedirect.com/science/article/abs/pii/S0019103599962243", - "[21]: Phobos as a D-type Captured Asteroid, Spectral Modeling from 0.25 to 4.0 μm" - "\nDOI: 10.1088/0004-637X/777/2/127; https://iopscience.iop.org/article/10.1088/0004-637X/777/2/127", - "[22]: Spectral absorptions on Phobos and Deimos in the visible/near infrared wavelengths and their compositional constraints" - "\nDOI: 10.1016/j.icarus.2013.11.021; https://www.sciencedirect.com/science/article/abs/pii/S0019103513004934", - "[23]: Spectral evidence for a carbonaceous chondrite surface composition on Deimos" - "\nDOI: ...; https://www.nature.com/articles/283277a0", - "[24]: A Catalog of Spectra, Albedos, and Colors of Solar System Bodies for Exoplanet Comparison" - "\nDOI: 10.1089/ast.2017.1763; https://www.liebertpub.com/doi/10.1089/ast.2017.1763; https://zenodo.org/record/3930987", - "[25]: Albedo and Reflection Spectra of Extrasolar Giant Planets" - "\nDOI: 10.1086/309160; https://iopscience.iop.org/article/10.1086/309160/meta", - "[26]: Photometric Modeling and VIS-IR Albedo Maps of Tethys From Cassini-VIMS" - "\nDOI: 10.1029/2018GL078602; https://agupubs.onlinelibrary.wiley.com/doi/full/10.1029/2018GL078602", - "[27]: Photometric Modeling and VIS-IR Albedo Maps of Dione From Cassini-VIMS" - "\nDOI: 10.1002/2017GL076869; https://agupubs.onlinelibrary.wiley.com/doi/full/10.1002/2017GL076869", - "[28]: Investigating Surface Color Variegation on Near-Earth Asteroid Bennu Using OSIRIS-REx Mapcam Data" - "\nDOI: ...; https://ui.adsabs.harvard.edu/abs/2019LPI....50.2794L/abstract", - "[29]: SMASS: Small Main-Belt Asteroid Spectroscopic Survey" - "\nDOI: ...; http://smass.mit.edu/smass.html", - "[30]: Colors and Shapes of the Irregular Planetary Satellites" - "\nDOI: 10.3847/1538-3881/aab49b; https://iopscience.iop.org/article/10.3847/1538-3881/aab49b", - "[31]: A deeper look at the colors of the saturnian irregular satellites" - "\nDOI: 10.1016/j.icarus.2007.04.020; https://arxiv.org/abs/astro-ph/0611590", - "[32]: Nereid Has Complex Large-Amplitude Photometric Variability (Due to Chaotic Rotation)" - "\nDOI: 10.1006/icar.2000.6417; https://arxiv.org/abs/astro-ph/0005050v1", - "[33]: Photometric survey of the irregular satellites" - "\nDOI: 10.1016/j.icarus.2003.07.005; https://arxiv.org/abs/astro-ph/0301016", - "[34]: Implied Evolutionary Differences of the Jovian Irregular Satellites from a BVR Color Survey" - "\nDOI: 10.1006/icar.2001.6715; https://www.sciencedirect.com/science/article/abs/pii/S0019103501967156" + "[17]: Colors of (486958) 2014 MU69 as Observed by New Horizons' Multi-Spectral Visible Imaging Camera (MVIC)" + "\nDOI: ...; https://ui.adsabs.harvard.edu/abs/2019LPI....50.1982H/abstract", + "[18]: Interstellar Interloper 1I/2017 U1: Observations from the NOT and WIYN Telescopes" + "\nDOI: 10.3847/2041-8213/aa9b2f; https://arxiv.org/abs/1711.05687", + "[19]: Col-OSSOS: Colors of the Interstellar Planetesimal 1I/`Oumuamua" + "\nDOI: 10.3847/2041-8213/aaa07c; https://arxiv.org/abs/1711.06214", + "[20]: A Visual Spectrum of Triton from the Hubble Space Telescope" + "\nDOI: 10.1006/icar.1999.6224; https://www.sciencedirect.com/science/article/abs/pii/S0019103599962243", + "[21]: Phobos as a D-type Captured Asteroid, Spectral Modeling from 0.25 to 4.0 μm" + "\nDOI: 10.1088/0004-637X/777/2/127; https://iopscience.iop.org/article/10.1088/0004-637X/777/2/127", + "[22]: Spectral absorptions on Phobos and Deimos in the visible/near infrared wavelengths and their compositional constraints" + "\nDOI: 10.1016/j.icarus.2013.11.021; https://www.sciencedirect.com/science/article/abs/pii/S0019103513004934", + "[23]: Spectral evidence for a carbonaceous chondrite surface composition on Deimos" + "\nDOI: ...; https://www.nature.com/articles/283277a0", + "[24]: A Catalog of Spectra, Albedos, and Colors of Solar System Bodies for Exoplanet Comparison" + "\nDOI: 10.1089/ast.2017.1763; https://www.liebertpub.com/doi/10.1089/ast.2017.1763; https://zenodo.org/record/3930987", + "[25]: Albedo and Reflection Spectra of Extrasolar Giant Planets" + "\nDOI: 10.1086/309160; https://iopscience.iop.org/article/10.1086/309160/meta", + "[26]: Photometric Modeling and VIS-IR Albedo Maps of Tethys From Cassini-VIMS" + "\nDOI: 10.1029/2018GL078602; https://agupubs.onlinelibrary.wiley.com/doi/full/10.1029/2018GL078602", + "[27]: Photometric Modeling and VIS-IR Albedo Maps of Dione From Cassini-VIMS" + "\nDOI: 10.1002/2017GL076869; https://agupubs.onlinelibrary.wiley.com/doi/full/10.1002/2017GL076869", + "[28]: Investigating Surface Color Variegation on Near-Earth Asteroid Bennu Using OSIRIS-REx Mapcam Data" + "\nDOI: ...; https://ui.adsabs.harvard.edu/abs/2019LPI....50.2794L/abstract", + "[29]: SMASS: Small Main-Belt Asteroid Spectroscopic Survey" + "\nDOI: ...; http://smass.mit.edu/smass.html", + "[30]: Colors and Shapes of the Irregular Planetary Satellites" + "\nDOI: 10.3847/1538-3881/aab49b; https://iopscience.iop.org/article/10.3847/1538-3881/aab49b", + "[31]: A deeper look at the colors of the saturnian irregular satellites" + "\nDOI: 10.1016/j.icarus.2007.04.020; https://arxiv.org/abs/astro-ph/0611590", + "[32]: Nereid Has Complex Large-Amplitude Photometric Variability (Due to Chaotic Rotation)" + "\nDOI: 10.1006/icar.2000.6417; https://arxiv.org/abs/astro-ph/0005050v1", + "[33]: Photometric survey of the irregular satellites" + "\nDOI: 10.1016/j.icarus.2003.07.005; https://arxiv.org/abs/astro-ph/0301016", + "[34]: Implied Evolutionary Differences of the Jovian Irregular Satellites from a BVR Color Survey" + "\nDOI: 10.1006/icar.2001.6715; https://www.sciencedirect.com/science/article/abs/pii/S0019103501967156", + "[35]: The ExoColors table by Zelario (Fireon)" + "\nhttps://docs.google.com/spreadsheets/d/1kg9lktTwNhHVVyAS2FhccvLMnddI4L0Ot67f-kYFIFM" ] @@ -89,7 +91,7 @@ 0.2323, 0.22828, 0.22451, 0.22018, 0.21685, 0.21096, 0.20805, 0.20542, 0.20146, 0.19538, 0.20773, 0.18605, 0.20945, 0.17968, 0.19996, 0.20476, 0.17369, 0.18799, 0.19469, 0.19582, 0.17148, 0.16286, 0.18356, 0.18016, 0.17867, 0.17445, 0.16444, 0.13792, 0.16047, 0.16176, 0.16256, 0.15818, 0.15698, 0.1527, 0.15107, 0.14542, 0.13953] - }, + }, "Sun|1": {"tags": ["featured", "solar_system", "star"], "nm": list(range(200, 1005, 5)), "br": [0.0014, 0.01011, 0.02381, 0.03433, 0.04319, 0.0517, 0.04901, 0.04446, 0.04279, 0.055, 0.05044, 0.07057, 0.09784, 0.22107, 0.23546, 0.18081, @@ -103,66 +105,66 @@ 0.97348, 0.95859, 0.93439, 0.87948, 0.9288, 0.8618, 0.89018, 0.89158, 0.86459, 0.85807, 0.85202, 0.85528, 0.82829, 0.81992, 0.80875, 0.80037, 0.77385, 0.78083, 0.78548, 0.76315, 0.7571, 0.76035, 0.74407, 0.7436, 0.73145, 0.71822, 0.7206, 0.71192, 0.70569, 0.69804, 0.6884, 0.68677, 0.68053] - }, + }, "Mercury|2": {"tags": ["featured", "solar_system", "planet"], "nm": [360, 436, 549, 641, 700, 798, 900], "br": [0.087, 0.105, 0.142, 0.158, 0.172, 0.180, 0.208], "albedo": True - }, + }, "Mercury|3": {"tags": ["solar_system", "planet"], "nm": [314.7, 359.0, 392.6, 415.5, 457.5, 501.2, 626.4, 729.7, 959.5, 1063.5], "br": [0.61, 0.56, 0.66, 0.71, 0.86, 1.00, 1.37, 1.50, 1.77, 2.01], "albedo": 0.142 - }, + }, "Mercury|24": {"tags": ["solar_system", "planet"], "nm": [299.63, 315.33, 335.22, 348.71, 366.62, 385.46, 406.4, 429.43, 448.27, 467.11, 490.14, 513.17, 536.2, 559.23, 582.25, 605.28, 628.31, - 651.34, 674.37, 697.4, 720.43, 743.46, 766.49, 789.51, 812.54, 835.57, 858.6, 881.63, 904.66, 927.69, 950.72, 973.74, 996.77], - "br": [0.00765, 0.00849, 0.00927, 0.01017, 0.01104, 0.01178, 0.01255, 0.01318, 0.01378, 0.01455, 0.01536, 0.01595, 0.01637, 0.01665, 0.01706, - 0.01742, 0.01783, 0.01833, 0.01889, 0.01943, 0.0199, 0.02019, 0.02033, 0.0205, 0.02076, 0.02109, 0.02139, 0.02159, 0.0218, 0.02195, 0.02221, - 0.02258, 0.02302], - "albedo": True - }, + 651.34, 674.37, 697.4, 720.43, 743.46, 766.49, 789.51, 812.54, 835.57, 858.6, 881.63, 904.66, 927.69, 950.72, 973.74, 996.77], + "br": [0.00765, 0.00849, 0.00927, 0.01017, 0.01104, 0.01178, 0.01255, 0.01318, 0.01378, 0.01455, 0.01536, 0.01595, 0.01637, 0.01665, 0.01706, + 0.01742, 0.01783, 0.01833, 0.01889, 0.01943, 0.0199, 0.02019, 0.02033, 0.0205, 0.02076, 0.02109, 0.02139, 0.02159, 0.0218, 0.02195, 0.02221, + 0.02258, 0.02302], + "albedo": True + }, "Venus|2": {"tags": ["featured", "solar_system", "planet"], "nm": [360, 436, 549, 641, 700, 798, 900], "br": [0.348, 0.658, 0.689, 0.658, 0.708, 0.640, 0.584], "albedo": True - }, + }, "Venus|3": {"tags": ["solar_system", "planet"], "nm": [314.7, 359.0, 392.6, 415.5, 457.5, 501.2, 626.4, 729.7, 959.5, 1063.5], "br": [0.59, 0.64, 0.72, 0.58, 0.95, 1.00, 1.16, 1.08, 1.16, 1.12], "albedo": 0.689 - }, + }, "Venus|24": {"tags": ["solar_system", "planet"], "nm": [480.52, 600.74, 722.74, 807.16, 887.92, 966.48, 996.22], - "br": [0.4762, 0.46407, 0.45882, 0.45564, 0.44893, 0.44337, 0.42979], - "albedo": True - }, + "br": [0.4762, 0.46407, 0.45882, 0.45564, 0.44893, 0.44337, 0.42979], + "albedo": True + }, "Earth|2": {"tags": ["solar_system", "planet"], "nm": [360, 436, 549, 641, 700, 798, 900], "br": [0.688, 0.512, 0.434, 0.392, 0.418, 0.396, 0.430], "albedo": True - }, + }, "Earth|3": {"tags": ["featured", "solar_system", "planet"], "nm": [350, 450, 550, 650, 750, 850, 950], "br": [1610.47, 1342.71, 1059.02, 1014.27, 1062.25, 1168.00, 853.79], "albedo": 0.434 - }, + }, "Moon|3": {"tags": ["featured", "solar_system", "moon"], - "nm": [350, 450, 550, 650, 750, 850, 950], "br": [13.83, 18.06, 22.54, 26.68, 30.74, 34.86, 34.14], "albedo": 0.09948, # |24 - }, + "nm": [350, 450, 550, 650, 750, 850, 950], "br": [13.83, 18.06, 22.54, 26.68, 30.74, 34.86, 34.14], "albedo": 0.09948, # |24 + }, "Moon|24": {"tags": ["solar_system", "moon"], - "nm": list(range(450, 895, 5)), - "br": [0.12894, 0.12827, 0.12833, 0.12049, 0.12152, 0.11801, 0.11888, 0.10276, 0.10624, 0.10734, 0.10659, 0.10483, 0.10482, 0.10586, 0.10583, 0.10377, - 0.10273, 0.10111, 0.10124, 0.09872, 0.09948, 0.09881, 0.09755, 0.09794, 0.09592, 0.09507, 0.09502, 0.0956, 0.09492, 0.09621, 0.09716, 0.0979, 0.09899, - 0.09928, 0.09909, 0.10045, 0.09787, 0.09963, 0.10245, 0.10236, 0.1, 0.10338, 0.10285, 0.10472, 0.10498, 0.10392, 0.10581, 0.11006, 0.09889, 0.10516, - 0.10514, 0.10603, 0.10771, 0.11032, 0.10183, 0.10256, 0.10296, 0.10698, 0.10898, 0.10813, 0.10928, 0.10899, 0.12524, 0.08838, 0.10821, 0.11089, - 0.1108, 0.10942, 0.10881, 0.11178, 0.11238, 0.11127, 0.11163, 0.10524, 0.10855, 0.11062, 0.1096, 0.11003, 0.11177, 0.11517, 0.11609, 0.11679, 0.10703, - 0.11203, 0.11971, 0.10748, 0.11364, 0.10462, 0.10882], - "albedo": True - }, + "nm": list(range(450, 895, 5)), + "br": [0.12894, 0.12827, 0.12833, 0.12049, 0.12152, 0.11801, 0.11888, 0.10276, 0.10624, 0.10734, 0.10659, 0.10483, 0.10482, 0.10586, 0.10583, 0.10377, + 0.10273, 0.10111, 0.10124, 0.09872, 0.09948, 0.09881, 0.09755, 0.09794, 0.09592, 0.09507, 0.09502, 0.0956, 0.09492, 0.09621, 0.09716, 0.0979, 0.09899, + 0.09928, 0.09909, 0.10045, 0.09787, 0.09963, 0.10245, 0.10236, 0.1, 0.10338, 0.10285, 0.10472, 0.10498, 0.10392, 0.10581, 0.11006, 0.09889, 0.10516, + 0.10514, 0.10603, 0.10771, 0.11032, 0.10183, 0.10256, 0.10296, 0.10698, 0.10898, 0.10813, 0.10928, 0.10899, 0.12524, 0.08838, 0.10821, 0.11089, + 0.1108, 0.10942, 0.10881, 0.11178, 0.11238, 0.11127, 0.11163, 0.10524, 0.10855, 0.11062, 0.1096, 0.11003, 0.11177, 0.11517, 0.11609, 0.11679, 0.10703, + 0.11203, 0.11971, 0.10748, 0.11364, 0.10462, 0.10882], + "albedo": True + }, "Mars|2": {"tags": ["solar_system", "planet"], - "nm": [360, 436, 549, 641, 700, 798, 900], "br": [0.060, 0.088, 0.170, 0.250, 0.288, 0.285, 0.330], "albedo": True - }, + "nm": [360, 436, 549, 641, 700, 798, 900], "br": [0.060, 0.088, 0.170, 0.250, 0.288, 0.285, 0.330], "albedo": True + }, "Mars|3": {"tags": ["featured", "solar_system", "planet"], - "nm": [350, 450, 550, 650, 750, 850, 950], "br": [4.52, 6.87, 13.09, 21.60, 25.32, 26.55, 24.31], "albedo": 0.170 - }, + "nm": [350, 450, 550, 650, 750, 850, 950], "br": [4.52, 6.87, 13.09, 21.60, 25.32, 26.55, 24.31], "albedo": 0.170 + }, "Mars:B|4": {"tags": ["featured", "solar_system", "planet", "surface_feature"], "nm": [330, 342, 363, 381, 404, 440, 475, 504, 540, 566, 600, 633, 666, 700, 704.7, 716.4, 728.9, 739.8, 751.9, 763.6, 775.6, 786.3, 799, 811.7, 822.4, 837.1, 849.8, 862.5], "br": [0.091700, 0.095981, 0.108666, 0.098961, 0.130791, 0.180553, 0.247580, 0.302547, 0.398298, 0.527668, 0.704229, 0.790133, 0.861244, 0.907984, 0.927670, 0.950918, 0.968006, 0.973932, 1.007903, 1.009743, 0.983539, 0.998712, 1.002135, 0.990941, 0.984577, 0.981692, 0.969340, 0.963597], "albedo": 0.26 # https://agupubs.onlinelibrary.wiley.com/doi/10.1029/2001JE001580 - }, + }, "Mars:D|4": {"tags": ["featured", "solar_system", "planet", "surface_feature"], "nm": [330, 342, 363, 381, 404, 440, 475, 504, 540, 566, 600, 633, 644.1, 656, 667.9, 679.9, 691.7, 704.7, 716.4, 728.9, 739.8, 751.9, 763.6, 775.6, 786.3, 799, 811.7, 822.4, 837.1, 849.8, 862.5], @@ -170,32 +172,32 @@ 1.117898, 1.128430, 1.139110, 1.147979, 1.159085, 1.143423, 1.145229, 1.126660, 1.111953, 1.092715, 1.076242, 1.085038, 1.046774, 1.033783, 1.026548, 1.020545, 1.028644], "albedo": 0.12 # https://agupubs.onlinelibrary.wiley.com/doi/10.1029/2001JE001580 - }, + }, "Mars|24": {"tags": ["solar_system", "planet"], "nm": [316.04, 360.96, 389.97, 435.05, 464.12, 502.86, 528.88, 567.92, 597.46, 626.82, 659.28, 697.97, 717.38, 762.51, 804.31, 846.12, 900.65, - 951.86, 993.64], + 951.86, 993.64], "br": [0.04554, 0.04851, 0.05933, 0.07176, 0.0866, 0.10343, 0.12899, 0.16342, 0.20522, 0.23077, 0.24945, 0.25602, 0.26244, 0.26437, 0.2722, 0.28349, - 0.26732, 0.24827, 0.25628], + 0.26732, 0.24827, 0.25628], "albedo": True - }, + }, "Phobos|21": {"tags": ["featured", "solar_system", "moon"], "nm": [245.5, 258.0, 263.5, 295.0, 308.5, 355.0, 360.0, 374.5, 387.0, 480.0, 535.0, 571.0, 589.5, 611.5, 650.5, 700.5, 742.5, 804.5, 882.5, 932.0, - 992.0], + 992.0], "br": [0.01305, 0.01312, 0.01484, 0.01489, 0.01699, 0.01766, 0.02037, 0.02137, 0.02177, 0.02641, 0.02769, 0.02743, 0.02732, 0.02835, 0.03083, - 0.03316, 0.03499, 0.03713, 0.03940, 0.04057, 0.03880], + 0.03316, 0.03499, 0.03713, 0.03940, 0.04057, 0.03880], "albedo": 0.071 # Geom. ! https://ssd.jpl.nasa.gov/?sat_phys_par - }, + }, "Deimos|22, 23": {"tags": ["featured", "solar_system", "moon"], "nm": [250, 300, 350, 400, 450, 500, 550, 600, 700, 750, 800], "br": [0.04, 0.05, 0.051, 0.05, 0.049, 0.053, 0.055, 0.058, 0.062, 0.067, 0.069], "albedo": 0.068 # Geom. ! https://ssd.jpl.nasa.gov/?sat_phys_par - }, + }, "Jupiter|2": {"tags": ["solar_system", "planet", "jovian_system"], - "nm": [360, 436, 549, 641, 700, 798, 900], "br": [0.358, 0.443, 0.538, 0.513, 0.495, 0.389, 0.321] - }, + "nm": [360, 436, 549, 641, 700, 798, 900], "br": [0.358, 0.443, 0.538, 0.513, 0.495, 0.389, 0.321] + }, "Jupiter|3": {"tags": ["solar_system", "planet", "jovian_system"], - "nm": [350, 450, 550, 650, 750, 850], "br": [0.604, 0.824, 1.000, 1.006, 0.832, 0.636] - }, + "nm": [350, 450, 550, 650, 750, 850], "br": [0.604, 0.824, 1.000, 1.006, 0.832, 0.636] + }, "Jupiter|5": {"tags": ["featured", "solar_system", "planet", "jovian_system"], "nm": list(range(300, 1000, 5)), "br": [0.29378, 0.28429, 0.27608, 0.27136, 0.27249, 0.27212, 0.27459, 0.28014, 0.28171, 0.28694, 0.29027, 0.29465, 0.30181, 0.30318, 0.30942, @@ -208,196 +210,196 @@ 0.35489, 0.22159, 0.18372, 0.27352, 0.32265, 0.17022, 0.04325, 0.04078, 0.04605, 0.09136, 0.22011, 0.33562, 0.35873, 0.39662, 0.39147, 0.39727, 0.41455, 0.4393, 0.44514, 0.42942, 0.43015, 0.37152, 0.23525, 0.18172, 0.18811, 0.15767, 0.10329, 0.07357, 0.08545], "albedo": True - }, + }, "Io:T|4": {"tags": ["featured", "solar_system", "moon", "jovian_system", "regular"], "nm": [350, 375, 400, 433, 466, 500, 533, 566, 600, 633, 666, 700, 733, 739.8, 751.9, 763.6, 775.6, 786.3, 799, 811.7, 822.4, 837.1, 849.8, 862.5], "br": [0.126856, 0.161157, 0.189998, 0.312668, 0.455349, 0.642046, 0.775382, 0.801427, 0.811630, 0.890139, 0.942953, 1.004252, 1.005697, 1.015561, 1.031987, 1.019722, 1.008961, 1.000501, 1.015732, 1.006328, 1.003697, 0.986871, 0.973683, 0.987817], - "albedo": 0.5014384 # |24 - }, + "albedo": 0.5014384 # |24 + }, "Io|24": {"tags": ["solar_system", "moon", "jovian_system", "regular"], "nm": [295.98, 349.54, 376.84, 395.48, 405.46, 428.85, 443.62, 475.98, 538.43, 600.68, 672.13, 787.28, 880.37, 964.69], "br": [0.06645, 0.09565, 0.13699, 0.18699, 0.24564, 0.31289, 0.39051, 0.46464, 0.49727, 0.51954, 0.56077, 0.57946, 0.5982, 0.62042], - "albedo": True - }, + "albedo": True + }, "Europa:T|4": {"tags": ["featured", "solar_system", "moon", "jovian_system", "regular"], "nm": [350, 375, 400, 433, 466, 500, 533, 566, 600, 633, 666, 700, 733, 766, 800, 833, 866], "br": [0.352826, 0.410782, 0.467415, 0.602579, 0.688769, 0.806425, 0.839300, 0.852109, 0.913667, 0.961235, 0.979446, 1.006591, 1.026941, 1.038414, 1.067850, 1.062889, 1.063046], - "albedo": 0.6110393 # |24 - }, + "albedo": 0.6110393 # |24 + }, "Europa:T|24": {"tags": ["solar_system", "moon", "jovian_system", "regular"], "nm": [340.98, 358.07, 375.17, 381.3, 391.27, 419.79, 441.32, 451.3, 459.94, 468.22, 476.49, 484.82, 492.05, 503.62, 518.47, 551.04, 598.92, 647.01, - 695.29, 743.72, 792.14, 840.63, 889.18, 931.13, 954.13, 995.11], + 695.29, 743.72, 792.14, 840.63, 889.18, 931.13, 954.13, 995.11], "br": [0.38563, 0.40049, 0.41506, 0.42872, 0.44588, 0.46115, 0.47493, 0.49191, 0.50931, 0.52444, 0.53987, 0.55339, 0.5672, 0.58258, 0.59866, 0.61138, - 0.62658, 0.63586, 0.63949, 0.639, 0.63841, 0.63616, 0.63216, 0.6371, 0.64146, 0.62304], - "albedo": True - }, + 0.62658, 0.63586, 0.63949, 0.639, 0.63841, 0.63616, 0.63216, 0.6371, 0.64146, 0.62304], + "albedo": True + }, "Ganymede:L|4": {"tags": ["featured", "solar_system", "moon", "jovian_system", "regular"], "nm": [350, 375, 400, 433, 466, 500, 533, 566, 600, 633, 666, 700, 733, 766, 800, 833, 866], "br": [0.488778, 0.590744, 0.632155, 0.752500, 0.783059, 0.869610, 0.918507, 0.955278, 0.973874, 1.010833, 1.021557, 1.046712, 1.040900, 1.035977, 1.049606, 1.044146, 1.036557], - "albedo": 0.4636778 # |24 - }, + "albedo": 0.4636778 # |24 + }, "Ganymede:L|24": {"tags": ["solar_system", "moon", "jovian_system", "regular"], "nm": [320.0, 336.21, 352.99, 363.67, 377.95, 388.61, 404.13, 424.95, 446.14, 463.01, 478.07, 506.08, 548.23, 573.42, 625.63, 680.99, 715.56, - 779.75, 830.75, 876.4, 932.56, 968.8], + 779.75, 830.75, 876.4, 932.56, 968.8], "br": [0.24109, 0.26866, 0.29261, 0.30188, 0.32175, 0.34435, 0.36224, 0.37519, 0.39892, 0.42008, 0.4301, 0.44725, 0.463, 0.47268, 0.49018, 0.50107, - 0.49825, 0.48741, 0.48884, 0.49226, 0.49704, 0.49245], - "albedo": True - }, + 0.49825, 0.48741, 0.48884, 0.49226, 0.49704, 0.49245], + "albedo": True + }, "Callisto:L|4": {"tags": ["featured", "solar_system", "moon", "jovian_system", "regular"], "nm": [350, 375, 400, 433, 466, 500, 533, 566, 600, 633, 666, 700, 733, 766, 800, 833, 837.1, 849.8, 862.5], "br": [0.406242, 0.456089, 0.518130, 0.652152, 0.691349, 0.777651, 0.840575, 0.881522, 0.918704, 0.941487, 0.969265, 0.990831, 0.997041, 0.993501, 1.007422, 0.986979, 1.001239, 0.985442, 1.006188], - "albedo": 0.1688978 # |24 - }, + "albedo": 0.1688978 # |24 + }, "Callisto:L|24": {"tags": ["solar_system", "moon", "jovian_system", "regular"], "nm": [353.4, 377.13, 402.86, 433.37, 496.32, 544.31, 592.48, 640.67, 666.97, 745.88, 794.39, 842.94, 891.47, 926.57], "br": [0.0891, 0.10305, 0.12241, 0.1311, 0.15594, 0.16799, 0.17514, 0.18138, 0.18453, 0.19318, 0.19019, 0.18602, 0.18271, 0.18578], - "albedo": True - }, - "Himalia|34": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.632, "V-R": 0.375}, "sun": True - }, - "Elara|34": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.66, "V-R": 0.357}, "sun": True - }, - "Pasiphae|33": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.74, "V-R": 0.38, "V-I": 0.74}, "sun": True - }, - "Pasiphae (weighted)|33": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.71, "V-R": 0.39, "V-I": 0.75}, "sun": True - }, - "Pasiphae|34": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.68, "V-R": 0.41}, "sun": True - }, - "Sinope|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.77, "V-R": 0.48}, "sun": True - }, - "Sinope|33": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.84, "V-R": 0.46, "V-I": 0.93}, "sun": True - }, - "Sinope|34": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.749, "V-R": 0.481}, "sun": True - }, - "Lysithea|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.72, "V-R": 0.41}, "sun": True - }, - "Lysithea|33": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.72, "V-R": 0.36, "V-I": 0.74}, "sun": True - }, - "Lysithea|34": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.671, "V-R": 0.378}, "sun": True - }, - "Carme|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.76, "V-R": 0.48}, "sun": True - }, - "Carme|33": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.76, "V-R": 0.47, "V-I": 0.97}, "sun": True - }, - "Carme|34": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.72, "V-R": 0.445}, "sun": True - }, - "Ananke|33": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.90, "V-R": 0.38, "V-I": 0.86}, "sun": True - }, - "Ananke (weighted)|33": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.77, "V-R": 0.42, "V-I": 0.83}, "sun": True - }, - "Ananke|34": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.758, "V-R": 0.428}, "sun": True - }, - "Leda|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.66, "V-R": 0.43}, "sun": True - }, - "Leda|34": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.644, "V-R": 0.348}, "sun": True - }, - "Callirrhoe|33": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.72, "V-R": 0.50, "V-I": 1.02}, "sun": True - }, - "Themisto|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.80, "V-R": 0.48}, "sun": True - }, - "Themisto|33": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.83, "V-R": 0.46, "V-I": 0.94}, "sun": True - }, - "Megaclite|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.82, "V-R": 0.44}, "sun": True - }, - "Megaclite|33": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.94, "V-R": 0.41, "V-I": 1.05}, "sun": True - }, - "Taygete|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.84, "V-R": 0.47}, "sun": True - }, - "Taygete|33": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.56, "V-R": 0.52, "V-I": 0.96}, "sun": True - }, - "Chaldene|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.82, "V-R": 0.50}, "sun": True - }, - "Harpalyke|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.70, "V-R": 0.42}, "sun": True - }, - "Kalyke|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.69, "V-R": 0.46}, "sun": True - }, - "Kalyke|33": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.94, "V-R": 0.705, "V-I": 0.890}, "sun": True - }, - "Iocaste|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.86, "V-R": 0.38}, "sun": True - }, - "Iocaste|33": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.63, "V-R": 0.36, "V-I": 0.62}, "sun": True - }, - "Erinome|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.72, "V-R": 0.42}, "sun": True - }, - "Isonoe|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.78, "V-R": 0.53}, "sun": True - }, - "Praxidike|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.71, "V-R": 0.32}, "sun": True - }, - "Praxidike|33": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.77, "V-R": 0.34, "V-I": 0.74}, "sun": True - }, - "Autonoe|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.72, "V-R": 0.51}, "sun": True - }, - "Thyone|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.71, "V-R": 0.45}, "sun": True - }, - "Hermippe|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.73, "V-R": 0.49}, "sun": True - }, - "Callirrhoe|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.81, "V-R": 0.23}, "sun": True - }, - "Eukelade|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.79, "V-R": 0.50}, "sun": True - }, - "Cyllene|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.73, "V-R": 0.46}, "sun": True - }, - "Jovian irregulars|30": {"tags": ["featured", "solar_system", "class", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.75, "V-R": 0.44}, "sun": True, "albedo": 0.04 # estimation - }, - "Jovian irregulars i=28°|33": {"tags": ["featured", "solar_system", "class", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.66, "V-R": 0.36}, "sun": True, "albedo": 0.04 # estimation - }, - "Jovian irregulars i=149°|33": {"tags": ["featured", "solar_system", "class", "moon", "jovian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.75, "V-R": 0.41}, "sun": True, "albedo": 0.04 # estimation - }, + "albedo": True + }, + "Himalia|34": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.632, "V-R": 0.375}, "sun": True + }, + "Elara|34": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.66, "V-R": 0.357}, "sun": True + }, + "Pasiphae|33": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.74, "V-R": 0.38, "V-I": 0.74}, "sun": True + }, + "Pasiphae (weighted)|33": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.71, "V-R": 0.39, "V-I": 0.75}, "sun": True + }, + "Pasiphae|34": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.68, "V-R": 0.41}, "sun": True + }, + "Sinope|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.77, "V-R": 0.48}, "sun": True + }, + "Sinope|33": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.84, "V-R": 0.46, "V-I": 0.93}, "sun": True + }, + "Sinope|34": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.749, "V-R": 0.481}, "sun": True + }, + "Lysithea|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.72, "V-R": 0.41}, "sun": True + }, + "Lysithea|33": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.72, "V-R": 0.36, "V-I": 0.74}, "sun": True + }, + "Lysithea|34": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.671, "V-R": 0.378}, "sun": True + }, + "Carme|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.76, "V-R": 0.48}, "sun": True + }, + "Carme|33": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.76, "V-R": 0.47, "V-I": 0.97}, "sun": True + }, + "Carme|34": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.72, "V-R": 0.445}, "sun": True + }, + "Ananke|33": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.90, "V-R": 0.38, "V-I": 0.86}, "sun": True + }, + "Ananke (weighted)|33": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.77, "V-R": 0.42, "V-I": 0.83}, "sun": True + }, + "Ananke|34": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.758, "V-R": 0.428}, "sun": True + }, + "Leda|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.66, "V-R": 0.43}, "sun": True + }, + "Leda|34": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.644, "V-R": 0.348}, "sun": True + }, + "Callirrhoe|33": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.72, "V-R": 0.50, "V-I": 1.02}, "sun": True + }, + "Themisto|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.80, "V-R": 0.48}, "sun": True + }, + "Themisto|33": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.83, "V-R": 0.46, "V-I": 0.94}, "sun": True + }, + "Megaclite|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.82, "V-R": 0.44}, "sun": True + }, + "Megaclite|33": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.94, "V-R": 0.41, "V-I": 1.05}, "sun": True + }, + "Taygete|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.84, "V-R": 0.47}, "sun": True + }, + "Taygete|33": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.56, "V-R": 0.52, "V-I": 0.96}, "sun": True + }, + "Chaldene|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.82, "V-R": 0.50}, "sun": True + }, + "Harpalyke|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.70, "V-R": 0.42}, "sun": True + }, + "Kalyke|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.69, "V-R": 0.46}, "sun": True + }, + "Kalyke|33": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.94, "V-R": 0.705, "V-I": 0.890}, "sun": True + }, + "Iocaste|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.86, "V-R": 0.38}, "sun": True + }, + "Iocaste|33": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.63, "V-R": 0.36, "V-I": 0.62}, "sun": True + }, + "Erinome|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.72, "V-R": 0.42}, "sun": True + }, + "Isonoe|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.78, "V-R": 0.53}, "sun": True + }, + "Praxidike|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.71, "V-R": 0.32}, "sun": True + }, + "Praxidike|33": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.77, "V-R": 0.34, "V-I": 0.74}, "sun": True + }, + "Autonoe|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.72, "V-R": 0.51}, "sun": True + }, + "Thyone|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.71, "V-R": 0.45}, "sun": True + }, + "Hermippe|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.73, "V-R": 0.49}, "sun": True + }, + "Callirrhoe|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.81, "V-R": 0.23}, "sun": True + }, + "Eukelade|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.79, "V-R": 0.50}, "sun": True + }, + "Cyllene|30": {"tags": ["solar_system", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.73, "V-R": 0.46}, "sun": True + }, + "Jovian irregulars|30": {"tags": ["featured", "solar_system", "class", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.75, "V-R": 0.44}, "sun": True, "albedo": 0.04 # estimation + }, + "Jovian irregulars i=28°|33": {"tags": ["featured", "solar_system", "class", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.66, "V-R": 0.36}, "sun": True, "albedo": 0.04 # estimation + }, + "Jovian irregulars i=149°|33": {"tags": ["featured", "solar_system", "class", "moon", "jovian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.75, "V-R": 0.41}, "sun": True, "albedo": 0.04 # estimation + }, "Saturn|2": {"tags": ["solar_system", "planet", "saturnian_system"], - "nm": [360, 436, 549, 641, 700, 798, 900], "br": [0.203, 0.339, 0.499, 0.646, 0.568, 0.543, 0.423] - }, + "nm": [360, 436, 549, 641, 700, 798, 900], "br": [0.203, 0.339, 0.499, 0.646, 0.568, 0.543, 0.423] + }, "Saturn|3": {"tags": ["solar_system", "planet", "saturnian_system"], - "nm": [350, 450, 550, 650, 750, 850], "br": [0.445, 0.684, 1.000, 1.144, 1.001, 0.776] - }, + "nm": [350, 450, 550, 650, 750, 850], "br": [0.445, 0.684, 1.000, 1.144, 1.001, 0.776] + }, "Saturn|5": {"tags": ["featured", "solar_system", "planet", "saturnian_system"], "nm": list(range(300, 1000, 5)), "br": [0.25845, 0.25605, 0.24952, 0.23874, 0.23387, 0.22685, 0.22264, 0.21964, 0.21405, 0.21096, 0.20684, 0.20468, 0.20455, 0.20151, 0.20191, @@ -410,55 +412,55 @@ 0.40093, 0.25017, 0.19992, 0.316, 0.37931, 0.22795, 0.05283, 0.04931, 0.05245, 0.11242, 0.27285, 0.39963, 0.40986, 0.47555, 0.51275, 0.53154, 0.54184, 0.54968, 0.52981, 0.50034, 0.50075, 0.43722, 0.27446, 0.22052, 0.24216, 0.22974, 0.13768, 0.10328, 0.12643], "albedo": True - }, + }, "Rings|4": {"tags": ["featured", "solar_system", "ring", "saturnian_system"], "nm": [326, 343, 360, 383, 403, 435, 469, 500, 534, 566, 599, 633, 644.1, 656, 667.9, 679.9, 691.7, 704.7, 716.4, 728.9, 739.8, 751.9, 763.6, 775.6, 786.3, 799, 811.7, 822.4, 837.1, 849.8, 862.5], "br": [0.3132, 0.3528, 0.3933, 0.4455, 0.5112, 0.5886, 0.6966, 0.7686, 0.8604, 0.9000, 0.9234, 0.9612, 1.081513, 1.065072, 1.088894, 1.094878, 1.092790, 1.097008, 1.098860, 1.088170, 1.079328, 1.086258, 1.092842, 1.072758, 1.064449, 1.052381, 1.049213, 1.039174, 1.038871, 1.028878, 1.016596], - "albedo": 0.5 - }, + "albedo": 0.5 + }, "Enceladus|24": {"tags": ["featured", "solar_system", "moon", "saturnian_system", "regular"], "nm": list(range(350, 890, 5)), "br": [0.8816, 0.87372, 0.87059, 0.87494, 0.86546, 0.85415, 0.84686, 0.85811, 0.86617, 0.8733, 0.88373, 0.8831, 0.87806, 0.87006, 0.86713, 0.86532, - 0.86426, 0.87688, 0.88714, 0.88488, 0.89243, 0.89924, 0.90296, 0.90052, 0.90437, 0.91443, 0.91511, 0.91539, 0.92768, 0.92002, 0.91779, 0.9203, - 0.92983, 0.92515, 0.91631, 0.90832, 0.90703, 0.90979, 0.91105, 0.90924, 0.90682, 0.90378, 0.89835, 0.8987, 0.90238, 0.8988, 0.89362, 0.88822, - 0.88804, 0.8853, 0.88142, 0.88293, 0.88704, 0.89007, 0.88439, 0.88528, 0.88548, 0.8797, 0.88141, 0.88532, 0.88866, 0.88715, 0.88978, 0.89855, - 0.89856, 0.8948, 0.88908, 0.88148, 0.87591, 0.87254, 0.87289, 0.87138, 0.86872, 0.86844, 0.86666, 0.86272, 0.85763, 0.85736, 0.85775, 0.8582, - 0.85978, 0.8618, 0.86378, 0.85962, 0.85873, 0.86179, 0.8675, 0.86622, 0.86095, 0.85417, 0.84934, 0.84628, 0.84573, 0.84331, 0.84024, 0.83994, - 0.84243, 0.84372, 0.84021, 0.84098, 0.84359, 0.84824, 0.84469, 0.84304, 0.8458, 0.84796, 0.85031, 0.85254], - "albedo": True - }, + 0.86426, 0.87688, 0.88714, 0.88488, 0.89243, 0.89924, 0.90296, 0.90052, 0.90437, 0.91443, 0.91511, 0.91539, 0.92768, 0.92002, 0.91779, 0.9203, + 0.92983, 0.92515, 0.91631, 0.90832, 0.90703, 0.90979, 0.91105, 0.90924, 0.90682, 0.90378, 0.89835, 0.8987, 0.90238, 0.8988, 0.89362, 0.88822, + 0.88804, 0.8853, 0.88142, 0.88293, 0.88704, 0.89007, 0.88439, 0.88528, 0.88548, 0.8797, 0.88141, 0.88532, 0.88866, 0.88715, 0.88978, 0.89855, + 0.89856, 0.8948, 0.88908, 0.88148, 0.87591, 0.87254, 0.87289, 0.87138, 0.86872, 0.86844, 0.86666, 0.86272, 0.85763, 0.85736, 0.85775, 0.8582, + 0.85978, 0.8618, 0.86378, 0.85962, 0.85873, 0.86179, 0.8675, 0.86622, 0.86095, 0.85417, 0.84934, 0.84628, 0.84573, 0.84331, 0.84024, 0.83994, + 0.84243, 0.84372, 0.84021, 0.84098, 0.84359, 0.84824, 0.84469, 0.84304, 0.8458, 0.84796, 0.85031, 0.85254], + "albedo": True + }, "Tethys|26": {"tags": ["featured", "solar_system", "moon", "saturnian_system", "regular"], "nm": [350, 440, 550, 700, 950], "br": [0.75042, 0.77108, 0.79707, 0.76842, 0.74823], - "albedo": True - }, + "albedo": True + }, "Dione|27": {"tags": ["featured", "solar_system", "moon", "saturnian_system", "regular"], "nm": [350, 440, 550, 700, 950], "br": [0.57582, 0.61407, 0.61977, 0.58411, 0.58268], - "albedo": True - }, + "albedo": True + }, "Rhea|4": {"tags": ["featured", "solar_system", "moon", "saturnian_system", "regular"], "nm": [325, 350, 375, 400, 433, 466, 500, 533, 566, 600, 633, 666, 700, 733, 766, 800, 833, 866], "br": [0.734770, 0.732256, 0.745028, 0.844831, 0.859745, 0.910340, 0.925726, 0.991097, 0.992538, 1.016375, 1.006958, 1.049296, 1.060323, 1.034402, 1.082394, 1.054788, 1.060017, 1.028328], - "albedo": 0.75691 # |24 - }, + "albedo": 0.75691 # |24 + }, "Rhea|24": {"tags": ["solar_system", "moon", "saturnian_system", "regular"], "nm": list(range(450, 895, 5)), "br": [0.80064, 0.79731, 0.82162, 0.79365, 0.83878, 0.81235, 0.85642, 0.80113, 0.8009, 0.79458, 0.78575, 0.77766, 0.77484, 0.78457, 0.76513, 0.76585, - 0.76538, 0.75955, 0.77142, 0.75809, 0.75691, 0.75356, 0.74991, 0.74386, 0.73731, 0.72666, 0.72249, 0.73429, 0.71973, 0.71943, 0.71654, 0.71214, - 0.70716, 0.70683, 0.68759, 0.70336, 0.68807, 0.69018, 0.70024, 0.69185, 0.69975, 0.76765, 0.70116, 0.6901, 0.68615, 0.69095, 0.68876, 0.70732, - 0.65758, 0.6722, 0.67635, 0.66554, 0.67627, 0.68552, 0.64517, 0.63229, 0.62892, 0.64067, 0.65898, 0.64172, 0.64099, 0.62554, 0.69564, 0.54588, - 0.60768, 0.6128, 0.6093, 0.59131, 0.58764, 0.5978, 0.5961, 0.58125, 0.57111, 0.56365, 0.56138, 0.57023, 0.55961, 0.54614, 0.54377, 0.57175, 0.58168, - 0.59506, 0.52898, 0.57511, 0.53865, 0.54182, 0.55485, 0.51589, 0.53527], - "albedo": True - }, + 0.76538, 0.75955, 0.77142, 0.75809, 0.75691, 0.75356, 0.74991, 0.74386, 0.73731, 0.72666, 0.72249, 0.73429, 0.71973, 0.71943, 0.71654, 0.71214, + 0.70716, 0.70683, 0.68759, 0.70336, 0.68807, 0.69018, 0.70024, 0.69185, 0.69975, 0.76765, 0.70116, 0.6901, 0.68615, 0.69095, 0.68876, 0.70732, + 0.65758, 0.6722, 0.67635, 0.66554, 0.67627, 0.68552, 0.64517, 0.63229, 0.62892, 0.64067, 0.65898, 0.64172, 0.64099, 0.62554, 0.69564, 0.54588, + 0.60768, 0.6128, 0.6093, 0.59131, 0.58764, 0.5978, 0.5961, 0.58125, 0.57111, 0.56365, 0.56138, 0.57023, 0.55961, 0.54614, 0.54377, 0.57175, 0.58168, + 0.59506, 0.52898, 0.57511, 0.53865, 0.54182, 0.55485, 0.51589, 0.53527], + "albedo": True + }, "Titan|3": {"tags": ["solar_system", "moon", "saturnian_system", "regular"], - "nm": [350, 450, 550, 650, 750, 850], "br": [0.344, 0.584, 1.000, 1.248, 1.101, 0.879] - }, + "nm": [350, 450, 550, 650, 750, 850], "br": [0.344, 0.584, 1.000, 1.248, 1.101, 0.879] + }, "Titan|5": {"tags": ["featured", "solar_system", "moon", "saturnian_system", "regular"], "nm": list(range(300, 1000, 5)), "br": [0.06505, 0.05856, 0.05638, 0.05807, 0.0603, 0.06186, 0.06338, 0.06517, 0.06666, 0.06874, 0.07017, 0.07212, 0.07408, 0.07608, 0.07853, @@ -470,125 +472,125 @@ 0.23868, 0.21503, 0.20469, 0.21106, 0.19575, 0.19417, 0.20825, 0.22757, 0.26836, 0.29139, 0.30378, 0.30712, 0.24885, 0.19112, 0.2104, 0.22228, 0.18074, 0.14396, 0.13371, 0.15669, 0.16882, 0.12871, 0.08855, 0.08504, 0.08617, 0.10392, 0.13792, 0.16482, 0.16551, 0.18738, 0.21539, 0.24828, 0.27305, 0.27734, 0.22799, 0.19868, 0.19731, 0.16681, 0.12782, 0.11507, 0.11953, 0.11382, 0.09641, 0.08534, 0.08749], - "albedo": True - }, - "Phoebe|30": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.57, "V-R": 0.34}, "sun": True - }, - "Phoebe|33": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.63, "V-R": 0.35, "V-I": 0.64}, "sun": True - }, - "Ymir|31": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.789, "V-R": 0.438, "V-I": 0.884}, "sun": True - }, - "Ymir|33": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.56, "V-R": 0.52, "V-I": 0.96}, "sun": True - }, - "Paaliaq|31": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.86, "V-R": 0.40, "V-I": 0.92}, "sun": True - }, - "Paaliaq|33": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.77, "V-R": 0.48, "V-I": 0.94}, "sun": True - }, - "Tarvos|30": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.71, "V-R": 0.42}, "sun": True - }, - "Tarvos|31": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.78, "V-R": 0.43, "V-I": 0.82}, "sun": True - }, - "Tarvos|33": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.77, "V-R": 0.57, "V-I": 0.88}, "sun": True - }, - "Ijiraq|30": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-R": 1.40}, "sun": True - }, - "Ijiraq|31": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 1.05, "V-R": 0.58, "V-I": 1.09}, "sun": True - }, - "Suttungr|31": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.47, "V-R": 0.65, "V-I": 0.78}, "sun": True - }, - "Kiviuq|31": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.872, "V-R": 0.482, "V-I": 0.98}, "sun": True - }, - "Kiviuq|33": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.87, "V-R": 0.66, "V-I": 0.97}, "sun": True - }, - "Mundilfari|31": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.58, "V-R": 0.41, "V-I": 0.52}, "sun": True - }, - "Albiorix|30": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.80, "V-R": 0.50}, "sun": True - }, - "Albiorix|31": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.879, "V-R": 0.510, "V-I": 0.902}, "sun": True - }, - "Albiorix|33": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.935, "V-R": 0.482, "V-I": 0.916}, "sun": True - }, - "Skathi|31": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.72, "V-R": 0.37, "V-I": 0.88}, "sun": True - }, - "Erriapus|30": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.78, "V-R": 0.41}, "sun": True - }, - "Erriapus|31": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.71, "V-R": 0.40, "V-I": 0.86}, "sun": True - }, - "Erriapus|33": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.83, "V-R": 0.49, "V-I": 0.61}, "sun": True - }, - "Siarnaq|31": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.875, "V-R": 0.485, "V-I": 1.025}, "sun": True - }, - "Siarnaq|33": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.80, "V-R": 0.52, "V-I": 0.96}, "sun": True - }, - "Thrymr|31": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.41, "V-R": 0.59, "V-I": 0.86}, "sun": True - }, - "Narvi|30": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-R": 1.29}, "sun": True - }, - "Bebhionn|30": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.61, "V-R": 0.51}, "sun": True - }, - "Aegir|30": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-R": 1.30}, "sun": True - }, - "Bergelmir|30": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-R": 1.10}, "sun": True - }, - "Bestla|30": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-R": 1.32}, "sun": True - }, - "Fornjot|30": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-R": 1.40}, "sun": True - }, - "Hyrrokkin|30": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-R": 1.23}, "sun": True - }, - "Tarqeq|30": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-R": 1.37}, "sun": True - }, - "S/2007 S 2|30": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-R": 1.37}, "sun": True - }, - "Saturnian irregulars|30": {"tags": ["featured", "solar_system", "class", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.69, "V-R": 0.44}, "sun": True, "albedo": 0.04 # estimation - }, - "Saturnian irregulars i=34°|33": {"tags": ["featured", "solar_system", "class", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.91, "V-R": 0.48}, "sun": True, "albedo": 0.04 # estimation - }, - "Saturnian irregulars i=46°|33": {"tags": ["featured", "solar_system", "class", "moon", "saturnian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.79, "V-R": 0.51}, "sun": True, "albedo": 0.04 # estimation - }, + "albedo": True + }, + "Phoebe|30": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.57, "V-R": 0.34}, "sun": True + }, + "Phoebe|33": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.63, "V-R": 0.35, "V-I": 0.64}, "sun": True + }, + "Ymir|31": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.789, "V-R": 0.438, "V-I": 0.884}, "sun": True + }, + "Ymir|33": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.56, "V-R": 0.52, "V-I": 0.96}, "sun": True + }, + "Paaliaq|31": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.86, "V-R": 0.40, "V-I": 0.92}, "sun": True + }, + "Paaliaq|33": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.77, "V-R": 0.48, "V-I": 0.94}, "sun": True + }, + "Tarvos|30": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.71, "V-R": 0.42}, "sun": True + }, + "Tarvos|31": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.78, "V-R": 0.43, "V-I": 0.82}, "sun": True + }, + "Tarvos|33": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.77, "V-R": 0.57, "V-I": 0.88}, "sun": True + }, + "Ijiraq|30": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-R": 1.40}, "sun": True + }, + "Ijiraq|31": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 1.05, "V-R": 0.58, "V-I": 1.09}, "sun": True + }, + "Suttungr|31": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.47, "V-R": 0.65, "V-I": 0.78}, "sun": True + }, + "Kiviuq|31": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.872, "V-R": 0.482, "V-I": 0.98}, "sun": True + }, + "Kiviuq|33": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.87, "V-R": 0.66, "V-I": 0.97}, "sun": True + }, + "Mundilfari|31": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.58, "V-R": 0.41, "V-I": 0.52}, "sun": True + }, + "Albiorix|30": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.80, "V-R": 0.50}, "sun": True + }, + "Albiorix|31": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.879, "V-R": 0.510, "V-I": 0.902}, "sun": True + }, + "Albiorix|33": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.935, "V-R": 0.482, "V-I": 0.916}, "sun": True + }, + "Skathi|31": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.72, "V-R": 0.37, "V-I": 0.88}, "sun": True + }, + "Erriapus|30": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.78, "V-R": 0.41}, "sun": True + }, + "Erriapus|31": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.71, "V-R": 0.40, "V-I": 0.86}, "sun": True + }, + "Erriapus|33": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.83, "V-R": 0.49, "V-I": 0.61}, "sun": True + }, + "Siarnaq|31": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.875, "V-R": 0.485, "V-I": 1.025}, "sun": True + }, + "Siarnaq|33": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.80, "V-R": 0.52, "V-I": 0.96}, "sun": True + }, + "Thrymr|31": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.41, "V-R": 0.59, "V-I": 0.86}, "sun": True + }, + "Narvi|30": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-R": 1.29}, "sun": True + }, + "Bebhionn|30": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.61, "V-R": 0.51}, "sun": True + }, + "Aegir|30": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-R": 1.30}, "sun": True + }, + "Bergelmir|30": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-R": 1.10}, "sun": True + }, + "Bestla|30": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-R": 1.32}, "sun": True + }, + "Fornjot|30": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-R": 1.40}, "sun": True + }, + "Hyrrokkin|30": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-R": 1.23}, "sun": True + }, + "Tarqeq|30": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-R": 1.37}, "sun": True + }, + "S/2007 S 2|30": {"tags": ["solar_system", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-R": 1.37}, "sun": True + }, + "Saturnian irregulars|30": {"tags": ["featured", "solar_system", "class", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.69, "V-R": 0.44}, "sun": True, "albedo": 0.04 # estimation + }, + "Saturnian irregulars i=34°|33": {"tags": ["featured", "solar_system", "class", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.91, "V-R": 0.48}, "sun": True, "albedo": 0.04 # estimation + }, + "Saturnian irregulars i=46°|33": {"tags": ["featured", "solar_system", "class", "moon", "saturnian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.79, "V-R": 0.51}, "sun": True, "albedo": 0.04 # estimation + }, "Uranus|2": {"tags": ["solar_system", "planet", "uranian_system"], - "nm": [360, 436, 549, 641, 700, 798, 900], "br": [0.502, 0.561, 0.488, 0.264, 0.202, 0.089, 0.079] - }, + "nm": [360, 436, 549, 641, 700, 798, 900], "br": [0.502, 0.561, 0.488, 0.264, 0.202, 0.089, 0.079] + }, "Uranus|3": {"tags": ["solar_system", "planet", "uranian_system"], - "nm": [350, 450, 550, 650, 750, 850], "br": [0.984, 1.067, 1.000, 0.647, 0.292, 0.148] - }, + "nm": [350, 450, 550, 650, 750, 850], "br": [0.984, 1.067, 1.000, 0.647, 0.292, 0.148] + }, "Uranus|5": {"tags": ["featured", "solar_system", "planet", "uranian_system"], "nm": list(range(300, 1000, 5)), "br": [0.53, 0.52915, 0.53383, 0.52396, 0.52481, 0.51762, 0.51994, 0.53179, 0.51993, 0.52475, 0.51689, 0.51507, 0.52749, 0.51285, 0.52179, 0.53988, @@ -601,46 +603,46 @@ 0.02329, 0.02965, 0.03571, 0.02553, 0.01525, 0.01617, 0.01632, 0.01784, 0.02397, 0.03561, 0.03616, 0.06612, 0.11919, 0.19142, 0.2696, 0.26834, 0.15181, 0.09542, 0.08876, 0.04618, 0.01896, 0.01611, 0.01781, 0.01818, 0.01391, 0.01367, 0.01475], "albedo": True - }, - "Miranda|16": {"tags": ["featured", "solar_system", "moon", "uranian_system", "regular"], - "nm": [250, 410, 480, 560, 750, 910], "br": [0.51, 0.49, 0.48, 0.47, 0.46, 0.45], "albedo": True # spherical is 0.34 - }, - "Ariel|16": {"tags": ["featured", "solar_system", "moon", "uranian_system", "regular"], - "nm": [250, 410, 480, 560, 750, 910], "br": [0.50, 0.51, 0.51, 0.51, 0.51, 0.52], "albedo": True # spherical is 0.37 - }, - "Umbriel|16": {"tags": ["featured", "solar_system", "moon", "uranian_system", "regular"], - "nm": [250, 410, 480, 560, 750, 910], "br": [0.25, 0.25, 0.25, 0.25, 0.26, 0.26], "albedo": True # spherical is 0.19 - }, - "Titania|16": {"tags": ["featured", "solar_system", "moon", "uranian_system", "regular"], - "nm": [250, 410, 480, 560, 750, 910], "br": [0.30, 0.32, 0.33, 0.34, 0.36, 0.37], "albedo": True # spherical is 0.27 - }, - "Oberon|16": {"tags": ["featured", "solar_system", "moon", "uranian_system", "regular"], - "nm": [250, 410, 480, 560, 750, 910], "br": [0.27, 0.29, 0.30, 0.31, 0.33, 0.35], "albedo": True # spherical is 0.23 - }, - "Caliban|30": {"tags": ["solar_system", "moon", "uranian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.81, "V-R": 0.47}, "sun": True - }, - "Sycorax|30": {"tags": ["solar_system", "moon", "uranian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.81, "V-R": 0.54}, "sun": True - }, - "Prospero|30": {"tags": ["solar_system", "moon", "uranian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.81, "V-R": 0.51}, "sun": True - }, - "Setebos|30": {"tags": ["solar_system", "moon", "uranian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.78, "V-R": 0.49}, "sun": True - }, - "Stephano|30": {"tags": ["solar_system", "moon", "uranian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.97, "V-R": 0.66}, "sun": True - }, - "Uranian irregulars|30": {"tags": ["featured", "solar_system", "class", "moon", "uranian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.84, "V-R": 0.53}, "sun": True, "albedo": 0.04 # estimation - }, + }, + "Miranda|16": {"tags": ["featured", "solar_system", "moon", "uranian_system", "regular"], + "nm": [250, 410, 480, 560, 750, 910], "br": [0.51, 0.49, 0.48, 0.47, 0.46, 0.45], "albedo": True # spherical is 0.34 + }, + "Ariel|16": {"tags": ["featured", "solar_system", "moon", "uranian_system", "regular"], + "nm": [250, 410, 480, 560, 750, 910], "br": [0.50, 0.51, 0.51, 0.51, 0.51, 0.52], "albedo": True # spherical is 0.37 + }, + "Umbriel|16": {"tags": ["featured", "solar_system", "moon", "uranian_system", "regular"], + "nm": [250, 410, 480, 560, 750, 910], "br": [0.25, 0.25, 0.25, 0.25, 0.26, 0.26], "albedo": True # spherical is 0.19 + }, + "Titania|16": {"tags": ["featured", "solar_system", "moon", "uranian_system", "regular"], + "nm": [250, 410, 480, 560, 750, 910], "br": [0.30, 0.32, 0.33, 0.34, 0.36, 0.37], "albedo": True # spherical is 0.27 + }, + "Oberon|16": {"tags": ["featured", "solar_system", "moon", "uranian_system", "regular"], + "nm": [250, 410, 480, 560, 750, 910], "br": [0.27, 0.29, 0.30, 0.31, 0.33, 0.35], "albedo": True # spherical is 0.23 + }, + "Caliban|30": {"tags": ["solar_system", "moon", "uranian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.81, "V-R": 0.47}, "sun": True + }, + "Sycorax|30": {"tags": ["solar_system", "moon", "uranian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.81, "V-R": 0.54}, "sun": True + }, + "Prospero|30": {"tags": ["solar_system", "moon", "uranian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.81, "V-R": 0.51}, "sun": True + }, + "Setebos|30": {"tags": ["solar_system", "moon", "uranian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.78, "V-R": 0.49}, "sun": True + }, + "Stephano|30": {"tags": ["solar_system", "moon", "uranian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.97, "V-R": 0.66}, "sun": True + }, + "Uranian irregulars|30": {"tags": ["featured", "solar_system", "class", "moon", "uranian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.84, "V-R": 0.53}, "sun": True, "albedo": 0.04 # estimation + }, "Neptune|2": {"tags": ["solar_system", "planet"], - "nm": [360, 436, 549, 641, 700, 798, 900], "br": [0.578, 0.562, 0.442, 0.226, 0.181, 0.072, 0.067] - }, + "nm": [360, 436, 549, 641, 700, 798, 900], "br": [0.578, 0.562, 0.442, 0.226, 0.181, 0.072, 0.067] + }, "Neptune|3": {"tags": ["solar_system", "planet"], - "nm": [350, 450, 550, 650, 750, 850], "br": [1.252, 1.235, 1.000, 0.555, 0.237, 0.132] - }, + "nm": [350, 450, 550, 650, 750, 850], "br": [1.252, 1.235, 1.000, 0.555, 0.237, 0.132] + }, "Neptune|5": {"tags": ["featured", "solar_system", "planet", "neptunian_system"], "nm": list(range(300, 1000, 5)), "br": [0.55168, 0.57462, 0.5749, 0.56581, 0.56727, 0.55883, 0.56295, 0.5772, 0.56453, 0.5712, 0.56445, 0.56291, 0.57946, 0.5619, 0.57126, 0.59178, @@ -653,802 +655,802 @@ 0.03146, 0.02746, 0.03408, 0.03774, 0.0298, 0.01621, 0.01774, 0.01806, 0.02114, 0.02931, 0.03572, 0.03514, 0.04545, 0.06665, 0.10763, 0.16505, 0.16553, 0.08372, 0.05606, 0.05255, 0.03725, 0.02468, 0.02116, 0.02346, 0.02395, 0.01784, 0.01751, 0.01883], "albedo": True - }, + }, "Triton|20": {"tags": ["featured", "solar_system", "moon", "neptunian_system"], "nm": list(range(300, 1000, 100)), "br": [0.57, 0.67, 0.75, 0.77, 0.82, 0.81, 0.79], "albedo": True # Geom. ! - }, - "Halimede|30": {"tags": ["solar_system", "moon", "neptunian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.89, "V-R": 0.56}, "sun": True - }, - "Nereid|30": {"tags": ["solar_system", "moon", "neptunian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.67, "V-R": 0.38}, "sun": True - }, - "Nereid|32": {"tags": ["featured", "solar_system", "moon", "neptunian_system", "irregular"], - "filters": "Landolt", "bands": ["U", "B", "V", "R", "I"], "br": [0.90, 0.93, 1, 1.13, 0.99], "albedo": 0.24 # https://arxiv.org/abs/1601.02395 - }, - "Neptunian irregulars|30": {"tags": ["featured", "solar_system", "class", "moon", "neptunian_system", "irregular"], - "filters": "Landolt", "indices": {"B-V": 0.77, "V-R": 0.50}, "sun": True, "albedo": 0.04 # estimation - }, + }, + "Halimede|30": {"tags": ["solar_system", "moon", "neptunian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.89, "V-R": 0.56}, "sun": True + }, + "Nereid|30": {"tags": ["solar_system", "moon", "neptunian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.67, "V-R": 0.38}, "sun": True + }, + "Nereid|32": {"tags": ["featured", "solar_system", "moon", "neptunian_system", "irregular"], + "filters": "Landolt", "bands": ["U", "B", "V", "R", "I"], "br": [0.90, 0.93, 1, 1.13, 0.99], "albedo": 0.24 # https://arxiv.org/abs/1601.02395 + }, + "Neptunian irregulars|30": {"tags": ["featured", "solar_system", "class", "moon", "neptunian_system", "irregular"], + "filters": "Landolt", "indices": {"B-V": 0.77, "V-R": 0.50}, "sun": True, "albedo": 0.04 # estimation + }, "C/1995O1-HB|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.810, "V-R": 0.390}, "sun": True - }, - "C/1999J2|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.687, "V-R": 0.426, "R-I": 0.403}, "sun": True - }, - "C/2001G1|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.752, "V-R": 0.430, "R-I": 0.433}, "sun": True - }, - "C/2001M10|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.963, "V-R": 0.350, "R-I": 0.520}, "sun": True - }, - "C/2002CE10-LINEA|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.770, "V-R": 0.542, "R-I": 0.504}, "sun": True - }, - "C/2002VQ94-LINEA|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.850, "V-R": 0.500, "R-I": 0.480}, "sun": True - }, - "C/2003A2-Gleason|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.610, "V-R": 0.470, "R-I": 0.460}, "sun": True - }, - "C/2004D1-NEAT|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.820, "V-R": 0.430, "R-I": 0.510}, "sun": True - }, - "C/2006S3-Loneos|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.740, "V-R": 0.580}, "sun": True - }, - "C/2007D1-LINEAR|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.750, "V-R": 0.440, "R-I": 0.410}, "sun": True - }, - "C/2008S3-Boattin|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.769, "V-R": 0.448, "R-I": 0.364}, "sun": True - }, - "C/2009T1-McNaugh|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.640, "V-R": 0.530, "R-I": 0.450}, "sun": True - }, - "C/2010D4-WISE|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.740, "V-R": 0.460}, "sun": True - }, - "C/2010DG56-WISE|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.770, "V-R": 0.370}, "sun": True - }, - "C/2010L3-Catalin|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.750, "V-R": 0.420, "R-I": 0.410}, "sun": True - }, - "C/2010U3-Boattin|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.778, "V-R": 0.520, "R-I": 0.320}, "sun": True - }, - "C/2011P2-PANSTAR|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.919, "V-R": 0.323}, "sun": True - }, - "C/2011Q1-PANSTAR|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.819, "V-R": 0.489}, "sun": True - }, - "C/2012A1-PANSTAR|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.740, "V-R": 0.450}, "sun": True - }, - "C/2012E1-Hill|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.790, "V-R": 0.400}, "sun": True - }, - "C/2012LP26-Palom|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.854, "V-R": 0.516}, "sun": True - }, - "C/2012Q1-Kowalsk|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.907, "V-R": 0.537}, "sun": True - }, - "C/2013C2|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.887, "V-R": 0.533}, "sun": True - }, - "C/2013E1-McNaugh|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.750, "V-R": 0.480}, "sun": True - }, - "C/2013H2-Boattin|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.770, "V-R": 0.490}, "sun": True - }, - "C/2013P3-Palomar|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.920, "V-R": 0.450}, "sun": True - }, - "C/2013P4|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.827, "V-R": 0.487}, "sun": True - }, - "C/2014AA52-CATAL|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.770, "V-R": 0.410}, "sun": True - }, - "C/2014B1-Schwarz|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.850, "V-R": 0.580}, "sun": True - }, - "C/2014R1-Borisov|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.810, "V-R": 0.460}, "sun": True - }, - "C/2014W6-Catalin|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.810, "V-R": 0.450}, "sun": True - }, - "C/2014XB8-PANSTA|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.790, "V-R": 0.440}, "sun": True - }, - "C/2015B1-PANSTAR|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], - "filters": "Landolt", "indices": {"B-V": 0.780, "V-R": 0.450}, "sun": True - }, - "P/2011S1-Gibbs|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], - "filters": "Landolt", "indices": {"B-V": 0.960, "V-R": 0.590}, "sun": True - }, - "1P/Halley|9": {"tags": ["featured", "solar_system", "minor_body", "comet", "comet-sp"], - "filters": "Landolt", "indices": {"B-V": 0.720, "V-R": 0.410, "R-I": 0.390}, "sun": True, "albedo": 0.04 - }, - "2P/Encke|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], - "filters": "Landolt", "indices": {"B-V": 0.780, "V-R": 0.424, "R-I": 0.408}, "sun": True - }, - "6P/dArrest|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], - "filters": "Landolt", "indices": {"B-V": 0.770, "V-R": 0.563, "R-I": 0.450}, "sun": True - }, - "8P/Tuttle|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], - "filters": "Landolt", "indices": {"B-V": 0.890, "V-R": 0.530, "R-I": 0.530}, "sun": True - }, - "10P/Tempel2|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], - "filters": "Landolt", "indices": {"B-V": 0.800, "V-R": 0.521, "R-I": 0.520}, "sun": True - }, - "21P/GZ|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], - "filters": "Landolt", "indices": {"B-V": 0.800, "V-R": 0.500}, "sun": True - }, - "22P/Kopff|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], - "filters": "Landolt", "indices": {"B-V": 0.795, "V-R": 0.519, "R-I": 0.450}, "sun": True - }, - "39P/Oterma|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], - "filters": "Landolt", "indices": {"B-V": 0.890, "V-R": 0.386, "R-I": 0.412}, "sun": True - }, - "45P/HMP|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], - "filters": "Landolt", "indices": {"B-V": 1.080, "V-R": 0.440, "R-I": 0.210}, "sun": True - }, - "47P/AJ|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], - "filters": "Landolt", "indices": {"B-V": 0.780, "V-R": 0.400}, "sun": True - }, - "49P/AR|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], - "filters": "Landolt", "indices": {"B-V": 0.770, "V-R": 0.471, "R-I": 0.444}, "sun": True - }, - "55P/TT|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], - "filters": "Landolt", "indices": {"B-V": 0.750, "V-R": 0.510, "R-I": 0.420}, "sun": True - }, - "86P/Wild3|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], - "filters": "Landolt", "indices": {"B-V": 1.580, "V-R": 0.555}, "sun": True - }, - "106P/Schuster|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], - "filters": "Landolt", "indices": {"B-V": 1.010, "V-R": 0.520, "R-I": 0.450}, "sun": True - }, - "107P/WH|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], - "filters": "Landolt", "indices": {"B-V": 0.674, "V-R": 0.361}, "sun": True - }, - "114P/WS|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], - "filters": "Landolt", "indices": {"B-V": 0.850, "V-R": 0.460, "R-I": 0.540}, "sun": True - }, - "143P/KM|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], - "filters": "Landolt", "indices": {"B-V": 0.820, "V-R": 0.580, "R-I": 0.560}, "sun": True - }, - "166P/2001T4|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.870, "V-R": 0.695, "R-I": 0.735}, "sun": True - }, - "166P/NEAT|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], - "filters": "Landolt", "indices": {"B-V": 0.890, "V-R": 0.560}, "sun": True - }, - "167P/CINEOS|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], - "filters": "Landolt", "indices": {"B-V": 0.758, "V-R": 0.516, "R-I": 0.504}, "sun": True - }, - "1994 EV3|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 1.065, "V-R": 0.588, "R-I": 0.800}, "sun": True - }, - "1994 TA|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 1.261, "V-R": 0.672, "R-I": 0.740}, "sun": True - }, - "1995 HM5|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 0.649, "V-R": 0.460, "R-I": 0.428}, "sun": True - }, - "1996 RQ20|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.935, "V-R": 0.558, "R-I": 0.591}, "sun": True - }, - "1996 RR20|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 1.143, "V-R": 0.730, "R-I": 0.628}, "sun": True - }, - "1996 TK66|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 0.993, "V-R": 0.680, "R-I": 0.551}, "sun": True - }, - "1996 TS66|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 1.028, "V-R": 0.672, "R-I": 0.637}, "sun": True - }, - "1997 QH4|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 1.088, "V-R": 0.641, "R-I": 0.631}, "sun": True - }, - "1998 FS144|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.950, "V-R": 0.588, "R-I": 0.510}, "sun": True - }, - "1998 KS65|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 1.090, "V-R": 0.640}, "sun": True - }, - "1998 UR43|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 0.784, "V-R": 0.583, "R-I": 0.354}, "sun": True - }, - "1998 WS31|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 0.726, "V-R": 0.606, "R-I": 0.439}, "sun": True - }, - "1998 WU24|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.780, "V-R": 0.530, "R-I": 0.460}, "sun": True - }, - "1998 WV24|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 0.770, "V-R": 0.502, "R-I": 0.450}, "sun": True - }, - "1998 WV31|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 0.790, "V-R": 0.521, "R-I": 0.481}, "sun": True - }, - "1998 WX24|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 1.090, "V-R": 0.727, "R-I": 0.500}, "sun": True - }, - "1998 WZ31|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 0.727, "V-R": 0.489, "R-I": 0.339}, "sun": True - }, - "1999 CB119|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 1.212, "V-R": 0.714, "R-I": 0.645}, "sun": True - }, - "1999 CX131|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], - "filters": "Landolt", "indices": {"B-V": 0.918, "V-R": 0.664, "R-I": 0.434}, "sun": True - }, - "1999 HS11|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 1.121, "V-R": 0.698, "R-I": 0.600}, "sun": True - }, - "1999 HV11|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 1.110, "V-R": 0.590}, "sun": True - }, - "1999 LE31|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.748, "V-R": 0.467, "R-I": 0.521}, "sun": True - }, - "1999 OJ4|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 1.098, "V-R": 0.668, "R-I": 0.549}, "sun": True - }, - "1999 RX214|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 1.054, "V-R": 0.593, "R-I": 0.530}, "sun": True - }, - "1999 TR11|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 1.020, "V-R": 0.750, "R-I": 0.650}, "sun": True - }, - "2000 CL104|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 1.223, "V-R": 0.600, "R-I": 0.612}, "sun": True - }, - "2000 FS53|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 1.060, "V-R": 0.710}, "sun": True - }, - "2000 HE46|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.870, "V-R": 0.550, "R-I": 0.400}, "sun": True - }, - "2000 KK4|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.910, "V-R": 0.580, "R-I": 0.640}, "sun": True - }, - "2001 FM194|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], - "filters": "Landolt", "indices": {"B-V": 0.760, "V-R": 0.440}, "sun": True - }, - "2001 KA77|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 1.104, "V-R": 0.704, "R-I": 0.716}, "sun": True - }, - "2001 KD77|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 1.123, "V-R": 0.624, "R-I": 0.565}, "sun": True - }, - "2001 KG77|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.810, "V-R": 0.440}, "sun": True - }, - "2001 QC298|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.750, "V-R": 0.490, "R-I": 0.480}, "sun": True - }, - "2001 QR322|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], - "filters": "Landolt", "indices": {"B-V": 0.800, "V-R": 0.460, "R-I": 0.360}, "sun": True - }, - "2001 QX322|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], - "filters": "Landolt", "indices": {"B-V": 0.914, "V-R": 0.562}, "sun": True - }, - "2001 XZ255|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 1.224, "V-R": 0.709}, "sun": True - }, - "2002 GH32|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.990, "V-R": 0.570, "R-I": 0.590}, "sun": True - }, - "2002 PQ152|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 1.130, "V-R": 0.720}, "sun": True - }, - "2002 XV93|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 0.720, "V-R": 0.375}, "sun": True - }, - "2003 FZ129|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], - "filters": "Landolt", "indices": {"B-V": 0.840, "V-R": 0.480, "R-I": 0.460}, "sun": True - }, - "2003 QA92|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 1.040, "V-R": 0.630}, "sun": True - }, - "2003 QK91|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], - "filters": "Landolt", "indices": {"B-V": 0.870, "V-R": 0.500, "R-I": 0.470}, "sun": True - }, - "2003 QQ91|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.670, "V-R": 0.510}, "sun": True - }, - "2003 UY291|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.880, "V-R": 0.510, "R-I": 0.670}, "sun": True - }, - "2003 WN188|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.780, "V-R": 0.480, "R-I": 0.500}, "sun": True - }, - "2004 DA62|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.850, "V-R": 0.520, "R-I": 0.550}, "sun": True - }, - "2004 OJ14|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], - "filters": "Landolt", "indices": {"B-V": 0.900, "V-R": 0.520, "R-I": 0.540}, "sun": True - }, - "2004 XR190|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], - "filters": "Landolt", "indices": {"B-V": 0.790, "V-R": 0.450, "R-I": 0.520}, "sun": True - }, - "2005 TN53|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.820, "V-R": 0.470, "R-I": 0.470}, "sun": True - }, - "2006 RJ103|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.820, "V-R": 0.470, "R-I": 0.270}, "sun": True - }, - "2007 VH305|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.690, "V-R": 0.491, "R-I": 0.480}, "sun": True - }, - "2009 YG19|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 1.000, "V-R": 0.610}, "sun": True - }, - "2010 BK118|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.794, "V-R": 0.525, "R-I": 0.480}, "sun": True - }, - "2010 BL4|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.860, "V-R": 0.390, "R-I": 0.470}, "sun": True - }, - "2010 OM101|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.795, "V-R": 0.588, "R-I": 0.360}, "sun": True - }, - "2010 OR1|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.781, "V-R": 0.517, "R-I": 0.447}, "sun": True - }, - "2010 TS191|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.760, "V-R": 0.390}, "sun": True - }, - "2010 TT191|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.750, "V-R": 0.470}, "sun": True - }, - "2010 WG9|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.781, "V-R": 0.492, "R-I": 0.458}, "sun": True - }, - "2011 HM102|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.720, "V-R": 0.410, "R-I": 0.520}, "sun": True - }, - "2012 DR30|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.647, "V-R": 0.563, "R-I": 0.422}, "sun": True - }, - "2012 VP113|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], - "filters": "Landolt", "indices": {"B-V": 0.920, "V-R": 0.520, "R-I": 0.530}, "sun": True - }, - "2013 AZ60|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.820, "V-R": 0.540}, "sun": True - }, - "2013 BL76|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.920, "V-R": 0.450}, "sun": True - }, - "2013 BO16|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 1.140, "V-R": 0.650}, "sun": True - }, - "2013 CX217|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.850, "V-R": 0.280}, "sun": True - }, - "2013 CY197|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.880, "V-R": 0.510, "R-I": 0.610}, "sun": True - }, - "2013 KY18|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.760, "V-R": 0.360}, "sun": True - }, - "2013 LD16|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.860, "V-R": 0.440}, "sun": True - }, - "2013 NS11|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.740, "V-R": 0.560}, "sun": True - }, - "2013 TZ158|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.790, "V-R": 0.536, "R-I": 0.497}, "sun": True - }, - "2013 YG48|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.800, "V-R": 0.515}, "sun": True - }, - "2014 CW14|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.870, "V-R": 0.510}, "sun": True - }, - "2014 QO441|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.750, "V-R": 0.470}, "sun": True - }, - "(1) Ceres|29": {"tags": ["featured", "solar_system", "minor_body", "dwarf_planet", "asteroid", "main_belt"], - "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, - 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, - 552.5, 555, 557.5, 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, - 612.5, 615, 617.5, 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 657.5, 660, 662.5, 665, 667.5, 670, - 672.5, 675, 677.5, 680, 682.5, 685, 687.5, 690, 692.5, 695, 697.5, 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, - 732.5, 735, 737.5, 740, 742.5, 745, 747.5, 750, 752.5, 755, 770, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, 800, 802.5, - 805, 807.5, 810, 812.5, 815, 817.5, 820, 822.5, 825, 827.5, 830, 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, 860, 862.5, - 865, 867.5, 870, 872.5, 875, 877.5, 880, 882.5, 885, 887.5, 890, 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, 920, 922.5, - 925], - "br": [0.9004, 0.9186, 0.9308, 0.9394, 0.9355, 0.9350, 0.9231, 0.9397, 0.9569, 0.9479, 0.9497, 0.9534, 0.9556, 0.9605, 0.9659, 0.9591, 0.9570, - 0.9653, 0.9648, 0.9591, 0.9629, 0.9758, 0.9859, 0.9652, 0.9753, 0.9759, 0.9752, 0.9850, 0.9910, 0.9838, 0.9794, 0.9875, 0.9868, 0.9919, 0.9973, - 1.0059, 0.9872, 0.9965, 0.9983, 1.0047, 0.9888, 0.9978, 0.9939, 0.9957, 1.0060, 0.9981, 0.9975, 1.0025, 1.0024, 1.0047, 1.0015, 1.0086, 1.0104, - 1.0038, 1.0074, 1.0077, 1.0095, 1.0039, 1.0001, 1.0043, 1.0045, 0.9990, 1.0039, 1.0089, 1.0146, 0.9989, 1.0017, 1.0057, 1.0079, 1.0063, 1.0064, - 1.0075, 1.0101, 1.0134, 1.0157, 1.0126, 1.0056, 1.0143, 1.0134, 1.0120, 1.0106, 1.0129, 1.0123, 1.0113, 1.0142, 1.0139, 1.0122, 1.0139, 1.0129, - 1.0148, 1.0227, 1.0092, 1.0091, 1.0115, 1.0117, 1.0154, 1.0157, 1.0153, 1.0152, 1.0147, 1.0158, 1.0217, 1.0266, 1.0131, 1.0106, 1.0088, 1.0162, - 1.0186, 1.0189, 1.0177, 1.0188, 1.0166, 1.0179, 1.0215, 1.0288, 1.0274, 1.0248, 1.0172, 1.0251, 1.0218, 1.0198, 1.0192, 1.0196, 1.0203, 1.0198, - 1.0183, 1.0161, 1.0180, 1.0229, 1.0143, 1.0132, 1.0134, 1.0168, 1.0181, 1.0185, 1.0194, 1.0170, 1.0173, 1.0232, 1.0186, 1.0158, 1.0183, 1.0176, - 1.0193, 1.0173, 1.0193, 1.0223, 1.0229, 1.0239, 1.0278, 1.0175, 1.0149, 1.0184, 1.0147, 1.0184, 1.0213, 1.0120, 1.0067, 1.0142, 1.0167, 1.0119, - 1.0162, 1.0243, 1.0127, 1.0124, 1.0103, 1.0174, 1.0181, 1.0198, 1.0166, 1.0123, 1.0177, 1.0175, 1.0119, 1.0165, 1.0140, 1.0092, 1.0129, 1.0148, - 1.0211, 1.0244, 1.0208, 1.0103, 1.0149, 1.0207, 1.0197, 1.0182, 1.0212, 1.0178, 1.0225, 1.0236, 1.0201], + "filters": "Landolt", "indices": {"B-V": 0.810, "V-R": 0.390}, "sun": True + }, + "C/1999J2|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], + "filters": "Landolt", "indices": {"B-V": 0.687, "V-R": 0.426, "R-I": 0.403}, "sun": True + }, + "C/2001G1|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], + "filters": "Landolt", "indices": {"B-V": 0.752, "V-R": 0.430, "R-I": 0.433}, "sun": True + }, + "C/2001M10|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.963, "V-R": 0.350, "R-I": 0.520}, "sun": True + }, + "C/2002CE10-LINEA|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], + "filters": "Landolt", "indices": {"B-V": 0.770, "V-R": 0.542, "R-I": 0.504}, "sun": True + }, + "C/2002VQ94-LINEA|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], + "filters": "Landolt", "indices": {"B-V": 0.850, "V-R": 0.500, "R-I": 0.480}, "sun": True + }, + "C/2003A2-Gleason|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], + "filters": "Landolt", "indices": {"B-V": 0.610, "V-R": 0.470, "R-I": 0.460}, "sun": True + }, + "C/2004D1-NEAT|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], + "filters": "Landolt", "indices": {"B-V": 0.820, "V-R": 0.430, "R-I": 0.510}, "sun": True + }, + "C/2006S3-Loneos|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], + "filters": "Landolt", "indices": {"B-V": 0.740, "V-R": 0.580}, "sun": True + }, + "C/2007D1-LINEAR|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], + "filters": "Landolt", "indices": {"B-V": 0.750, "V-R": 0.440, "R-I": 0.410}, "sun": True + }, + "C/2008S3-Boattin|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], + "filters": "Landolt", "indices": {"B-V": 0.769, "V-R": 0.448, "R-I": 0.364}, "sun": True + }, + "C/2009T1-McNaugh|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], + "filters": "Landolt", "indices": {"B-V": 0.640, "V-R": 0.530, "R-I": 0.450}, "sun": True + }, + "C/2010D4-WISE|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], + "filters": "Landolt", "indices": {"B-V": 0.740, "V-R": 0.460}, "sun": True + }, + "C/2010DG56-WISE|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], + "filters": "Landolt", "indices": {"B-V": 0.770, "V-R": 0.370}, "sun": True + }, + "C/2010L3-Catalin|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], + "filters": "Landolt", "indices": {"B-V": 0.750, "V-R": 0.420, "R-I": 0.410}, "sun": True + }, + "C/2010U3-Boattin|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], + "filters": "Landolt", "indices": {"B-V": 0.778, "V-R": 0.520, "R-I": 0.320}, "sun": True + }, + "C/2011P2-PANSTAR|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], + "filters": "Landolt", "indices": {"B-V": 0.919, "V-R": 0.323}, "sun": True + }, + "C/2011Q1-PANSTAR|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], + "filters": "Landolt", "indices": {"B-V": 0.819, "V-R": 0.489}, "sun": True + }, + "C/2012A1-PANSTAR|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], + "filters": "Landolt", "indices": {"B-V": 0.740, "V-R": 0.450}, "sun": True + }, + "C/2012E1-Hill|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], + "filters": "Landolt", "indices": {"B-V": 0.790, "V-R": 0.400}, "sun": True + }, + "C/2012LP26-Palom|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], + "filters": "Landolt", "indices": {"B-V": 0.854, "V-R": 0.516}, "sun": True + }, + "C/2012Q1-Kowalsk|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], + "filters": "Landolt", "indices": {"B-V": 0.907, "V-R": 0.537}, "sun": True + }, + "C/2013C2|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], + "filters": "Landolt", "indices": {"B-V": 0.887, "V-R": 0.533}, "sun": True + }, + "C/2013E1-McNaugh|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], + "filters": "Landolt", "indices": {"B-V": 0.750, "V-R": 0.480}, "sun": True + }, + "C/2013H2-Boattin|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], + "filters": "Landolt", "indices": {"B-V": 0.770, "V-R": 0.490}, "sun": True + }, + "C/2013P3-Palomar|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], + "filters": "Landolt", "indices": {"B-V": 0.920, "V-R": 0.450}, "sun": True + }, + "C/2013P4|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], + "filters": "Landolt", "indices": {"B-V": 0.827, "V-R": 0.487}, "sun": True + }, + "C/2014AA52-CATAL|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], + "filters": "Landolt", "indices": {"B-V": 0.770, "V-R": 0.410}, "sun": True + }, + "C/2014B1-Schwarz|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], + "filters": "Landolt", "indices": {"B-V": 0.850, "V-R": 0.580}, "sun": True + }, + "C/2014R1-Borisov|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], + "filters": "Landolt", "indices": {"B-V": 0.810, "V-R": 0.460}, "sun": True + }, + "C/2014W6-Catalin|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], + "filters": "Landolt", "indices": {"B-V": 0.810, "V-R": 0.450}, "sun": True + }, + "C/2014XB8-PANSTA|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], + "filters": "Landolt", "indices": {"B-V": 0.790, "V-R": 0.440}, "sun": True + }, + "C/2015B1-PANSTAR|9": {"tags": ["solar_system", "minor_body", "comet", "comet-lp"], + "filters": "Landolt", "indices": {"B-V": 0.780, "V-R": 0.450}, "sun": True + }, + "P/2011S1-Gibbs|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], + "filters": "Landolt", "indices": {"B-V": 0.960, "V-R": 0.590}, "sun": True + }, + "1P/Halley|9": {"tags": ["featured", "solar_system", "minor_body", "comet", "comet-sp"], + "filters": "Landolt", "indices": {"B-V": 0.720, "V-R": 0.410, "R-I": 0.390}, "sun": True, "albedo": 0.04 + }, + "2P/Encke|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], + "filters": "Landolt", "indices": {"B-V": 0.780, "V-R": 0.424, "R-I": 0.408}, "sun": True + }, + "6P/dArrest|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], + "filters": "Landolt", "indices": {"B-V": 0.770, "V-R": 0.563, "R-I": 0.450}, "sun": True + }, + "8P/Tuttle|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], + "filters": "Landolt", "indices": {"B-V": 0.890, "V-R": 0.530, "R-I": 0.530}, "sun": True + }, + "10P/Tempel2|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], + "filters": "Landolt", "indices": {"B-V": 0.800, "V-R": 0.521, "R-I": 0.520}, "sun": True + }, + "21P/GZ|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], + "filters": "Landolt", "indices": {"B-V": 0.800, "V-R": 0.500}, "sun": True + }, + "22P/Kopff|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], + "filters": "Landolt", "indices": {"B-V": 0.795, "V-R": 0.519, "R-I": 0.450}, "sun": True + }, + "39P/Oterma|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], + "filters": "Landolt", "indices": {"B-V": 0.890, "V-R": 0.386, "R-I": 0.412}, "sun": True + }, + "45P/HMP|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], + "filters": "Landolt", "indices": {"B-V": 1.080, "V-R": 0.440, "R-I": 0.210}, "sun": True + }, + "47P/AJ|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], + "filters": "Landolt", "indices": {"B-V": 0.780, "V-R": 0.400}, "sun": True + }, + "49P/AR|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], + "filters": "Landolt", "indices": {"B-V": 0.770, "V-R": 0.471, "R-I": 0.444}, "sun": True + }, + "55P/TT|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], + "filters": "Landolt", "indices": {"B-V": 0.750, "V-R": 0.510, "R-I": 0.420}, "sun": True + }, + "86P/Wild3|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], + "filters": "Landolt", "indices": {"B-V": 1.580, "V-R": 0.555}, "sun": True + }, + "106P/Schuster|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], + "filters": "Landolt", "indices": {"B-V": 1.010, "V-R": 0.520, "R-I": 0.450}, "sun": True + }, + "107P/WH|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], + "filters": "Landolt", "indices": {"B-V": 0.674, "V-R": 0.361}, "sun": True + }, + "114P/WS|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], + "filters": "Landolt", "indices": {"B-V": 0.850, "V-R": 0.460, "R-I": 0.540}, "sun": True + }, + "143P/KM|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], + "filters": "Landolt", "indices": {"B-V": 0.820, "V-R": 0.580, "R-I": 0.560}, "sun": True + }, + "166P/2001T4|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.870, "V-R": 0.695, "R-I": 0.735}, "sun": True + }, + "166P/NEAT|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], + "filters": "Landolt", "indices": {"B-V": 0.890, "V-R": 0.560}, "sun": True + }, + "167P/CINEOS|9": {"tags": ["solar_system", "minor_body", "comet", "comet-sp"], + "filters": "Landolt", "indices": {"B-V": 0.758, "V-R": 0.516, "R-I": 0.504}, "sun": True + }, + "1994 EV3|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 1.065, "V-R": 0.588, "R-I": 0.800}, "sun": True + }, + "1994 TA|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 1.261, "V-R": 0.672, "R-I": 0.740}, "sun": True + }, + "1995 HM5|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 0.649, "V-R": 0.460, "R-I": 0.428}, "sun": True + }, + "1996 RQ20|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.935, "V-R": 0.558, "R-I": 0.591}, "sun": True + }, + "1996 RR20|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 1.143, "V-R": 0.730, "R-I": 0.628}, "sun": True + }, + "1996 TK66|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 0.993, "V-R": 0.680, "R-I": 0.551}, "sun": True + }, + "1996 TS66|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 1.028, "V-R": 0.672, "R-I": 0.637}, "sun": True + }, + "1997 QH4|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 1.088, "V-R": 0.641, "R-I": 0.631}, "sun": True + }, + "1998 FS144|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.950, "V-R": 0.588, "R-I": 0.510}, "sun": True + }, + "1998 KS65|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 1.090, "V-R": 0.640}, "sun": True + }, + "1998 UR43|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 0.784, "V-R": 0.583, "R-I": 0.354}, "sun": True + }, + "1998 WS31|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 0.726, "V-R": 0.606, "R-I": 0.439}, "sun": True + }, + "1998 WU24|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.780, "V-R": 0.530, "R-I": 0.460}, "sun": True + }, + "1998 WV24|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 0.770, "V-R": 0.502, "R-I": 0.450}, "sun": True + }, + "1998 WV31|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 0.790, "V-R": 0.521, "R-I": 0.481}, "sun": True + }, + "1998 WX24|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 1.090, "V-R": 0.727, "R-I": 0.500}, "sun": True + }, + "1998 WZ31|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 0.727, "V-R": 0.489, "R-I": 0.339}, "sun": True + }, + "1999 CB119|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 1.212, "V-R": 0.714, "R-I": 0.645}, "sun": True + }, + "1999 CX131|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], + "filters": "Landolt", "indices": {"B-V": 0.918, "V-R": 0.664, "R-I": 0.434}, "sun": True + }, + "1999 HS11|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 1.121, "V-R": 0.698, "R-I": 0.600}, "sun": True + }, + "1999 HV11|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 1.110, "V-R": 0.590}, "sun": True + }, + "1999 LE31|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.748, "V-R": 0.467, "R-I": 0.521}, "sun": True + }, + "1999 OJ4|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 1.098, "V-R": 0.668, "R-I": 0.549}, "sun": True + }, + "1999 RX214|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 1.054, "V-R": 0.593, "R-I": 0.530}, "sun": True + }, + "1999 TR11|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 1.020, "V-R": 0.750, "R-I": 0.650}, "sun": True + }, + "2000 CL104|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 1.223, "V-R": 0.600, "R-I": 0.612}, "sun": True + }, + "2000 FS53|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 1.060, "V-R": 0.710}, "sun": True + }, + "2000 HE46|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.870, "V-R": 0.550, "R-I": 0.400}, "sun": True + }, + "2000 KK4|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.910, "V-R": 0.580, "R-I": 0.640}, "sun": True + }, + "2001 FM194|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], + "filters": "Landolt", "indices": {"B-V": 0.760, "V-R": 0.440}, "sun": True + }, + "2001 KA77|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 1.104, "V-R": 0.704, "R-I": 0.716}, "sun": True + }, + "2001 KD77|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 1.123, "V-R": 0.624, "R-I": 0.565}, "sun": True + }, + "2001 KG77|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.810, "V-R": 0.440}, "sun": True + }, + "2001 QC298|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.750, "V-R": 0.490, "R-I": 0.480}, "sun": True + }, + "2001 QR322|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], + "filters": "Landolt", "indices": {"B-V": 0.800, "V-R": 0.460, "R-I": 0.360}, "sun": True + }, + "2001 QX322|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], + "filters": "Landolt", "indices": {"B-V": 0.914, "V-R": 0.562}, "sun": True + }, + "2001 XZ255|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 1.224, "V-R": 0.709}, "sun": True + }, + "2002 GH32|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.990, "V-R": 0.570, "R-I": 0.590}, "sun": True + }, + "2002 PQ152|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 1.130, "V-R": 0.720}, "sun": True + }, + "2002 XV93|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 0.720, "V-R": 0.375}, "sun": True + }, + "2003 FZ129|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], + "filters": "Landolt", "indices": {"B-V": 0.840, "V-R": 0.480, "R-I": 0.460}, "sun": True + }, + "2003 QA92|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 1.040, "V-R": 0.630}, "sun": True + }, + "2003 QK91|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], + "filters": "Landolt", "indices": {"B-V": 0.870, "V-R": 0.500, "R-I": 0.470}, "sun": True + }, + "2003 QQ91|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.670, "V-R": 0.510}, "sun": True + }, + "2003 UY291|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.880, "V-R": 0.510, "R-I": 0.670}, "sun": True + }, + "2003 WN188|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.780, "V-R": 0.480, "R-I": 0.500}, "sun": True + }, + "2004 DA62|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.850, "V-R": 0.520, "R-I": 0.550}, "sun": True + }, + "2004 OJ14|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], + "filters": "Landolt", "indices": {"B-V": 0.900, "V-R": 0.520, "R-I": 0.540}, "sun": True + }, + "2004 XR190|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], + "filters": "Landolt", "indices": {"B-V": 0.790, "V-R": 0.450, "R-I": 0.520}, "sun": True + }, + "2005 TN53|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.820, "V-R": 0.470, "R-I": 0.470}, "sun": True + }, + "2006 RJ103|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.820, "V-R": 0.470, "R-I": 0.270}, "sun": True + }, + "2007 VH305|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.690, "V-R": 0.491, "R-I": 0.480}, "sun": True + }, + "2009 YG19|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 1.000, "V-R": 0.610}, "sun": True + }, + "2010 BK118|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.794, "V-R": 0.525, "R-I": 0.480}, "sun": True + }, + "2010 BL4|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.860, "V-R": 0.390, "R-I": 0.470}, "sun": True + }, + "2010 OM101|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.795, "V-R": 0.588, "R-I": 0.360}, "sun": True + }, + "2010 OR1|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.781, "V-R": 0.517, "R-I": 0.447}, "sun": True + }, + "2010 TS191|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.760, "V-R": 0.390}, "sun": True + }, + "2010 TT191|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.750, "V-R": 0.470}, "sun": True + }, + "2010 WG9|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.781, "V-R": 0.492, "R-I": 0.458}, "sun": True + }, + "2011 HM102|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.720, "V-R": 0.410, "R-I": 0.520}, "sun": True + }, + "2012 DR30|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.647, "V-R": 0.563, "R-I": 0.422}, "sun": True + }, + "2012 VP113|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], + "filters": "Landolt", "indices": {"B-V": 0.920, "V-R": 0.520, "R-I": 0.530}, "sun": True + }, + "2013 AZ60|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.820, "V-R": 0.540}, "sun": True + }, + "2013 BL76|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.920, "V-R": 0.450}, "sun": True + }, + "2013 BO16|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 1.140, "V-R": 0.650}, "sun": True + }, + "2013 CX217|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.850, "V-R": 0.280}, "sun": True + }, + "2013 CY197|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.880, "V-R": 0.510, "R-I": 0.610}, "sun": True + }, + "2013 KY18|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.760, "V-R": 0.360}, "sun": True + }, + "2013 LD16|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.860, "V-R": 0.440}, "sun": True + }, + "2013 NS11|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.740, "V-R": 0.560}, "sun": True + }, + "2013 TZ158|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.790, "V-R": 0.536, "R-I": 0.497}, "sun": True + }, + "2013 YG48|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.800, "V-R": 0.515}, "sun": True + }, + "2014 CW14|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.870, "V-R": 0.510}, "sun": True + }, + "2014 QO441|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.750, "V-R": 0.470}, "sun": True + }, + "(1) Ceres|29": {"tags": ["featured", "solar_system", "minor_body", "dwarf_planet", "asteroid", "main_belt"], + "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, + 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, + 552.5, 555, 557.5, 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, + 612.5, 615, 617.5, 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 657.5, 660, 662.5, 665, 667.5, 670, + 672.5, 675, 677.5, 680, 682.5, 685, 687.5, 690, 692.5, 695, 697.5, 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, + 732.5, 735, 737.5, 740, 742.5, 745, 747.5, 750, 752.5, 755, 770, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, 800, 802.5, + 805, 807.5, 810, 812.5, 815, 817.5, 820, 822.5, 825, 827.5, 830, 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, 860, 862.5, + 865, 867.5, 870, 872.5, 875, 877.5, 880, 882.5, 885, 887.5, 890, 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, 920, 922.5, + 925], + "br": [0.9004, 0.9186, 0.9308, 0.9394, 0.9355, 0.9350, 0.9231, 0.9397, 0.9569, 0.9479, 0.9497, 0.9534, 0.9556, 0.9605, 0.9659, 0.9591, 0.9570, + 0.9653, 0.9648, 0.9591, 0.9629, 0.9758, 0.9859, 0.9652, 0.9753, 0.9759, 0.9752, 0.9850, 0.9910, 0.9838, 0.9794, 0.9875, 0.9868, 0.9919, 0.9973, + 1.0059, 0.9872, 0.9965, 0.9983, 1.0047, 0.9888, 0.9978, 0.9939, 0.9957, 1.0060, 0.9981, 0.9975, 1.0025, 1.0024, 1.0047, 1.0015, 1.0086, 1.0104, + 1.0038, 1.0074, 1.0077, 1.0095, 1.0039, 1.0001, 1.0043, 1.0045, 0.9990, 1.0039, 1.0089, 1.0146, 0.9989, 1.0017, 1.0057, 1.0079, 1.0063, 1.0064, + 1.0075, 1.0101, 1.0134, 1.0157, 1.0126, 1.0056, 1.0143, 1.0134, 1.0120, 1.0106, 1.0129, 1.0123, 1.0113, 1.0142, 1.0139, 1.0122, 1.0139, 1.0129, + 1.0148, 1.0227, 1.0092, 1.0091, 1.0115, 1.0117, 1.0154, 1.0157, 1.0153, 1.0152, 1.0147, 1.0158, 1.0217, 1.0266, 1.0131, 1.0106, 1.0088, 1.0162, + 1.0186, 1.0189, 1.0177, 1.0188, 1.0166, 1.0179, 1.0215, 1.0288, 1.0274, 1.0248, 1.0172, 1.0251, 1.0218, 1.0198, 1.0192, 1.0196, 1.0203, 1.0198, + 1.0183, 1.0161, 1.0180, 1.0229, 1.0143, 1.0132, 1.0134, 1.0168, 1.0181, 1.0185, 1.0194, 1.0170, 1.0173, 1.0232, 1.0186, 1.0158, 1.0183, 1.0176, + 1.0193, 1.0173, 1.0193, 1.0223, 1.0229, 1.0239, 1.0278, 1.0175, 1.0149, 1.0184, 1.0147, 1.0184, 1.0213, 1.0120, 1.0067, 1.0142, 1.0167, 1.0119, + 1.0162, 1.0243, 1.0127, 1.0124, 1.0103, 1.0174, 1.0181, 1.0198, 1.0166, 1.0123, 1.0177, 1.0175, 1.0119, 1.0165, 1.0140, 1.0092, 1.0129, 1.0148, + 1.0211, 1.0244, 1.0208, 1.0103, 1.0149, 1.0207, 1.0197, 1.0182, 1.0212, 1.0178, 1.0225, 1.0236, 1.0201], "albedo": 0.09 # Geom. ! - }, - "(2) Pallas|29": {"tags": ["solar_system", "minor_body", "asteroid", "main_belt"], - "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, - 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, - 552.5, 555, 557.5, 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, - 612.5, 615, 617.5, 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 657.5, 660, 662.5, 665, 667.5, 670, - 672.5, 675, 677.5, 680, 682.5, 685, 687.5, 690, 692.5, 695, 697.5, 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, - 732.5, 735, 737.5, 740, 742.5, 745, 747.5, 750, 752.5, 755, 757.5, 760, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, 800, 802.5, - 805, 807.5, 810, 812.5, 815, 817.5, 820, 822.5, 825, 827.5, 830, 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, 860, 862.5, - 865, 867.5, 870, 872.5, 875, 877.5, 880, 882.5, 885, 887.5, 890, 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, 920, 922.5, - 925], - "br": [0.9235, 0.9906, 0.9750, 0.9417, 0.9799, 0.9711, 0.9835, 0.9752, 1.0005, 0.9864, 0.9859, 0.9808, 0.9848, 0.9956, 0.9843, 0.9834, 0.9845, - 0.9878, 0.9860, 0.9888, 0.9952, 1.0179, 0.9898, 0.9624, 0.9837, 0.9814, 0.9936, 1.0034, 1.0066, 0.9907, 0.9853, 0.9969, 0.9980, 1.0139, 1.0201, - 1.0111, 0.9733, 0.9859, 1.0016, 0.9973, 0.9840, 1.0008, 0.9923, 1.0058, 1.0225, 0.9971, 0.9907, 1.0034, 0.9976, 1.0076, 1.0043, 1.0093, 1.0109, - 1.0003, 1.0001, 1.0094, 1.0056, 1.0000, 0.9929, 1.0064, 1.0035, 0.9958, 1.0024, 1.0133, 1.0232, 1.0011, 0.9959, 1.0001, 1.0051, 1.0040, 0.9980, - 1.0009, 1.0092, 1.0012, 1.0158, 1.0145, 0.9898, 1.0041, 1.0100, 1.0074, 0.9973, 1.0077, 1.0012, 0.9939, 1.0038, 1.0029, 1.0034, 1.0080, 1.0007, - 0.9974, 1.0131, 1.0150, 0.9707, 0.9887, 1.0034, 1.0030, 0.9935, 1.0015, 1.0049, 0.9929, 0.9994, 1.0041, 1.0041, 1.0332, 0.9970, 0.9825, 0.9953, - 0.9933, 1.0082, 1.0017, 0.9926, 0.9991, 0.9954, 1.0012, 1.0178, 1.0613, 1.0170, 0.9804, 1.0265, 1.0026, 0.9977, 0.9852, 0.9948, 1.0023, 1.0039, - 0.9934, 0.9908, 0.9965, 1.0020, 1.0021, 1.0015, 0.9793, 0.9904, 0.9938, 0.9956, 0.9947, 0.9968, 0.9934, 1.0011, 1.0033, 0.9915, 0.9863, 0.9963, - 1.0021, 0.9926, 0.9928, 1.0025, 1.0144, 1.0285, 1.0087, 0.9848, 0.9914, 0.9879, 0.9909, 0.9939, 0.9829, 0.9865, 0.9761, 0.9821, 0.9791, 0.9853, - 0.9886, 0.9972, 1.0034, 0.9752, 0.9676, 0.9848, 0.9853, 1.0065, 0.9754, 0.9796, 0.9910, 0.9851, 0.9830, 0.9783, 0.9713, 0.9783, 0.9701, 0.9824, - 0.9982, 1.0137, 1.0026, 0.9753, 0.9616, 0.9966, 0.9963, 0.9841, 0.9780, 0.9672, 0.9565, 0.9728, 0.9859] - }, - "(3) Juno|29": {"tags": ["solar_system", "minor_body", "asteroid", "main_belt"], - "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, - 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, - 552.5, 555, 557.5, 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, - 612.5, 615, 617.5, 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 655, 657.5, 660, 662.5, 665, 667.5, 670, 672.5, - 675, 687.5, 690, 692.5, 695, 697.5, 700, 702.5, 705, 707.5, 715, 717.5, 725, 727.5, 730, 732.5, 735, 737.5, 740, 742.5, 745, 747.5, 762.5, 765, - 767.5, 770, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, 800, 802.5, 805, 812.5, 815, 817.5, 820, 822.5, 825, 827.5, 830, - 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, 860, 862.5, 865, 867.5, 870, 872.5, 875, 877.5, 880, 882.5, 885, 887.5, 890, - 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, 920, 922.5, 925], - "br": [0.8798, 0.8674, 0.8682, 0.8842, 0.8672, 0.8787, 0.8847, 0.8802, 0.8850, 0.8982, 0.8997, 0.9043, 0.9104, 0.9133, 0.9125, 0.9140, 0.9122, - 0.9247, 0.9260, 0.9173, 0.9425, 0.9329, 0.9341, 0.9380, 0.9449, 0.9408, 0.9559, 0.9551, 0.9544, 0.9614, 0.9666, 0.9567, 0.9543, 0.9764, 0.9730, - 0.9593, 0.9737, 0.9830, 0.9769, 0.9876, 0.9867, 0.9839, 0.9948, 0.9949, 0.9968, 0.9997, 1.0051, 1.0085, 1.0027, 1.0084, 1.0146, 1.0103, 1.0130, - 1.0123, 1.0200, 1.0178, 1.0170, 1.0242, 1.0308, 1.0289, 1.0210, 1.0258, 1.0381, 1.0345, 1.0344, 1.0363, 1.0409, 1.0460, 1.0472, 1.0477, 1.0504, - 1.0482, 1.0552, 1.0556, 1.0505, 1.0567, 1.0596, 1.0587, 1.0630, 1.0642, 1.0700, 1.0721, 1.0741, 1.0738, 1.0693, 1.0855, 1.0935, 1.0909, 1.0812, - 1.0889, 1.0926, 1.0870, 1.0918, 1.0904, 1.0926, 1.0967, 1.0967, 1.1002, 1.1040, 1.1001, 1.1073, 1.1098, 1.1049, 1.1079, 1.1195, 1.1097, 1.1105, - 1.1059, 1.1146, 1.1164, 1.1121, 1.1116, 1.1159, 1.1127, 1.1083, 1.1079, 1.1088, 1.1060, 1.0906, 1.0901, 1.0957, 1.0866, 1.0916, 1.0897, 1.0910, - 1.0907, 1.0810, 1.0844, 1.0853, 1.0752, 1.0800, 1.0727, 1.0745, 1.0694, 1.0719, 1.0641, 1.0587, 1.0558, 1.0500, 1.0510, 1.0500, 1.0517, 1.0476, - 1.0641, 1.0558, 1.0523, 1.0482, 1.0364, 1.0393, 1.0342, 1.0427, 1.0303, 1.0339, 1.0231, 1.0339, 1.0228, 1.0260, 1.0228, 1.0190, 1.0202, 1.0207, - 1.0136, 1.0103, 1.0183, 1.0180, 1.0084, 1.0057, 0.9968, 1.0097, 1.0134, 1.0022, 1.0061, 1.0157, 1.0080, 0.9991, 1.0249, 1.0192, 0.9972, 1.0067, - 1.0091, 0.9920] + }, + "(2) Pallas|29": {"tags": ["solar_system", "minor_body", "asteroid", "main_belt"], + "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, + 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, + 552.5, 555, 557.5, 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, + 612.5, 615, 617.5, 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 657.5, 660, 662.5, 665, 667.5, 670, + 672.5, 675, 677.5, 680, 682.5, 685, 687.5, 690, 692.5, 695, 697.5, 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, + 732.5, 735, 737.5, 740, 742.5, 745, 747.5, 750, 752.5, 755, 757.5, 760, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, 800, 802.5, + 805, 807.5, 810, 812.5, 815, 817.5, 820, 822.5, 825, 827.5, 830, 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, 860, 862.5, + 865, 867.5, 870, 872.5, 875, 877.5, 880, 882.5, 885, 887.5, 890, 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, 920, 922.5, + 925], + "br": [0.9235, 0.9906, 0.9750, 0.9417, 0.9799, 0.9711, 0.9835, 0.9752, 1.0005, 0.9864, 0.9859, 0.9808, 0.9848, 0.9956, 0.9843, 0.9834, 0.9845, + 0.9878, 0.9860, 0.9888, 0.9952, 1.0179, 0.9898, 0.9624, 0.9837, 0.9814, 0.9936, 1.0034, 1.0066, 0.9907, 0.9853, 0.9969, 0.9980, 1.0139, 1.0201, + 1.0111, 0.9733, 0.9859, 1.0016, 0.9973, 0.9840, 1.0008, 0.9923, 1.0058, 1.0225, 0.9971, 0.9907, 1.0034, 0.9976, 1.0076, 1.0043, 1.0093, 1.0109, + 1.0003, 1.0001, 1.0094, 1.0056, 1.0000, 0.9929, 1.0064, 1.0035, 0.9958, 1.0024, 1.0133, 1.0232, 1.0011, 0.9959, 1.0001, 1.0051, 1.0040, 0.9980, + 1.0009, 1.0092, 1.0012, 1.0158, 1.0145, 0.9898, 1.0041, 1.0100, 1.0074, 0.9973, 1.0077, 1.0012, 0.9939, 1.0038, 1.0029, 1.0034, 1.0080, 1.0007, + 0.9974, 1.0131, 1.0150, 0.9707, 0.9887, 1.0034, 1.0030, 0.9935, 1.0015, 1.0049, 0.9929, 0.9994, 1.0041, 1.0041, 1.0332, 0.9970, 0.9825, 0.9953, + 0.9933, 1.0082, 1.0017, 0.9926, 0.9991, 0.9954, 1.0012, 1.0178, 1.0613, 1.0170, 0.9804, 1.0265, 1.0026, 0.9977, 0.9852, 0.9948, 1.0023, 1.0039, + 0.9934, 0.9908, 0.9965, 1.0020, 1.0021, 1.0015, 0.9793, 0.9904, 0.9938, 0.9956, 0.9947, 0.9968, 0.9934, 1.0011, 1.0033, 0.9915, 0.9863, 0.9963, + 1.0021, 0.9926, 0.9928, 1.0025, 1.0144, 1.0285, 1.0087, 0.9848, 0.9914, 0.9879, 0.9909, 0.9939, 0.9829, 0.9865, 0.9761, 0.9821, 0.9791, 0.9853, + 0.9886, 0.9972, 1.0034, 0.9752, 0.9676, 0.9848, 0.9853, 1.0065, 0.9754, 0.9796, 0.9910, 0.9851, 0.9830, 0.9783, 0.9713, 0.9783, 0.9701, 0.9824, + 0.9982, 1.0137, 1.0026, 0.9753, 0.9616, 0.9966, 0.9963, 0.9841, 0.9780, 0.9672, 0.9565, 0.9728, 0.9859] + }, + "(3) Juno|29": {"tags": ["solar_system", "minor_body", "asteroid", "main_belt"], + "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, + 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, + 552.5, 555, 557.5, 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, + 612.5, 615, 617.5, 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 655, 657.5, 660, 662.5, 665, 667.5, 670, 672.5, + 675, 687.5, 690, 692.5, 695, 697.5, 700, 702.5, 705, 707.5, 715, 717.5, 725, 727.5, 730, 732.5, 735, 737.5, 740, 742.5, 745, 747.5, 762.5, 765, + 767.5, 770, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, 800, 802.5, 805, 812.5, 815, 817.5, 820, 822.5, 825, 827.5, 830, + 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, 860, 862.5, 865, 867.5, 870, 872.5, 875, 877.5, 880, 882.5, 885, 887.5, 890, + 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, 920, 922.5, 925], + "br": [0.8798, 0.8674, 0.8682, 0.8842, 0.8672, 0.8787, 0.8847, 0.8802, 0.8850, 0.8982, 0.8997, 0.9043, 0.9104, 0.9133, 0.9125, 0.9140, 0.9122, + 0.9247, 0.9260, 0.9173, 0.9425, 0.9329, 0.9341, 0.9380, 0.9449, 0.9408, 0.9559, 0.9551, 0.9544, 0.9614, 0.9666, 0.9567, 0.9543, 0.9764, 0.9730, + 0.9593, 0.9737, 0.9830, 0.9769, 0.9876, 0.9867, 0.9839, 0.9948, 0.9949, 0.9968, 0.9997, 1.0051, 1.0085, 1.0027, 1.0084, 1.0146, 1.0103, 1.0130, + 1.0123, 1.0200, 1.0178, 1.0170, 1.0242, 1.0308, 1.0289, 1.0210, 1.0258, 1.0381, 1.0345, 1.0344, 1.0363, 1.0409, 1.0460, 1.0472, 1.0477, 1.0504, + 1.0482, 1.0552, 1.0556, 1.0505, 1.0567, 1.0596, 1.0587, 1.0630, 1.0642, 1.0700, 1.0721, 1.0741, 1.0738, 1.0693, 1.0855, 1.0935, 1.0909, 1.0812, + 1.0889, 1.0926, 1.0870, 1.0918, 1.0904, 1.0926, 1.0967, 1.0967, 1.1002, 1.1040, 1.1001, 1.1073, 1.1098, 1.1049, 1.1079, 1.1195, 1.1097, 1.1105, + 1.1059, 1.1146, 1.1164, 1.1121, 1.1116, 1.1159, 1.1127, 1.1083, 1.1079, 1.1088, 1.1060, 1.0906, 1.0901, 1.0957, 1.0866, 1.0916, 1.0897, 1.0910, + 1.0907, 1.0810, 1.0844, 1.0853, 1.0752, 1.0800, 1.0727, 1.0745, 1.0694, 1.0719, 1.0641, 1.0587, 1.0558, 1.0500, 1.0510, 1.0500, 1.0517, 1.0476, + 1.0641, 1.0558, 1.0523, 1.0482, 1.0364, 1.0393, 1.0342, 1.0427, 1.0303, 1.0339, 1.0231, 1.0339, 1.0228, 1.0260, 1.0228, 1.0190, 1.0202, 1.0207, + 1.0136, 1.0103, 1.0183, 1.0180, 1.0084, 1.0057, 0.9968, 1.0097, 1.0134, 1.0022, 1.0061, 1.0157, 1.0080, 0.9991, 1.0249, 1.0192, 0.9972, 1.0067, + 1.0091, 0.9920] }, - "(4) Vesta|29": {"tags": ["featured", "solar_system", "minor_body", "asteroid", "main_belt"], - "nm": [435, 437.5, 440, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, 492.5, - 495, 497.5, 500, 502.5, 505, 507.5, 510, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, 552.5, 555, 557.5, 560, - 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, 612.5, 615, 617.5, 620, - 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 657.5, 660, 662.5, 665, 667.5, 670, 672.5, 675, 677.5, 680, - 682.5, 685, 687.5, 690, 692.5, 695, 697.5, 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, 732.5, 735, 737.5, 740, - 742.5, 745, 747.5, 750, 752.5, 755, 757.5, 767.5, 770, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, 800, 802.5, 805, 807.5, - 810, 812.5, 815, 817.5, 820, 822.5, 825, 827.5, 830, 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, 860, 862.5, 865, 867.5, - 870, 872.5, 875, 877.5, 880, 882.5, 885, 887.5, 890, 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, 920, 922.5, 925], - "br": [0.8911, 0.9201, 0.9022, 0.8654, 0.8859, 0.8919, 0.9172, 0.9182, 0.8992, 0.9089, 0.9126, 0.9256, 0.9376, 0.9310, 0.9309, 0.9432, 0.9350, - 0.9507, 0.9336, 0.9428, 0.9509, 0.9627, 0.9486, 0.9472, 0.9638, 0.9607, 0.9539, 0.9639, 0.9697, 0.9661, 0.9783, 0.9842, 0.9959, 0.9907, 0.9895, - 0.9973, 0.9936, 0.9929, 0.9955, 0.9996, 0.9993, 1.0012, 1.0003, 1.0017, 0.9990, 1.0033, 1.0034, 1.0075, 1.0104, 1.0100, 1.0106, 1.0143, 1.0178, - 1.0171, 1.0166, 1.0166, 1.0165, 1.0158, 1.0157, 1.0207, 1.0209, 1.0185, 1.0244, 1.0229, 1.0265, 1.0278, 1.0291, 1.0266, 1.0279, 1.0320, 1.0363, - 1.0339, 1.0361, 1.0378, 1.0370, 1.0409, 1.0409, 1.0418, 1.0425, 1.0473, 1.0468, 1.0476, 1.0502, 1.0506, 1.0529, 1.0520, 1.0523, 1.0514, 1.0560, - 1.0584, 1.0585, 1.0623, 1.0641, 1.0623, 1.0679, 1.0634, 1.0675, 1.0712, 1.0715, 1.0764, 1.0680, 1.0717, 1.0741, 1.0763, 1.0781, 1.0799, 1.0837, - 1.0820, 1.0846, 1.0879, 1.0849, 1.0778, 1.0850, 1.0842, 1.0848, 1.0859, 1.0900, 1.0914, 1.0963, 1.0956, 1.0956, 1.0939, 1.0908, 1.0907, 1.0897, - 1.0893, 1.0798, 1.0817, 1.0761, 1.0683, 1.0661, 1.0602, 1.0539, 1.0516, 1.0476, 1.0351, 1.0343, 1.0332, 1.0196, 1.0118, 1.0108, 1.0045, 0.9960, - 0.9875, 0.9786, 0.9638, 0.9528, 0.9555, 0.9403, 0.9470, 0.9319, 0.9224, 0.9225, 0.9194, 0.9089, 0.8965, 0.8896, 0.8863, 0.8792, 0.8730, 0.8621, - 0.8665, 0.8570, 0.8524, 0.8466, 0.8350, 0.8316, 0.8295, 0.8253, 0.8181, 0.8129, 0.8133, 0.8088, 0.8066, 0.8007, 0.7967, 0.7961, 0.7914, 0.7858, - 0.7921, 0.7974, 0.7879, 0.7846, 0.7938, 0.7897, 0.7914, 0.7965, 0.7975, 0.8024, 0.7952], + "(4) Vesta|29": {"tags": ["featured", "solar_system", "minor_body", "asteroid", "main_belt"], + "nm": [435, 437.5, 440, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, 492.5, + 495, 497.5, 500, 502.5, 505, 507.5, 510, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, 552.5, 555, 557.5, 560, + 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, 612.5, 615, 617.5, 620, + 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 657.5, 660, 662.5, 665, 667.5, 670, 672.5, 675, 677.5, 680, + 682.5, 685, 687.5, 690, 692.5, 695, 697.5, 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, 732.5, 735, 737.5, 740, + 742.5, 745, 747.5, 750, 752.5, 755, 757.5, 767.5, 770, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, 800, 802.5, 805, 807.5, + 810, 812.5, 815, 817.5, 820, 822.5, 825, 827.5, 830, 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, 860, 862.5, 865, 867.5, + 870, 872.5, 875, 877.5, 880, 882.5, 885, 887.5, 890, 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, 920, 922.5, 925], + "br": [0.8911, 0.9201, 0.9022, 0.8654, 0.8859, 0.8919, 0.9172, 0.9182, 0.8992, 0.9089, 0.9126, 0.9256, 0.9376, 0.9310, 0.9309, 0.9432, 0.9350, + 0.9507, 0.9336, 0.9428, 0.9509, 0.9627, 0.9486, 0.9472, 0.9638, 0.9607, 0.9539, 0.9639, 0.9697, 0.9661, 0.9783, 0.9842, 0.9959, 0.9907, 0.9895, + 0.9973, 0.9936, 0.9929, 0.9955, 0.9996, 0.9993, 1.0012, 1.0003, 1.0017, 0.9990, 1.0033, 1.0034, 1.0075, 1.0104, 1.0100, 1.0106, 1.0143, 1.0178, + 1.0171, 1.0166, 1.0166, 1.0165, 1.0158, 1.0157, 1.0207, 1.0209, 1.0185, 1.0244, 1.0229, 1.0265, 1.0278, 1.0291, 1.0266, 1.0279, 1.0320, 1.0363, + 1.0339, 1.0361, 1.0378, 1.0370, 1.0409, 1.0409, 1.0418, 1.0425, 1.0473, 1.0468, 1.0476, 1.0502, 1.0506, 1.0529, 1.0520, 1.0523, 1.0514, 1.0560, + 1.0584, 1.0585, 1.0623, 1.0641, 1.0623, 1.0679, 1.0634, 1.0675, 1.0712, 1.0715, 1.0764, 1.0680, 1.0717, 1.0741, 1.0763, 1.0781, 1.0799, 1.0837, + 1.0820, 1.0846, 1.0879, 1.0849, 1.0778, 1.0850, 1.0842, 1.0848, 1.0859, 1.0900, 1.0914, 1.0963, 1.0956, 1.0956, 1.0939, 1.0908, 1.0907, 1.0897, + 1.0893, 1.0798, 1.0817, 1.0761, 1.0683, 1.0661, 1.0602, 1.0539, 1.0516, 1.0476, 1.0351, 1.0343, 1.0332, 1.0196, 1.0118, 1.0108, 1.0045, 0.9960, + 0.9875, 0.9786, 0.9638, 0.9528, 0.9555, 0.9403, 0.9470, 0.9319, 0.9224, 0.9225, 0.9194, 0.9089, 0.8965, 0.8896, 0.8863, 0.8792, 0.8730, 0.8621, + 0.8665, 0.8570, 0.8524, 0.8466, 0.8350, 0.8316, 0.8295, 0.8253, 0.8181, 0.8129, 0.8133, 0.8088, 0.8066, 0.8007, 0.7967, 0.7961, 0.7914, 0.7858, + 0.7921, 0.7974, 0.7879, 0.7846, 0.7938, 0.7897, 0.7914, 0.7965, 0.7975, 0.8024, 0.7952], "albedo": 0.423 # Geom. ! - }, - "(7) Iris|29": {"tags": ["solar_system", "minor_body", "asteroid", "main_belt"], - "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, - 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, - 552.5, 555, 557.5, 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, - 612.5, 615, 617.5, 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 657.5, 660, 662.5, 665, 667.5, 670, - 672.5, 675, 677.5, 680, 682.5, 685, 687.5, 690, 692.5, 695, 697.5, 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, - 732.5, 735, 737.5, 740, 742.5, 745, 747.5, 750, 752.5, 755, 757.5, 770, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, 800, - 802.5, 805, 807.5, 810, 812.5, 815, 817.5, 820, 822.5, 825, 827.5, 830, 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, 860, - 862.5, 865, 867.5, 870, 872.5, 875, 877.5, 880, 882.5, 885, 887.5, 890, 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, 920, - 922.5, 925], - "br": [0.8368, 0.8330, 0.8427, 0.8526, 0.8495, 0.8338, 0.8446, 0.8539, 0.8552, 0.8583, 0.8662, 0.8648, 0.8730, 0.8803, 0.8864, 0.8855, 0.8897, - 0.8974, 0.8946, 0.8995, 0.9054, 0.9074, 0.9153, 0.9215, 0.9288, 0.9249, 0.9270, 0.9334, 0.9453, 0.9440, 0.9387, 0.9478, 0.9523, 0.9553, 0.9617, - 0.9753, 0.9755, 0.9781, 0.9795, 0.9863, 0.9796, 0.9842, 0.9868, 0.9868, 0.9975, 1.0016, 1.0012, 1.0040, 1.0076, 1.0121, 1.0141, 1.0179, 1.0245, - 1.0248, 1.0282, 1.0307, 1.0323, 1.0363, 1.0328, 1.0370, 1.0426, 1.0400, 1.0394, 1.0452, 1.0546, 1.0513, 1.0521, 1.0541, 1.0577, 1.0650, 1.0619, - 1.0615, 1.0679, 1.0727, 1.0767, 1.0812, 1.0797, 1.0822, 1.0877, 1.0886, 1.0907, 1.0953, 1.0965, 1.0999, 1.1029, 1.1063, 1.1067, 1.1099, 1.1144, - 1.1094, 1.1139, 1.1271, 1.1202, 1.1228, 1.1256, 1.1272, 1.1329, 1.1367, 1.1375, 1.1392, 1.1413, 1.1393, 1.1445, 1.1509, 1.1515, 1.1555, 1.1525, - 1.1549, 1.1623, 1.1595, 1.1592, 1.1613, 1.1641, 1.1633, 1.1672, 1.1739, 1.1700, 1.1711, 1.1689, 1.1762, 1.1714, 1.1715, 1.1753, 1.1741, 1.1760, - 1.1720, 1.1719, 1.1731, 1.1718, 1.1746, 1.1647, 1.1588, 1.1572, 1.1526, 1.1555, 1.1515, 1.1501, 1.1485, 1.1445, 1.1429, 1.1451, 1.1379, 1.1340, - 1.1364, 1.1301, 1.1267, 1.1289, 1.1265, 1.1210, 1.1166, 1.1202, 1.1233, 1.1122, 1.1099, 1.1089, 1.1128, 1.1120, 1.1080, 1.1042, 1.0959, 1.0972, - 1.0872, 1.0854, 1.0870, 1.0893, 1.0875, 1.0799, 1.0790, 1.0700, 1.0817, 1.0761, 1.0706, 1.0673, 1.0627, 1.0630, 1.0600, 1.0613, 1.0634, 1.0603, - 1.0583, 1.0557, 1.0558, 1.0534, 1.0574, 1.0530, 1.0481, 1.0578, 1.0556, 1.0524, 1.0596, 1.0602, 1.0577, 1.0587] + }, + "(7) Iris|29": {"tags": ["solar_system", "minor_body", "asteroid", "main_belt"], + "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, + 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, + 552.5, 555, 557.5, 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, + 612.5, 615, 617.5, 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 657.5, 660, 662.5, 665, 667.5, 670, + 672.5, 675, 677.5, 680, 682.5, 685, 687.5, 690, 692.5, 695, 697.5, 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, + 732.5, 735, 737.5, 740, 742.5, 745, 747.5, 750, 752.5, 755, 757.5, 770, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, 800, + 802.5, 805, 807.5, 810, 812.5, 815, 817.5, 820, 822.5, 825, 827.5, 830, 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, 860, + 862.5, 865, 867.5, 870, 872.5, 875, 877.5, 880, 882.5, 885, 887.5, 890, 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, 920, + 922.5, 925], + "br": [0.8368, 0.8330, 0.8427, 0.8526, 0.8495, 0.8338, 0.8446, 0.8539, 0.8552, 0.8583, 0.8662, 0.8648, 0.8730, 0.8803, 0.8864, 0.8855, 0.8897, + 0.8974, 0.8946, 0.8995, 0.9054, 0.9074, 0.9153, 0.9215, 0.9288, 0.9249, 0.9270, 0.9334, 0.9453, 0.9440, 0.9387, 0.9478, 0.9523, 0.9553, 0.9617, + 0.9753, 0.9755, 0.9781, 0.9795, 0.9863, 0.9796, 0.9842, 0.9868, 0.9868, 0.9975, 1.0016, 1.0012, 1.0040, 1.0076, 1.0121, 1.0141, 1.0179, 1.0245, + 1.0248, 1.0282, 1.0307, 1.0323, 1.0363, 1.0328, 1.0370, 1.0426, 1.0400, 1.0394, 1.0452, 1.0546, 1.0513, 1.0521, 1.0541, 1.0577, 1.0650, 1.0619, + 1.0615, 1.0679, 1.0727, 1.0767, 1.0812, 1.0797, 1.0822, 1.0877, 1.0886, 1.0907, 1.0953, 1.0965, 1.0999, 1.1029, 1.1063, 1.1067, 1.1099, 1.1144, + 1.1094, 1.1139, 1.1271, 1.1202, 1.1228, 1.1256, 1.1272, 1.1329, 1.1367, 1.1375, 1.1392, 1.1413, 1.1393, 1.1445, 1.1509, 1.1515, 1.1555, 1.1525, + 1.1549, 1.1623, 1.1595, 1.1592, 1.1613, 1.1641, 1.1633, 1.1672, 1.1739, 1.1700, 1.1711, 1.1689, 1.1762, 1.1714, 1.1715, 1.1753, 1.1741, 1.1760, + 1.1720, 1.1719, 1.1731, 1.1718, 1.1746, 1.1647, 1.1588, 1.1572, 1.1526, 1.1555, 1.1515, 1.1501, 1.1485, 1.1445, 1.1429, 1.1451, 1.1379, 1.1340, + 1.1364, 1.1301, 1.1267, 1.1289, 1.1265, 1.1210, 1.1166, 1.1202, 1.1233, 1.1122, 1.1099, 1.1089, 1.1128, 1.1120, 1.1080, 1.1042, 1.0959, 1.0972, + 1.0872, 1.0854, 1.0870, 1.0893, 1.0875, 1.0799, 1.0790, 1.0700, 1.0817, 1.0761, 1.0706, 1.0673, 1.0627, 1.0630, 1.0600, 1.0613, 1.0634, 1.0603, + 1.0583, 1.0557, 1.0558, 1.0534, 1.0574, 1.0530, 1.0481, 1.0578, 1.0556, 1.0524, 1.0596, 1.0602, 1.0577, 1.0587] }, - "(16) Psyche:B|29": {"tags": ["featured", "solar_system", "minor_body", "asteroid", "main_belt", "surface_feature"], - "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, - 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, - 552.5, 555, 557.5, 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, - 612.5, 615, 617.5, 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 657.5, 660, 662.5, 665, 667.5, 670, - 672.5, 675, 677.5, 680, 682.5, 685, 687.5, 690, 692.5, 695, 697.5, 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, - 732.5, 735, 737.5, 740, 742.5, 745, 747.5, 750, 752.5, 755, 757.5, 767.5, 770, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, - 800, 802.5, 805, 807.5, 810, 812.5, 815, 817.5, 820, 822.5, 825, 827.5, 830, 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, - 860, 862.5, 865, 867.5, 870, 872.5, 875, 877.5, 880, 882.5, 885, 887.5, 890, 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, - 920, 922.5, 925], - "br": [0.8654, 0.8647, 0.8748, 0.8828, 0.8987, 0.8988, 0.9084, 0.9277, 0.9288, 0.9144, 0.8941, 0.9281, 0.9295, 0.9236, 0.9228, 0.9224, 0.9295, - 0.9383, 0.9480, 0.9455, 0.9547, 0.9704, 0.9516, 0.9531, 0.9593, 0.9571, 0.9626, 0.9624, 0.9542, 0.9560, 0.9631, 0.9656, 0.9627, 0.9656, 0.9638, - 0.9505, 0.9642, 0.9746, 0.9805, 0.9721, 0.9911, 0.9962, 0.9917, 1.0008, 0.9930, 0.9896, 0.9970, 1.0025, 1.0044, 1.0040, 1.0101, 1.0142, 1.0036, - 1.0108, 1.0168, 1.0174, 1.0215, 1.0203, 1.0265, 1.0227, 1.0241, 1.0284, 1.0345, 1.0307, 1.0251, 1.0353, 1.0388, 1.0394, 1.0354, 1.0392, 1.0463, - 1.0488, 1.0469, 1.0446, 1.0500, 1.0475, 1.0493, 1.0500, 1.0535, 1.0561, 1.0577, 1.0541, 1.0608, 1.0620, 1.0621, 1.0622, 1.0665, 1.0633, 1.0683, - 1.0780, 1.0820, 1.0669, 1.0731, 1.0811, 1.0780, 1.0803, 1.0781, 1.0849, 1.0827, 1.0929, 1.0877, 1.0883, 1.0838, 1.0795, 1.0823, 1.0878, 1.0931, - 1.0938, 1.0917, 1.0935, 1.0972, 1.0991, 1.0972, 1.1034, 1.1023, 1.0908, 1.0959, 1.0961, 1.1023, 1.0979, 1.0988, 1.1037, 1.0993, 1.1018, 1.1040, - 1.1114, 1.1104, 1.1133, 1.1196, 1.1155, 1.1206, 1.1189, 1.1216, 1.1216, 1.1216, 1.1268, 1.1264, 1.1258, 1.1275, 1.1279, 1.1314, 1.1223, 1.1300, - 1.1287, 1.1320, 1.1253, 1.1308, 1.1314, 1.1354, 1.1276, 1.1263, 1.1308, 1.1294, 1.1439, 1.1389, 1.1405, 1.1426, 1.1485, 1.1416, 1.1405, 1.1541, - 1.1563, 1.1503, 1.1599, 1.1497, 1.1424, 1.1643, 1.1611, 1.1668, 1.1591, 1.1631, 1.1706, 1.1624, 1.1702, 1.1698, 1.1724, 1.1801, 1.1769, 1.1790, - 1.1806, 1.1791, 1.1766, 1.1766, 1.1738, 1.1811, 1.1835, 1.1762, 1.1818, 1.1751, 1.1759, 1.1882, 1.1797, 1.1823, 1.1905], - "albedo": 0.1888 - }, - "(16) Psyche:D|29": {"tags": ["featured", "solar_system", "minor_body", "asteroid", "main_belt", "surface_feature"], - "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, - 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, - 552.5, 555, 557.5, 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, - 612.5, 615, 617.5, 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 657.5, 660, 662.5, 665, 667.5, 670, - 672.5, 675, 677.5, 680, 682.5, 685, 687.5, 690, 692.5, 695, 697.5, 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, - 732.5, 735, 737.5, 740, 742.5, 745, 747.5, 750, 752.5, 755, 757.5, 767.5, 770, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, - 800, 802.5, 805, 807.5, 810, 812.5, 815, 817.5, 820, 822.5, 825, 827.5, 830, 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, - 860, 862.5, 865, 867.5, 870, 872.5, 875, 877.5, 880, 882.5, 885, 887.5, 890, 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, - 920, 922.5, 925], - "br": [0.8654, 0.8647, 0.8748, 0.8828, 0.8987, 0.8988, 0.9084, 0.9277, 0.9288, 0.9144, 0.8941, 0.9281, 0.9295, 0.9236, 0.9228, 0.9224, 0.9295, - 0.9383, 0.9480, 0.9455, 0.9547, 0.9704, 0.9516, 0.9531, 0.9593, 0.9571, 0.9626, 0.9624, 0.9542, 0.9560, 0.9631, 0.9656, 0.9627, 0.9656, 0.9638, - 0.9505, 0.9642, 0.9746, 0.9805, 0.9721, 0.9911, 0.9962, 0.9917, 1.0008, 0.9930, 0.9896, 0.9970, 1.0025, 1.0044, 1.0040, 1.0101, 1.0142, 1.0036, - 1.0108, 1.0168, 1.0174, 1.0215, 1.0203, 1.0265, 1.0227, 1.0241, 1.0284, 1.0345, 1.0307, 1.0251, 1.0353, 1.0388, 1.0394, 1.0354, 1.0392, 1.0463, - 1.0488, 1.0469, 1.0446, 1.0500, 1.0475, 1.0493, 1.0500, 1.0535, 1.0561, 1.0577, 1.0541, 1.0608, 1.0620, 1.0621, 1.0622, 1.0665, 1.0633, 1.0683, - 1.0780, 1.0820, 1.0669, 1.0731, 1.0811, 1.0780, 1.0803, 1.0781, 1.0849, 1.0827, 1.0929, 1.0877, 1.0883, 1.0838, 1.0795, 1.0823, 1.0878, 1.0931, - 1.0938, 1.0917, 1.0935, 1.0972, 1.0991, 1.0972, 1.1034, 1.1023, 1.0908, 1.0959, 1.0961, 1.1023, 1.0979, 1.0988, 1.1037, 1.0993, 1.1018, 1.1040, - 1.1114, 1.1104, 1.1133, 1.1196, 1.1155, 1.1206, 1.1189, 1.1216, 1.1216, 1.1216, 1.1268, 1.1264, 1.1258, 1.1275, 1.1279, 1.1314, 1.1223, 1.1300, - 1.1287, 1.1320, 1.1253, 1.1308, 1.1314, 1.1354, 1.1276, 1.1263, 1.1308, 1.1294, 1.1439, 1.1389, 1.1405, 1.1426, 1.1485, 1.1416, 1.1405, 1.1541, - 1.1563, 1.1503, 1.1599, 1.1497, 1.1424, 1.1643, 1.1611, 1.1668, 1.1591, 1.1631, 1.1706, 1.1624, 1.1702, 1.1698, 1.1724, 1.1801, 1.1769, 1.1790, - 1.1806, 1.1791, 1.1766, 1.1766, 1.1738, 1.1811, 1.1835, 1.1762, 1.1818, 1.1751, 1.1759, 1.1882, 1.1797, 1.1823, 1.1905], - "albedo": 0.128 - }, - "(22) Kalliope|29": {"tags": ["solar_system", "minor_body", "asteroid", "main_belt"], - "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, - 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, - 552.5, 555, 557.5, 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, - 612.5, 615, 617.5, 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 655, 657.5, 660, 662.5, 665, 667.5, 670, 672.5, 675, - 677.5, 682.5, 685, 687.5, 690, 692.5, 695, 697.5, 700, 702.5, 705, 707.5, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, 732.5, 735, 737.5, 740, - 742.5, 745, 747.5, 762.5, 765, 767.5, 770, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, 800, 802.5, 805, 807.5, 810, 812.5, - 815, 817.5, 820, 822.5, 825, 827.5, 830, 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, 860, 862.5, 865, 867.5, 870, 872.5, - 875, 877.5, 880, 882.5, 885, 887.5, 890, 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, 920, 925], - "br": [0.9067, 0.9086, 0.9030, 0.8945, 0.9131, 0.9209, 0.9080, 0.9156, 0.9106, 0.9298, 0.9393, 0.9358, 0.9382, 0.9342, 0.9406, 0.9392, 0.9378, - 0.9564, 0.9676, 0.9403, 0.9396, 0.9517, 0.9496, 0.9650, 0.9682, 0.9663, 0.9621, 0.9646, 0.9660, 0.9742, 0.9951, 0.9915, 0.9537, 0.9736, 0.9863, - 0.9912, 0.9673, 0.9928, 0.9872, 0.9924, 1.0060, 0.9878, 0.9895, 0.9950, 0.9987, 1.0034, 0.9994, 1.0133, 1.0046, 0.9998, 1.0104, 1.0085, 1.0080, - 1.0046, 1.0108, 1.0151, 1.0051, 1.0081, 1.0179, 1.0258, 1.0220, 1.0025, 1.0186, 1.0187, 1.0233, 1.0192, 1.0158, 1.0273, 1.0288, 1.0285, 1.0265, - 1.0222, 1.0249, 1.0345, 1.0339, 1.0339, 1.0345, 1.0333, 1.0337, 1.0380, 1.0429, 1.0390, 1.0412, 1.0467, 1.0386, 1.0485, 1.0377, 1.0490, 1.0418, - 1.0560, 1.0490, 1.0491, 1.0549, 1.0469, 1.0559, 1.0675, 1.0562, 1.0443, 1.0569, 1.0566, 1.0705, 1.0639, 1.0594, 1.0678, 1.0632, 1.0696, 1.0879, - 1.0785, 1.0548, 1.0881, 1.0735, 1.0732, 1.0647, 1.0730, 1.0815, 1.0826, 1.0789, 1.0766, 1.0824, 1.0834, 1.0775, 1.0808, 1.0814, 1.0870, 1.0752, - 1.0796, 1.0959, 1.0875, 1.0908, 1.0927, 1.0936, 1.1003, 1.0874, 1.0949, 1.0946, 1.0936, 1.0908, 1.0963, 1.0982, 1.1106, 1.1036, 1.0803, 1.0973, - 1.0908, 1.0864, 1.1026, 1.0915, 1.0952, 1.0908, 1.0987, 1.1041, 1.1106, 1.0979, 1.1199, 1.1011, 1.1142, 1.0845, 1.0958, 1.1131, 1.1077, 1.1148, - 1.1070, 1.0918, 1.1076, 1.1169, 1.1031, 1.1048, 1.1047, 1.1048, 1.1048, 1.1179, 1.1208, 1.1317, 1.1282, 1.0959, 1.0898, 1.1340, 1.1210, 1.0982, - 1.1426, 1.1166, 1.0794, 1.1339, 1.1567, 1.1042, 1.1493, 1.1600] + "(16) Psyche:B|29": {"tags": ["featured", "solar_system", "minor_body", "asteroid", "main_belt", "surface_feature"], + "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, + 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, + 552.5, 555, 557.5, 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, + 612.5, 615, 617.5, 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 657.5, 660, 662.5, 665, 667.5, 670, + 672.5, 675, 677.5, 680, 682.5, 685, 687.5, 690, 692.5, 695, 697.5, 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, + 732.5, 735, 737.5, 740, 742.5, 745, 747.5, 750, 752.5, 755, 757.5, 767.5, 770, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, + 800, 802.5, 805, 807.5, 810, 812.5, 815, 817.5, 820, 822.5, 825, 827.5, 830, 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, + 860, 862.5, 865, 867.5, 870, 872.5, 875, 877.5, 880, 882.5, 885, 887.5, 890, 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, + 920, 922.5, 925], + "br": [0.8654, 0.8647, 0.8748, 0.8828, 0.8987, 0.8988, 0.9084, 0.9277, 0.9288, 0.9144, 0.8941, 0.9281, 0.9295, 0.9236, 0.9228, 0.9224, 0.9295, + 0.9383, 0.9480, 0.9455, 0.9547, 0.9704, 0.9516, 0.9531, 0.9593, 0.9571, 0.9626, 0.9624, 0.9542, 0.9560, 0.9631, 0.9656, 0.9627, 0.9656, 0.9638, + 0.9505, 0.9642, 0.9746, 0.9805, 0.9721, 0.9911, 0.9962, 0.9917, 1.0008, 0.9930, 0.9896, 0.9970, 1.0025, 1.0044, 1.0040, 1.0101, 1.0142, 1.0036, + 1.0108, 1.0168, 1.0174, 1.0215, 1.0203, 1.0265, 1.0227, 1.0241, 1.0284, 1.0345, 1.0307, 1.0251, 1.0353, 1.0388, 1.0394, 1.0354, 1.0392, 1.0463, + 1.0488, 1.0469, 1.0446, 1.0500, 1.0475, 1.0493, 1.0500, 1.0535, 1.0561, 1.0577, 1.0541, 1.0608, 1.0620, 1.0621, 1.0622, 1.0665, 1.0633, 1.0683, + 1.0780, 1.0820, 1.0669, 1.0731, 1.0811, 1.0780, 1.0803, 1.0781, 1.0849, 1.0827, 1.0929, 1.0877, 1.0883, 1.0838, 1.0795, 1.0823, 1.0878, 1.0931, + 1.0938, 1.0917, 1.0935, 1.0972, 1.0991, 1.0972, 1.1034, 1.1023, 1.0908, 1.0959, 1.0961, 1.1023, 1.0979, 1.0988, 1.1037, 1.0993, 1.1018, 1.1040, + 1.1114, 1.1104, 1.1133, 1.1196, 1.1155, 1.1206, 1.1189, 1.1216, 1.1216, 1.1216, 1.1268, 1.1264, 1.1258, 1.1275, 1.1279, 1.1314, 1.1223, 1.1300, + 1.1287, 1.1320, 1.1253, 1.1308, 1.1314, 1.1354, 1.1276, 1.1263, 1.1308, 1.1294, 1.1439, 1.1389, 1.1405, 1.1426, 1.1485, 1.1416, 1.1405, 1.1541, + 1.1563, 1.1503, 1.1599, 1.1497, 1.1424, 1.1643, 1.1611, 1.1668, 1.1591, 1.1631, 1.1706, 1.1624, 1.1702, 1.1698, 1.1724, 1.1801, 1.1769, 1.1790, + 1.1806, 1.1791, 1.1766, 1.1766, 1.1738, 1.1811, 1.1835, 1.1762, 1.1818, 1.1751, 1.1759, 1.1882, 1.1797, 1.1823, 1.1905], + "albedo": 0.1888 + }, + "(16) Psyche:D|29": {"tags": ["featured", "solar_system", "minor_body", "asteroid", "main_belt", "surface_feature"], + "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, + 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, + 552.5, 555, 557.5, 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, + 612.5, 615, 617.5, 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 657.5, 660, 662.5, 665, 667.5, 670, + 672.5, 675, 677.5, 680, 682.5, 685, 687.5, 690, 692.5, 695, 697.5, 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, + 732.5, 735, 737.5, 740, 742.5, 745, 747.5, 750, 752.5, 755, 757.5, 767.5, 770, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, + 800, 802.5, 805, 807.5, 810, 812.5, 815, 817.5, 820, 822.5, 825, 827.5, 830, 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, + 860, 862.5, 865, 867.5, 870, 872.5, 875, 877.5, 880, 882.5, 885, 887.5, 890, 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, + 920, 922.5, 925], + "br": [0.8654, 0.8647, 0.8748, 0.8828, 0.8987, 0.8988, 0.9084, 0.9277, 0.9288, 0.9144, 0.8941, 0.9281, 0.9295, 0.9236, 0.9228, 0.9224, 0.9295, + 0.9383, 0.9480, 0.9455, 0.9547, 0.9704, 0.9516, 0.9531, 0.9593, 0.9571, 0.9626, 0.9624, 0.9542, 0.9560, 0.9631, 0.9656, 0.9627, 0.9656, 0.9638, + 0.9505, 0.9642, 0.9746, 0.9805, 0.9721, 0.9911, 0.9962, 0.9917, 1.0008, 0.9930, 0.9896, 0.9970, 1.0025, 1.0044, 1.0040, 1.0101, 1.0142, 1.0036, + 1.0108, 1.0168, 1.0174, 1.0215, 1.0203, 1.0265, 1.0227, 1.0241, 1.0284, 1.0345, 1.0307, 1.0251, 1.0353, 1.0388, 1.0394, 1.0354, 1.0392, 1.0463, + 1.0488, 1.0469, 1.0446, 1.0500, 1.0475, 1.0493, 1.0500, 1.0535, 1.0561, 1.0577, 1.0541, 1.0608, 1.0620, 1.0621, 1.0622, 1.0665, 1.0633, 1.0683, + 1.0780, 1.0820, 1.0669, 1.0731, 1.0811, 1.0780, 1.0803, 1.0781, 1.0849, 1.0827, 1.0929, 1.0877, 1.0883, 1.0838, 1.0795, 1.0823, 1.0878, 1.0931, + 1.0938, 1.0917, 1.0935, 1.0972, 1.0991, 1.0972, 1.1034, 1.1023, 1.0908, 1.0959, 1.0961, 1.1023, 1.0979, 1.0988, 1.1037, 1.0993, 1.1018, 1.1040, + 1.1114, 1.1104, 1.1133, 1.1196, 1.1155, 1.1206, 1.1189, 1.1216, 1.1216, 1.1216, 1.1268, 1.1264, 1.1258, 1.1275, 1.1279, 1.1314, 1.1223, 1.1300, + 1.1287, 1.1320, 1.1253, 1.1308, 1.1314, 1.1354, 1.1276, 1.1263, 1.1308, 1.1294, 1.1439, 1.1389, 1.1405, 1.1426, 1.1485, 1.1416, 1.1405, 1.1541, + 1.1563, 1.1503, 1.1599, 1.1497, 1.1424, 1.1643, 1.1611, 1.1668, 1.1591, 1.1631, 1.1706, 1.1624, 1.1702, 1.1698, 1.1724, 1.1801, 1.1769, 1.1790, + 1.1806, 1.1791, 1.1766, 1.1766, 1.1738, 1.1811, 1.1835, 1.1762, 1.1818, 1.1751, 1.1759, 1.1882, 1.1797, 1.1823, 1.1905], + "albedo": 0.128 + }, + "(22) Kalliope|29": {"tags": ["solar_system", "minor_body", "asteroid", "main_belt"], + "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, + 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, + 552.5, 555, 557.5, 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, + 612.5, 615, 617.5, 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 655, 657.5, 660, 662.5, 665, 667.5, 670, 672.5, 675, + 677.5, 682.5, 685, 687.5, 690, 692.5, 695, 697.5, 700, 702.5, 705, 707.5, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, 732.5, 735, 737.5, 740, + 742.5, 745, 747.5, 762.5, 765, 767.5, 770, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, 800, 802.5, 805, 807.5, 810, 812.5, + 815, 817.5, 820, 822.5, 825, 827.5, 830, 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, 860, 862.5, 865, 867.5, 870, 872.5, + 875, 877.5, 880, 882.5, 885, 887.5, 890, 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, 920, 925], + "br": [0.9067, 0.9086, 0.9030, 0.8945, 0.9131, 0.9209, 0.9080, 0.9156, 0.9106, 0.9298, 0.9393, 0.9358, 0.9382, 0.9342, 0.9406, 0.9392, 0.9378, + 0.9564, 0.9676, 0.9403, 0.9396, 0.9517, 0.9496, 0.9650, 0.9682, 0.9663, 0.9621, 0.9646, 0.9660, 0.9742, 0.9951, 0.9915, 0.9537, 0.9736, 0.9863, + 0.9912, 0.9673, 0.9928, 0.9872, 0.9924, 1.0060, 0.9878, 0.9895, 0.9950, 0.9987, 1.0034, 0.9994, 1.0133, 1.0046, 0.9998, 1.0104, 1.0085, 1.0080, + 1.0046, 1.0108, 1.0151, 1.0051, 1.0081, 1.0179, 1.0258, 1.0220, 1.0025, 1.0186, 1.0187, 1.0233, 1.0192, 1.0158, 1.0273, 1.0288, 1.0285, 1.0265, + 1.0222, 1.0249, 1.0345, 1.0339, 1.0339, 1.0345, 1.0333, 1.0337, 1.0380, 1.0429, 1.0390, 1.0412, 1.0467, 1.0386, 1.0485, 1.0377, 1.0490, 1.0418, + 1.0560, 1.0490, 1.0491, 1.0549, 1.0469, 1.0559, 1.0675, 1.0562, 1.0443, 1.0569, 1.0566, 1.0705, 1.0639, 1.0594, 1.0678, 1.0632, 1.0696, 1.0879, + 1.0785, 1.0548, 1.0881, 1.0735, 1.0732, 1.0647, 1.0730, 1.0815, 1.0826, 1.0789, 1.0766, 1.0824, 1.0834, 1.0775, 1.0808, 1.0814, 1.0870, 1.0752, + 1.0796, 1.0959, 1.0875, 1.0908, 1.0927, 1.0936, 1.1003, 1.0874, 1.0949, 1.0946, 1.0936, 1.0908, 1.0963, 1.0982, 1.1106, 1.1036, 1.0803, 1.0973, + 1.0908, 1.0864, 1.1026, 1.0915, 1.0952, 1.0908, 1.0987, 1.1041, 1.1106, 1.0979, 1.1199, 1.1011, 1.1142, 1.0845, 1.0958, 1.1131, 1.1077, 1.1148, + 1.1070, 1.0918, 1.1076, 1.1169, 1.1031, 1.1048, 1.1047, 1.1048, 1.1048, 1.1179, 1.1208, 1.1317, 1.1282, 1.0959, 1.0898, 1.1340, 1.1210, 1.0982, + 1.1426, 1.1166, 1.0794, 1.1339, 1.1567, 1.1042, 1.1493, 1.1600] }, - "(31) Euphrosyne|29": {"tags": ["solar_system", "minor_body", "asteroid", "main_belt"], - "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, - 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, - 552.5, 555, 557.5, 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, - 612.5, 615, 617.5, 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 657.5, 660, 662.5, 665, 667.5, 670, - 672.5, 675, 677.5, 680, 682.5, 685, 687.5, 690, 692.5, 695, 697.5, 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, - 732.5, 735, 737.5, 740, 742.5, 745, 747.5, 750, 752.5, 755, 757.5, 760, 770, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, - 800, 802.5, 805, 807.5, 810, 812.5, 815, 817.5, 820, 822.5, 825, 827.5, 830, 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, - 860, 862.5, 865, 867.5, 870, 872.5, 875, 877.5, 880, 882.5, 885, 887.5, 890, 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, - 920, 922.5, 925], - "br": [0.9239, 0.9245, 0.9484, 1.0410, 0.9901, 0.9704, 0.9642, 0.9507, 0.9787, 0.9807, 0.9512, 0.9907, 0.9916, 0.9946, 1.0054, 1.0011, 0.9958, - 0.9940, 0.9898, 1.0015, 0.9844, 0.9851, 0.9842, 0.9981, 1.0002, 0.9946, 0.9897, 0.9835, 0.9923, 0.9919, 0.9942, 0.9974, 0.9904, 0.9920, 1.0021, - 0.9964, 0.9992, 1.0040, 1.0015, 0.9976, 1.0023, 0.9939, 0.9967, 0.9973, 0.9987, 1.0023, 0.9997, 1.0012, 1.0031, 1.0033, 1.0001, 0.9990, 1.0029, - 1.0027, 1.0005, 1.0010, 1.0020, 1.0046, 1.0026, 0.9984, 0.9976, 0.9987, 1.0002, 1.0004, 0.9981, 0.9976, 0.9986, 0.9968, 0.9928, 0.9976, 0.9976, - 0.9968, 0.9966, 1.0025, 0.9981, 1.0001, 1.0017, 1.0005, 1.0021, 1.0006, 0.9979, 1.0029, 1.0049, 1.0051, 1.0015, 0.9999, 1.0030, 1.0034, 1.0039, - 1.0033, 1.0038, 1.0015, 1.0001, 1.0031, 1.0095, 1.0053, 1.0062, 1.0030, 1.0069, 1.0101, 1.0096, 1.0103, 1.0109, 1.0068, 0.9997, 1.0017, 1.0050, - 1.0054, 1.0095, 1.0088, 1.0079, 1.0123, 1.0030, 1.0076, 1.0072, 1.0001, 1.0002, 1.0002, 1.0030, 1.0017, 1.0018, 1.0099, 1.0141, 1.0152, 1.0126, - 1.0054, 1.0092, 1.0180, 1.0161, 1.0149, 1.0295, 1.0027, 1.0159, 1.0198, 1.0180, 1.0157, 1.0167, 1.0205, 1.0248, 1.0223, 1.0196, 1.0188, 1.0176, - 1.0177, 1.0149, 1.0180, 1.0203, 1.0187, 1.0157, 1.0071, 1.0041, 1.0041, 1.0125, 0.9978, 1.0122, 1.0051, 1.0118, 1.0112, 1.0161, 1.0132, 1.0160, - 1.0108, 1.0262, 1.0173, 1.0265, 1.0107, 1.0183, 1.0195, 1.0178, 1.0268, 1.0073, 1.0159, 1.0177, 1.0177, 1.0217, 1.0219, 1.0136, 1.0158, 1.0169, - 1.0223, 1.0166, 1.0131, 1.0063, 1.0010, 1.0064, 1.0181, 1.0042, 1.0034, 1.0029, 1.0042, 1.0054, 1.0138, 1.0167, 1.0114] + "(31) Euphrosyne|29": {"tags": ["solar_system", "minor_body", "asteroid", "main_belt"], + "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, + 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, + 552.5, 555, 557.5, 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, + 612.5, 615, 617.5, 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 657.5, 660, 662.5, 665, 667.5, 670, + 672.5, 675, 677.5, 680, 682.5, 685, 687.5, 690, 692.5, 695, 697.5, 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, + 732.5, 735, 737.5, 740, 742.5, 745, 747.5, 750, 752.5, 755, 757.5, 760, 770, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, + 800, 802.5, 805, 807.5, 810, 812.5, 815, 817.5, 820, 822.5, 825, 827.5, 830, 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, + 860, 862.5, 865, 867.5, 870, 872.5, 875, 877.5, 880, 882.5, 885, 887.5, 890, 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, + 920, 922.5, 925], + "br": [0.9239, 0.9245, 0.9484, 1.0410, 0.9901, 0.9704, 0.9642, 0.9507, 0.9787, 0.9807, 0.9512, 0.9907, 0.9916, 0.9946, 1.0054, 1.0011, 0.9958, + 0.9940, 0.9898, 1.0015, 0.9844, 0.9851, 0.9842, 0.9981, 1.0002, 0.9946, 0.9897, 0.9835, 0.9923, 0.9919, 0.9942, 0.9974, 0.9904, 0.9920, 1.0021, + 0.9964, 0.9992, 1.0040, 1.0015, 0.9976, 1.0023, 0.9939, 0.9967, 0.9973, 0.9987, 1.0023, 0.9997, 1.0012, 1.0031, 1.0033, 1.0001, 0.9990, 1.0029, + 1.0027, 1.0005, 1.0010, 1.0020, 1.0046, 1.0026, 0.9984, 0.9976, 0.9987, 1.0002, 1.0004, 0.9981, 0.9976, 0.9986, 0.9968, 0.9928, 0.9976, 0.9976, + 0.9968, 0.9966, 1.0025, 0.9981, 1.0001, 1.0017, 1.0005, 1.0021, 1.0006, 0.9979, 1.0029, 1.0049, 1.0051, 1.0015, 0.9999, 1.0030, 1.0034, 1.0039, + 1.0033, 1.0038, 1.0015, 1.0001, 1.0031, 1.0095, 1.0053, 1.0062, 1.0030, 1.0069, 1.0101, 1.0096, 1.0103, 1.0109, 1.0068, 0.9997, 1.0017, 1.0050, + 1.0054, 1.0095, 1.0088, 1.0079, 1.0123, 1.0030, 1.0076, 1.0072, 1.0001, 1.0002, 1.0002, 1.0030, 1.0017, 1.0018, 1.0099, 1.0141, 1.0152, 1.0126, + 1.0054, 1.0092, 1.0180, 1.0161, 1.0149, 1.0295, 1.0027, 1.0159, 1.0198, 1.0180, 1.0157, 1.0167, 1.0205, 1.0248, 1.0223, 1.0196, 1.0188, 1.0176, + 1.0177, 1.0149, 1.0180, 1.0203, 1.0187, 1.0157, 1.0071, 1.0041, 1.0041, 1.0125, 0.9978, 1.0122, 1.0051, 1.0118, 1.0112, 1.0161, 1.0132, 1.0160, + 1.0108, 1.0262, 1.0173, 1.0265, 1.0107, 1.0183, 1.0195, 1.0178, 1.0268, 1.0073, 1.0159, 1.0177, 1.0177, 1.0217, 1.0219, 1.0136, 1.0158, 1.0169, + 1.0223, 1.0166, 1.0131, 1.0063, 1.0010, 1.0064, 1.0181, 1.0042, 1.0034, 1.0029, 1.0042, 1.0054, 1.0138, 1.0167, 1.0114] }, - "(41) Daphne|29": {"tags": ["solar_system", "minor_body", "asteroid", "main_belt"], - "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, - 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, 552.5, 555, 557.5, - 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, 612.5, 615, 617.5, - 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 657.5, 660, 665, 667.5, 670, 672.5, 675, 677.5, 680, - 682.5, 685, 687.5, 690, 692.5, 695, 697.5, 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, 732.5, 735, 737.5, 740, - 742.5, 745, 747.5, 750, 752.5, 755, 770, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, 800, 802.5, 805, 807.5, 810, 812.5, - 815, 817.5, 820, 822.5, 825, 827.5, 830, 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, 860, 862.5, 865, 867.5, 870, 872.5, - 875, 877.5, 880, 882.5, 885, 887.5, 890, 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, 920, 922.5, 925], - "br": [0.9305, 0.8936, 0.8955, 0.8970, 0.8995, 0.9359, 0.9416, 0.9636, 0.9532, 0.9546, 0.9561, 0.9491, 0.9581, 0.9535, 0.9453, 0.9445, 0.9492, - 0.9522, 0.9595, 0.9726, 0.9731, 0.9765, 0.9631, 0.9341, 0.9841, 0.9979, 0.9741, 0.9823, 0.9698, 0.9609, 0.9669, 0.9766, 0.9791, 0.9727, 0.9748, - 0.9961, 0.9925, 0.9839, 0.9951, 1.0092, 1.0001, 1.0085, 0.9942, 0.9944, 1.0023, 1.0024, 0.9999, 1.0002, 1.0011, 0.9989, 0.9949, 1.0047, 1.0040, - 0.9996, 1.0033, 1.0104, 1.0118, 1.0081, 1.0094, 1.0176, 1.0102, 1.0017, 0.9999, 1.0150, 1.0109, 1.0078, 1.0044, 1.0107, 1.0098, 1.0067, 1.0032, - 1.0001, 1.0022, 1.0115, 1.0011, 1.0016, 1.0054, 1.0031, 1.0061, 1.0040, 1.0068, 0.9988, 1.0018, 1.0053, 0.9973, 1.0054, 0.9968, 0.9985, 1.0113, - 1.0045, 1.0087, 1.0028, 0.9993, 1.0074, 1.0076, 1.0028, 1.0009, 0.9767, 0.9797, 1.0196, 1.0142, 0.9990, 0.9937, 0.9925, 0.9978, 0.9961, 0.9987, - 0.9986, 0.9935, 0.9729, 0.9828, 0.9998, 0.9806, 0.9881, 0.9921, 0.9981, 1.0007, 0.9957, 0.9907, 0.9955, 0.9993, 1.0001, 0.9993, 1.0045, 0.9986, - 1.0225, 1.0033, 1.0073, 1.0157, 1.0025, 1.0103, 1.0012, 1.0075, 1.0099, 1.0002, 1.0220, 1.0089, 1.0002, 1.0119, 1.0008, 1.0105, 1.0035, 0.9983, - 0.9818, 0.9981, 1.0013, 0.9966, 1.0167, 1.0109, 0.9965, 1.0051, 1.0118, 1.0021, 1.0308, 1.0077, 1.0274, 1.0100, 1.0131, 1.0027, 0.9947, 1.0480, - 1.0135, 1.0067, 1.0180, 1.0112, 1.0249, 1.0189, 1.0168, 1.0294, 1.0115, 1.0241, 1.0226, 1.0230, 1.0307, 1.0220, 1.0214, 0.9945, 1.0012, 1.0500, - 1.0359, 0.9928, 1.0289, 1.0304, 1.0019, 1.0380, 1.0253, 1.0227, 1.0435] + "(41) Daphne|29": {"tags": ["solar_system", "minor_body", "asteroid", "main_belt"], + "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, + 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, 552.5, 555, 557.5, + 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, 612.5, 615, 617.5, + 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 657.5, 660, 665, 667.5, 670, 672.5, 675, 677.5, 680, + 682.5, 685, 687.5, 690, 692.5, 695, 697.5, 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, 732.5, 735, 737.5, 740, + 742.5, 745, 747.5, 750, 752.5, 755, 770, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, 800, 802.5, 805, 807.5, 810, 812.5, + 815, 817.5, 820, 822.5, 825, 827.5, 830, 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, 860, 862.5, 865, 867.5, 870, 872.5, + 875, 877.5, 880, 882.5, 885, 887.5, 890, 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, 920, 922.5, 925], + "br": [0.9305, 0.8936, 0.8955, 0.8970, 0.8995, 0.9359, 0.9416, 0.9636, 0.9532, 0.9546, 0.9561, 0.9491, 0.9581, 0.9535, 0.9453, 0.9445, 0.9492, + 0.9522, 0.9595, 0.9726, 0.9731, 0.9765, 0.9631, 0.9341, 0.9841, 0.9979, 0.9741, 0.9823, 0.9698, 0.9609, 0.9669, 0.9766, 0.9791, 0.9727, 0.9748, + 0.9961, 0.9925, 0.9839, 0.9951, 1.0092, 1.0001, 1.0085, 0.9942, 0.9944, 1.0023, 1.0024, 0.9999, 1.0002, 1.0011, 0.9989, 0.9949, 1.0047, 1.0040, + 0.9996, 1.0033, 1.0104, 1.0118, 1.0081, 1.0094, 1.0176, 1.0102, 1.0017, 0.9999, 1.0150, 1.0109, 1.0078, 1.0044, 1.0107, 1.0098, 1.0067, 1.0032, + 1.0001, 1.0022, 1.0115, 1.0011, 1.0016, 1.0054, 1.0031, 1.0061, 1.0040, 1.0068, 0.9988, 1.0018, 1.0053, 0.9973, 1.0054, 0.9968, 0.9985, 1.0113, + 1.0045, 1.0087, 1.0028, 0.9993, 1.0074, 1.0076, 1.0028, 1.0009, 0.9767, 0.9797, 1.0196, 1.0142, 0.9990, 0.9937, 0.9925, 0.9978, 0.9961, 0.9987, + 0.9986, 0.9935, 0.9729, 0.9828, 0.9998, 0.9806, 0.9881, 0.9921, 0.9981, 1.0007, 0.9957, 0.9907, 0.9955, 0.9993, 1.0001, 0.9993, 1.0045, 0.9986, + 1.0225, 1.0033, 1.0073, 1.0157, 1.0025, 1.0103, 1.0012, 1.0075, 1.0099, 1.0002, 1.0220, 1.0089, 1.0002, 1.0119, 1.0008, 1.0105, 1.0035, 0.9983, + 0.9818, 0.9981, 1.0013, 0.9966, 1.0167, 1.0109, 0.9965, 1.0051, 1.0118, 1.0021, 1.0308, 1.0077, 1.0274, 1.0100, 1.0131, 1.0027, 0.9947, 1.0480, + 1.0135, 1.0067, 1.0180, 1.0112, 1.0249, 1.0189, 1.0168, 1.0294, 1.0115, 1.0241, 1.0226, 1.0230, 1.0307, 1.0220, 1.0214, 0.9945, 1.0012, 1.0500, + 1.0359, 0.9928, 1.0289, 1.0304, 1.0019, 1.0380, 1.0253, 1.0227, 1.0435] }, - "(45) Eugenia|29": {"tags": ["solar_system", "minor_body", "asteroid", "main_belt"], - "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, - 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, - 552.5, 555, 557.5, 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, - 612.5, 615, 617.5, 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 657.5, 660, 662.5, 665, 667.5, 670, - 672.5, 675, 677.5, 680, 682.5, 685, 687.5, 690, 692.5, 695, 697.5, 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, - 732.5, 735, 737.5, 740, 742.5, 745, 747.5, 750, 752.5, 755, 757.5, 760, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, 800, - 802.5, 805, 807.5, 810, 812.5, 815, 817.5, 820, 822.5, 825, 827.5, 830, 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, 860, - 862.5, 865, 867.5, 870, 872.5, 875, 877.5, 880, 882.5, 885, 887.5, 890, 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, 920, - 922.5, 925], - "br": [0.9557, 0.9417, 0.9528, 0.9459, 0.9361, 0.9571, 0.9605, 0.9663, 0.9749, 0.9806, 0.9747, 0.9680, 0.9717, 0.9741, 0.9790, 0.9813, 0.9789, - 0.9684, 0.9864, 0.9780, 0.9868, 0.9856, 1.0078, 0.9801, 0.9777, 0.9918, 0.9802, 0.9917, 0.9915, 1.0025, 0.9893, 0.9885, 0.9967, 0.9935, 0.9946, - 1.0020, 0.9991, 0.9902, 0.9940, 0.9977, 0.9943, 0.9908, 0.9978, 0.9952, 0.9990, 0.9976, 0.9982, 0.9989, 1.0001, 1.0016, 1.0006, 1.0025, 1.0056, - 1.0016, 1.0014, 1.0061, 1.0048, 1.0070, 1.0047, 1.0049, 1.0056, 1.0041, 1.0011, 1.0048, 1.0068, 1.0076, 1.0029, 1.0049, 1.0029, 1.0077, 1.0061, - 1.0039, 1.0058, 1.0099, 1.0096, 1.0119, 1.0089, 1.0106, 1.0141, 1.0134, 1.0120, 1.0114, 1.0134, 1.0159, 1.0158, 1.0181, 1.0171, 1.0152, 1.0177, - 1.0152, 1.0159, 1.0184, 1.0120, 1.0160, 1.0199, 1.0183, 1.0187, 1.0187, 1.0209, 1.0220, 1.0222, 1.0233, 1.0238, 1.0134, 1.0100, 1.0176, 1.0201, - 1.0250, 1.0226, 1.0221, 1.0272, 1.0241, 1.0252, 1.0233, 1.0250, 1.0199, 1.0162, 1.0182, 1.0198, 1.0210, 1.0217, 1.0244, 1.0275, 1.0291, 1.0285, - 1.0269, 1.0279, 1.0288, 1.0285, 1.0292, 1.0295, 1.0274, 1.0280, 1.0238, 1.0249, 1.0266, 1.0246, 1.0238, 1.0243, 1.0284, 1.0242, 1.0172, 1.0235, - 1.0232, 1.0186, 1.0232, 1.0249, 1.0218, 1.0122, 1.0091, 1.0146, 1.0114, 1.0134, 1.0103, 1.0158, 1.0192, 1.0198, 1.0112, 1.0143, 1.0168, 1.0151, - 1.0091, 1.0133, 1.0142, 1.0123, 1.0095, 1.0073, 1.0086, 1.0113, 1.0082, 1.0090, 1.0059, 1.0031, 1.0031, 1.0059, 1.0041, 1.0029, 0.9985, 1.0018, - 1.0037, 0.9969, 0.9911, 0.9878, 0.9920, 0.9905, 0.9872, 0.9884, 0.9881, 0.9921, 0.9904, 0.9942, 0.9891, 0.9884] + "(45) Eugenia|29": {"tags": ["solar_system", "minor_body", "asteroid", "main_belt"], + "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, + 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, + 552.5, 555, 557.5, 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, + 612.5, 615, 617.5, 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 657.5, 660, 662.5, 665, 667.5, 670, + 672.5, 675, 677.5, 680, 682.5, 685, 687.5, 690, 692.5, 695, 697.5, 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, + 732.5, 735, 737.5, 740, 742.5, 745, 747.5, 750, 752.5, 755, 757.5, 760, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, 800, + 802.5, 805, 807.5, 810, 812.5, 815, 817.5, 820, 822.5, 825, 827.5, 830, 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, 860, + 862.5, 865, 867.5, 870, 872.5, 875, 877.5, 880, 882.5, 885, 887.5, 890, 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, 920, + 922.5, 925], + "br": [0.9557, 0.9417, 0.9528, 0.9459, 0.9361, 0.9571, 0.9605, 0.9663, 0.9749, 0.9806, 0.9747, 0.9680, 0.9717, 0.9741, 0.9790, 0.9813, 0.9789, + 0.9684, 0.9864, 0.9780, 0.9868, 0.9856, 1.0078, 0.9801, 0.9777, 0.9918, 0.9802, 0.9917, 0.9915, 1.0025, 0.9893, 0.9885, 0.9967, 0.9935, 0.9946, + 1.0020, 0.9991, 0.9902, 0.9940, 0.9977, 0.9943, 0.9908, 0.9978, 0.9952, 0.9990, 0.9976, 0.9982, 0.9989, 1.0001, 1.0016, 1.0006, 1.0025, 1.0056, + 1.0016, 1.0014, 1.0061, 1.0048, 1.0070, 1.0047, 1.0049, 1.0056, 1.0041, 1.0011, 1.0048, 1.0068, 1.0076, 1.0029, 1.0049, 1.0029, 1.0077, 1.0061, + 1.0039, 1.0058, 1.0099, 1.0096, 1.0119, 1.0089, 1.0106, 1.0141, 1.0134, 1.0120, 1.0114, 1.0134, 1.0159, 1.0158, 1.0181, 1.0171, 1.0152, 1.0177, + 1.0152, 1.0159, 1.0184, 1.0120, 1.0160, 1.0199, 1.0183, 1.0187, 1.0187, 1.0209, 1.0220, 1.0222, 1.0233, 1.0238, 1.0134, 1.0100, 1.0176, 1.0201, + 1.0250, 1.0226, 1.0221, 1.0272, 1.0241, 1.0252, 1.0233, 1.0250, 1.0199, 1.0162, 1.0182, 1.0198, 1.0210, 1.0217, 1.0244, 1.0275, 1.0291, 1.0285, + 1.0269, 1.0279, 1.0288, 1.0285, 1.0292, 1.0295, 1.0274, 1.0280, 1.0238, 1.0249, 1.0266, 1.0246, 1.0238, 1.0243, 1.0284, 1.0242, 1.0172, 1.0235, + 1.0232, 1.0186, 1.0232, 1.0249, 1.0218, 1.0122, 1.0091, 1.0146, 1.0114, 1.0134, 1.0103, 1.0158, 1.0192, 1.0198, 1.0112, 1.0143, 1.0168, 1.0151, + 1.0091, 1.0133, 1.0142, 1.0123, 1.0095, 1.0073, 1.0086, 1.0113, 1.0082, 1.0090, 1.0059, 1.0031, 1.0031, 1.0059, 1.0041, 1.0029, 0.9985, 1.0018, + 1.0037, 0.9969, 0.9911, 0.9878, 0.9920, 0.9905, 0.9872, 0.9884, 0.9881, 0.9921, 0.9904, 0.9942, 0.9891, 0.9884] }, - "(87) Sylvia|29": {"tags": ["solar_system", "minor_body", "asteroid", "main_belt"], - "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, - 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, - 552.5, 555, 557.5, 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, - 612.5, 615, 617.5, 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 657.5, 660, 662.5, 665, 667.5, 670, - 672.5, 675, 677.5, 680, 682.5, 685, 687.5, 690, 692.5, 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 735, 737.5, 740, 742.5, 745, 747.5, - 750, 752.5, 755, 757.5, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, 800, 802.5, 805, 807.5, 810, 812.5, 815, 827.5, 830, - 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, 860, 862.5, 865, 867.5, 870, 872.5, 875, 877.5, 880, 882.5, 885, 887.5, 890, - 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, 920, 922.5, 925], - "br": [0.9092, 0.9940, 1.0161, 0.9668, 0.9628, 0.9305, 0.9342, 0.9620, 0.9719, 0.9351, 0.9578, 0.9564, 0.9418, 0.9505, 0.9449, 0.9400, 0.9579, - 0.9403, 0.9629, 0.9728, 0.9562, 0.9665, 1.0086, 0.9699, 0.9636, 0.9781, 0.9651, 0.9693, 0.9841, 0.9941, 0.9956, 0.9927, 0.9902, 0.9900, 1.0030, - 0.9982, 1.0053, 0.9752, 0.9931, 0.9954, 0.9984, 0.9831, 0.9935, 0.9955, 0.9949, 1.0049, 1.0037, 1.0031, 1.0044, 1.0032, 0.9991, 1.0073, 1.0085, - 1.0164, 1.0122, 1.0105, 1.0161, 1.0143, 1.0042, 1.0084, 1.0177, 1.0130, 1.0084, 1.0141, 1.0173, 1.0170, 1.0080, 1.0156, 1.0184, 1.0195, 1.0167, - 1.0177, 1.0213, 1.0243, 1.0255, 1.0237, 1.0204, 1.0260, 1.0319, 1.0295, 1.0254, 1.0265, 1.0285, 1.0339, 1.0335, 1.0335, 1.0360, 1.0401, 1.0348, - 1.0350, 1.0335, 1.0480, 1.0290, 1.0412, 1.0453, 1.0433, 1.0460, 1.0439, 1.0457, 1.0451, 1.0507, 1.0507, 1.0532, 1.0525, 1.0469, 1.0534, 1.0571, - 1.0557, 1.0571, 1.0563, 1.0595, 1.0573, 1.0583, 1.0574, 1.0670, 1.0754, 1.0793, 1.0786, 1.0759, 1.0829, 1.0808, 1.0817, 1.0845, 1.0776, 1.0850, - 1.0876, 1.0825, 1.0908, 1.0872, 1.0855, 1.0855, 1.0895, 1.0879, 1.0774, 1.0855, 1.0829, 1.0854, 1.0881, 1.0877, 1.0860, 1.0804, 1.0822, 1.0826, - 1.0883, 1.0920, 1.0875, 1.0863, 1.0908, 1.0889, 1.0878, 1.0941, 1.0959, 1.0756, 1.0877, 1.0880, 1.0873, 1.0912, 1.0839, 1.0822, 1.0798, 1.0854, - 1.0838, 1.0853, 1.0841, 1.0832, 1.0838, 1.0851, 1.0827, 1.0687, 1.0648, 1.0555, 1.0554, 1.0639, 1.0627, 1.0568, 1.0656, 1.0631, 1.0552, 1.0690, - 1.0503, 1.0553] + "(87) Sylvia|29": {"tags": ["solar_system", "minor_body", "asteroid", "main_belt"], + "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, + 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, + 552.5, 555, 557.5, 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, + 612.5, 615, 617.5, 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 657.5, 660, 662.5, 665, 667.5, 670, + 672.5, 675, 677.5, 680, 682.5, 685, 687.5, 690, 692.5, 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 735, 737.5, 740, 742.5, 745, 747.5, + 750, 752.5, 755, 757.5, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, 800, 802.5, 805, 807.5, 810, 812.5, 815, 827.5, 830, + 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, 860, 862.5, 865, 867.5, 870, 872.5, 875, 877.5, 880, 882.5, 885, 887.5, 890, + 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, 920, 922.5, 925], + "br": [0.9092, 0.9940, 1.0161, 0.9668, 0.9628, 0.9305, 0.9342, 0.9620, 0.9719, 0.9351, 0.9578, 0.9564, 0.9418, 0.9505, 0.9449, 0.9400, 0.9579, + 0.9403, 0.9629, 0.9728, 0.9562, 0.9665, 1.0086, 0.9699, 0.9636, 0.9781, 0.9651, 0.9693, 0.9841, 0.9941, 0.9956, 0.9927, 0.9902, 0.9900, 1.0030, + 0.9982, 1.0053, 0.9752, 0.9931, 0.9954, 0.9984, 0.9831, 0.9935, 0.9955, 0.9949, 1.0049, 1.0037, 1.0031, 1.0044, 1.0032, 0.9991, 1.0073, 1.0085, + 1.0164, 1.0122, 1.0105, 1.0161, 1.0143, 1.0042, 1.0084, 1.0177, 1.0130, 1.0084, 1.0141, 1.0173, 1.0170, 1.0080, 1.0156, 1.0184, 1.0195, 1.0167, + 1.0177, 1.0213, 1.0243, 1.0255, 1.0237, 1.0204, 1.0260, 1.0319, 1.0295, 1.0254, 1.0265, 1.0285, 1.0339, 1.0335, 1.0335, 1.0360, 1.0401, 1.0348, + 1.0350, 1.0335, 1.0480, 1.0290, 1.0412, 1.0453, 1.0433, 1.0460, 1.0439, 1.0457, 1.0451, 1.0507, 1.0507, 1.0532, 1.0525, 1.0469, 1.0534, 1.0571, + 1.0557, 1.0571, 1.0563, 1.0595, 1.0573, 1.0583, 1.0574, 1.0670, 1.0754, 1.0793, 1.0786, 1.0759, 1.0829, 1.0808, 1.0817, 1.0845, 1.0776, 1.0850, + 1.0876, 1.0825, 1.0908, 1.0872, 1.0855, 1.0855, 1.0895, 1.0879, 1.0774, 1.0855, 1.0829, 1.0854, 1.0881, 1.0877, 1.0860, 1.0804, 1.0822, 1.0826, + 1.0883, 1.0920, 1.0875, 1.0863, 1.0908, 1.0889, 1.0878, 1.0941, 1.0959, 1.0756, 1.0877, 1.0880, 1.0873, 1.0912, 1.0839, 1.0822, 1.0798, 1.0854, + 1.0838, 1.0853, 1.0841, 1.0832, 1.0838, 1.0851, 1.0827, 1.0687, 1.0648, 1.0555, 1.0554, 1.0639, 1.0627, 1.0568, 1.0656, 1.0631, 1.0552, 1.0690, + 1.0503, 1.0553] }, - "(90) Antiope|29": {"tags": ["solar_system", "minor_body", "asteroid", "main_belt"], - "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, - 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 542.5, 545, 547.5, 550, 552.5, 555, 557.5, 560, 562.5, 565, 567.5, - 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, 612.5, 615, 617.5, 620, 622.5, 625, 627.5, - 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 660, 662.5, 665, 667.5, 670, 672.5, 675, 677.5, 680, 682.5, 685, 690, 697.5, - 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, 732.5, 735, 737.5, 740, 742.5, 745, 747.5, 750, 752.5, 755, 757.5, - 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, 800, 802.5, 805, 807.5, 810, 812.5, 815, 817.5, 820, 822.5, 825, 827.5, 830, - 832.5, 835, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, 860, 862.5, 865, 867.5, 870, 872.5, 875, 877.5, 880, 882.5, 885, 887.5, 890, 892.5, - 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, 920, 922.5, 925], - "br": [0.9541, 0.9520, 0.9538, 0.9775, 0.9814, 0.9696, 0.9684, 0.9698, 0.9595, 0.9753, 0.9771, 0.9588, 0.9589, 0.9799, 0.9840, 0.9883, 0.9819, - 0.9778, 0.9649, 0.9875, 0.9822, 0.9870, 0.9851, 0.9851, 0.9983, 0.9841, 0.9823, 0.9948, 0.9916, 0.9743, 0.9943, 0.9904, 0.9925, 1.0089, 1.0120, - 0.9801, 0.9911, 0.9963, 0.9927, 1.0007, 0.9963, 1.0057, 0.9979, 1.0065, 1.0066, 0.9997, 1.0039, 1.0118, 1.0075, 0.9967, 0.9968, 1.0107, 0.9998, - 0.9925, 0.9957, 1.0026, 1.0181, 1.0028, 1.0055, 1.0077, 1.0081, 1.0085, 0.9982, 1.0077, 1.0059, 1.0042, 1.0148, 1.0099, 1.0001, 1.0129, 1.0134, - 1.0091, 1.0110, 1.0075, 1.0049, 1.0059, 1.0131, 1.0085, 1.0077, 1.0165, 1.0075, 1.0072, 1.0045, 0.9987, 1.0092, 1.0094, 1.0124, 1.0189, 1.0118, - 1.0092, 1.0152, 1.0137, 1.0137, 1.0132, 1.0083, 1.0134, 1.0206, 1.0177, 1.0163, 1.0191, 1.0157, 1.0205, 1.0166, 1.0174, 1.0097, 1.0135, 1.0090, - 1.0112, 1.0128, 1.0153, 1.0131, 1.0184, 1.0132, 1.0088, 1.0087, 1.0065, 1.0150, 1.0164, 1.0187, 1.0006, 1.0150, 1.0019, 1.0053, 1.0033, 1.0049, - 1.0119, 1.0156, 1.0128, 1.0134, 1.0053, 1.0071, 1.0048, 1.0005, 1.0003, 1.0033, 1.0083, 1.0048, 0.9939, 0.9879, 0.9955, 0.9898, 0.9966, 1.0032, - 1.0066, 1.0095, 0.9931, 0.9971, 1.0051, 1.0027, 1.0009, 1.0070, 0.9913, 0.9855, 0.9949, 0.9916, 0.9985, 0.9851, 0.9852, 0.9864, 0.9752, 0.9875, - 0.9899, 0.9840, 0.9837, 0.9822, 0.9915, 0.9916, 0.9842, 0.9887, 0.9818, 0.9739, 0.9819, 0.9757, 0.9784, 0.9736, 0.9783, 0.9789, 0.9736, 0.9832, - 0.9769] + "(90) Antiope|29": {"tags": ["solar_system", "minor_body", "asteroid", "main_belt"], + "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, + 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 542.5, 545, 547.5, 550, 552.5, 555, 557.5, 560, 562.5, 565, 567.5, + 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, 612.5, 615, 617.5, 620, 622.5, 625, 627.5, + 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 660, 662.5, 665, 667.5, 670, 672.5, 675, 677.5, 680, 682.5, 685, 690, 697.5, + 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, 732.5, 735, 737.5, 740, 742.5, 745, 747.5, 750, 752.5, 755, 757.5, + 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, 800, 802.5, 805, 807.5, 810, 812.5, 815, 817.5, 820, 822.5, 825, 827.5, 830, + 832.5, 835, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, 860, 862.5, 865, 867.5, 870, 872.5, 875, 877.5, 880, 882.5, 885, 887.5, 890, 892.5, + 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, 920, 922.5, 925], + "br": [0.9541, 0.9520, 0.9538, 0.9775, 0.9814, 0.9696, 0.9684, 0.9698, 0.9595, 0.9753, 0.9771, 0.9588, 0.9589, 0.9799, 0.9840, 0.9883, 0.9819, + 0.9778, 0.9649, 0.9875, 0.9822, 0.9870, 0.9851, 0.9851, 0.9983, 0.9841, 0.9823, 0.9948, 0.9916, 0.9743, 0.9943, 0.9904, 0.9925, 1.0089, 1.0120, + 0.9801, 0.9911, 0.9963, 0.9927, 1.0007, 0.9963, 1.0057, 0.9979, 1.0065, 1.0066, 0.9997, 1.0039, 1.0118, 1.0075, 0.9967, 0.9968, 1.0107, 0.9998, + 0.9925, 0.9957, 1.0026, 1.0181, 1.0028, 1.0055, 1.0077, 1.0081, 1.0085, 0.9982, 1.0077, 1.0059, 1.0042, 1.0148, 1.0099, 1.0001, 1.0129, 1.0134, + 1.0091, 1.0110, 1.0075, 1.0049, 1.0059, 1.0131, 1.0085, 1.0077, 1.0165, 1.0075, 1.0072, 1.0045, 0.9987, 1.0092, 1.0094, 1.0124, 1.0189, 1.0118, + 1.0092, 1.0152, 1.0137, 1.0137, 1.0132, 1.0083, 1.0134, 1.0206, 1.0177, 1.0163, 1.0191, 1.0157, 1.0205, 1.0166, 1.0174, 1.0097, 1.0135, 1.0090, + 1.0112, 1.0128, 1.0153, 1.0131, 1.0184, 1.0132, 1.0088, 1.0087, 1.0065, 1.0150, 1.0164, 1.0187, 1.0006, 1.0150, 1.0019, 1.0053, 1.0033, 1.0049, + 1.0119, 1.0156, 1.0128, 1.0134, 1.0053, 1.0071, 1.0048, 1.0005, 1.0003, 1.0033, 1.0083, 1.0048, 0.9939, 0.9879, 0.9955, 0.9898, 0.9966, 1.0032, + 1.0066, 1.0095, 0.9931, 0.9971, 1.0051, 1.0027, 1.0009, 1.0070, 0.9913, 0.9855, 0.9949, 0.9916, 0.9985, 0.9851, 0.9852, 0.9864, 0.9752, 0.9875, + 0.9899, 0.9840, 0.9837, 0.9822, 0.9915, 0.9916, 0.9842, 0.9887, 0.9818, 0.9739, 0.9819, 0.9757, 0.9784, 0.9736, 0.9783, 0.9789, 0.9736, 0.9832, + 0.9769] }, - "(93) Minerva|29": {"tags": ["solar_system", "minor_body", "asteroid", "main_belt"], - "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, - 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, - 552.5, 555, 557.5, 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, - 612.5, 615, 617.5, 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 657.5, 660, 662.5, 665, 667.5, 670, - 672.5, 675, 677.5, 680, 682.5, 685, 687.5, 690, 692.5, 695, 697.5, 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, - 732.5, 735, 737.5, 740, 742.5, 745, 747.5, 750, 752.5, 755, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, 800, 802.5, 805, - 807.5, 810, 812.5, 815, 817.5, 820, 822.5, 825, 827.5, 830, 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, 860, 862.5, 865, - 867.5, 870, 872.5, 875, 877.5, 880, 882.5, 885, 887.5, 890, 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, 920, 922.5, 925], - "br": [0.9483, 0.9469, 0.9400, 0.9632, 0.9583, 0.9348, 0.9656, 0.9652, 0.9620, 0.9646, 0.9836, 0.9640, 0.9649, 0.9832, 0.9927, 0.9765, 0.9775, - 0.9856, 0.9811, 0.9709, 0.9758, 0.9896, 1.0105, 0.9694, 0.9846, 0.9774, 0.9723, 0.9865, 0.9969, 0.9939, 0.9793, 0.9857, 0.9955, 0.9930, 0.9994, - 1.0272, 0.9802, 0.9904, 1.0014, 1.0023, 0.9834, 0.9985, 0.9976, 0.9945, 1.0134, 1.0059, 0.9997, 1.0034, 1.0021, 1.0032, 1.0052, 1.0137, 1.0066, - 1.0006, 1.0065, 1.0104, 1.0091, 0.9983, 1.0095, 1.0095, 1.0095, 1.0014, 1.0141, 1.0110, 1.0140, 0.9972, 1.0060, 1.0090, 1.0107, 1.0064, 1.0094, - 1.0157, 1.0093, 1.0181, 1.0180, 1.0076, 1.0100, 1.0146, 1.0184, 1.0136, 1.0144, 1.0213, 1.0153, 1.0192, 1.0250, 1.0109, 1.0227, 1.0216, 1.0062, - 1.0318, 1.0244, 0.9971, 1.0181, 1.0221, 1.0130, 1.0237, 1.0267, 1.0178, 1.0219, 1.0232, 1.0142, 1.0406, 1.0459, 0.9985, 1.0027, 1.0202, 1.0218, - 1.0282, 1.0224, 1.0235, 1.0211, 1.0229, 1.0297, 1.0374, 1.0390, 0.9932, 1.0168, 1.0076, 1.0130, 1.0061, 1.0107, 1.0203, 1.0218, 1.0274, 1.0233, - 1.0264, 1.0239, 1.0230, 1.0235, 1.0221, 1.0275, 1.0281, 1.0236, 1.0253, 1.0243, 1.0249, 1.0301, 1.0241, 1.0198, 1.0243, 1.0318, 1.0236, 1.0254, - 1.0280, 1.0347, 1.0429, 1.0273, 1.0057, 1.0216, 1.0092, 1.0155, 1.0259, 1.0257, 1.0118, 1.0185, 1.0282, 1.0295, 1.0409, 1.0261, 1.0330, 1.0378, - 1.0369, 1.0227, 1.0258, 1.0252, 1.0363, 1.0399, 1.0130, 1.0175, 1.0301, 1.0214, 1.0121, 1.0114, 1.0246, 1.0285, 1.0184, 1.0277, 1.0336, 1.0282, - 1.0226, 1.0046, 1.0074, 1.0490, 1.0280, 1.0027, 1.0142, 1.0092, 1.0014, 1.0143, 1.0226, 1.0261] + "(93) Minerva|29": {"tags": ["solar_system", "minor_body", "asteroid", "main_belt"], + "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, + 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, + 552.5, 555, 557.5, 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, + 612.5, 615, 617.5, 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 657.5, 660, 662.5, 665, 667.5, 670, + 672.5, 675, 677.5, 680, 682.5, 685, 687.5, 690, 692.5, 695, 697.5, 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, + 732.5, 735, 737.5, 740, 742.5, 745, 747.5, 750, 752.5, 755, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, 800, 802.5, 805, + 807.5, 810, 812.5, 815, 817.5, 820, 822.5, 825, 827.5, 830, 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, 860, 862.5, 865, + 867.5, 870, 872.5, 875, 877.5, 880, 882.5, 885, 887.5, 890, 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, 920, 922.5, 925], + "br": [0.9483, 0.9469, 0.9400, 0.9632, 0.9583, 0.9348, 0.9656, 0.9652, 0.9620, 0.9646, 0.9836, 0.9640, 0.9649, 0.9832, 0.9927, 0.9765, 0.9775, + 0.9856, 0.9811, 0.9709, 0.9758, 0.9896, 1.0105, 0.9694, 0.9846, 0.9774, 0.9723, 0.9865, 0.9969, 0.9939, 0.9793, 0.9857, 0.9955, 0.9930, 0.9994, + 1.0272, 0.9802, 0.9904, 1.0014, 1.0023, 0.9834, 0.9985, 0.9976, 0.9945, 1.0134, 1.0059, 0.9997, 1.0034, 1.0021, 1.0032, 1.0052, 1.0137, 1.0066, + 1.0006, 1.0065, 1.0104, 1.0091, 0.9983, 1.0095, 1.0095, 1.0095, 1.0014, 1.0141, 1.0110, 1.0140, 0.9972, 1.0060, 1.0090, 1.0107, 1.0064, 1.0094, + 1.0157, 1.0093, 1.0181, 1.0180, 1.0076, 1.0100, 1.0146, 1.0184, 1.0136, 1.0144, 1.0213, 1.0153, 1.0192, 1.0250, 1.0109, 1.0227, 1.0216, 1.0062, + 1.0318, 1.0244, 0.9971, 1.0181, 1.0221, 1.0130, 1.0237, 1.0267, 1.0178, 1.0219, 1.0232, 1.0142, 1.0406, 1.0459, 0.9985, 1.0027, 1.0202, 1.0218, + 1.0282, 1.0224, 1.0235, 1.0211, 1.0229, 1.0297, 1.0374, 1.0390, 0.9932, 1.0168, 1.0076, 1.0130, 1.0061, 1.0107, 1.0203, 1.0218, 1.0274, 1.0233, + 1.0264, 1.0239, 1.0230, 1.0235, 1.0221, 1.0275, 1.0281, 1.0236, 1.0253, 1.0243, 1.0249, 1.0301, 1.0241, 1.0198, 1.0243, 1.0318, 1.0236, 1.0254, + 1.0280, 1.0347, 1.0429, 1.0273, 1.0057, 1.0216, 1.0092, 1.0155, 1.0259, 1.0257, 1.0118, 1.0185, 1.0282, 1.0295, 1.0409, 1.0261, 1.0330, 1.0378, + 1.0369, 1.0227, 1.0258, 1.0252, 1.0363, 1.0399, 1.0130, 1.0175, 1.0301, 1.0214, 1.0121, 1.0114, 1.0246, 1.0285, 1.0184, 1.0277, 1.0336, 1.0282, + 1.0226, 1.0046, 1.0074, 1.0490, 1.0280, 1.0027, 1.0142, 1.0092, 1.0014, 1.0143, 1.0226, 1.0261] }, - "(107) Camilla|29": {"tags": ["solar_system", "minor_body", "asteroid", "main_belt"], - "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, - 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, - 552.5, 555, 557.5, 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, - 612.5, 615, 617.5, 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 657.5, 660, 662.5, 665, 667.5, 670, - 672.5, 675, 677.5, 680, 682.5, 685, 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, 732.5, 735, 737.5, 740, 742.5, - 745, 747.5, 750, 752.5, 755, 770, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, 800, 802.5, 805, 807.5, 810, 812.5, 815, - 817.5, 820, 822.5, 825, 827.5, 830, 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, 860, 862.5, 865, 867.5, 870, 872.5, 875, - 877.5, 880, 882.5, 885, 887.5, 890, 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, 920, 922.5, 925], - "br": [0.9397, 0.8949, 0.9158, 0.9696, 0.9611, 0.9726, 0.9998, 0.9742, 0.9461, 0.9636, 0.9925, 0.9577, 0.9975, 0.9712, 0.9511, 0.9675, 0.9677, - 0.9758, 0.9732, 0.9927, 0.9885, 0.9837, 0.9709, 0.9467, 1.0043, 0.9923, 0.9784, 0.9884, 0.9722, 0.9604, 0.9782, 0.9908, 0.9837, 0.9764, 0.9756, - 0.9651, 0.9412, 0.9789, 1.0313, 0.9945, 0.9843, 1.0042, 1.0081, 0.9995, 1.0042, 0.9855, 0.9914, 1.0013, 1.0029, 1.0019, 1.0007, 0.9999, 0.9955, - 0.9929, 1.0116, 1.0045, 1.0082, 1.0076, 1.0132, 1.0162, 1.0174, 1.0232, 1.0261, 1.0186, 1.0117, 1.0143, 1.0302, 1.0246, 1.0266, 1.0191, 1.0252, - 1.0258, 1.0217, 1.0208, 1.0219, 1.0202, 1.0286, 1.0251, 1.0212, 1.0223, 1.0253, 1.0333, 1.0303, 1.0325, 1.0296, 1.0358, 1.0343, 1.0317, 1.0415, - 1.0322, 1.0308, 1.0762, 1.0485, 1.0418, 1.0454, 1.0482, 1.0394, 1.0423, 1.0466, 1.0421, 1.0360, 1.0379, 1.0355, 1.0428, 1.0470, 1.0394, 1.0464, - 1.0322, 1.0102, 1.0375, 1.0525, 1.0438, 1.0420, 1.0440, 1.0506, 1.0476, 1.0359, 1.0369, 1.0428, 1.0387, 1.0459, 1.0471, 1.0495, 1.0353, 1.0584, - 1.0483, 1.0523, 1.0579, 1.0474, 1.0477, 1.0373, 1.0466, 1.0522, 1.0272, 1.0588, 1.0472, 1.0466, 1.0463, 1.0533, 1.0406, 1.0400, 1.0387, 1.0270, - 1.0437, 1.0442, 1.0451, 1.0623, 1.0459, 1.0451, 1.0495, 1.0376, 1.0539, 1.0742, 1.0455, 1.0536, 1.0422, 1.0491, 1.0294, 1.0353, 1.0797, 1.0410, - 1.0495, 1.0329, 1.0490, 1.0592, 1.0519, 1.0573, 1.0696, 1.0431, 1.0583, 1.0597, 1.0706, 1.0647, 1.0552, 1.0521, 1.0371, 1.0574, 1.1025, 1.0551, - 1.0284, 1.0728, 1.0644, 1.0624, 1.0835, 1.0625, 1.0681, 1.0830] + "(107) Camilla|29": {"tags": ["solar_system", "minor_body", "asteroid", "main_belt"], + "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, + 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, + 552.5, 555, 557.5, 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, + 612.5, 615, 617.5, 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 657.5, 660, 662.5, 665, 667.5, 670, + 672.5, 675, 677.5, 680, 682.5, 685, 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, 732.5, 735, 737.5, 740, 742.5, + 745, 747.5, 750, 752.5, 755, 770, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, 800, 802.5, 805, 807.5, 810, 812.5, 815, + 817.5, 820, 822.5, 825, 827.5, 830, 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, 860, 862.5, 865, 867.5, 870, 872.5, 875, + 877.5, 880, 882.5, 885, 887.5, 890, 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, 920, 922.5, 925], + "br": [0.9397, 0.8949, 0.9158, 0.9696, 0.9611, 0.9726, 0.9998, 0.9742, 0.9461, 0.9636, 0.9925, 0.9577, 0.9975, 0.9712, 0.9511, 0.9675, 0.9677, + 0.9758, 0.9732, 0.9927, 0.9885, 0.9837, 0.9709, 0.9467, 1.0043, 0.9923, 0.9784, 0.9884, 0.9722, 0.9604, 0.9782, 0.9908, 0.9837, 0.9764, 0.9756, + 0.9651, 0.9412, 0.9789, 1.0313, 0.9945, 0.9843, 1.0042, 1.0081, 0.9995, 1.0042, 0.9855, 0.9914, 1.0013, 1.0029, 1.0019, 1.0007, 0.9999, 0.9955, + 0.9929, 1.0116, 1.0045, 1.0082, 1.0076, 1.0132, 1.0162, 1.0174, 1.0232, 1.0261, 1.0186, 1.0117, 1.0143, 1.0302, 1.0246, 1.0266, 1.0191, 1.0252, + 1.0258, 1.0217, 1.0208, 1.0219, 1.0202, 1.0286, 1.0251, 1.0212, 1.0223, 1.0253, 1.0333, 1.0303, 1.0325, 1.0296, 1.0358, 1.0343, 1.0317, 1.0415, + 1.0322, 1.0308, 1.0762, 1.0485, 1.0418, 1.0454, 1.0482, 1.0394, 1.0423, 1.0466, 1.0421, 1.0360, 1.0379, 1.0355, 1.0428, 1.0470, 1.0394, 1.0464, + 1.0322, 1.0102, 1.0375, 1.0525, 1.0438, 1.0420, 1.0440, 1.0506, 1.0476, 1.0359, 1.0369, 1.0428, 1.0387, 1.0459, 1.0471, 1.0495, 1.0353, 1.0584, + 1.0483, 1.0523, 1.0579, 1.0474, 1.0477, 1.0373, 1.0466, 1.0522, 1.0272, 1.0588, 1.0472, 1.0466, 1.0463, 1.0533, 1.0406, 1.0400, 1.0387, 1.0270, + 1.0437, 1.0442, 1.0451, 1.0623, 1.0459, 1.0451, 1.0495, 1.0376, 1.0539, 1.0742, 1.0455, 1.0536, 1.0422, 1.0491, 1.0294, 1.0353, 1.0797, 1.0410, + 1.0495, 1.0329, 1.0490, 1.0592, 1.0519, 1.0573, 1.0696, 1.0431, 1.0583, 1.0597, 1.0706, 1.0647, 1.0552, 1.0521, 1.0371, 1.0574, 1.1025, 1.0551, + 1.0284, 1.0728, 1.0644, 1.0624, 1.0835, 1.0625, 1.0681, 1.0830] }, - "(121) Hermione|29": {"tags": ["solar_system", "minor_body", "asteroid", "main_belt"], - "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, - 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, - 552.5, 555, 557.5, 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, - 612.5, 615, 617.5, 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 657.5, 660, 662.5, 665, 667.5, 670, - 672.5, 675, 677.5, 680, 682.5, 685, 687.5, 690, 692.5, 695, 697.5, 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, - 732.5, 735, 737.5, 740, 742.5, 745, 747.5, 750, 752.5, 755, 757.5, 760, 762.5, 765, 767.5, 770, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, - 792.5, 795, 797.5, 800, 802.5, 805, 807.5, 810, 812.5, 815, 817.5, 820, 822.5, 825, 827.5, 830, 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, - 852.5, 855, 857.5, 860, 862.5, 865, 867.5, 870, 872.5, 875, 877.5, 880, 882.5, 885, 887.5, 890, 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, - 912.5, 915, 917.5, 920, 922.5, 925], - "br": [0.8893, 0.8865, 0.9075, 0.9364, 0.9210, 0.9299, 0.9413, 0.9360, 0.9188, 0.9286, 0.9274, 0.9399, 0.9275, 0.9407, 0.9586, 0.9480, 0.9486, - 0.9597, 0.9665, 0.9561, 0.9607, 0.9690, 0.9776, 0.9654, 0.9671, 0.9797, 0.9682, 0.9751, 0.9791, 0.9888, 0.9830, 0.9849, 0.9867, 0.9890, 0.9910, - 1.0014, 0.9995, 0.9971, 0.9974, 1.0038, 0.9901, 0.9920, 0.9943, 0.9976, 0.9995, 0.9983, 0.9990, 1.0004, 1.0026, 1.0001, 1.0027, 1.0078, 1.0100, - 1.0046, 1.0064, 1.0053, 1.0080, 1.0027, 1.0013, 0.9985, 1.0009, 0.9971, 0.9987, 1.0045, 1.0081, 0.9979, 0.9940, 0.9971, 0.9984, 1.0008, 0.9970, - 0.9938, 0.9982, 1.0003, 1.0000, 0.9991, 0.9966, 0.9972, 1.0004, 0.9915, 0.9914, 0.9897, 0.9870, 0.9812, 0.9880, 0.9889, 0.9871, 0.9873, 0.9884, - 0.9873, 0.9911, 0.9823, 0.9845, 0.9855, 0.9835, 0.9871, 0.9865, 0.9848, 0.9843, 0.9817, 0.9829, 0.9875, 0.9926, 0.9888, 0.9763, 0.9792, 0.9766, - 0.9868, 0.9866, 0.9775, 0.9882, 0.9841, 0.9810, 0.9854, 0.9891, 0.9836, 0.9865, 0.9892, 0.9768, 0.9824, 0.9907, 0.9877, 0.9866, 0.9996, 0.9926, - 0.9757, 0.9918, 1.0019, 0.9952, 0.9921, 0.9902, 0.9953, 0.9954, 0.9826, 0.9868, 0.9923, 0.9877, 0.9958, 0.9997, 0.9999, 0.9957, 0.9940, 1.0054, - 0.9964, 1.0000, 0.9966, 1.0027, 1.0005, 1.0004, 1.0004, 1.0080, 0.9957, 0.9904, 0.9895, 1.0003, 1.0138, 1.0071, 0.9998, 1.0057, 1.0062, 1.0053, - 1.0145, 0.9989, 1.0076, 1.0106, 1.0170, 1.0178, 1.0141, 1.0173, 1.0160, 1.0153, 1.0164, 1.0188, 1.0171, 1.0245, 1.0255, 1.0206, 1.0204, 1.0192, - 1.0157, 1.0214, 1.0306, 1.0299, 1.0258, 1.0285, 1.0285, 1.0293, 1.0376, 1.0450, 1.0373, 1.0326, 1.0475, 1.0497, 1.0447, 1.0492, 1.0575, 1.0634] + "(121) Hermione|29": {"tags": ["solar_system", "minor_body", "asteroid", "main_belt"], + "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, + 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, + 552.5, 555, 557.5, 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, + 612.5, 615, 617.5, 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 657.5, 660, 662.5, 665, 667.5, 670, + 672.5, 675, 677.5, 680, 682.5, 685, 687.5, 690, 692.5, 695, 697.5, 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, + 732.5, 735, 737.5, 740, 742.5, 745, 747.5, 750, 752.5, 755, 757.5, 760, 762.5, 765, 767.5, 770, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, + 792.5, 795, 797.5, 800, 802.5, 805, 807.5, 810, 812.5, 815, 817.5, 820, 822.5, 825, 827.5, 830, 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, + 852.5, 855, 857.5, 860, 862.5, 865, 867.5, 870, 872.5, 875, 877.5, 880, 882.5, 885, 887.5, 890, 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, + 912.5, 915, 917.5, 920, 922.5, 925], + "br": [0.8893, 0.8865, 0.9075, 0.9364, 0.9210, 0.9299, 0.9413, 0.9360, 0.9188, 0.9286, 0.9274, 0.9399, 0.9275, 0.9407, 0.9586, 0.9480, 0.9486, + 0.9597, 0.9665, 0.9561, 0.9607, 0.9690, 0.9776, 0.9654, 0.9671, 0.9797, 0.9682, 0.9751, 0.9791, 0.9888, 0.9830, 0.9849, 0.9867, 0.9890, 0.9910, + 1.0014, 0.9995, 0.9971, 0.9974, 1.0038, 0.9901, 0.9920, 0.9943, 0.9976, 0.9995, 0.9983, 0.9990, 1.0004, 1.0026, 1.0001, 1.0027, 1.0078, 1.0100, + 1.0046, 1.0064, 1.0053, 1.0080, 1.0027, 1.0013, 0.9985, 1.0009, 0.9971, 0.9987, 1.0045, 1.0081, 0.9979, 0.9940, 0.9971, 0.9984, 1.0008, 0.9970, + 0.9938, 0.9982, 1.0003, 1.0000, 0.9991, 0.9966, 0.9972, 1.0004, 0.9915, 0.9914, 0.9897, 0.9870, 0.9812, 0.9880, 0.9889, 0.9871, 0.9873, 0.9884, + 0.9873, 0.9911, 0.9823, 0.9845, 0.9855, 0.9835, 0.9871, 0.9865, 0.9848, 0.9843, 0.9817, 0.9829, 0.9875, 0.9926, 0.9888, 0.9763, 0.9792, 0.9766, + 0.9868, 0.9866, 0.9775, 0.9882, 0.9841, 0.9810, 0.9854, 0.9891, 0.9836, 0.9865, 0.9892, 0.9768, 0.9824, 0.9907, 0.9877, 0.9866, 0.9996, 0.9926, + 0.9757, 0.9918, 1.0019, 0.9952, 0.9921, 0.9902, 0.9953, 0.9954, 0.9826, 0.9868, 0.9923, 0.9877, 0.9958, 0.9997, 0.9999, 0.9957, 0.9940, 1.0054, + 0.9964, 1.0000, 0.9966, 1.0027, 1.0005, 1.0004, 1.0004, 1.0080, 0.9957, 0.9904, 0.9895, 1.0003, 1.0138, 1.0071, 0.9998, 1.0057, 1.0062, 1.0053, + 1.0145, 0.9989, 1.0076, 1.0106, 1.0170, 1.0178, 1.0141, 1.0173, 1.0160, 1.0153, 1.0164, 1.0188, 1.0171, 1.0245, 1.0255, 1.0206, 1.0204, 1.0192, + 1.0157, 1.0214, 1.0306, 1.0299, 1.0258, 1.0285, 1.0285, 1.0293, 1.0376, 1.0450, 1.0373, 1.0326, 1.0475, 1.0497, 1.0447, 1.0492, 1.0575, 1.0634] }, - "(130) Elektra|29": {"tags": ["solar_system", "minor_body", "asteroid", "main_belt"], - "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, - 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, - 552.5, 555, 557.5, 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, - 612.5, 615, 617.5, 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 657.5, 660, 662.5, 665, 667.5, 670, - 672.5, 675, 677.5, 680, 682.5, 685, 687.5, 690, 692.5, 695, 697.5, 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, - 732.5, 735, 737.5, 740, 742.5, 745, 747.5, 750, 752.5, 755, 757.5, 770, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, 800, - 802.5, 805, 807.5, 810, 812.5, 815, 817.5, 820, 822.5, 825, 827.5, 830, 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, 860, - 862.5, 865, 867.5, 870, 872.5, 875, 877.5, 880, 882.5, 885, 887.5, 890, 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, 920, - 922.5, 925], - "br": [0.8666, 0.8306, 0.9084, 0.9117, 0.8918, 0.8778, 0.9121, 0.9246, 0.9049, 0.9058, 0.9383, 0.9167, 0.9291, 0.9452, 0.9265, 0.9200, 0.9391, - 0.9403, 0.9388, 0.9433, 0.9482, 0.9622, 0.9416, 0.9618, 0.9751, 0.9592, 0.9752, 0.9613, 0.9480, 0.9631, 0.9807, 0.9719, 0.9762, 0.9897, 0.9599, - 0.9527, 0.9589, 0.9874, 0.9884, 0.9841, 0.9959, 0.9902, 0.9824, 0.9946, 0.9924, 0.9915, 1.0030, 1.0107, 0.9988, 1.0009, 1.0036, 1.0000, 1.0087, - 1.0070, 1.0104, 1.0056, 1.0036, 1.0066, 1.0130, 1.0099, 1.0067, 1.0118, 1.0129, 1.0109, 0.9982, 1.0103, 1.0054, 0.9970, 1.0043, 1.0043, 1.0056, - 1.0000, 1.0025, 1.0008, 1.0005, 0.9942, 1.0009, 0.9892, 0.9900, 0.9948, 0.9893, 0.9897, 0.9901, 0.9954, 0.9888, 0.9934, 0.9912, 0.9899, 1.0019, - 0.9839, 0.9959, 1.0088, 0.9895, 0.9814, 0.9927, 0.9902, 0.9836, 0.9860, 0.9845, 0.9842, 0.9892, 0.9731, 0.9638, 0.9924, 0.9962, 0.9772, 0.9738, - 0.9741, 0.9801, 0.9816, 0.9725, 0.9768, 0.9775, 0.9607, 0.9622, 0.9768, 0.9662, 0.9675, 0.9689, 0.9727, 0.9734, 0.9625, 0.9674, 0.9670, 0.9633, - 0.9690, 0.9788, 0.9707, 0.9739, 0.9592, 0.9847, 0.9785, 0.9744, 0.9715, 0.9827, 0.9777, 0.9720, 0.9859, 0.9736, 0.9720, 0.9741, 0.9753, 0.9856, - 0.9740, 0.9740, 0.9774, 0.9811, 0.9712, 0.9658, 0.9636, 0.9843, 0.9784, 0.9915, 0.9854, 0.9769, 0.9795, 0.9870, 0.9915, 0.9736, 0.9800, 0.9920, - 0.9926, 0.9700, 0.9695, 0.9751, 0.9903, 0.9881, 0.9817, 0.9700, 0.9749, 0.9938, 0.9838, 0.9848, 0.9946, 0.9887, 1.0032, 0.9999, 0.9869, 0.9812, - 0.9819, 0.9861, 0.9746, 0.9785, 0.9879, 0.9899, 0.9724, 0.9750, 0.9969, 0.9996, 0.9794, 0.9902, 0.9950, 0.9832] + "(130) Elektra|29": {"tags": ["solar_system", "minor_body", "asteroid", "main_belt"], + "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, + 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, + 552.5, 555, 557.5, 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, + 612.5, 615, 617.5, 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 657.5, 660, 662.5, 665, 667.5, 670, + 672.5, 675, 677.5, 680, 682.5, 685, 687.5, 690, 692.5, 695, 697.5, 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, + 732.5, 735, 737.5, 740, 742.5, 745, 747.5, 750, 752.5, 755, 757.5, 770, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, 792.5, 795, 797.5, 800, + 802.5, 805, 807.5, 810, 812.5, 815, 817.5, 820, 822.5, 825, 827.5, 830, 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, 852.5, 855, 857.5, 860, + 862.5, 865, 867.5, 870, 872.5, 875, 877.5, 880, 882.5, 885, 887.5, 890, 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, 912.5, 915, 917.5, 920, + 922.5, 925], + "br": [0.8666, 0.8306, 0.9084, 0.9117, 0.8918, 0.8778, 0.9121, 0.9246, 0.9049, 0.9058, 0.9383, 0.9167, 0.9291, 0.9452, 0.9265, 0.9200, 0.9391, + 0.9403, 0.9388, 0.9433, 0.9482, 0.9622, 0.9416, 0.9618, 0.9751, 0.9592, 0.9752, 0.9613, 0.9480, 0.9631, 0.9807, 0.9719, 0.9762, 0.9897, 0.9599, + 0.9527, 0.9589, 0.9874, 0.9884, 0.9841, 0.9959, 0.9902, 0.9824, 0.9946, 0.9924, 0.9915, 1.0030, 1.0107, 0.9988, 1.0009, 1.0036, 1.0000, 1.0087, + 1.0070, 1.0104, 1.0056, 1.0036, 1.0066, 1.0130, 1.0099, 1.0067, 1.0118, 1.0129, 1.0109, 0.9982, 1.0103, 1.0054, 0.9970, 1.0043, 1.0043, 1.0056, + 1.0000, 1.0025, 1.0008, 1.0005, 0.9942, 1.0009, 0.9892, 0.9900, 0.9948, 0.9893, 0.9897, 0.9901, 0.9954, 0.9888, 0.9934, 0.9912, 0.9899, 1.0019, + 0.9839, 0.9959, 1.0088, 0.9895, 0.9814, 0.9927, 0.9902, 0.9836, 0.9860, 0.9845, 0.9842, 0.9892, 0.9731, 0.9638, 0.9924, 0.9962, 0.9772, 0.9738, + 0.9741, 0.9801, 0.9816, 0.9725, 0.9768, 0.9775, 0.9607, 0.9622, 0.9768, 0.9662, 0.9675, 0.9689, 0.9727, 0.9734, 0.9625, 0.9674, 0.9670, 0.9633, + 0.9690, 0.9788, 0.9707, 0.9739, 0.9592, 0.9847, 0.9785, 0.9744, 0.9715, 0.9827, 0.9777, 0.9720, 0.9859, 0.9736, 0.9720, 0.9741, 0.9753, 0.9856, + 0.9740, 0.9740, 0.9774, 0.9811, 0.9712, 0.9658, 0.9636, 0.9843, 0.9784, 0.9915, 0.9854, 0.9769, 0.9795, 0.9870, 0.9915, 0.9736, 0.9800, 0.9920, + 0.9926, 0.9700, 0.9695, 0.9751, 0.9903, 0.9881, 0.9817, 0.9700, 0.9749, 0.9938, 0.9838, 0.9848, 0.9946, 0.9887, 1.0032, 0.9999, 0.9869, 0.9812, + 0.9819, 0.9861, 0.9746, 0.9785, 0.9879, 0.9899, 0.9724, 0.9750, 0.9969, 0.9996, 0.9794, 0.9902, 0.9950, 0.9832] }, - "(216) Kleopatra|29": {"tags": ["solar_system", "minor_body", "asteroid", "main_belt"], - "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, - 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, - 552.5, 555, 557.5, 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, - 612.5, 615, 617.5, 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 657.5, 660, 662.5, 665, 667.5, 670, - 672.5, 675, 677.5, 680, 682.5, 685, 687.5, 690, 692.5, 695, 697.5, 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, - 732.5, 735, 737.5, 740, 742.5, 745, 747.5, 750, 752.5, 755, 757.5, 760, 762.5, 765, 767.5, 770, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, - 792.5, 795, 797.5, 800, 802.5, 805, 807.5, 810, 812.5, 815, 817.5, 820, 822.5, 825, 827.5, 830, 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, - 852.5, 855, 857.5, 860, 862.5, 865, 867.5, 870, 872.5, 875, 877.5, 880, 882.5, 885, 887.5, 890, 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, - 912.5, 915, 917.5, 920, 922.5, 925], - "br": [0.9600, 0.9856, 0.9963, 0.9986, 0.9423, 0.9211, 0.9786, 0.9797, 0.9488, 0.9684, 0.9480, 0.9858, 0.9840, 0.9737, 0.9614, 0.9776, 0.9742, - 0.9732, 0.9754, 0.9630, 0.9719, 0.9825, 0.9725, 0.9689, 0.9748, 0.9703, 0.9669, 0.9780, 0.9728, 0.9705, 0.9750, 0.9760, 0.9713, 0.9862, 0.9855, - 0.9955, 0.9887, 0.9924, 0.9963, 0.9933, 0.9878, 0.9885, 0.9976, 0.9941, 1.0010, 0.9986, 1.0048, 1.0027, 1.0095, 1.0115, 1.0079, 1.0057, 1.0163, - 1.0081, 1.0150, 1.0136, 1.0172, 1.0146, 1.0130, 1.0169, 1.0200, 1.0188, 1.0204, 1.0205, 1.0224, 1.0096, 1.0197, 1.0199, 1.0187, 1.0239, 1.0187, - 1.0223, 1.0256, 1.0272, 1.0271, 1.0263, 1.0249, 1.0289, 1.0336, 1.0312, 1.0370, 1.0347, 1.0356, 1.0381, 1.0377, 1.0382, 1.0387, 1.0393, 1.0447, - 1.0461, 1.0506, 1.0408, 1.0376, 1.0463, 1.0464, 1.0474, 1.0507, 1.0522, 1.0527, 1.0552, 1.0563, 1.0572, 1.0648, 1.0634, 1.0575, 1.0585, 1.0569, - 1.0617, 1.0676, 1.0673, 1.0640, 1.0700, 1.0627, 1.0647, 1.0723, 1.0704, 1.0719, 1.0708, 1.0730, 1.0741, 1.0681, 1.0807, 1.0842, 1.0871, 1.0799, - 1.0795, 1.0902, 1.0894, 1.0905, 1.0931, 1.1105, 1.1100, 1.0792, 1.0730, 1.0887, 1.0958, 1.0994, 1.0980, 1.1010, 1.1028, 1.1031, 1.1055, 1.1057, - 1.1055, 1.1069, 1.1008, 1.1082, 1.1112, 1.1071, 1.1076, 1.1106, 1.1121, 1.1065, 1.1062, 1.1109, 1.1120, 1.1017, 1.1138, 1.1099, 1.1042, 1.1035, - 1.1133, 1.1164, 1.1179, 1.1084, 1.1208, 1.1111, 1.1249, 1.1013, 1.1146, 1.1105, 1.1141, 1.1142, 1.1039, 1.1116, 1.1216, 1.1153, 1.1144, 1.1160, - 1.1169, 1.1157, 1.1139, 1.1260, 1.1244, 1.1202, 1.1208, 1.1132, 1.1046, 1.1196, 1.1154, 1.1098, 1.1166, 1.1102, 1.1178, 1.1287, 1.1304, 1.1222] + "(216) Kleopatra|29": {"tags": ["solar_system", "minor_body", "asteroid", "main_belt"], + "nm": [435, 437.5, 440, 442.5, 445, 447.5, 450, 452.5, 455, 457.5, 460, 462.5, 465, 467.5, 470, 472.5, 475, 477.5, 480, 482.5, 485, 487.5, 490, + 492.5, 495, 497.5, 500, 502.5, 505, 507.5, 510, 512.5, 515, 517.5, 520, 522.5, 525, 527.5, 530, 532.5, 535, 537.5, 540, 542.5, 545, 547.5, 550, + 552.5, 555, 557.5, 560, 562.5, 565, 567.5, 570, 572.5, 575, 577.5, 580, 582.5, 585, 587.5, 590, 592.5, 595, 597.5, 600, 602.5, 605, 607.5, 610, + 612.5, 615, 617.5, 620, 622.5, 625, 627.5, 630, 632.5, 635, 637.5, 640, 642.5, 645, 647.5, 650, 652.5, 655, 657.5, 660, 662.5, 665, 667.5, 670, + 672.5, 675, 677.5, 680, 682.5, 685, 687.5, 690, 692.5, 695, 697.5, 700, 702.5, 705, 707.5, 710, 712.5, 715, 717.5, 720, 722.5, 725, 727.5, 730, + 732.5, 735, 737.5, 740, 742.5, 745, 747.5, 750, 752.5, 755, 757.5, 760, 762.5, 765, 767.5, 770, 772.5, 775, 777.5, 780, 782.5, 785, 787.5, 790, + 792.5, 795, 797.5, 800, 802.5, 805, 807.5, 810, 812.5, 815, 817.5, 820, 822.5, 825, 827.5, 830, 832.5, 835, 837.5, 840, 842.5, 845, 847.5, 850, + 852.5, 855, 857.5, 860, 862.5, 865, 867.5, 870, 872.5, 875, 877.5, 880, 882.5, 885, 887.5, 890, 892.5, 895, 897.5, 900, 902.5, 905, 907.5, 910, + 912.5, 915, 917.5, 920, 922.5, 925], + "br": [0.9600, 0.9856, 0.9963, 0.9986, 0.9423, 0.9211, 0.9786, 0.9797, 0.9488, 0.9684, 0.9480, 0.9858, 0.9840, 0.9737, 0.9614, 0.9776, 0.9742, + 0.9732, 0.9754, 0.9630, 0.9719, 0.9825, 0.9725, 0.9689, 0.9748, 0.9703, 0.9669, 0.9780, 0.9728, 0.9705, 0.9750, 0.9760, 0.9713, 0.9862, 0.9855, + 0.9955, 0.9887, 0.9924, 0.9963, 0.9933, 0.9878, 0.9885, 0.9976, 0.9941, 1.0010, 0.9986, 1.0048, 1.0027, 1.0095, 1.0115, 1.0079, 1.0057, 1.0163, + 1.0081, 1.0150, 1.0136, 1.0172, 1.0146, 1.0130, 1.0169, 1.0200, 1.0188, 1.0204, 1.0205, 1.0224, 1.0096, 1.0197, 1.0199, 1.0187, 1.0239, 1.0187, + 1.0223, 1.0256, 1.0272, 1.0271, 1.0263, 1.0249, 1.0289, 1.0336, 1.0312, 1.0370, 1.0347, 1.0356, 1.0381, 1.0377, 1.0382, 1.0387, 1.0393, 1.0447, + 1.0461, 1.0506, 1.0408, 1.0376, 1.0463, 1.0464, 1.0474, 1.0507, 1.0522, 1.0527, 1.0552, 1.0563, 1.0572, 1.0648, 1.0634, 1.0575, 1.0585, 1.0569, + 1.0617, 1.0676, 1.0673, 1.0640, 1.0700, 1.0627, 1.0647, 1.0723, 1.0704, 1.0719, 1.0708, 1.0730, 1.0741, 1.0681, 1.0807, 1.0842, 1.0871, 1.0799, + 1.0795, 1.0902, 1.0894, 1.0905, 1.0931, 1.1105, 1.1100, 1.0792, 1.0730, 1.0887, 1.0958, 1.0994, 1.0980, 1.1010, 1.1028, 1.1031, 1.1055, 1.1057, + 1.1055, 1.1069, 1.1008, 1.1082, 1.1112, 1.1071, 1.1076, 1.1106, 1.1121, 1.1065, 1.1062, 1.1109, 1.1120, 1.1017, 1.1138, 1.1099, 1.1042, 1.1035, + 1.1133, 1.1164, 1.1179, 1.1084, 1.1208, 1.1111, 1.1249, 1.1013, 1.1146, 1.1105, 1.1141, 1.1142, 1.1039, 1.1116, 1.1216, 1.1153, 1.1144, 1.1160, + 1.1169, 1.1157, 1.1139, 1.1260, 1.1244, 1.1202, 1.1208, 1.1132, 1.1046, 1.1196, 1.1154, 1.1098, 1.1166, 1.1102, 1.1178, 1.1287, 1.1304, 1.1222] }, "(433) Eros|11": { "tags": ["featured", "solar_system", "minor_body", "asteroid", "main_belt"], "nm": list(range(350, 895, 5)), @@ -1460,1132 +1462,1270 @@ 1.15377, 1.12806, 1.17343, 1.21881, 1.14669, 1.14314, 1.14373, 1.16095, 1.09179, 1.0755, 1.13114, 1.16251, 1.21117, 1.13878, 1.20665, 1.0951, 1.047, 1.00354, 0.9945, 1.01803, 1.14228, 1.05281, 1.18387, 1.09958, 1.16424, 0.91067], "albedo": 0.098 # https://www.lpi.usra.edu/meetings/lpsc2004/pdf/2080.pdf - }, - "(1172) Aneas|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.727, "V-R": 0.510, "R-I": 0.400}, "sun": True - }, - "(1173) Anchises|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.811, "V-R": 0.402, "R-I": 0.403}, "sun": True - }, - "(1871) Astyanax|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.716, "V-R": 0.456, "R-I": 0.424}, "sun": True - }, - "(2060) Chiron|9": {"tags": ["featured", "solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.660, "V-R": 0.359, "R-I": 0.324}, "sun": True, "albedo": 0.16 - }, - "(2223) Sarpedon|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.753, "V-R": 0.465, "R-I": 0.440}, "sun": True - }, - "(2357) Phereclos|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.718, "V-R": 0.427, "R-I": 0.463}, "sun": True - }, - "(3548) Eurybates|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.677, "V-R": 0.352, "R-I": 0.339}, "sun": True - }, - "(4035) 1986 WD|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.752, "V-R": 0.484, "R-I": 0.451}, "sun": True - }, - "(4829) Sergestus|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.851, "V-R": 0.420, "R-I": 0.372}, "sun": True - }, - "(5130) Ilioneus|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.763, "V-R": 0.481, "R-I": 0.424}, "sun": True - }, - "(5145) Pholus|9": {"tags": ["featured", "solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 1.261, "V-R": 0.791, "R-I": 0.818}, "sun": True, "albedo": 0.155 - }, - "(5511) Cloanthus|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.906, "V-R": 0.442, "R-I": 0.526}, "sun": True - }, - "(6545) 1986 TR6|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.734, "V-R": 0.499, "R-I": 0.436}, "sun": True - }, - "(6998) Tithonus|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.787, "V-R": 0.455, "R-I": 0.438}, "sun": True - }, - "(7066) Nessus|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 1.090, "V-R": 0.763, "R-I": 0.689}, "sun": True - }, - "(7352) 1994 CO|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.713, "V-R": 0.417, "R-I": 0.397}, "sun": True - }, - "(8405) Asbolus|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.738, "V-R": 0.508, "R-I": 0.505}, "sun": True - }, - "(9030) 1989 UX5|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.887, "V-R": 0.493, "R-I": 0.480}, "sun": True - }, - "(9430) Erichthonio|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.742, "V-R": 0.488, "R-I": 0.456}, "sun": True - }, - "(9818) Eurymachos|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.673, "V-R": 0.339, "R-I": 0.355}, "sun": True - }, - "(10199) Chariklo|9": {"tags": ["featured", "solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.802, "V-R": 0.491, "R-I": 0.519}, "sun": True, "albedo": 0.035 # https://arxiv.org/abs/1409.7259 - }, - "(10370) Hylonome|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.690, "V-R": 0.469, "R-I": 0.496}, "sun": True - }, - "(11089) 1994 CS8|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.689, "V-R": 0.423, "R-I": 0.384}, "sun": True - }, - "(11351) Leucus|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.739, "V-R": 0.498, "R-I": 0.402}, "sun": True - }, - "(11488) 1988 RM11|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.777, "V-R": 0.436, "R-I": 0.420}, "sun": True - }, - "(11663) 1997 GO24|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.837, "V-R": 0.409, "R-I": 0.463}, "sun": True - }, - "(12917) 1998 TG16|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.724, "V-R": 0.537, "R-I": 0.410}, "sun": True - }, - "(12921) 1998 WZ5|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.673, "V-R": 0.403, "R-I": 0.380}, "sun": True - }, - "(13463) Antiphos|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.692, "V-R": 0.449, "R-I": 0.412}, "sun": True - }, - "(14707) 2000 CC20|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.752, "V-R": 0.412, "R-I": 0.385}, "sun": True - }, - "(15094) Polymele|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.652, "V-R": 0.477, "R-I": 0.322}, "sun": True - }, - "(15502) 1999 NV27|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.766, "V-R": 0.445, "R-I": 0.430}, "sun": True - }, - "(15504) 1999 RG33|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.817, "V-R": 0.495, "R-I": 0.350}, "sun": True - }, - "(15535) 2000 AT177|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.739, "V-R": 0.470, "R-I": 0.461}, "sun": True - }, - "(15760) Albion|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 0.869, "V-R": 0.707, "R-I": 0.651}, "sun": True - }, - "(15788) 1993 SB|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 0.802, "V-R": 0.475, "R-I": 0.514}, "sun": True - }, - "(15789) 1993 SC|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 1.045, "V-R": 0.688, "R-I": 0.697}, "sun": True - }, - "(15810) Arawn|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 1.010, "V-R": 0.632, "R-I": 0.538}, "sun": True - }, - "(15820) 1994 TB|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 1.107, "V-R": 0.697, "R-I": 0.739}, "sun": True - }, - "(15874) 1996 TL66|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.687, "V-R": 0.369, "R-I": 0.370}, "sun": True - }, - "(15875) 1996 TP66|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 1.031, "V-R": 0.655, "R-I": 0.673}, "sun": True - }, - "(15883) 1997 CR29|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.750, "V-R": 0.538, "R-I": 0.620}, "sun": True - }, - "(15977) 1998 MA11|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.748, "V-R": 0.465, "R-I": 0.441}, "sun": True - }, - "(16684) 1994 JQ1|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 1.134, "V-R": 0.736, "R-I": 0.650}, "sun": True - }, - "(17416) 1988 RR10|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.742, "V-R": 0.488, "R-I": 0.498}, "sun": True - }, - "(18060) 1999 XJ156|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.758, "V-R": 0.412, "R-I": 0.364}, "sun": True - }, - "(18137) 2000 OU30|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.733, "V-R": 0.496, "R-I": 0.409}, "sun": True - }, - "(18268) Dardanos|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.795, "V-R": 0.529, "R-I": 0.451}, "sun": True - }, - "(18493) Demoleon|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.703, "V-R": 0.395, "R-I": 0.380}, "sun": True - }, - "(18940) 2000 QV49|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.709, "V-R": 0.465, "R-I": 0.429}, "sun": True - }, - "(19255) 1994 VK8|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 1.010, "V-R": 0.659, "R-I": 0.490}, "sun": True - }, - "(19299) 1996 SZ4|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 0.754, "V-R": 0.522, "R-I": 0.446}, "sun": True - }, - "(19308) 1996 TO66|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.671, "V-R": 0.389, "R-I": 0.356}, "sun": True - }, - "(19521) Chaos|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.932, "V-R": 0.608, "R-I": 0.571}, "sun": True - }, - "(20000) Varuna|9": {"tags": ["featured", "solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.906, "V-R": 0.626, "R-I": 0.628}, "sun": True, "albedo": 0.172 # fyr02's sheet - }, - "(20108) 1995 QZ9|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 0.880, "V-R": 0.515}, "sun": True - }, - "(20738) 1999 XG191|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.776, "V-R": 0.472, "R-I": 0.467}, "sun": True - }, - "(23549) Epicles|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.800, "V-R": 0.485, "R-I": 0.387}, "sun": True - }, - "(23694) 1997 KZ3|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.723, "V-R": 0.474, "R-I": 0.418}, "sun": True - }, - "(24233) 1999 XD94|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.704, "V-R": 0.481, "R-I": 0.418}, "sun": True - }, - "(24341) 2000 AJ87|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.713, "V-R": 0.369, "R-I": 0.390}, "sun": True - }, - "(24380) 2000 AA160|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.734, "V-R": 0.391, "R-I": 0.336}, "sun": True - }, - "(24390) 2000 AD177|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.700, "V-R": 0.513, "R-I": 0.462}, "sun": True - }, - "(24420) 2000 BU22|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.937, "V-R": 0.441, "R-I": 0.304}, "sun": True - }, - "(24426) 2000 CR12|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.717, "V-R": 0.414, "R-I": 0.424}, "sun": True - }, - "(24444) 2000 OP32|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.712, "V-R": 0.437, "R-I": 0.409}, "sun": True - }, - "(24452) 2000 QU167|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.872, "V-R": 0.441, "R-I": 0.406}, "sun": True - }, - "(24467) 2000 SS165|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.927, "V-R": 0.460, "R-I": 0.513}, "sun": True - }, - "(24835) 1995 SM55|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.652, "V-R": 0.357, "R-I": 0.356}, "sun": True - }, - "(24952) 1997 QJ4|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 0.763, "V-R": 0.431, "R-I": 0.396}, "sun": True - }, - "(24978) 1998 HJ151|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 1.110, "V-R": 0.710}, "sun": True - }, + }, + "(1172) Aneas|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.727, "V-R": 0.510, "R-I": 0.400}, "sun": True + }, + "(1173) Anchises|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.811, "V-R": 0.402, "R-I": 0.403}, "sun": True + }, + "(1871) Astyanax|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.716, "V-R": 0.456, "R-I": 0.424}, "sun": True + }, + "(2060) Chiron|9": {"tags": ["featured", "solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.660, "V-R": 0.359, "R-I": 0.324}, "sun": True, "albedo": 0.16 + }, + "(2223) Sarpedon|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.753, "V-R": 0.465, "R-I": 0.440}, "sun": True + }, + "(2357) Phereclos|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.718, "V-R": 0.427, "R-I": 0.463}, "sun": True + }, + "(3548) Eurybates|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.677, "V-R": 0.352, "R-I": 0.339}, "sun": True + }, + "(4035) 1986 WD|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.752, "V-R": 0.484, "R-I": 0.451}, "sun": True + }, + "(4829) Sergestus|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.851, "V-R": 0.420, "R-I": 0.372}, "sun": True + }, + "(5130) Ilioneus|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.763, "V-R": 0.481, "R-I": 0.424}, "sun": True + }, + "(5145) Pholus|9": {"tags": ["featured", "solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 1.261, "V-R": 0.791, "R-I": 0.818}, "sun": True, "albedo": 0.155 + }, + "(5511) Cloanthus|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.906, "V-R": 0.442, "R-I": 0.526}, "sun": True + }, + "(6545) 1986 TR6|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.734, "V-R": 0.499, "R-I": 0.436}, "sun": True + }, + "(6998) Tithonus|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.787, "V-R": 0.455, "R-I": 0.438}, "sun": True + }, + "(7066) Nessus|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 1.090, "V-R": 0.763, "R-I": 0.689}, "sun": True + }, + "(7352) 1994 CO|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.713, "V-R": 0.417, "R-I": 0.397}, "sun": True + }, + "(8405) Asbolus|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.738, "V-R": 0.508, "R-I": 0.505}, "sun": True + }, + "(9030) 1989 UX5|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.887, "V-R": 0.493, "R-I": 0.480}, "sun": True + }, + "(9430) Erichthonio|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.742, "V-R": 0.488, "R-I": 0.456}, "sun": True + }, + "(9818) Eurymachos|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.673, "V-R": 0.339, "R-I": 0.355}, "sun": True + }, + "(10199) Chariklo|9": {"tags": ["featured", "solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.802, "V-R": 0.491, "R-I": 0.519}, "sun": True, "albedo": 0.035 # https://arxiv.org/abs/1409.7259 + }, + "(10370) Hylonome|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.690, "V-R": 0.469, "R-I": 0.496}, "sun": True + }, + "(11089) 1994 CS8|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.689, "V-R": 0.423, "R-I": 0.384}, "sun": True + }, + "(11351) Leucus|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.739, "V-R": 0.498, "R-I": 0.402}, "sun": True + }, + "(11488) 1988 RM11|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.777, "V-R": 0.436, "R-I": 0.420}, "sun": True + }, + "(11663) 1997 GO24|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.837, "V-R": 0.409, "R-I": 0.463}, "sun": True + }, + "(12917) 1998 TG16|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.724, "V-R": 0.537, "R-I": 0.410}, "sun": True + }, + "(12921) 1998 WZ5|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.673, "V-R": 0.403, "R-I": 0.380}, "sun": True + }, + "(13463) Antiphos|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.692, "V-R": 0.449, "R-I": 0.412}, "sun": True + }, + "(14707) 2000 CC20|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.752, "V-R": 0.412, "R-I": 0.385}, "sun": True + }, + "(15094) Polymele|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.652, "V-R": 0.477, "R-I": 0.322}, "sun": True + }, + "(15502) 1999 NV27|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.766, "V-R": 0.445, "R-I": 0.430}, "sun": True + }, + "(15504) 1999 RG33|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.817, "V-R": 0.495, "R-I": 0.350}, "sun": True + }, + "(15535) 2000 AT177|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.739, "V-R": 0.470, "R-I": 0.461}, "sun": True + }, + "(15760) Albion|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 0.869, "V-R": 0.707, "R-I": 0.651}, "sun": True + }, + "(15788) 1993 SB|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 0.802, "V-R": 0.475, "R-I": 0.514}, "sun": True + }, + "(15789) 1993 SC|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 1.045, "V-R": 0.688, "R-I": 0.697}, "sun": True + }, + "(15810) Arawn|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 1.010, "V-R": 0.632, "R-I": 0.538}, "sun": True + }, + "(15820) 1994 TB|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 1.107, "V-R": 0.697, "R-I": 0.739}, "sun": True + }, + "(15874) 1996 TL66|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.687, "V-R": 0.369, "R-I": 0.370}, "sun": True + }, + "(15875) 1996 TP66|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 1.031, "V-R": 0.655, "R-I": 0.673}, "sun": True + }, + "(15883) 1997 CR29|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.750, "V-R": 0.538, "R-I": 0.620}, "sun": True + }, + "(15977) 1998 MA11|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.748, "V-R": 0.465, "R-I": 0.441}, "sun": True + }, + "(16684) 1994 JQ1|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 1.134, "V-R": 0.736, "R-I": 0.650}, "sun": True + }, + "(17416) 1988 RR10|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.742, "V-R": 0.488, "R-I": 0.498}, "sun": True + }, + "(18060) 1999 XJ156|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.758, "V-R": 0.412, "R-I": 0.364}, "sun": True + }, + "(18137) 2000 OU30|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.733, "V-R": 0.496, "R-I": 0.409}, "sun": True + }, + "(18268) Dardanos|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.795, "V-R": 0.529, "R-I": 0.451}, "sun": True + }, + "(18493) Demoleon|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.703, "V-R": 0.395, "R-I": 0.380}, "sun": True + }, + "(18940) 2000 QV49|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.709, "V-R": 0.465, "R-I": 0.429}, "sun": True + }, + "(19255) 1994 VK8|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 1.010, "V-R": 0.659, "R-I": 0.490}, "sun": True + }, + "(19299) 1996 SZ4|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 0.754, "V-R": 0.522, "R-I": 0.446}, "sun": True + }, + "(19308) 1996 TO66|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.671, "V-R": 0.389, "R-I": 0.356}, "sun": True + }, + "(19521) Chaos|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.932, "V-R": 0.608, "R-I": 0.571}, "sun": True + }, + "(20000) Varuna|9": {"tags": ["featured", "solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.906, "V-R": 0.626, "R-I": 0.628}, "sun": True, "albedo": 0.172 # fyr02's sheet + }, + "(20108) 1995 QZ9|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 0.880, "V-R": 0.515}, "sun": True + }, + "(20738) 1999 XG191|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.776, "V-R": 0.472, "R-I": 0.467}, "sun": True + }, + "(23549) Epicles|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.800, "V-R": 0.485, "R-I": 0.387}, "sun": True + }, + "(23694) 1997 KZ3|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.723, "V-R": 0.474, "R-I": 0.418}, "sun": True + }, + "(24233) 1999 XD94|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.704, "V-R": 0.481, "R-I": 0.418}, "sun": True + }, + "(24341) 2000 AJ87|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.713, "V-R": 0.369, "R-I": 0.390}, "sun": True + }, + "(24380) 2000 AA160|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.734, "V-R": 0.391, "R-I": 0.336}, "sun": True + }, + "(24390) 2000 AD177|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.700, "V-R": 0.513, "R-I": 0.462}, "sun": True + }, + "(24420) 2000 BU22|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.937, "V-R": 0.441, "R-I": 0.304}, "sun": True + }, + "(24426) 2000 CR12|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.717, "V-R": 0.414, "R-I": 0.424}, "sun": True + }, + "(24444) 2000 OP32|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.712, "V-R": 0.437, "R-I": 0.409}, "sun": True + }, + "(24452) 2000 QU167|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.872, "V-R": 0.441, "R-I": 0.406}, "sun": True + }, + "(24467) 2000 SS165|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.927, "V-R": 0.460, "R-I": 0.513}, "sun": True + }, + "(24835) 1995 SM55|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.652, "V-R": 0.357, "R-I": 0.356}, "sun": True + }, + "(24952) 1997 QJ4|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 0.763, "V-R": 0.431, "R-I": 0.396}, "sun": True + }, + "(24978) 1998 HJ151|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 1.110, "V-R": 0.710}, "sun": True + }, "(25143) Itokawa|12": { "tags": ["featured", "solar_system", "minor_body", "asteroid", "main_belt"], "nm": list(range(325, 1025, 25)), "br": [0.388, 0.568, 0.676, 0.773, 0.824, 0.856, 0.888, 0.914, 0.964, 1.0, 1.036, 1.058, 1.076, 1.094, 1.122, 1.140, 1.147, 1.144, 1.129, 1.101, 1.068, 1.029, 1.0, 0.978, 0.975, 0.946, 0.917, 0.935], "albedo": 0.29 # https://academic.oup.com/pasj/article/66/3/52/1438030 - }, - "(25347) 1999 RQ116|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.618, "V-R": 0.488, "R-I": 0.461}, "sun": True - }, - "(26181) 1996 GQ21|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], - "filters": "Landolt", "indices": {"B-V": 0.999, "V-R": 0.697, "R-I": 0.694}, "sun": True - }, - "(26308) 1998 SM165|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], - "filters": "Landolt", "indices": {"B-V": 0.989, "V-R": 0.641, "R-I": 0.666}, "sun": True - }, - "(26375) 1999 DE9|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], - "filters": "Landolt", "indices": {"B-V": 0.967, "V-R": 0.579, "R-I": 0.568}, "sun": True - }, - "(28958) 2001 CQ42|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.730, "V-R": 0.364, "R-I": 0.230}, "sun": True - }, - "(28978) Ixion|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 1.018, "V-R": 0.605, "R-I": 0.580}, "sun": True - }, - "(29981) 1999 TD10|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.808, "V-R": 0.502, "R-I": 0.511}, "sun": True - }, - "(30698) Hippokoon|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.715, "V-R": 0.458, "R-I": 0.412}, "sun": True - }, - "(31820) 1999 RT186|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.889, "V-R": 0.520, "R-I": 0.396}, "sun": True - }, - "(31821) 1999 RK225|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.980, "V-R": 0.440, "R-I": 0.461}, "sun": True - }, - "(31824) Elatus|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 1.020, "V-R": 0.620, "R-I": 0.630}, "sun": True - }, - "(32430) 2000 RQ83|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.772, "V-R": 0.474, "R-I": 0.425}, "sun": True - }, - "(32532) Thereus|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.764, "V-R": 0.501, "R-I": 0.479}, "sun": True - }, - "(32615) 2001 QU277|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.807, "V-R": 0.452, "R-I": 0.474}, "sun": True - }, - "(32794) 1989 UE5|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.923, "V-R": 0.393, "R-I": 0.486}, "sun": True - }, - "(32929) 1995 QY9|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.740, "V-R": 0.561}, "sun": True - }, - "(33001) 1997 CU29|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 1.157, "V-R": 0.645, "R-I": 0.634}, "sun": True - }, - "(33128) 1998 BU48|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 1.044, "V-R": 0.631, "R-I": 0.644}, "sun": True - }, - "(33340) 1998 VG44|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 0.955, "V-R": 0.555, "R-I": 0.598}, "sun": True - }, - "(34785) 2001 RG87|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.728, "V-R": 0.386, "R-I": 0.419}, "sun": True - }, - "(35671) 1998 SN165|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 0.712, "V-R": 0.444, "R-I": 0.437}, "sun": True - }, - "(38083) Rhadamanth|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.650, "V-R": 0.527, "R-I": 0.412}, "sun": True - }, - "(38084) 1999 HB12|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], - "filters": "Landolt", "indices": {"B-V": 0.893, "V-R": 0.544, "R-I": 0.481}, "sun": True - }, - "(38628) Huya|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 0.963, "V-R": 0.609, "R-I": 0.593}, "sun": True - }, - "(39285) 2001 BP75|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.810, "V-R": 0.381, "R-I": 0.291}, "sun": True - }, - "(40314) 1999 KR16|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 1.123, "V-R": 0.738, "R-I": 0.750}, "sun": True - }, - "(42301) 2001 UR163|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], - "filters": "Landolt", "indices": {"B-V": 1.290, "V-R": 0.839, "R-I": 0.673}, "sun": True - }, - "(42355) Typhon|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.758, "V-R": 0.518, "R-I": 0.378}, "sun": True - }, - "(44594) 1999 OX3|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 1.138, "V-R": 0.708, "R-I": 0.640}, "sun": True - }, - "(47171) Lempo|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 1.029, "V-R": 0.693, "R-I": 0.619}, "sun": True - }, - "(47932) 2000 GN171|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 0.960, "V-R": 0.607, "R-I": 0.617}, "sun": True - }, - "(47967) 2000 SL298|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.899, "V-R": 0.489, "R-I": 0.476}, "sun": True - }, - "(48249) 2001 SY345|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.758, "V-R": 0.530, "R-I": 0.420}, "sun": True - }, - "(48252) 2001 TL212|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.949, "V-R": 0.467, "R-I": 0.436}, "sun": True - }, - "(48639) 1995 TL8|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 1.008, "V-R": 0.621, "R-I": 0.551}, "sun": True - }, - "(49036) Pelion|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.746, "V-R": 0.556, "R-I": 0.368}, "sun": True - }, - "(50000) Quaoar|9": {"tags": ["featured", "solar_system", "minor_body", "dwarf_planet", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.958, "V-R": 0.650, "R-I": 0.610}, "sun": True, "albedo": 0.109 # fyr02's sheet - }, - "(51359) 2000 SC17|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.864, "V-R": 0.447, "R-I": 0.438}, "sun": True - }, - "(52747) 1998 HM151|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 0.930, "V-R": 0.620}, "sun": True - }, - "(52872) Okyrhoe|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.743, "V-R": 0.495, "R-I": 0.480}, "sun": True - }, - "(52975) Cyllarus|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 1.096, "V-R": 0.680, "R-I": 0.669}, "sun": True - }, - "(53469) 2000 AX8|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.663, "V-R": 0.356, "R-I": 0.361}, "sun": True - }, - "(54598) Bienor|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.711, "V-R": 0.476, "R-I": 0.400}, "sun": True - }, - "(55565) 2002 AW197|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.915, "V-R": 0.589, "R-I": 0.581}, "sun": True - }, - "(55576) Amycus|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 1.111, "V-R": 0.705, "R-I": 0.666}, "sun": True - }, - "(55636) 2002 TX300|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.679, "V-R": 0.359, "R-I": 0.323}, "sun": True - }, - "(55637) 2002 UX25|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.979, "V-R": 0.552}, "sun": True - }, - "(55638) 2002 VE95|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 1.094, "V-R": 0.733, "R-I": 0.760}, "sun": True - }, - "(56968) 2000 SA92|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.986, "V-R": 0.494, "R-I": 0.509}, "sun": True - }, - "(58534) Logos|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 0.990, "V-R": 0.729, "R-I": 0.602}, "sun": True - }, - "(59358) 1999 CL158|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.800, "V-R": 0.390, "R-I": 0.470}, "sun": True - }, - "(60454) 2000 CH105|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 1.019, "V-R": 0.643, "R-I": 0.583}, "sun": True - }, - "(60458) 2000 CM114|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], - "filters": "Landolt", "indices": {"B-V": 0.730, "V-R": 0.500}, "sun": True - }, - "(60558) Echeclus|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.841, "V-R": 0.502, "R-I": 0.486}, "sun": True - }, - "(60608) 2000 EE173|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.665, "V-R": 0.488, "R-I": 0.543}, "sun": True - }, - "(60620) 2000 FD8|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], - "filters": "Landolt", "indices": {"B-V": 1.151, "V-R": 0.664, "R-I": 0.648}, "sun": True - }, - "(60621) 2000 FE8|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], - "filters": "Landolt", "indices": {"B-V": 0.750, "V-R": 0.480, "R-I": 0.500}, "sun": True - }, - "(63252) 2001 BL41|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.718, "V-R": 0.509, "R-I": 0.381}, "sun": True - }, - "(65150) 2002 CA126|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.651, "V-R": 0.377, "R-I": 0.407}, "sun": True - }, - "(65225) 2002 EK44|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.693, "V-R": 0.401, "R-I": 0.334}, "sun": True - }, - "(65407) 2002 RP120|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.846, "V-R": 0.489, "R-I": 0.484}, "sun": True - }, - "(65489) Ceto|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.879, "V-R": 0.547, "R-I": 0.411}, "sun": True - }, - "(66452) 1999 OF4|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 1.032, "V-R": 0.673, "R-I": 0.601}, "sun": True - }, - "(66652) Borasisi|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 0.820, "V-R": 0.646, "R-I": 0.647}, "sun": True - }, - "(69986) 1998 WW24|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 0.756, "V-R": 0.463, "R-I": 0.659}, "sun": True - }, - "(69988) 1998 WA31|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], - "filters": "Landolt", "indices": {"B-V": 0.786, "V-R": 0.492, "R-I": 0.530}, "sun": True - }, - "(69990) 1998 WU31|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 0.720, "V-R": 0.505, "R-I": 0.722}, "sun": True - }, - "(73480) 2002 PN34|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.818, "V-R": 0.514}, "sun": True - }, - "(76804) 2000 QE|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.803, "V-R": 0.446, "R-I": 0.443}, "sun": True - }, - "(79360) Sila-Nunam|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 1.055, "V-R": 0.666, "R-I": 0.609}, "sun": True - }, - "(79978) 1999 CC158|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], - "filters": "Landolt", "indices": {"B-V": 0.996, "V-R": 0.611, "R-I": 0.619}, "sun": True - }, - "(79983) 1999 DF9|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.920, "V-R": 0.710, "R-I": 0.650}, "sun": True - }, - "(82075) 2000 YW134|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], - "filters": "Landolt", "indices": {"B-V": 0.922, "V-R": 0.503, "R-I": 0.581}, "sun": True - }, - "(82155) 2001 FZ173|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.864, "V-R": 0.546, "R-I": 0.508}, "sun": True - }, - "(82158) 2001 FP185|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.820, "V-R": 0.572, "R-I": 0.458}, "sun": True - }, - "(83982) Crantor|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 1.105, "V-R": 0.761, "R-I": 0.667}, "sun": True - }, - "(84522) 2002 TC302|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], - "filters": "Landolt", "indices": {"B-V": 1.067, "V-R": 0.655, "R-I": 0.660}, "sun": True - }, - "(84709) 2002 VW120|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.855, "V-R": 0.462, "R-I": 0.548}, "sun": True - }, - "(84719) 2002 VR128|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 0.935, "V-R": 0.605}, "sun": True - }, - "(84922) 2003 VS2|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 0.930, "V-R": 0.590}, "sun": True - }, - "(85633) 1998 KR65|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 1.095, "V-R": 0.628, "R-I": 0.790}, "sun": True - }, - "(86047) 1999 OY3|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.726, "V-R": 0.345, "R-I": 0.277}, "sun": True - }, - "(86177) 1999 RY215|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.719, "V-R": 0.358, "R-I": 0.631}, "sun": True - }, - "(87269) 2000 OO67|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 1.080, "V-R": 0.654, "R-I": 0.593}, "sun": True - }, - "(87555) 2000 QB243|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.763, "V-R": 0.383, "R-I": 0.729}, "sun": True - }, - "(88269) 2001 KF77|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 1.080, "V-R": 0.730}, "sun": True - }, - "(90377) Sedna|9": {"tags": ["featured", "solar_system", "dwarf_planet", "minor_body", "tno", "detached"], - "filters": "Landolt", "indices": {"B-V": 1.179, "V-R": 0.739, "R-I": 0.654}, "sun": True, "albedo": 0.399 # fyr02's sheet - }, - "(90482) Orcus|9": {"tags": ["featured", "solar_system", "dwarf_planet", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 0.670, "V-R": 0.376, "R-I": 0.372}, "sun": True, "albedo": 0.231 # fyr02's sheet - }, - #"(90482) Orcus|17": {"tags": ["solar_system", "minor_body", "dwarf_planet", "tno", "plutino"], - # "filters": "Hubble", "bands": ["F606W", "F814W", "F110W", "F160W"], "mag": [19.186, 18.62, 20.64, 21.65], "vega": False - #}, - #"Vanth|17": {"tags": ["solar_system", "minor_body", "tno", "plutino", "moon"], - # "filters": "Hubble", "bands": ["F606W", "F814W", "F110W", "F160W"], "mag": [21.73, 20.90, 23.3, 24.0], "vega": False - #}, - "(90482) Orcus|17": {"tags": ["solar_system", "minor_body", "dwarf_planet", "tno", "plutino"], - "filters": "Landolt", "indices": {"V-I": 0.73} - }, - "Vanth|17": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"V-I": 1.03} - }, - "(90568) 2004 GV9|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.895, "V-R": 0.520}, "sun": True - }, - "(91133) 1998 HK151|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 0.645, "V-R": 0.520, "R-I": 0.390}, "sun": True - }, - "(91205) 1998 US43|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 0.691, "V-R": 0.446, "R-I": 0.347}, "sun": True - }, - "(91554) 1999 RZ215|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.771, "V-R": 0.575, "R-I": 0.539}, "sun": True - }, - "(95626) 2002 GZ32|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.674, "V-R": 0.576, "R-I": 0.538}, "sun": True - }, - "(99328) 2001 UY123|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.890, "V-R": 0.537, "R-I": 0.434}, "sun": True - }, - "(101955) Bennu|28": {"tags": ["featured", "solar_system", "minor_body", "asteroid", "main_belt"], + }, + "(25347) 1999 RQ116|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.618, "V-R": 0.488, "R-I": 0.461}, "sun": True + }, + "(26181) 1996 GQ21|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], + "filters": "Landolt", "indices": {"B-V": 0.999, "V-R": 0.697, "R-I": 0.694}, "sun": True + }, + "(26308) 1998 SM165|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], + "filters": "Landolt", "indices": {"B-V": 0.989, "V-R": 0.641, "R-I": 0.666}, "sun": True + }, + "(26375) 1999 DE9|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], + "filters": "Landolt", "indices": {"B-V": 0.967, "V-R": 0.579, "R-I": 0.568}, "sun": True + }, + "(28958) 2001 CQ42|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.730, "V-R": 0.364, "R-I": 0.230}, "sun": True + }, + "(28978) Ixion|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 1.018, "V-R": 0.605, "R-I": 0.580}, "sun": True + }, + "(29981) 1999 TD10|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.808, "V-R": 0.502, "R-I": 0.511}, "sun": True + }, + "(30698) Hippokoon|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.715, "V-R": 0.458, "R-I": 0.412}, "sun": True + }, + "(31820) 1999 RT186|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.889, "V-R": 0.520, "R-I": 0.396}, "sun": True + }, + "(31821) 1999 RK225|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.980, "V-R": 0.440, "R-I": 0.461}, "sun": True + }, + "(31824) Elatus|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 1.020, "V-R": 0.620, "R-I": 0.630}, "sun": True + }, + "(32430) 2000 RQ83|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.772, "V-R": 0.474, "R-I": 0.425}, "sun": True + }, + "(32532) Thereus|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.764, "V-R": 0.501, "R-I": 0.479}, "sun": True + }, + "(32615) 2001 QU277|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.807, "V-R": 0.452, "R-I": 0.474}, "sun": True + }, + "(32794) 1989 UE5|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.923, "V-R": 0.393, "R-I": 0.486}, "sun": True + }, + "(32929) 1995 QY9|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.740, "V-R": 0.561}, "sun": True + }, + "(33001) 1997 CU29|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 1.157, "V-R": 0.645, "R-I": 0.634}, "sun": True + }, + "(33128) 1998 BU48|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 1.044, "V-R": 0.631, "R-I": 0.644}, "sun": True + }, + "(33340) 1998 VG44|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 0.955, "V-R": 0.555, "R-I": 0.598}, "sun": True + }, + "(34785) 2001 RG87|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.728, "V-R": 0.386, "R-I": 0.419}, "sun": True + }, + "(35671) 1998 SN165|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 0.712, "V-R": 0.444, "R-I": 0.437}, "sun": True + }, + "(38083) Rhadamanth|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.650, "V-R": 0.527, "R-I": 0.412}, "sun": True + }, + "(38084) 1999 HB12|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], + "filters": "Landolt", "indices": {"B-V": 0.893, "V-R": 0.544, "R-I": 0.481}, "sun": True + }, + "(38628) Huya|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 0.963, "V-R": 0.609, "R-I": 0.593}, "sun": True + }, + "(39285) 2001 BP75|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.810, "V-R": 0.381, "R-I": 0.291}, "sun": True + }, + "(40314) 1999 KR16|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 1.123, "V-R": 0.738, "R-I": 0.750}, "sun": True + }, + "(42301) 2001 UR163|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], + "filters": "Landolt", "indices": {"B-V": 1.290, "V-R": 0.839, "R-I": 0.673}, "sun": True + }, + "(42355) Typhon|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.758, "V-R": 0.518, "R-I": 0.378}, "sun": True + }, + "(44594) 1999 OX3|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 1.138, "V-R": 0.708, "R-I": 0.640}, "sun": True + }, + "(47171) Lempo|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 1.029, "V-R": 0.693, "R-I": 0.619}, "sun": True + }, + "(47932) 2000 GN171|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 0.960, "V-R": 0.607, "R-I": 0.617}, "sun": True + }, + "(47967) 2000 SL298|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.899, "V-R": 0.489, "R-I": 0.476}, "sun": True + }, + "(48249) 2001 SY345|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.758, "V-R": 0.530, "R-I": 0.420}, "sun": True + }, + "(48252) 2001 TL212|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.949, "V-R": 0.467, "R-I": 0.436}, "sun": True + }, + "(48639) 1995 TL8|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 1.008, "V-R": 0.621, "R-I": 0.551}, "sun": True + }, + "(49036) Pelion|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.746, "V-R": 0.556, "R-I": 0.368}, "sun": True + }, + "(50000) Quaoar|9": {"tags": ["featured", "solar_system", "minor_body", "dwarf_planet", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.958, "V-R": 0.650, "R-I": 0.610}, "sun": True, "albedo": 0.109 # fyr02's sheet + }, + "(51359) 2000 SC17|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.864, "V-R": 0.447, "R-I": 0.438}, "sun": True + }, + "(52747) 1998 HM151|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 0.930, "V-R": 0.620}, "sun": True + }, + "(52872) Okyrhoe|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.743, "V-R": 0.495, "R-I": 0.480}, "sun": True + }, + "(52975) Cyllarus|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 1.096, "V-R": 0.680, "R-I": 0.669}, "sun": True + }, + "(53469) 2000 AX8|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.663, "V-R": 0.356, "R-I": 0.361}, "sun": True + }, + "(54598) Bienor|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.711, "V-R": 0.476, "R-I": 0.400}, "sun": True + }, + "(55565) 2002 AW197|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.915, "V-R": 0.589, "R-I": 0.581}, "sun": True + }, + "(55576) Amycus|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 1.111, "V-R": 0.705, "R-I": 0.666}, "sun": True + }, + "(55636) 2002 TX300|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.679, "V-R": 0.359, "R-I": 0.323}, "sun": True + }, + "(55637) 2002 UX25|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.979, "V-R": 0.552}, "sun": True + }, + "(55638) 2002 VE95|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 1.094, "V-R": 0.733, "R-I": 0.760}, "sun": True + }, + "(56968) 2000 SA92|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.986, "V-R": 0.494, "R-I": 0.509}, "sun": True + }, + "(58534) Logos|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 0.990, "V-R": 0.729, "R-I": 0.602}, "sun": True + }, + "(59358) 1999 CL158|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.800, "V-R": 0.390, "R-I": 0.470}, "sun": True + }, + "(60454) 2000 CH105|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 1.019, "V-R": 0.643, "R-I": 0.583}, "sun": True + }, + "(60458) 2000 CM114|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], + "filters": "Landolt", "indices": {"B-V": 0.730, "V-R": 0.500}, "sun": True + }, + "(60558) Echeclus|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.841, "V-R": 0.502, "R-I": 0.486}, "sun": True + }, + "(60608) 2000 EE173|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.665, "V-R": 0.488, "R-I": 0.543}, "sun": True + }, + "(60620) 2000 FD8|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], + "filters": "Landolt", "indices": {"B-V": 1.151, "V-R": 0.664, "R-I": 0.648}, "sun": True + }, + "(60621) 2000 FE8|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], + "filters": "Landolt", "indices": {"B-V": 0.750, "V-R": 0.480, "R-I": 0.500}, "sun": True + }, + "(63252) 2001 BL41|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.718, "V-R": 0.509, "R-I": 0.381}, "sun": True + }, + "(65150) 2002 CA126|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.651, "V-R": 0.377, "R-I": 0.407}, "sun": True + }, + "(65225) 2002 EK44|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.693, "V-R": 0.401, "R-I": 0.334}, "sun": True + }, + "(65407) 2002 RP120|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.846, "V-R": 0.489, "R-I": 0.484}, "sun": True + }, + "(65489) Ceto|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.879, "V-R": 0.547, "R-I": 0.411}, "sun": True + }, + "(66452) 1999 OF4|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 1.032, "V-R": 0.673, "R-I": 0.601}, "sun": True + }, + "(66652) Borasisi|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 0.820, "V-R": 0.646, "R-I": 0.647}, "sun": True + }, + "(69986) 1998 WW24|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 0.756, "V-R": 0.463, "R-I": 0.659}, "sun": True + }, + "(69988) 1998 WA31|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], + "filters": "Landolt", "indices": {"B-V": 0.786, "V-R": 0.492, "R-I": 0.530}, "sun": True + }, + "(69990) 1998 WU31|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 0.720, "V-R": 0.505, "R-I": 0.722}, "sun": True + }, + "(73480) 2002 PN34|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.818, "V-R": 0.514}, "sun": True + }, + "(76804) 2000 QE|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.803, "V-R": 0.446, "R-I": 0.443}, "sun": True + }, + "(79360) Sila-Nunam|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 1.055, "V-R": 0.666, "R-I": 0.609}, "sun": True + }, + "(79978) 1999 CC158|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], + "filters": "Landolt", "indices": {"B-V": 0.996, "V-R": 0.611, "R-I": 0.619}, "sun": True + }, + "(79983) 1999 DF9|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.920, "V-R": 0.710, "R-I": 0.650}, "sun": True + }, + "(82075) 2000 YW134|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], + "filters": "Landolt", "indices": {"B-V": 0.922, "V-R": 0.503, "R-I": 0.581}, "sun": True + }, + "(82155) 2001 FZ173|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.864, "V-R": 0.546, "R-I": 0.508}, "sun": True + }, + "(82158) 2001 FP185|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.820, "V-R": 0.572, "R-I": 0.458}, "sun": True + }, + "(83982) Crantor|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 1.105, "V-R": 0.761, "R-I": 0.667}, "sun": True + }, + "(84522) 2002 TC302|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], + "filters": "Landolt", "indices": {"B-V": 1.067, "V-R": 0.655, "R-I": 0.660}, "sun": True + }, + "(84709) 2002 VW120|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.855, "V-R": 0.462, "R-I": 0.548}, "sun": True + }, + "(84719) 2002 VR128|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 0.935, "V-R": 0.605}, "sun": True + }, + "(84922) 2003 VS2|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 0.930, "V-R": 0.590}, "sun": True + }, + "(85633) 1998 KR65|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 1.095, "V-R": 0.628, "R-I": 0.790}, "sun": True + }, + "(86047) 1999 OY3|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.726, "V-R": 0.345, "R-I": 0.277}, "sun": True + }, + "(86177) 1999 RY215|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.719, "V-R": 0.358, "R-I": 0.631}, "sun": True + }, + "(87269) 2000 OO67|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 1.080, "V-R": 0.654, "R-I": 0.593}, "sun": True + }, + "(87555) 2000 QB243|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.763, "V-R": 0.383, "R-I": 0.729}, "sun": True + }, + "(88269) 2001 KF77|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 1.080, "V-R": 0.730}, "sun": True + }, + "(90377) Sedna|9": {"tags": ["featured", "solar_system", "dwarf_planet", "minor_body", "tno", "detached"], + "filters": "Landolt", "indices": {"B-V": 1.179, "V-R": 0.739, "R-I": 0.654}, "sun": True, "albedo": 0.399 # fyr02's sheet + }, + "(90482) Orcus|9": {"tags": ["featured", "solar_system", "dwarf_planet", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 0.670, "V-R": 0.376, "R-I": 0.372}, "sun": True, "albedo": 0.231 # fyr02's sheet + }, + #"(90482) Orcus|17": {"tags": ["solar_system", "minor_body", "dwarf_planet", "tno", "plutino"], + # "filters": "Hubble", "bands": ["F606W", "F814W", "F110W", "F160W"], "mag": [19.186, 18.62, 20.64, 21.65], "vega": False + #}, + #"Vanth|17": {"tags": ["solar_system", "minor_body", "tno", "plutino", "moon"], + # "filters": "Hubble", "bands": ["F606W", "F814W", "F110W", "F160W"], "mag": [21.73, 20.90, 23.3, 24.0], "vega": False + #}, + "(90482) Orcus|17": {"tags": ["solar_system", "minor_body", "dwarf_planet", "tno", "plutino"], + "filters": "Landolt", "indices": {"V-I": 0.73} + }, + "Vanth|17": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"V-I": 1.03} + }, + "(90568) 2004 GV9|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.895, "V-R": 0.520}, "sun": True + }, + "(91133) 1998 HK151|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 0.645, "V-R": 0.520, "R-I": 0.390}, "sun": True + }, + "(91205) 1998 US43|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 0.691, "V-R": 0.446, "R-I": 0.347}, "sun": True + }, + "(91554) 1999 RZ215|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.771, "V-R": 0.575, "R-I": 0.539}, "sun": True + }, + "(95626) 2002 GZ32|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.674, "V-R": 0.576, "R-I": 0.538}, "sun": True + }, + "(99328) 2001 UY123|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.890, "V-R": 0.537, "R-I": 0.434}, "sun": True + }, + "(101955) Bennu|28": {"tags": ["featured", "solar_system", "minor_body", "asteroid", "main_belt"], "nm": [473.228, 549.146, 697.569, 847.937], "br": [0.0175, 0.01736, 0.0174, 0.01727], "albedo": True - }, - "(101955) Bennu:D|28": {"tags": ["featured", "solar_system", "minor_body", "asteroid", "main_belt", "surface_feature"], + }, + "(101955) Bennu:D|28": {"tags": ["featured", "solar_system", "minor_body", "asteroid", "main_belt", "surface_feature"], "nm": [473.228, 549.146, 697.569, 847.937], "br": [0.01604, 0.01573, 0.016, 0.01605], "albedo": True - }, - "(105685) 2000 SC51|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 1.016, "V-R": 0.444, "R-I": 0.452}, "sun": True - }, - "(111113) 2001 VK85|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.822, "V-R": 0.462, "R-I": 0.558}, "sun": True - }, - "(118228) 1996 TQ66|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 1.186, "V-R": 0.670, "R-I": 0.746}, "sun": True - }, - "(118379) 1999 HC12|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.894, "V-R": 0.490, "R-I": 0.343}, "sun": True - }, - "(118702) 2000 OM67|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], - "filters": "Landolt", "indices": {"B-V": 0.820, "V-R": 0.470, "R-I": 0.590}, "sun": True - }, - "(119068) 2001 KC77|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], - "filters": "Landolt", "indices": {"B-V": 0.910, "V-R": 0.560}, "sun": True - }, - "(119315) 2001 SQ73|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.670, "V-R": 0.460}, "sun": True - }, - "(119951) 2002 KX14|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 1.050, "V-R": 0.607}, "sun": True - }, - "(119979) 2002 WC19|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], - "filters": "Landolt", "indices": {"B-V": 1.040, "V-R": 0.630}, "sun": True - }, - "(120061) 2003 CO1|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.743, "V-R": 0.472, "R-I": 0.494}, "sun": True - }, - "(120132) 2003 FY128|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], - "filters": "Landolt", "indices": {"B-V": 1.021, "V-R": 0.614, "R-I": 0.540}, "sun": True - }, - "(120178) 2003 OP32|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.662, "V-R": 0.375, "R-I": 0.305}, "sun": True - }, - "(120181) 2003 UR292|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 1.025, "V-R": 0.635}, "sun": True - }, - "(120216) 2004 EW95|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 0.693, "V-R": 0.375, "R-I": 0.215}, "sun": True - }, - "(120347) Salacia|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.664, "V-R": 0.403, "R-I": 0.433}, "sun": True - }, - "(120348) 2004 TY364|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 1.059, "V-R": 0.601, "R-I": 0.520}, "sun": True - }, - "(120453) 1988 RE12|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.826, "V-R": 0.388, "R-I": 0.483}, "sun": True - }, - "(121725) Aphidas|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 1.060, "V-R": 0.648, "R-I": 0.679}, "sun": True - }, - "(124729) 2001 SB173|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.992, "V-R": 0.503, "R-I": 0.424}, "sun": True - }, - "(127546) 2002 XU93|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.731, "V-R": 0.410, "R-I": 0.443}, "sun": True - }, - "(129772) 1999 HR11|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 0.920, "V-R": 0.530, "R-I": 0.800}, "sun": True - }, + }, + "(105685) 2000 SC51|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 1.016, "V-R": 0.444, "R-I": 0.452}, "sun": True + }, + "(111113) 2001 VK85|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.822, "V-R": 0.462, "R-I": 0.558}, "sun": True + }, + "(118228) 1996 TQ66|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 1.186, "V-R": 0.670, "R-I": 0.746}, "sun": True + }, + "(118379) 1999 HC12|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.894, "V-R": 0.490, "R-I": 0.343}, "sun": True + }, + "(118702) 2000 OM67|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], + "filters": "Landolt", "indices": {"B-V": 0.820, "V-R": 0.470, "R-I": 0.590}, "sun": True + }, + "(119068) 2001 KC77|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], + "filters": "Landolt", "indices": {"B-V": 0.910, "V-R": 0.560}, "sun": True + }, + "(119315) 2001 SQ73|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.670, "V-R": 0.460}, "sun": True + }, + "(119951) 2002 KX14|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 1.050, "V-R": 0.607}, "sun": True + }, + "(119979) 2002 WC19|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], + "filters": "Landolt", "indices": {"B-V": 1.040, "V-R": 0.630}, "sun": True + }, + "(120061) 2003 CO1|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.743, "V-R": 0.472, "R-I": 0.494}, "sun": True + }, + "(120132) 2003 FY128|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], + "filters": "Landolt", "indices": {"B-V": 1.021, "V-R": 0.614, "R-I": 0.540}, "sun": True + }, + "(120178) 2003 OP32|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.662, "V-R": 0.375, "R-I": 0.305}, "sun": True + }, + "(120181) 2003 UR292|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 1.025, "V-R": 0.635}, "sun": True + }, + "(120216) 2004 EW95|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 0.693, "V-R": 0.375, "R-I": 0.215}, "sun": True + }, + "(120347) Salacia|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.664, "V-R": 0.403, "R-I": 0.433}, "sun": True + }, + "(120348) 2004 TY364|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 1.059, "V-R": 0.601, "R-I": 0.520}, "sun": True + }, + "(120453) 1988 RE12|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.826, "V-R": 0.388, "R-I": 0.483}, "sun": True + }, + "(121725) Aphidas|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 1.060, "V-R": 0.648, "R-I": 0.679}, "sun": True + }, + "(124729) 2001 SB173|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.992, "V-R": 0.503, "R-I": 0.424}, "sun": True + }, + "(127546) 2002 XU93|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.731, "V-R": 0.410, "R-I": 0.443}, "sun": True + }, + "(129772) 1999 HR11|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 0.920, "V-R": 0.530, "R-I": 0.800}, "sun": True + }, "(134340) Pluto|6": {"tags": ["featured", "solar_system", "minor_body", "dwarf_planet", "tno", "plutino"], "nm": [400.551, 423.678, 440.749, 458.37, 466.079, 493.062, 496.366, 499.119, 553.634, 555.837, 559.692, 582.819, 587.225, 630.727, 658.811, 670.925, 680.286, 697.907, 729.846, 761.233, 762.885, 773.348, 784.912, 790.419, 795.925, 803.084, 807.489, 812.996, 816.85, 836.674], "br": [0.642, 0.695, 0.766, 0.799, 0.832, 0.887, 0.872, 0.902, 1.019, 1.012, 1.031, 1.056, 1.07, 1.121, 1.137, 0.735, 1.156, 1.169, 1.152, 1.18, 1.157, 1.172, 1.099, 1.144, 1.118, 0.988, 1.072, 1.062, 1.135, 1.169], - "albedo": 0.52 - }, - "(134340) Pluto|9": {"tags": ["solar_system", "minor_body", "dwarf_planet", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 0.867, "V-R": 0.515, "R-I": 0.400}, "albedo": 0.52, "sun": True - }, + "albedo": 0.52 + }, + "(134340) Pluto|9": {"tags": ["solar_system", "minor_body", "dwarf_planet", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 0.867, "V-R": 0.515, "R-I": 0.400}, "albedo": 0.52, "sun": True + }, "(134340) Pluto|24": {"tags": ["solar_system", "minor_body", "dwarf_planet", "tno", "plutino"], "nm": [410, 420, 430, 440, 450, 460, 470, 480, 490, 500, 510, 520, 530, 540, 550, 560, 570, 580, 590, 600, 610, 620, 630, 640, 650, 660, 670, - 680, 690, 700, 710, 720, 730, 740, 750, 760, 770, 780, 790, 800, 810, 820, 830, 840, 850, 860, 870, 880, 890, 900, 910, 920, 930, 992.71], + 680, 690, 700, 710, 720, 730, 740, 750, 760, 770, 780, 790, 800, 810, 820, 830, 840, 850, 860, 870, 880, 890, 900, 910, 920, 930, 992.71], "br": [0.31848, 0.33024, 0.34045, 0.36136, 0.38311, 0.39087, 0.40592, 0.42545, 0.43835, 0.44743, 0.4584, 0.46743, 0.48603, 0.49388, 0.50692, - 0.51397, 0.52309, 0.53866, 0.54639, 0.55549, 0.5629, 0.56749, 0.57886, 0.58535, 0.59163, 0.59688, 0.6017, 0.60816, 0.61239, 0.61481, 0.61961, - 0.6102, 0.60285, 0.63038, 0.63607, 0.6348, 0.63782, 0.63538, 0.63423, 0.63182, 0.63682, 0.64078, 0.64593, 0.63929, 0.63921, 0.62098, 0.54141, - 0.60355, 0.48914, 0.56542, 0.62153, 0.62718, 0.62923, 0.53279], - "albedo": True - }, - "(134860) 2000 OJ67|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 1.050, "V-R": 0.670, "R-I": 0.600}, "sun": True - }, - "(135182) 2001 QT322|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 0.710, "V-R": 0.530}, "sun": True - }, - "(136108) Haumea|9": {"tags": ["featured", "solar_system", "dwarf_planet", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.633, "V-R": 0.353, "R-I": 0.330}, "sun": True, "albedo": 0.66 # https://arxiv.org/abs/1904.00522 - }, + 0.51397, 0.52309, 0.53866, 0.54639, 0.55549, 0.5629, 0.56749, 0.57886, 0.58535, 0.59163, 0.59688, 0.6017, 0.60816, 0.61239, 0.61481, 0.61961, + 0.6102, 0.60285, 0.63038, 0.63607, 0.6348, 0.63782, 0.63538, 0.63423, 0.63182, 0.63682, 0.64078, 0.64593, 0.63929, 0.63921, 0.62098, 0.54141, + 0.60355, 0.48914, 0.56542, 0.62153, 0.62718, 0.62923, 0.53279], + "albedo": True + }, + "(134860) 2000 OJ67|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 1.050, "V-R": 0.670, "R-I": 0.600}, "sun": True + }, + "(135182) 2001 QT322|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 0.710, "V-R": 0.530}, "sun": True + }, + "(136108) Haumea|9": {"tags": ["featured", "solar_system", "dwarf_planet", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.633, "V-R": 0.353, "R-I": 0.330}, "sun": True, "albedo": 0.66 # https://arxiv.org/abs/1904.00522 + }, "(136199) Eris|6": {"tags": ["featured", "solar_system", "dwarf_planet", "minor_body", "tno", "detached"], "nm": [417.357, 479.507, 532.699, 585.89, 601.008, 604.367, 622.844, 637.962, 653.08, 656.439, 659.239, 673.236, 679.955, 692.273, 702.912, 712.43, 734.267, 740.426, 747.704, 750.504, 765.062, 779.059, 788.578, 793.617, 809.295, 813.774, 826.652, 841.209, 860.246], "br": [0.995, 1.059, 1.084, 1.101, 1.08, 1.104, 1.111, 1.103, 1.121, 1.104, 1.11, 1.097, 1.117, 1.034, 1.121, 1.13, 1.11, 1.073, 1.11, 1.077, 1.132, 1.138, 1.087, 1.126, 1.018, 1.079, 0.881, 1.072, 1.13], - "albedo": 0.957 # fyr02's sheet - }, - "(136199) Eris|9": {"tags": ["solar_system", "minor_body", "dwarf_planet", "tno", "detached"], - "filters": "Landolt", "indices": {"B-V": 0.781, "V-R": 0.393, "R-I": 0.363}, "sun": True, "albedo": 0.957 # fyr02's sheet - }, - "(136204) 2003 WL7|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.720, "V-R": 0.480}, "sun": True - }, + "albedo": 0.957 # fyr02's sheet + }, + "(136199) Eris|9": {"tags": ["solar_system", "minor_body", "dwarf_planet", "tno", "detached"], + "filters": "Landolt", "indices": {"B-V": 0.781, "V-R": 0.393, "R-I": 0.363}, "sun": True, "albedo": 0.957 # fyr02's sheet + }, + "(136204) 2003 WL7|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.720, "V-R": 0.480}, "sun": True + }, "(136472) Makemake|6": {"tags": ["featured", "solar_system", "minor_body", "dwarf_planet", "tno", "classical", "classical-h"], "nm": [417.357, 466.069, 588.13, 601.568, 609.406, 631.243, 642.441, 649.72, 656.439, 664.278, 672.116, 679.955, 691.153, 706.271, 715.789, 723.628, 729.787, 740.426, 744.345, 751.064, 766.181, 782.419, 788.578, 794.737, 809.295, 813.774, 826.652, 841.209, 860.246], "br": [0.89, 0.971, 1.106, 1.059, 1.127, 1.133, 1.125, 1.157, 1.137, 1.155, 1.116, 1.139, 1.03, 1.179, 1.182, 1.143, 1.163, 1.088, 1.16, 1.084, 1.201, 1.201, 1.087, 1.159, 1.018, 1.079, 0.881, 1.072, 1.13], - "albedo": 0.83 # fyr02's sheet - }, - "(136472) Makemake|9": {"tags": ["solar_system", "minor_body", "dwarf_planet", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.840, "V-R": 0.480}, "sun": True, "albedo": 0.83 # fyr02's sheet - }, - "(137294) 1999 RE215|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 1.003, "V-R": 0.710, "R-I": 0.571}, "sun": True - }, - "(137295) 1999 RB216|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], - "filters": "Landolt", "indices": {"B-V": 0.897, "V-R": 0.522, "R-I": 0.506}, "sun": True - }, - "(138537) 2000 OK67|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 0.821, "V-R": 0.583, "R-I": 0.524}, "sun": True - }, - "(143707) 2003 UY117|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], - "filters": "Landolt", "indices": {"B-V": 0.950, "V-R": 0.590}, "sun": True - }, - "(144897) 2004 UX10|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 0.950, "V-R": 0.575}, "sun": True - }, - "(145451) 2005 RM43|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.590, "V-R": 0.390}, "sun": True - }, - "(145452) 2005 RN43|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.940, "V-R": 0.592, "R-I": 0.486}, "sun": True - }, - "(145453) 2005 RR43|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.790, "V-R": 0.389}, "sun": True - }, - "(145480) 2005 TB190|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], - "filters": "Landolt", "indices": {"B-V": 0.980, "V-R": 0.562, "R-I": 0.578}, "sun": True - }, - "(145486) 2005 UJ438|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.946, "V-R": 0.641, "R-I": 0.510}, "sun": True - }, - "(148209) 2000 CR105|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], - "filters": "Landolt", "indices": {"B-V": 0.771, "V-R": 0.509, "R-I": 0.590}, "sun": True - }, - "(148975) 2001 XA255|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.810, "V-R": 0.680, "R-I": 0.440}, "sun": True - }, - "(160427) 2005 RL43|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 1.120, "V-R": 0.730}, "sun": True - }, - "(163135) 2002 CT22|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.690, "V-R": 0.382, "R-I": 0.360}, "sun": True - }, - "(168703) 2000 GP183|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 0.669, "V-R": 0.445, "R-I": 0.463}, "sun": True - }, - "(174567) Varda|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.892, "V-R": 0.556, "R-I": 0.510}, "sun": True - }, - "(181708) 1993 FW|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 1.023, "V-R": 0.583, "R-I": 0.439}, "sun": True - }, - "(181855) 1998 WT31|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.774, "V-R": 0.453, "R-I": 0.326}, "sun": True - }, - "(181874) 1999 HW11|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], - "filters": "Landolt", "indices": {"B-V": 0.840, "V-R": 0.499, "R-I": 0.493}, "sun": True - }, - "(182397) 2001 QW297|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 1.020, "V-R": 0.580, "R-I": 0.670}, "sun": True - }, - "(182934) 2002 GJ32|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 1.330, "V-R": 0.590, "R-I": 0.420}, "sun": True - }, - "(192388) 1996 RD29|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.741, "V-R": 0.421, "R-I": 0.388}, "sun": True - }, - "(192929) 2000 AT44|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.707, "V-R": 0.354, "R-I": 0.318}, "sun": True - }, - "(208996) 2003 AZ84|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 0.738, "V-R": 0.430, "R-I": 0.473}, "sun": True - }, - "(248835) 2006 SX368|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.758, "V-R": 0.478, "R-I": 0.471}, "sun": True - }, - "(250112) 2002 KY14|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 1.060, "V-R": 0.709, "R-I": 0.650}, "sun": True - }, - "(275809) 2001 QY297|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 0.947, "V-R": 0.479, "R-I": 0.651}, "sun": True - }, - "(278361) 2007 JJ43|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 1.020, "V-R": 0.590, "R-I": 0.500}, "sun": True - }, - "(281371) 2008 FC76|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.987, "V-R": 0.685, "R-I": 0.652}, "sun": True - }, - "(303775) 2005 QU182|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.877, "V-R": 0.593}, "sun": True - }, - "(307261) 2002 MS4|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.690, "V-R": 0.380}, "sun": True - }, - "(307982) 2004 PG115|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], - "filters": "Landolt", "indices": {"B-V": 0.966, "V-R": 0.664, "R-I": 0.633}, "sun": True - }, - "(308933) 2006 SQ372|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 1.030, "V-R": 0.590, "R-I": 0.650}, "sun": True - }, - "(309139) 2006 XQ51|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.740, "V-R": 0.410}, "sun": True - }, - "(309737) 2008 SJ236|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 1.010, "V-R": 0.588, "R-I": 0.500}, "sun": True - }, - "(309741) 2008 UZ6|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.920, "V-R": 0.590}, "sun": True - }, - "(315898) 2008 QD4|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.740, "V-R": 0.460}, "sun": True - }, - "(316431) 2010 TH167|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], - "filters": "Landolt", "indices": {"B-V": 0.720, "V-R": 0.460}, "sun": True - }, - "(330759) 2008 SO218|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.890, "V-R": 0.550, "R-I": 0.500}, "sun": True - }, - "(336756) 2010 NV1|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.765, "V-R": 0.512, "R-I": 0.390}, "sun": True - }, - "(341275) 2007 RG283|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.790, "V-R": 0.470}, "sun": True - }, - "(341520) Mors-Somn|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 1.290, "V-R": 0.740, "R-I": 0.630}, "sun": True - }, - "(342842) 2008 YB3|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.774, "V-R": 0.472, "R-I": 0.490}, "sun": True - }, - "(346889) Rhiphonos|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.820, "V-R": 0.550}, "sun": True - }, - "(349933) 2009 YF7|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.720, "V-R": 0.460}, "sun": True - }, - "(382004) 2010 RM64|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 1.000, "V-R": 0.550}, "sun": True - }, - "(385185) 1993 RO|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 0.850, "V-R": 0.590, "R-I": 0.480}, "sun": True - }, - "(385191) 1997 RT5|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 1.075, "V-R": 0.474, "R-I": 0.539}, "sun": True - }, - "(385194) 1998 KG62|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 1.039, "V-R": 0.609, "R-I": 0.610}, "sun": True - }, - "(385199) 1999 OE4|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 1.103, "V-R": 0.567, "R-I": 0.414}, "sun": True - }, - "(385437) 2003 GH55|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 1.120, "V-R": 0.665, "R-I": 0.859}, "sun": True - }, - "(385571) Otrera|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.740, "V-R": 0.420, "R-I": 0.460}, "sun": True - }, - "(385607) 2005 EO297|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], - "filters": "Landolt", "indices": {"B-V": 0.840, "V-R": 0.480, "R-I": 0.570}, "sun": True - }, - "(385695) 2005 TO74|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.850, "V-R": 0.490, "R-I": 0.420}, "sun": True - }, - "(416400) 2003 UZ117|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.663, "V-R": 0.354, "R-I": 0.335}, "sun": True - }, - "(418993) 2009 MS9|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.840, "V-R": 0.520}, "sun": True - }, - "(427507) 2002 DH5|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.663, "V-R": 0.391, "R-I": 0.416}, "sun": True - }, - "(444030) 2004 NT33|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.641, "V-R": 0.403, "R-I": 0.403}, "sun": True - }, - "(445473) 2010 VZ98|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], - "filters": "Landolt", "indices": {"B-V": 1.100, "V-R": 0.670}, "sun": True - }, - "(447178) 2005 RO43|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.770, "V-R": 0.470}, "sun": True - }, - "(449097) 2012 UT68|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 1.020, "V-R": 0.660}, "sun": True - }, - "(455171) 1999 OM4|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 1.137, "V-R": 0.602, "R-I": 0.499}, "sun": True - }, - "(459865) 2013 XZ8|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.720, "V-R": 0.450}, "sun": True - }, - "(459971) 2014 ON6|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.970, "V-R": 0.580}, "sun": True - }, - "(463368) 2012 VU85|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 1.070, "V-R": 0.630}, "sun": True - }, - "(463663) 2014 HY123|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.670, "V-R": 0.490}, "sun": True - }, - "(469306) 1999 CD158|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], - "filters": "Landolt", "indices": {"B-V": 0.864, "V-R": 0.520, "R-I": 0.575}, "sun": True - }, - "(469333) 2000 PE30|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], - "filters": "Landolt", "indices": {"B-V": 0.752, "V-R": 0.373, "R-I": 0.410}, "sun": True - }, - "(469362) 2001 KB77|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 0.890, "V-R": 0.457, "R-I": 0.548}, "sun": True - }, - "(469372) 2001 QF298|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], - "filters": "Landolt", "indices": {"B-V": 0.695, "V-R": 0.388, "R-I": 0.360}, "sun": True - }, - "(469750) 2005 PU21|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 1.140, "V-R": 0.650, "R-I": 0.680}, "sun": True - }, - "(470316) 2007 OC10|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], - "filters": "Landolt", "indices": {"B-V": 0.876, "V-R": 0.553, "R-I": 0.471}, "sun": True - }, - "(470599) 2008 OG19|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], - "filters": "Landolt", "indices": {"B-V": 0.940, "V-R": 0.530, "R-I": 0.590}, "sun": True - }, - "(471339) 2011 ON45|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 1.110, "V-R": 0.705}, "sun": True - }, - "(474640) 2004 VN112|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], - "filters": "Landolt", "indices": {"B-V": 0.900, "V-R": 0.520, "R-I": 0.450}, "sun": True - }, - #"(486958) Arrokoth|17": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - # "filters": "Hubble", "indices": {"F606W-F814W": 1.03}, "sun": True - #}, - "(486958) Ultima|17": {"tags": ["featured", "solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "New Horizons", "bands": ["blue", "red", "nir"], "br": [0.053, 0.079, 0.117], "sun": True, "albedo": True - }, - "(486958) Thule|17": {"tags": ["featured", "solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "New Horizons", "bands": ["blue", "red", "nir"], "br": [0.058, 0.084, 0.122], "sun": True, "albedo": True - }, - "(486958) Akasa|17": {"tags": ["featured", "solar_system", "minor_body", "tno", "classical", "classical-h", "surface_feature"], - "filters": "New Horizons", "bands": ["blue", "red", "nir"], "br": [0.066, 0.090, 0.125], "sun": True, "albedo": True - }, - "(506479) 2003 HB57|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.830, "V-R": 0.480, "R-I": 0.540}, "sun": True - }, - "(508770) 1995 WY2|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 1.030, "V-R": 0.600, "R-I": 0.510}, "sun": True - }, - "(523588) 2000 CN105|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 1.100, "V-R": 0.636, "R-I": 0.640}, "sun": True - }, - "(523591) 2001 QD298|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.970, "V-R": 0.670}, "sun": True - }, - "(523597) 2002 QX47|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.700, "V-R": 0.380}, "sun": True - }, - "(523620) 2007 RH283|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.720, "V-R": 0.430}, "sun": True - }, - "(523622) 2007 TG422|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.880, "V-R": 0.510, "R-I": 0.510}, "sun": True - }, - "(523676) 2013 UL10|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.970, "V-R": 0.670}, "sun": True - }, - "(523785) 2015 CM3|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 1.210, "V-R": 0.570}, "sun": True - }, - "(523899) 1997 CV29|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 1.210, "V-R": 0.650}, "sun": True - }, - "(523965) 1998 XY95|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], - "filters": "Landolt", "indices": {"B-V": 0.930, "V-R": 0.720, "R-I": 0.752}, "sun": True - }, - "(523983) 1999 RY214|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], - "filters": "Landolt", "indices": {"B-V": 0.693, "V-R": 0.565, "R-I": 0.530}, "sun": True - }, - "(524049) 2000 CQ105|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], - "filters": "Landolt", "indices": {"B-V": 0.671, "V-R": 0.449, "R-I": 0.346}, "sun": True - }, - "(524217) 2001 RZ143|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 1.080, "V-R": 0.510, "R-I": 0.490}, "sun": True - }, - "(524834) 2003 YL179|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], - "filters": "Landolt", "indices": {"B-V": 0.810, "V-R": 0.450}, "sun": True - }, - "(525815) 2005 SD278|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], - "filters": "Landolt", "indices": {"B-V": 0.970, "V-R": 0.560, "R-I": 0.530}, "sun": True - }, - "(527328) 2007 TK422|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.710, "V-R": 0.510}, "sun": True - }, - "(527443) 2007 UM126|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.740, "V-R": 0.435, "R-I": 0.440}, "sun": True - }, - "(527603) 2007 VJ305|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], - "filters": "Landolt", "indices": {"B-V": 0.920, "V-R": 0.520, "R-I": 0.520}, "sun": True - }, - "527604|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.830, "V-R": 0.470, "R-I": 0.480}, "sun": True - }, - "(528219) 2008 KV42|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.820, "V-R": 0.470, "R-I": 0.420}, "sun": True - }, - "530664|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], - "filters": "Landolt", "indices": {"B-V": 0.690, "V-R": 0.390}, "sun": True - }, - "530930|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], - "filters": "Landolt", "indices": {"B-V": 0.720, "V-R": 0.400}, "sun": True - }, + "albedo": 0.83 # fyr02's sheet + }, + "(136472) Makemake|9": {"tags": ["solar_system", "minor_body", "dwarf_planet", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.840, "V-R": 0.480}, "sun": True, "albedo": 0.83 # fyr02's sheet + }, + "(137294) 1999 RE215|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 1.003, "V-R": 0.710, "R-I": 0.571}, "sun": True + }, + "(137295) 1999 RB216|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], + "filters": "Landolt", "indices": {"B-V": 0.897, "V-R": 0.522, "R-I": 0.506}, "sun": True + }, + "(138537) 2000 OK67|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 0.821, "V-R": 0.583, "R-I": 0.524}, "sun": True + }, + "(143707) 2003 UY117|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], + "filters": "Landolt", "indices": {"B-V": 0.950, "V-R": 0.590}, "sun": True + }, + "(144897) 2004 UX10|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 0.950, "V-R": 0.575}, "sun": True + }, + "(145451) 2005 RM43|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.590, "V-R": 0.390}, "sun": True + }, + "(145452) 2005 RN43|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.940, "V-R": 0.592, "R-I": 0.486}, "sun": True + }, + "(145453) 2005 RR43|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.790, "V-R": 0.389}, "sun": True + }, + "(145480) 2005 TB190|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], + "filters": "Landolt", "indices": {"B-V": 0.980, "V-R": 0.562, "R-I": 0.578}, "sun": True + }, + "(145486) 2005 UJ438|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.946, "V-R": 0.641, "R-I": 0.510}, "sun": True + }, + "(148209) 2000 CR105|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], + "filters": "Landolt", "indices": {"B-V": 0.771, "V-R": 0.509, "R-I": 0.590}, "sun": True + }, + "(148975) 2001 XA255|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.810, "V-R": 0.680, "R-I": 0.440}, "sun": True + }, + "(160427) 2005 RL43|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 1.120, "V-R": 0.730}, "sun": True + }, + "(163135) 2002 CT22|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.690, "V-R": 0.382, "R-I": 0.360}, "sun": True + }, + "(168703) 2000 GP183|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 0.669, "V-R": 0.445, "R-I": 0.463}, "sun": True + }, + "(174567) Varda|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.892, "V-R": 0.556, "R-I": 0.510}, "sun": True + }, + "(181708) 1993 FW|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 1.023, "V-R": 0.583, "R-I": 0.439}, "sun": True + }, + "(181855) 1998 WT31|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.774, "V-R": 0.453, "R-I": 0.326}, "sun": True + }, + "(181874) 1999 HW11|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], + "filters": "Landolt", "indices": {"B-V": 0.840, "V-R": 0.499, "R-I": 0.493}, "sun": True + }, + "(182397) 2001 QW297|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 1.020, "V-R": 0.580, "R-I": 0.670}, "sun": True + }, + "(182934) 2002 GJ32|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 1.330, "V-R": 0.590, "R-I": 0.420}, "sun": True + }, + "(192388) 1996 RD29|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.741, "V-R": 0.421, "R-I": 0.388}, "sun": True + }, + "(192929) 2000 AT44|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.707, "V-R": 0.354, "R-I": 0.318}, "sun": True + }, + "(208996) 2003 AZ84|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 0.738, "V-R": 0.430, "R-I": 0.473}, "sun": True + }, + "(248835) 2006 SX368|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.758, "V-R": 0.478, "R-I": 0.471}, "sun": True + }, + "(250112) 2002 KY14|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 1.060, "V-R": 0.709, "R-I": 0.650}, "sun": True + }, + "(275809) 2001 QY297|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 0.947, "V-R": 0.479, "R-I": 0.651}, "sun": True + }, + "(278361) 2007 JJ43|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 1.020, "V-R": 0.590, "R-I": 0.500}, "sun": True + }, + "(281371) 2008 FC76|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.987, "V-R": 0.685, "R-I": 0.652}, "sun": True + }, + "(303775) 2005 QU182|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.877, "V-R": 0.593}, "sun": True + }, + "(307261) 2002 MS4|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.690, "V-R": 0.380}, "sun": True + }, + "(307982) 2004 PG115|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], + "filters": "Landolt", "indices": {"B-V": 0.966, "V-R": 0.664, "R-I": 0.633}, "sun": True + }, + "(308933) 2006 SQ372|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 1.030, "V-R": 0.590, "R-I": 0.650}, "sun": True + }, + "(309139) 2006 XQ51|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.740, "V-R": 0.410}, "sun": True + }, + "(309737) 2008 SJ236|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 1.010, "V-R": 0.588, "R-I": 0.500}, "sun": True + }, + "(309741) 2008 UZ6|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.920, "V-R": 0.590}, "sun": True + }, + "(315898) 2008 QD4|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.740, "V-R": 0.460}, "sun": True + }, + "(316431) 2010 TH167|9": {"tags": ["solar_system", "minor_body", "asteroid", "trojan", "trojan-j"], + "filters": "Landolt", "indices": {"B-V": 0.720, "V-R": 0.460}, "sun": True + }, + "(330759) 2008 SO218|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.890, "V-R": 0.550, "R-I": 0.500}, "sun": True + }, + "(336756) 2010 NV1|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.765, "V-R": 0.512, "R-I": 0.390}, "sun": True + }, + "(341275) 2007 RG283|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.790, "V-R": 0.470}, "sun": True + }, + "(341520) Mors-Somn|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 1.290, "V-R": 0.740, "R-I": 0.630}, "sun": True + }, + "(342842) 2008 YB3|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.774, "V-R": 0.472, "R-I": 0.490}, "sun": True + }, + "(346889) Rhiphonos|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.820, "V-R": 0.550}, "sun": True + }, + "(349933) 2009 YF7|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.720, "V-R": 0.460}, "sun": True + }, + "(382004) 2010 RM64|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 1.000, "V-R": 0.550}, "sun": True + }, + "(385185) 1993 RO|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 0.850, "V-R": 0.590, "R-I": 0.480}, "sun": True + }, + "(385191) 1997 RT5|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 1.075, "V-R": 0.474, "R-I": 0.539}, "sun": True + }, + "(385194) 1998 KG62|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 1.039, "V-R": 0.609, "R-I": 0.610}, "sun": True + }, + "(385199) 1999 OE4|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 1.103, "V-R": 0.567, "R-I": 0.414}, "sun": True + }, + "(385437) 2003 GH55|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 1.120, "V-R": 0.665, "R-I": 0.859}, "sun": True + }, + "(385571) Otrera|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.740, "V-R": 0.420, "R-I": 0.460}, "sun": True + }, + "(385607) 2005 EO297|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], + "filters": "Landolt", "indices": {"B-V": 0.840, "V-R": 0.480, "R-I": 0.570}, "sun": True + }, + "(385695) 2005 TO74|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.850, "V-R": 0.490, "R-I": 0.420}, "sun": True + }, + "(416400) 2003 UZ117|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.663, "V-R": 0.354, "R-I": 0.335}, "sun": True + }, + "(418993) 2009 MS9|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.840, "V-R": 0.520}, "sun": True + }, + "(427507) 2002 DH5|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.663, "V-R": 0.391, "R-I": 0.416}, "sun": True + }, + "(444030) 2004 NT33|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.641, "V-R": 0.403, "R-I": 0.403}, "sun": True + }, + "(445473) 2010 VZ98|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], + "filters": "Landolt", "indices": {"B-V": 1.100, "V-R": 0.670}, "sun": True + }, + "(447178) 2005 RO43|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.770, "V-R": 0.470}, "sun": True + }, + "(449097) 2012 UT68|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 1.020, "V-R": 0.660}, "sun": True + }, + "(455171) 1999 OM4|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 1.137, "V-R": 0.602, "R-I": 0.499}, "sun": True + }, + "(459865) 2013 XZ8|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.720, "V-R": 0.450}, "sun": True + }, + "(459971) 2014 ON6|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.970, "V-R": 0.580}, "sun": True + }, + "(463368) 2012 VU85|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 1.070, "V-R": 0.630}, "sun": True + }, + "(463663) 2014 HY123|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.670, "V-R": 0.490}, "sun": True + }, + "(469306) 1999 CD158|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], + "filters": "Landolt", "indices": {"B-V": 0.864, "V-R": 0.520, "R-I": 0.575}, "sun": True + }, + "(469333) 2000 PE30|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], + "filters": "Landolt", "indices": {"B-V": 0.752, "V-R": 0.373, "R-I": 0.410}, "sun": True + }, + "(469362) 2001 KB77|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 0.890, "V-R": 0.457, "R-I": 0.548}, "sun": True + }, + "(469372) 2001 QF298|9": {"tags": ["solar_system", "minor_body", "tno", "plutino"], + "filters": "Landolt", "indices": {"B-V": 0.695, "V-R": 0.388, "R-I": 0.360}, "sun": True + }, + "(469750) 2005 PU21|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 1.140, "V-R": 0.650, "R-I": 0.680}, "sun": True + }, + "(470316) 2007 OC10|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], + "filters": "Landolt", "indices": {"B-V": 0.876, "V-R": 0.553, "R-I": 0.471}, "sun": True + }, + "(470599) 2008 OG19|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], + "filters": "Landolt", "indices": {"B-V": 0.940, "V-R": 0.530, "R-I": 0.590}, "sun": True + }, + "(471339) 2011 ON45|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 1.110, "V-R": 0.705}, "sun": True + }, + "(474640) 2004 VN112|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], + "filters": "Landolt", "indices": {"B-V": 0.900, "V-R": 0.520, "R-I": 0.450}, "sun": True + }, + #"(486958) Arrokoth|17": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + # "filters": "Hubble", "indices": {"F606W-F814W": 1.03}, "sun": True + #}, + "(486958) Ultima|17": {"tags": ["featured", "solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "New Horizons", "bands": ["blue", "red", "nir"], "br": [0.053, 0.079, 0.117], "sun": True, "albedo": True + }, + "(486958) Thule|17": {"tags": ["featured", "solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "New Horizons", "bands": ["blue", "red", "nir"], "br": [0.058, 0.084, 0.122], "sun": True, "albedo": True + }, + "(486958) Akasa|17": {"tags": ["featured", "solar_system", "minor_body", "tno", "classical", "classical-h", "surface_feature"], + "filters": "New Horizons", "bands": ["blue", "red", "nir"], "br": [0.066, 0.090, 0.125], "sun": True, "albedo": True + }, + "(506479) 2003 HB57|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.830, "V-R": 0.480, "R-I": 0.540}, "sun": True + }, + "(508770) 1995 WY2|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 1.030, "V-R": 0.600, "R-I": 0.510}, "sun": True + }, + "(523588) 2000 CN105|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 1.100, "V-R": 0.636, "R-I": 0.640}, "sun": True + }, + "(523591) 2001 QD298|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.970, "V-R": 0.670}, "sun": True + }, + "(523597) 2002 QX47|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.700, "V-R": 0.380}, "sun": True + }, + "(523620) 2007 RH283|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.720, "V-R": 0.430}, "sun": True + }, + "(523622) 2007 TG422|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.880, "V-R": 0.510, "R-I": 0.510}, "sun": True + }, + "(523676) 2013 UL10|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.970, "V-R": 0.670}, "sun": True + }, + "(523785) 2015 CM3|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 1.210, "V-R": 0.570}, "sun": True + }, + "(523899) 1997 CV29|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 1.210, "V-R": 0.650}, "sun": True + }, + "(523965) 1998 XY95|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], + "filters": "Landolt", "indices": {"B-V": 0.930, "V-R": 0.720, "R-I": 0.752}, "sun": True + }, + "(523983) 1999 RY214|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-h"], + "filters": "Landolt", "indices": {"B-V": 0.693, "V-R": 0.565, "R-I": 0.530}, "sun": True + }, + "(524049) 2000 CQ105|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], + "filters": "Landolt", "indices": {"B-V": 0.671, "V-R": 0.449, "R-I": 0.346}, "sun": True + }, + "(524217) 2001 RZ143|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 1.080, "V-R": 0.510, "R-I": 0.490}, "sun": True + }, + "(524834) 2003 YL179|9": {"tags": ["solar_system", "minor_body", "tno", "classical", "classical-c"], + "filters": "Landolt", "indices": {"B-V": 0.810, "V-R": 0.450}, "sun": True + }, + "(525815) 2005 SD278|9": {"tags": ["solar_system", "minor_body", "tno", "resonant"], + "filters": "Landolt", "indices": {"B-V": 0.970, "V-R": 0.560, "R-I": 0.530}, "sun": True + }, + "(527328) 2007 TK422|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.710, "V-R": 0.510}, "sun": True + }, + "(527443) 2007 UM126|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.740, "V-R": 0.435, "R-I": 0.440}, "sun": True + }, + "(527603) 2007 VJ305|9": {"tags": ["solar_system", "minor_body", "tno", "detached"], + "filters": "Landolt", "indices": {"B-V": 0.920, "V-R": 0.520, "R-I": 0.520}, "sun": True + }, + "527604|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.830, "V-R": 0.470, "R-I": 0.480}, "sun": True + }, + "(528219) 2008 KV42|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.820, "V-R": 0.470, "R-I": 0.420}, "sun": True + }, + "530664|9": {"tags": ["solar_system", "minor_body", "tno", "scattered"], + "filters": "Landolt", "indices": {"B-V": 0.690, "V-R": 0.390}, "sun": True + }, + "530930|9": {"tags": ["solar_system", "minor_body", "asteroid", "centaur"], + "filters": "Landolt", "indices": {"B-V": 0.720, "V-R": 0.400}, "sun": True + }, #"1998 KY26|9": {"tags": ["solar_system", "minor_body", "asteroid"], - # "filters": "Landolt", "indices": {"B-R": 0.083, "V-R": 0.058, "R-I": 0.088}, "sun": False - #}, - "1I/'Oumuamua|18": {"tags": ["featured", "solar_system", "extrasolar", "asteroid"], - "filters": "Landolt", "indices": {"B-V": 0.70, "V-R": 0.45}, "sun": True, "albedo": 0.1 - }, - "1I/'Oumuamua|19": {"tags": ["solar_system", "extrasolar", "asteroid"], - "filters": "Sloan Vacuum", "indices": {"g-r": 0.47, "r-i": 0.36}, "sun": True, "albedo": 0.07 - }, + # "filters": "Landolt", "indices": {"B-R": 0.083, "V-R": 0.058, "R-I": 0.088}, "sun": False + #}, + "1I/'Oumuamua|18": {"tags": ["featured", "solar_system", "extrasolar", "asteroid"], + "filters": "Landolt", "indices": {"B-V": 0.70, "V-R": 0.45}, "sun": True, "albedo": 0.1 + }, + "1I/'Oumuamua|19": {"tags": ["solar_system", "extrasolar", "asteroid"], + "filters": "Sloan Vacuum", "indices": {"g-r": 0.47, "r-i": 0.36}, "sun": True, "albedo": 0.07 + }, "Class A|7": {"tags": ["featured", "solar_system", "class", "asteroid"], - "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.708, 0.868, 1.109, 1.214, 1.298, 1.311, 1.250, 1.187, 1.143], + "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.708, 0.868, 1.109, 1.214, 1.298, 1.311, 1.250, 1.187, 1.143], "albedo": 0.274 # https://arxiv.org/abs/1307.2424 - }, + }, "Class B|7": {"tags": ["featured", "solar_system", "class", "asteroid"], - "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [1.008, 1.004, 0.989, 0.985, 0.978, 0.975, 0.969, 0.961, 0.938], + "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [1.008, 1.004, 0.989, 0.985, 0.978, 0.975, 0.969, 0.961, 0.938], "albedo": 0.071 # https://arxiv.org/abs/1307.2424 - }, + }, "Class C|7": {"tags": ["featured", "solar_system", "class", "asteroid"], - "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.936, 0.979, 1.007, 1.013, 1.014, 1.016, 1.014, 1.008, 0.993], + "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.936, 0.979, 1.007, 1.013, 1.014, 1.016, 1.014, 1.008, 0.993], "albedo": 0.083 # https://arxiv.org/abs/1307.2424 - }, + }, "Class Cb|7": {"tags": ["solar_system", "class", "asteroid"], - "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.981, 0.995, 0.999, 1.002, 1.002, 1.005, 1.003, 0.994, 0.979], + "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.981, 0.995, 0.999, 1.002, 1.002, 1.005, 1.003, 0.994, 0.979], "albedo": 0.083 # https://arxiv.org/abs/1307.2424 - }, + }, "Class Cg|7": {"tags": ["solar_system", "class", "asteroid"], - "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.852, 0.945, 1.018, 1.028, 1.027, 1.025, 1.026, 1.022, 1.007], + "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.852, 0.945, 1.018, 1.028, 1.027, 1.025, 1.026, 1.022, 1.007], "albedo": 0.083 # https://arxiv.org/abs/1307.2424 - }, + }, "Class Cgh|7": {"tags": ["solar_system", "class", "asteroid"], - "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.870, 0.962, 0.997, 0.985, 0.972, 0.973, 0.987, 0.991, 0.980], + "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.870, 0.962, 0.997, 0.985, 0.972, 0.973, 0.987, 0.991, 0.980], "albedo": 0.083 # https://arxiv.org/abs/1307.2424 - }, + }, "Class Ch|7": {"tags": [ "solar_system", "class", "asteroid"], - "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.941, 0.986, 0.991, 0.983, 0.977, 0.982, 0.991, 0.996, 0.993], + "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.941, 0.986, 0.991, 0.983, 0.977, 0.982, 0.991, 0.996, 0.993], "albedo": 0.083 # https://arxiv.org/abs/1307.2424 - }, + }, "Class D|7": {"tags": ["featured", "solar_system", "class", "asteroid"], - "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.882, 0.951, 1.046, 1.098, 1.150, 1.199, 1.222, 1.247, 1.287], + "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.882, 0.951, 1.046, 1.098, 1.150, 1.199, 1.222, 1.247, 1.287], "albedo": 0.098 # https://arxiv.org/abs/1307.2424 - }, + }, "Class K|7": {"tags": ["featured", "solar_system", "class", "asteroid"], - "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.863, 0.943, 1.043, 1.087, 1.121, 1.138, 1.125, 1.110, 1.085], + "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.863, 0.943, 1.043, 1.087, 1.121, 1.138, 1.125, 1.110, 1.085], "albedo": 0.178 # https://arxiv.org/abs/1307.2424 - }, + }, "Class L|7": {"tags": ["featured", "solar_system", "class", "asteroid"], - "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.818, 0.922, 1.066, 1.130, 1.179, 1.207, 1.201, 1.193, 1.188], + "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.818, 0.922, 1.066, 1.130, 1.179, 1.207, 1.201, 1.193, 1.188], "albedo": 0.183 # https://arxiv.org/abs/1307.2424 - }, + }, "Class Ld|7": {"tags": ["solar_system", "class", "asteroid"], - "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.799, 0.913, 1.080, 1.163, 1.228, 1.270, 1.280, 1.282, 1.288], + "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.799, 0.913, 1.080, 1.163, 1.228, 1.270, 1.280, 1.282, 1.288], "albedo": 0.183 # https://arxiv.org/abs/1307.2424 - }, + }, "Class O|7": {"tags": ["solar_system", "class", "asteroid"], - "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.878, 0.952, 1.022, 1.042, 1.057, 1.036, 0.958, 0.870, 0.798] - }, + "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.878, 0.952, 1.022, 1.042, 1.057, 1.036, 0.958, 0.870, 0.798] + }, "Class Q|7": {"tags": ["solar_system", "class", "asteroid"], - "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.830, 0.930, 1.047, 1.087, 1.118, 1.107, 1.041, 0.952, 0.873] - }, + "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.830, 0.930, 1.047, 1.087, 1.118, 1.107, 1.041, 0.952, 0.873] + }, "Class R|7": {"tags": ["solar_system", "class", "asteroid"], - "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.792, 0.907, 1.073, 1.145, 1.209, 1.224, 1.110, 0.971, 0.889] - }, + "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.792, 0.907, 1.073, 1.145, 1.209, 1.224, 1.110, 0.971, 0.889] + }, "Class S|7": {"tags": ["featured", "solar_system", "class", "asteroid"], - "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.813, 0.920, 1.060, 1.121, 1.170, 1.188, 1.145, 1.084, 1.034], + "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.813, 0.920, 1.060, 1.121, 1.170, 1.188, 1.145, 1.084, 1.034], "albedo": 0.258 # https://arxiv.org/abs/1307.2424 - }, + }, "Class Sa|7": {"tags": ["solar_system", "class", "asteroid"], - "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.748, 0.892, 1.094, 1.178, 1.243, 1.260, 1.216, 1.150, 1.091], + "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.748, 0.892, 1.094, 1.178, 1.243, 1.260, 1.216, 1.150, 1.091], "albedo": 0.258 # https://arxiv.org/abs/1307.2424 - }, + }, "Class Sk|7": {"tags": ["solar_system", "class", "asteroid"], - "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.859, 0.939, 1.039, 1.082, 1.115, 1.130, 1.092, 1.039, 1.001], + "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.859, 0.939, 1.039, 1.082, 1.115, 1.130, 1.092, 1.039, 1.001], "albedo": 0.258 # https://arxiv.org/abs/1307.2424 - }, + }, "Class Sl|7": {"tags": ["solar_system", "class", "asteroid"], - "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.790, 0.909, 1.076, 1.149, 1.209, 1.237, 1.205, 1.158, 1.131], + "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.790, 0.909, 1.076, 1.149, 1.209, 1.237, 1.205, 1.158, 1.131], "albedo": 0.258 # https://arxiv.org/abs/1307.2424 - }, + }, "Class Sq|7": {"tags": ["solar_system", "class", "asteroid"], - "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.851, 0.938, 1.039, 1.082, 1.115, 1.120, 1.069, 1.000, 0.936], + "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.851, 0.938, 1.039, 1.082, 1.115, 1.120, 1.069, 1.000, 0.936], "albedo": 0.258 # https://arxiv.org/abs/1307.2424 - }, + }, "Class Sr|7": {"tags": ["solar_system", "class", "asteroid"], - "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.777, 0.904, 1.069, 1.137, 1.188, 1.193, 1.123, 1.030, 0.936], + "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.777, 0.904, 1.069, 1.137, 1.188, 1.193, 1.123, 1.030, 0.936], "albedo": 0.258 # https://arxiv.org/abs/1307.2424 - }, + }, "Class T|7": {"tags": ["solar_system", "class", "asteroid"], - "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.896, 0.956, 1.041, 1.083, 1.119, 1.149, 1.163, 1.174, 1.184] - }, + "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.896, 0.956, 1.041, 1.083, 1.119, 1.149, 1.163, 1.174, 1.184] + }, "Class V|7": {"tags": ["featured", "solar_system", "class", "asteroid"], - "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.808, 0.916, 1.063, 1.124, 1.176, 1.183, 1.048, 0.879, 0.745], + "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.808, 0.916, 1.063, 1.124, 1.176, 1.183, 1.048, 0.879, 0.745], "albedo": 0.352 # https://arxiv.org/abs/1307.2424 - }, + }, "Class X|7": {"tags": ["solar_system", "class", "asteroid"], - "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.940, 0.977, 1.013, 1.030, 1.045, 1.057, 1.062, 1.060, 1.058] - }, + "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.940, 0.977, 1.013, 1.030, 1.045, 1.057, 1.062, 1.060, 1.058] + }, "Class Xc|7": {"tags": ["solar_system", "class", "asteroid"], - "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.920, 0.969, 1.019, 1.038, 1.049, 1.054, 1.047, 1.037, 1.020] - }, + "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.920, 0.969, 1.019, 1.038, 1.049, 1.054, 1.047, 1.037, 1.020] + }, "Class Xe|7": {"tags": ["solar_system", "class", "asteroid"], - "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.921, 0.948, 1.032, 1.060, 1.082, 1.094, 1.093, 1.088, 1.078] - }, + "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.921, 0.948, 1.032, 1.060, 1.082, 1.094, 1.093, 1.088, 1.078] + }, "Class Xk|7": {"tags": ["solar_system", "class", "asteroid"], - "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.900, 0.959, 1.033, 1.061, 1.084, 1.097, 1.098, 1.098, 1.098] - }, + "nm": [440, 500, 600, 650, 700, 750, 800, 850, 920], "br": [0.900, 0.959, 1.033, 1.061, 1.084, 1.097, 1.098, 1.098, 1.098] + }, #"Comets|8": {"filters": "Landolt", "indices": {"B-V": 0.795, "V-R": 0.441, "V-I": 0.935}, "sun": True}, "Comets:SP|9": {"tags": ["featured", "solar_system", "class", "orbit"], - "filters": "Landolt", "indices": {"B-V": 0.87, "V-R": 0.50, "R-I": 0.45}, "sun": True, "albedo": 0.04 - }, + "filters": "Landolt", "indices": {"B-V": 0.87, "V-R": 0.50, "R-I": 0.45}, "sun": True, "albedo": 0.04 + }, "Comets:LP|9": {"tags": ["featured", "solar_system", "class", "orbit"], - "filters": "Landolt", "indices": {"B-V": 0.79, "V-R": 0.46, "R-I": 0.44}, "sun": True, "albedo": 0.04 - }, + "filters": "Landolt", "indices": {"B-V": 0.79, "V-R": 0.46, "R-I": 0.44}, "sun": True, "albedo": 0.04 + }, #"J. trojans|8": {"filters": "Landolt", "indices": {"B-V": 0.777, "V-R": 0.445, "V-I": 0.861}, "sun": True}, "J. trojans|9": {"tags": ["featured", "solar_system", "class", "orbit"], - "filters": "Landolt", "indices": {"U-B": 0.1, "B-V": 0.78, "V-R": 0.45, "R-I": 0.42}, "sun": True, "albedo": 0.05 - }, + "filters": "Landolt", "indices": {"U-B": 0.1, "B-V": 0.78, "V-R": 0.45, "R-I": 0.42}, "sun": True, "albedo": 0.05 + }, #"Centaurs|8": {"filters": "Landolt", "indices": {"B-V": 0.886, "V-R": 0.573, "V-I": 1.104}, "sun": True}, "Centaurs|9": {"tags": ["featured", "solar_system", "class", "orbit"], - "filters": "Landolt", "indices": {"B-V": 0.87, "V-R": 0.55, "R-I": 0.50}, "sun": True, "albedo": 0.078 - }, + "filters": "Landolt", "indices": {"B-V": 0.87, "V-R": 0.55, "R-I": 0.50}, "sun": True, "albedo": 0.078 + }, #"Plutinos|8": {"filters": "Landolt", "indices": {"B-V": 0.895, "V-R": 0.568, "V-I": 1.095}, "sun": True}, "Plutinos|9": {"tags": ["featured", "solar_system", "class", "orbit"], - "filters": "Landolt", "indices": {"B-V": 0.88, "V-R": 0.55, "R-I": 0.53}, "sun": True, "albedo": 0.114 # fyr02's sheet - }, + "filters": "Landolt", "indices": {"B-V": 0.88, "V-R": 0.55, "R-I": 0.53}, "sun": True, "albedo": 0.114 # fyr02's sheet + }, "Other res.|9": {"tags": ["featured", "solar_system", "class", "orbit"], - "filters": "Landolt", "indices": {"U-B": 0.27, "B-V": 0.95, "V-R": 0.59, "R-I": 0.54}, "sun": True, "albedo": 0.148 # fyr02's sheet - }, + "filters": "Landolt", "indices": {"U-B": 0.27, "B-V": 0.95, "V-R": 0.59, "R-I": 0.54}, "sun": True, "albedo": 0.148 # fyr02's sheet + }, #"Cubewano|8": {"filters": "Landolt", "indices": {"B-V": 0.973, "V-R": 0.622, "V-I": 1.181}, "sun": True}, "Cubewano:H|9": {"tags": ["featured", "solar_system", "class", "orbit"], - "filters": "Landolt", "indices": {"U-B": 0.27, "B-V": 0.88, "V-R": 0.54, "R-I": 0.53}, "sun": True, "albedo": 0.102 # fyr02's sheet - }, + "filters": "Landolt", "indices": {"U-B": 0.27, "B-V": 0.88, "V-R": 0.54, "R-I": 0.53}, "sun": True, "albedo": 0.102 # fyr02's sheet + }, "Cubewano:C|9": {"tags": ["featured", "solar_system", "class", "orbit"], - "filters": "Landolt", "indices": {"U-B": 0.59, "B-V": 1.00, "V-R": 0.63, "R-I": 0.59}, "sun": True, "albedo": 0.132 # fyr02's sheet - }, + "filters": "Landolt", "indices": {"U-B": 0.59, "B-V": 1.00, "V-R": 0.63, "R-I": 0.59}, "sun": True, "albedo": 0.132 # fyr02's sheet + }, #"SDO|8": {"filters": "Landolt", "indices": {"B-V": 0.875, "V-R": 0.553, "V-I": 1.070}, "sun": True}, "SDO|9": {"tags": ["featured", "solar_system", "class", "orbit"], - "filters": "Landolt", "indices": {"U-B": 0.33, "B-V": 0.85, "V-R": 0.52, "R-I": 0.51}, "sun": True, "albedo": 0.075 # fyr02's sheet - }, + "filters": "Landolt", "indices": {"U-B": 0.33, "B-V": 0.85, "V-R": 0.52, "R-I": 0.51}, "sun": True, "albedo": 0.075 # fyr02's sheet + }, "Detached|9": {"tags": ["featured", "solar_system", "class", "orbit"], - "filters": "Landolt", "indices": {"U-B": 0.18, "B-V": 0.88, "V-R": 0.54, "R-I": 0.51}, "sun": True, "albedo": 0.108 # fyr02's sheet - }, - "Class I|25": {"tags": ["featured", "extrasolar", "planet", "class"], - "nm": [300, 350, 400, 450, 500, 550, 600, 650, 700, 800, 900, 1000], - "br": [0.88, 0.85, 0.78, 0.69, 0.67, 0.69, 0.67, 0.64, 0.58, 0.6, 0.45, 0.5], - "albedo": True - }, - "Class II|25": {"tags": ["featured", "extrasolar", "planet", "class"], - "nm": [300, 350, 400, 450, 500, 550, 600, 650, 700, 800, 900, 1000], - "br": [0.99, 0.99, 0.99, 0.99, 0.98, 0.97, 0.94, 0.95, 0.9, 0.85, 0.75, 0.75], - "albedo": True - }, - "Class III|25": {"tags": ["featured", "extrasolar", "planet", "class"], - "nm": [300, 350, 400, 450, 500, 550, 600, 650, 700, 800, 900, 1000], - "br": [0.67, 0.52, 0.42, 0.3, 0.2, 0.13, 0.07, 0.06, 0.04, 0.02, 0, 0], - "albedo": True - }, - "Class IV|25": {"tags": ["featured", "extrasolar", "planet", "class"], - "nm": [300, 350, 400, 450, 500, 550, 600, 650, 700, 800, 900, 1000], - "br": [0.2, 0.15, 0.1, 0.06, 0.03, 0.01, 0, 0.01, 0, 0, 0, 0], - "albedo": True - }, - "Class V|25": {"tags": ["featured", "extrasolar", "planet", "class"], - "nm": [300, 350, 400, 450, 500, 550, 585, 620, 650, 700, 800, 900, 1000], - "br": [0.4, 0.57, 0.65, 0.66, 0.66, 0.55, 0, 0.5, 0.62, 0.65, 0.5, 0.65, 0.64], - "albedo": True - }, - "HD 189733 b|10, 15": {"tags": ["featured", "extrasolar", "planet"], - "filters": "Landolt", "bands": ["U", "B", "V", "I"], "br": [0.62, 0.61, 0.28, 0], "albedo": True - }, - "HD 189733 b|13, 14": {"tags": ["extrasolar", "planet"], - "nm": [290, 368, 370, 416, 459, 510, 547, 875], "br": [0.45, 0.39, 0.374, 0.32, 0.17, 0.043, 0.02, 0.025], "albedo": True - }, - "Ups And b|15": {"tags": ["featured", "extrasolar", "planet"], - "filters": "Landolt", "bands": ["U", "B", "V"], "br": [0.53, 0.67, 0.29], "albedo": True - }, - "WASP-18 b": {"tags": ["extrasolar", "planet"], - "nm": [440, 788, 900], "br": [0.075, 0.048, 0.05], "albedo": True - }, - "WASP-12 b": {"tags": ["extrasolar", "planet"], - "nm": [271, 430, 900], "br": [0.039, 0.032, 0.17], "albedo": True - }, - "WASP-43 b": {"tags": ["extrasolar", "planet"], - "nm": [398, 538, 788, 1400, 4050], "br": [0.28, 0.05, 0.12, 0.24, 0.09], "albedo": True - } + "filters": "Landolt", "indices": {"U-B": 0.18, "B-V": 0.88, "V-R": 0.54, "R-I": 0.51}, "sun": True, "albedo": 0.108 # fyr02's sheet + }, + "Class I|25": {"tags": ["featured", "extrasolar", "planet", "class"], + "nm": [300, 350, 400, 450, 500, 550, 600, 650, 700, 800, 900, 1000], + "br": [0.88, 0.85, 0.78, 0.69, 0.67, 0.69, 0.67, 0.64, 0.58, 0.6, 0.45, 0.5], + "albedo": True + }, + "Class II|25": {"tags": ["featured", "extrasolar", "planet", "class"], + "nm": [300, 350, 400, 450, 500, 550, 600, 650, 700, 800, 900, 1000], + "br": [0.99, 0.99, 0.99, 0.99, 0.98, 0.97, 0.94, 0.95, 0.9, 0.85, 0.75, 0.75], + "albedo": True + }, + "Class III|25": {"tags": ["featured", "extrasolar", "planet", "class"], + "nm": [300, 350, 400, 450, 500, 550, 600, 650, 700, 800, 900, 1000], + "br": [0.67, 0.52, 0.42, 0.3, 0.2, 0.13, 0.07, 0.06, 0.04, 0.02, 0, 0], + "albedo": True + }, + "Class IV|25": {"tags": ["featured", "extrasolar", "planet", "class"], + "nm": [300, 350, 400, 450, 500, 550, 600, 650, 700, 800, 900, 1000], + "br": [0.2, 0.15, 0.1, 0.06, 0.03, 0.01, 0, 0.01, 0, 0, 0, 0], + "albedo": True + }, + "Class V|25": {"tags": ["featured", "extrasolar", "planet", "class"], + "nm": [300, 350, 400, 450, 500, 550, 585, 620, 650, 700, 800, 900, 1000], + "br": [0.4, 0.57, 0.65, 0.66, 0.66, 0.55, 0, 0.5, 0.62, 0.65, 0.5, 0.65, 0.64], + "albedo": True + }, + "HD 189733 b|10, 15": {"tags": ["extrasolar", "planet"], + "filters": "Landolt", "bands": ["U", "B", "V", "I"], "br": [0.62, 0.61, 0.28, 0], "albedo": True + }, + "HD 189733 b|13, 14": {"tags": ["extrasolar", "planet"], + "nm": [290, 368, 370, 416, 459, 510, 547, 875], "br": [0.45, 0.39, 0.374, 0.32, 0.17, 0.043, 0.02, 0.025], "albedo": True + }, + "Ups And b|15": {"tags": ["extrasolar", "planet"], + "filters": "Landolt", "bands": ["U", "B", "V"], "br": [0.53, 0.67, 0.29], "albedo": True + }, + "WASP-18 b": {"tags": ["extrasolar", "planet"], + "nm": [440, 788, 900], "br": [0.075, 0.048, 0.05], "albedo": True + }, + "WASP-12 b": {"tags": ["extrasolar", "planet"], + "nm": [271, 430, 900], "br": [0.039, 0.032, 0.17], "albedo": True + }, + "WASP-43 b": {"tags": ["extrasolar", "planet"], + "nm": [398, 538, 788, 1400, 4050], "br": [0.28, 0.05, 0.12, 0.24, 0.09], "albedo": True + }, + "TAU Boo b|35": { + "tags": ["featured", "extrasolar", "planet"], + "nm": [415, 430, 460, 780], + "br": [0.117, 0.234, 0.029, 0.022], + "albedo": True + }, + "UPS And b|35": { + "tags": ["featured", "extrasolar", "planet"], + "nm": [367, 440, 460, 542], + "br": [0.467, 0.584, 0.329, 0.251], + "albedo": True + }, + "51 Pegasi b|35": { + "tags": ["featured", "extrasolar", "planet"], + "nm": [490, 560], + "br": [0.113, 0.043], + "albedo": True + }, + "55 Cancri e|35": { + "tags": ["featured", "extrasolar", "planet"], + "nm": [521, 581, 746], + "br": [0.211, 0.588, 0.244], + "albedo": True + }, + "CoRoT-1 b|35": { + "tags": ["featured", "extrasolar", "planet"], + "nm": [439, 546, 600, 710, 907], + "br": [0.340, 0.376, 0.167, 0.064, 0.330], + "albedo": True + }, + "CoRoT-2 b|35": { + "tags": ["featured", "extrasolar", "planet"], + "nm": [439, 546, 600, 710], + "br": [0.040, 0.023, 0.076, 0.139], + "albedo": True + }, + "CoRoT-3 b|35": { + "tags": ["featured", "extrasolar", "planet"], + "nm": [600, 710], + "br": [0.672, 0.050], + "albedo": True + }, + "HAT-P-7 b|35": { + "tags": ["featured", "extrasolar", "planet"], + "nm": [558, 598, 746], + "br": [0.157, 0.137, 0.163], + "albedo": True + }, + "HD 189733 b|35": { + "tags": ["featured", "extrasolar", "planet"], + "nm": [325, 368, 416, 446, 459, 502, 547, 1000], + "br": [0.477, 0.467, 0.290, 0.116, 0.147, 0.093, 0.055, 0.055], + "albedo": True + }, + "HD 209458 b|35": { + "tags": ["featured", "extrasolar", "planet"], + "nm": [521, 581], + "br": [0.036, 0.105], + "albedo": True + }, + "Kepler-13 b|35": { + "tags": ["featured", "extrasolar", "planet"], + "nm": [598, 746], + "br": [0.466, 0.727], + "albedo": True + }, + "TrES-2 b|35": { + "tags": ["featured", "extrasolar", "planet"], + "nm": [558, 598], + "br": [0.932, 0.031], + "albedo": True + }, + "TrES-3 b|35": { + "tags": ["featured", "extrasolar", "planet"], + "nm": [350, 558, 746, 766, 980], + "br": [0.210, 0.109, 0.130, 0.115, 0.213], + "albedo": True + }, + "KELT-1 b|35": { + "tags": ["featured", "extrasolar", "planet"], + "nm": [746, 910], + "br": [0.468, 0.385], + "albedo": True + }, + "KELT-9 b|35": { + "tags": ["featured", "extrasolar", "planet"], + "nm": [363, 746, 910], + "br": [0.040, 0.150, 0.361], + "albedo": True + }, + "WASP-3 b|35": { + "tags": ["featured", "extrasolar", "planet"], + "nm": [558, 746], + "br": [0.439, 0.153], + "albedo": True + }, + "WASP-12 b|35": { + "tags": ["featured", "extrasolar", "planet"], + "nm": [360, 460, 547, 746, 847, 910, 1022, 1050], + "br": [0.062, 0.027, 0.015, 0.159, 0.055, 0.615, 0.270, 0.085], + "albedo": True + }, + "WASP-18 b|35": { + "tags": ["featured", "extrasolar", "planet"], + "nm": [474, 746, 904, 1400], + "br": [0.032, 0.196, 0.354, 0.005], + "albedo": True + }, + "WASP-19 b|35": { + "tags": ["featured", "extrasolar", "planet"], + "nm": [476, 685, 746, 806, 916], + "br": [0.083, 0.150, 0.157, 0.108, 0.035], + "albedo": True + }, + "WASP-33 b|35": { + "tags": ["featured", "extrasolar", "planet"], + "nm": [356, 515, 546, 746, 908, 910, 1037], + "br": [0.010, 0.100, 0.133, 0.079, 0.912, 0.134, 0.584], + "albedo": True + }, + "WASP-43 b|35": { + "tags": ["featured", "extrasolar", "planet"], + "nm": [398, 556, 580, 680, 746, 760, 785, 893, 916, 1400], + "br": [0.277, 0.009, 0.002, 0.108, 0.108, 0.335, 0.317, 0.133, 0.167, 0.32], + "albedo": True + }, + "WASP-46 b|35": { + "tags": ["featured", "extrasolar", "planet"], + "nm": [450, 610, 746, 760, 893], + "br": [0.740, 0.533, 0.119, 0.464, 0.028], + "albedo": True + }, + "WASP-121 b|35": { + "tags": ["featured", "extrasolar", "planet"], + "nm": [746, 830, 916, 937, 1035], + "br": [0.186, 0.004, 0.078, 0.078, 0.013], + "albedo": True + } } \ No newline at end of file diff --git a/Scripts/strings.py b/Scripts/strings.py index ea4b547..a1eeb36 100644 --- a/Scripts/strings.py +++ b/Scripts/strings.py @@ -297,9 +297,9 @@ "de": "Autom. Belichtung" } gui_autoalign = { - "en": "Auto alignment", - "ru": "Выровнять каналы", - "de": "Autom. ausrichten" + "en": "Auto alignment [beta]", + "ru": "Выровнять каналы [beta]", + "de": "Autom. ausrichten [beta]" } gui_single = { "en": "Single image mode", @@ -372,16 +372,4 @@ "en": "Reflectivity", "ru": "Отражательная способность", "de": "Reflektivität" -} - -error1 = { - "en": ["Error 1: data length mismatch or wavelengths not in increasing order.", "Object name: {}\nWavelength values: {}\nBrightness values: {}"], - "ru": ["Ошибка 1: несовпадение списков данных или длины волн не в порядке возрастания.", "Название объекта: {}\nЗначений длин волн: {}\nЗначений яркости: {}"], - "de": ["Fehler 1: Datenlänge stimmt nicht überein, oder Wellenlängen sind nicht in aufsteigender Reihenfolge", "Objektname: {}\nWellenlängenwerte: {}\nHelligkeitswerte: {}"] -} - -error2 = { - "en": ["Error 2: value of one of the color bands is negative.", "Object name: {}\nR: {}\nG: {}\nB: {}"], - "ru": ["Ошибка 2: яркость одного из цветов получилась отрицательной.", "Название объекта: {}\nR: {}\nG: {}\nB: {}"], - "de": ["Error 2: Werte eines Farbbands sind negativ.", "Objektname: {}\nR: {}\nG: {}\nB: {}"] } \ No newline at end of file