Skip to content

bedaberner/UAVLogViewer

 
 

Repository files navigation

UAV Log Viewer

log seeking

This is a Javascript based log viewer for Mavlink telemetry and dataflash logs. Live demo here.

prebuilt Docker

To run the prebuilt Docker image, simply run the following command. Make sure to replace <Your cesium ion token> with your actual Cesium ion token. You can obtain a Cesium ion token by signing up for a free account at Cesium ion. More information can be found here

docker run -e VUE_APP_CESIUM_TOKEN=<Your cesium ion token> -p 8080:8080 -d ghcr.io/ardupilot/uavlogviewer:latest

local Build Setup

# initialize submodules
git submodule update --init --recursive

# install dependencies
npm install

# enter Cesium token
export VUE_APP_CESIUM_TOKEN=<your token>

# serve with hot reload at localhost:8080
npm run dev

# build for production with minification
npm run build

# run production build locally
npm start

# run unit tests
npm run unit

# run e2e tests
npm run e2e

# run all tests
npm test

build local Docker image

# Build Docker Image
docker build -t <your username>/uavlogviewer .

# Run Docker Image (token is read at container startup)
docker run -e VUE_APP_CESIUM_TOKEN=<Your cesium ion token> -it -p 8080:8080 -v ${PWD}:/usr/src/app <your username>/uavlogviewer

# Navigate to localhost:8080 in your web browser

# changes should automatically be applied to the viewer

About

An online viewer for UAV log files

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • JavaScript 78.9%
  • Vue 20.7%
  • Other 0.4%