diff --git a/src/bokehorbits.py b/src/bokehorbits.py index 8e00b92..435e293 100644 --- a/src/bokehorbits.py +++ b/src/bokehorbits.py @@ -90,7 +90,7 @@ def page_setup(pages, df_JPL_CG, df_JPL_JUP, hover): for page in pages: page.line(x = 'x', y = 'y', source = sourceCG, line_color = 'black', line_dash = 'solid', legend = 'JPL_CG') - page.line(x = 'x', y = 'y', source = sourceJUP, line_color = 'gray', line_dash = [10, 140], line_width = 1, legend = 'JPL_JUP') + page.line(x = 'x', y = 'y', source = sourceJUP, line_color = 'gray', line_dash = [10, 120], line_width = 1, legend = 'JPL_JUP') page.add_tools(hover) page.yaxis.axis_label = "Y [AU]" page.xaxis.axis_label = "X [AU]" diff --git a/src/jupyter_init.py b/src/jupyter_init.py index 5211285..082f518 100644 --- a/src/jupyter_init.py +++ b/src/jupyter_init.py @@ -39,7 +39,7 @@ def innpl_choice(x): )) w_ts_range = interactive(timestep_range, x = widgets.IntRangeSlider( - value=[5, 7], + value=[4, 6], min=1, max=20, step=1, @@ -53,7 +53,7 @@ def innpl_choice(x): )) w_err_range = interactive(error_range, x = widgets.IntRangeSlider( - value=[7, 8], + value=[5, 7], min=4, max=10, step=1,