Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ardupilot/uavlogviewer
An online viewer for UAV log files
https://github.com/ardupilot/uavlogviewer
Last synced: about 5 hours ago
JSON representation
An online viewer for UAV log files
- Host: GitHub
- URL: https://github.com/ardupilot/uavlogviewer
- Owner: ArduPilot
- License: gpl-3.0
- Created: 2018-08-01T03:01:38.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-04-22T21:09:01.000Z (7 months ago)
- Last Synced: 2024-05-28T18:31:02.792Z (5 months ago)
- Language: JavaScript
- Homepage:
- Size: 21 MB
- Stars: 118
- Watchers: 8
- Forks: 74
- Open Issues: 118
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-flying-fpv - UAVLogViewer - Web application for Ardupilot logs. (Telemetry & Logs 📊 / Modules 🧩)
README
# UAV Log Viewer
![log seeking](preview.gif "Logo Title Text 1")
This is a Javascript based log viewer for Mavlink telemetry and dataflash logs.
[Live demo here](http://plot.ardupilot.org).## Build Setup
``` bash
# install dependencies
npm install# serve with hot reload at localhost:8080
npm run dev# build for production with minification
npm run build# run unit tests
npm run unit# run e2e tests
npm run e2e# run all tests
npm test
```# Docker
``` bash
# Build Docker Image
docker build -t /uavlogviewer .# Run Docker Image
docker run -p 8080:8080 -d /uavlogviewer# View Running Containers
docker ps# View Container Log
docker logs# Navigate to localhost:8080 in your web browser
```