Commit a1dc383b by Corey Koval

Added the ability to toggle plotting of intersections.

parent abf20f0d
...@@ -49,6 +49,11 @@ ...@@ -49,6 +49,11 @@
- Minimum samples per cluster. Default 20 - Minimum samples per cluster. Default 20
- A higher value can yield more accurate results, but requires more data. - A higher value can yield more accurate results, but requires more data.
- --plot_intersects
- Plots all the intersect points in a cluster.
- Only applies when clustering is turned on.
- This creates larger CZML files.
- -o, --offline - -o, --offline
- Starts program with receiver turned off. - Starts program with receiver turned off.
- Useful for looking at stored data when you can't connect to receivers. - Useful for looking at stored data when you can't connect to receivers.
...@@ -64,4 +69,4 @@ ...@@ -64,4 +69,4 @@
Once the program is running, browse to 127.0.0.1:8080 or whatever IP/Port Number you specified. Once the program is running, browse to 127.0.0.1:8080 or whatever IP/Port Number you specified.
![Screenshot](https://i.ibb.co/HPZcD0K/Screenshot-from-2020-11-07-23-30-16.png) ![Screenshot](https://i.ibb.co/Ch1sFZH/Screenshot-from-2020-11-09-20-21-03.png)
...@@ -28,29 +28,37 @@ ...@@ -28,29 +28,37 @@
</div> </div>
<div class="slidecontainer"> <div class="slidecontainer">
<form action="/" method="post"> <form action="/" method="post">
<span class="slidetitle"><h4>Min Power*:</h4></span> <div><span class="slidetitle"><h4>Min Power*:</h4></span>
<span class="slidespan"><input name="powerValue" type="range" min="0" max="100" value="{{minpower}}" class="slider" id="powerRange"></span> <span class="slidespan"><input name="powerValue" type="range" min="0" max="100" value="{{minpower}}" class="slider" id="powerRange"></span><
<span class="slidevalue" id="power"></span> <span class="slidevalue" id="power"></span></div>
<span class="slidetitle"><h4>Min Confidence*:</h4></span> <div><span class="slidetitle"><h4>Min Confidence*:</h4></span>
<span class="slidespan"><input name="confValue" type="range" min="0" max="100" value="{{minconf}}" class="slider" id="confRange"></span> <span class="slidespan"><input name="confValue" type="range" min="0" max="100" value="{{minconf}}" class="slider" id="confRange"></span>
<span class="slidevalue" id="confidence"></span> <span class="slidevalue" id="confidence"></span></div>
<span class="slidetitle"><h4>epsilon:</h4></span> <div><span class="slidetitle"><h4>epsilon:</h4></span>
<span class="slidespan"><input name="epsilonValue" type="range" min="0" max="100" value="{{epsilon}}" class="slider" id="epsilonRange"></span> <span class="slidespan"><input name="epsilonValue" type="range" min="0" max="100" value="{{epsilon}}" class="slider" id="epsilonRange"></span>
<span class="slidevalue" id="epsilon"></span> <span class="slidevalue" id="epsilon"></span></div>
<span class="slidetitle"><h4>Min Points per Cluster:</h4></span> <div><span class="slidetitle"><h4>Min Points per Cluster:</h4></span>
<span class="slidespan"><input name="minpointValue" type="range" min="0" max="200" value="{{minpoints}}" class="slider" id="minpointRange"></span> <span class="slidespan"><input name="minpointValue" type="range" min="0" max="200" value="{{minpoints}}" class="slider" id="minpointRange"></span>
<span class="slidevalue" id="minpoints"></span> <span class="slidevalue" id="minpoints"></span></div>
<span class="slidetitle"><h4>Receiver Enable:</h4></span> <div><span class="slidetitle"><h4>Receiver Enable:</h4></span>
<span class="slidespan" style="text-align:left;"> <span class="slidespan" style="text-align:left; width: 80px;">
<!-- Rounded switch --> <!-- Rounded switch -->
<label class="switch"> <label class="switch">
<input name="rx_en" {{rx_state}} type="checkbox"> <input name="rx_en" {{rx_state}} type="checkbox">
<span class="switchslider round"></span> <span class="switchslider round"></span>
</label></span> </label></span>
<span class="slidetitle"><h4>Plot All intersect Points**:</h4></span>
<span class="slidespan" style="text-align:left; width: 80px;">
<!-- Rounded switch -->
<label class="switch">
<input name="intersect_en" {{intersect_state}} type="checkbox">
<span class="switchslider round"></span>
</label></span><span>Enabling this can cause longer load times.</span></div>
<div style="width:15%; text-align:right;"><input value="Update" type="submit" style="height:40px;"/></div> <div style="width:15%; text-align:right;"><input value="Update" type="submit" style="height:40px;"/></div>
</form> </form>
<p>* Does not affect historical data.</p> <p>* Does not affect historical data.</p>
<p>** This setting does not apply if clustering is turned off (epsilon = 0).</p>
</div> </div>
<script> <script>
var powerslider = document.getElementById("powerRange"); var powerslider = document.getElementById("powerRange");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment