-
Notifications
You must be signed in to change notification settings - Fork 27
/
index.html
119 lines (99 loc) · 5.1 KB
/
index.html
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>ArduPilot Web Tools</title>
<link rel="icon" href="images/AP_favicon.png">
</head>
<table style="width:1200px"><tr><td>
<a href="https://ardupilot.org"><img src="images/ArduPilot.png"></a>
</td><td>
<a href="https://github.com/ArduPilot/WebTools"><img src="images/github-mark.png" style="width:60px"></a>
<br>
<a href="https://github.com/ArduPilot/WebTools"><img src="images/GitHub_Logo.png" style="width:60px"></a>
</td></tr></table>
<h1 style="text-align:center; width:1200px"><a href="" style="color: #000000; text-decoration:none;">ArduPilot Web Tools</a></h1>
<div style="max-width:1200px;">
A number of web-based tools for ArduPilot log and parameter review. These tools operate on the client side, no data is uploaded to any server at any time. <br>
Many of the tools have a "Open In" button, this allows a log that has been opened in one tool to be transferred to another, the selected tool will be opened in a new tab and the log loaded.
</div>
<table>
<tr>
<td>
<a href="./LogFinder" style="margin: 20px; display: inline-block;"><img src="images/LogFinder_Icon.png" style="width:200px"></a>
</td>
<td style="text-align:left; vertical-align:top; max-width:960px;">
<h2>Log Finder</h2>
A tool load and sort directories of logs. Note that directory read is not supported by all browsers. Logs are sorted by the unique hardware ID of the flight controller. Parameter changes are tracked between logs.
Open in links allow files to be easily opened in any of the other tools.
</td>
</tr>
<tr>
<td>
<a href="https://plot.ardupilot.org/#/" style="margin: 20px; display: inline-block;"><img src="images/UAVLogViewer_Icon.gif" style="width:200px"></a>
</td>
<td style="text-align:left; vertical-align:top; max-width:960px;">
<h2>UAV Log viewer</h2>
General purpose ArduPilot log review with 3D flight visualization.
</td>
</tr>
<tr>
<td>
<a href="./HardwareReport" style="margin: 20px; display: inline-block;"><img src="images/HardwareReport_Icon.png" style="width:200px"></a>
</td>
<td style="text-align:left; vertical-align:top; max-width:960px;">
<h2>Hardware Report</h2>
Provides a overview of connected hardware from a parameter file or log. If a log is used more information can be provided, such as sensor health status and exact firmware version. A range of options are available to extract parameters from logs, all, only changed or minimal removing calibration parameters.
Includes visualization for sensor position offsets.
</td>
</tr>
<tr>
<td>
<a href="./MAGFit" style="margin: 20px; display: inline-block;"><img src="images/MAGFit_Icon.png" style="width:200px"></a>
</td>
<td style="text-align:left; vertical-align:top; max-width:960px;">
<h2>MAGFit</h2>
Calibrate compass from flight log. This tool fits the logged magnetometer data to the world magnetic model providing offsets, iron correction, scale, motor compensation and checking orientation.
</td>
</tr>
<tr>
<td>
<a href="./FilterReview" style="margin: 20px; display: inline-block;"><img src="images/FilterReview_Icon.png" style="width:200px"></a>
</td>
<td style="text-align:left; vertical-align:top; max-width:960px;">
<h2>Filter Review</h2>
Gyro noise and filter configuration tool. Uses raw or batch IMU logs to show the vehicles noise profile. Filters can are applied logged pre-filter data to see the effect without the need to fly again.
</td>
</tr>
<tr>
<td>
<a href="./PIDReview" style="margin: 20px; display: inline-block;"><img src="images/PIDReview_Icon.png" style="width:200px"></a>
</td>
<td style="text-align:left; vertical-align:top; max-width:960px;">
<h2>PID Review</h2>
Review PID tune in the frequency domain. Step response estimate is generated. Results are split based on parameter changes.
</td>
</tr>
<tr>
<td>
<a href="./FilterTool" style="margin: 20px; display: inline-block;"><img src="images/FilterTool_Icon.png" style="width:200px"></a>
</td>
<td style="text-align:left; vertical-align:top; max-width:960px;">
<h2>Filter Tool</h2>
Bode plot tool to give insight into gyro low pass and notch filter setup. This tool visualizes the attenuation and phase lag of a filter setup loaded from a parameter file.
For filter setup the FilterReview tool it is recommended it provides the same bode plot feedback. This filter tool allows the attenuation and phase lag of each filter to be plotted individually, something which the filter reivew tool cannot do.
This tool also provides a estimated response for the rate PID gains.
</td>
</tr>
<tr>
<td>
<a href="./Dev" style="margin: 20px; display: inline-block;"><img src="images/under-construction-sign-icon.png" style="width:200px"></a>
</td>
<td style="text-align:left; vertical-align:top; max-width:960px;">
<h2>Work in progress tools</h2>
The tools that are a work in progress, they are likely to be a little rough.
</td>
</tr>
</table>
</body>
</html>