Skip to content
Snippets Groups Projects
Commit f7fabab4 authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Add k40

parent eb60aea3
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,7 @@ PLOTS = [['dom_activity', 'dom_rates'], ['pmt_rates', 'pmt_hrv'],
AHRS_PLOTS = [['yaw_calib'], ['pitch_calib'], ['roll_calib']]
TRIGGER_PLOTS = [['trigger_rates'], ['trigger_rates_lin']]
K40_PLOTS = [['intradom.png'], ['angular_k40rate_distribution.png']]
@app.after_request
......@@ -35,6 +36,11 @@ def ahrs():
return render_template('plots.html', plots=AHRS_PLOTS)
@app.route('/k40.html')
def k40():
return render_template('k40.html', plots=K40_PLOTS)
@app.route('/trigger.html')
def trigger():
return render_template('plots.html', plots=TRIGGER_PLOTS)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment