Skip to content

Commit

Permalink
add page for statistical flight log analysis (#3534)
Browse files Browse the repository at this point in the history
* add page for statistical flight log analysis

* Positioning for statistical analysis page

---------

Co-authored-by: Hamish Willee <[email protected]>
  • Loading branch information
bkueng and hamishwillee authored Jan 23, 2025
1 parent 7468730 commit d567995
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 0 deletions.
1 change: 1 addition & 0 deletions en/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -752,6 +752,7 @@
- [Binary Size Profiling](debug/binary_size_profiling.md)
- [Logging](dev_log/logging.md)
- [Flight Log Analysis](dev_log/flight_log_analysis.md)
- [Statistical Analysis](dev_log/flight_log_analysis_statistical.md)
- [ULog File Format](dev_log/ulog_file_format.md)
- [Log Encryption](dev_log/log_encryption.md)
- [Advanced Topics](advanced/index.md)
Expand Down
1 change: 1 addition & 0 deletions en/_sidebar.md
Original file line number Diff line number Diff line change
Expand Up @@ -741,6 +741,7 @@
- [Binary Size Profiling](/debug/binary_size_profiling.md)
- [Logging](/dev_log/logging.md)
- [Flight Log Analysis](/dev_log/flight_log_analysis.md)
- [Statistical Analysis](/dev_log/flight_log_analysis_statistical.md)
- [ULog File Format](/dev_log/ulog_file_format.md)
- [Log Encryption](dev_log/log_encryption.md)
- [Advanced Topics](/advanced/index.md)
Expand Down
1 change: 1 addition & 0 deletions en/dev_log/flight_log_analysis.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ Information about collecting and analysing flight logs is covered in:
- [Flight Reporting](../getting_started/flight_reporting.md) - How to download a log and report/discuss issues about a flight.
- [Log Analysis using Flight Review](../log/flight_review.md) - How to analyse many common vehicle problems using the [Flight Review](https://logs.px4.io/) online tool.
- [Flight Log Analysis](../log/flight_log_analysis.md) - Introduction to flight analysis and links to a number of analysis tools.
- [Statistical Analysis](flight_log_analysis_statistical.md) - Information & resources for statistical analysis (including Flight Review logs).
23 changes: 23 additions & 0 deletions en/dev_log/flight_log_analysis_statistical.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Statistical Flight Log Analysis

This topic contains information and resources related to statistical flight log analysis.

## Flight Review Public Logs

[Flight Review](../log/flight_log_analysis.md#flight-review-online-tool) hosts a large set of publicly available log files that can be used for statistical analysis, machine learning, or other purposes.

The dataset contains a set of different:

- vehicle types
- PX4 versions (including development versions)
- boards
- flight modes

The logs are accessible on [logs.px4.io/browse](https://logs.px4.io/browse) and are licensed under [CC-BY PX4](https://creativecommons.org/licenses/by/4.0/).

Log files can also be downloaded in bulk with the [download_logs.py](https://github.com/PX4/flight_review/blob/main/app/download_logs.py) script.
The script allows to filter by different attributes (like flight modes, airframe name or type).
Use the `--help` flag for a full list.
The newest logs will be downloaded first, and downloads can be interrupted and resumed later on.

There are different parsing libraries, for example [pyulog](../log/flight_log_analysis.md#pyulog) can be used to read logs with Python.

0 comments on commit d567995

Please sign in to comment.