Skip to content

Commit

Permalink
tiny
Browse files Browse the repository at this point in the history
  • Loading branch information
scolear committed May 3, 2018
1 parent aa30b98 commit a8de63c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/bokehorbits.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]"
Expand Down
4 changes: 2 additions & 2 deletions src/jupyter_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand Down

0 comments on commit a8de63c

Please sign in to comment.