-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvisualization_tool.py
32 lines (29 loc) · 1.39 KB
/
visualization_tool.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
"""
Type in the terminal:
bokeh serve --show visualization_tool.py
"""
from merida.server_for_lightcurves import server_caller
# ======================================================================================================
# =~.oOo.~= Example local data =~.oOo.~=
# ======================================================================================================
# This file contains the parameters for the visualization tool
lightcurve_name ='gb10-R-5-6-130249'
lightcurve_class ='positive'
data_local = True
# internal:
old_data_in_fugu = True # If you are using the old data in fugu, set this to True
data_path ='data/positive'
lightcurve_name = 'gb1-R-1-1-315'
old_data_in_fugu = False
data_path = 'data/'
server_caller(lightcurve_name, lightcurve_class, data_local, data_path, old_data_in_fugu)
# ======================================================================================================
# =~.oOo.~= Example URL data =~.oOo.~=
# ======================================================================================================
# This file contains the parameters for the visualization tool
# lightcurve_name = 'gb1-R-1-1-315'
# lightcurve_class ='positive'
# data_local = False # If you are using URL, set this to False
# data_path = None
#
# server_caller(lightcurve_name, lightcurve_class, data_local, data_path)