Skip to content

Commit

Permalink
Tune interval and opacity parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
mstoelzle committed Mar 11, 2021
1 parent dc943c6 commit 633c1d2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/visualization/live_inference_plotter.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def plot_live_inference(purpose_hdf5_group: h5py.Group):
dcc.Graph(id='live-graph', animate=True),
dcc.Interval(
id='graph-update',
interval=1000,
interval=500,
n_intervals=0,
max_intervals=comp_dem_dataset.shape[0]
),
Expand All @@ -58,8 +58,8 @@ def update_graph_scatter(i):
z=comp_dems[i],
name='Composed DEM',
colorscale="viridis",
colorbar={"len": 0.75, "lenmode": "fraction"},
opacity=0.5,
colorbar={"len": 0.6, "lenmode": "fraction"},
opacity=0.65,
showscale=True
)

Expand Down

0 comments on commit 633c1d2

Please sign in to comment.