# uavlogviewer **Repository Path**: mirrors_ArduPilot/uavlogviewer ## Basic Information - **Project Name**: uavlogviewer - **Description**: An online viewer for UAV log files - **Primary Language**: Unknown - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-09-08 - **Last Updated**: 2026-06-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## 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). ## prebuilt Docker To run the prebuilt Docker image, simply run the following command. Make sure to replace `` with your actual Cesium ion token. You can obtain a Cesium ion token by signing up for a free account at [Cesium ion](https://cesium.com/ion/). More information can be found [here](https://cesium.com/learn/ion/cesium-ion-access-tokens/) ``` bash docker run -e VUE_APP_CESIUM_TOKEN= -p 8080:8080 -d ghcr.io/ardupilot/uavlogviewer:latest ``` ## local Build Setup ``` bash # initialize submodules git submodule update --init --recursive # install dependencies npm install # enter Cesium token export VUE_APP_CESIUM_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 ``` ## deployment of static files to a server To build a static version of the application and deploy it to a server, you can use the following commands. Make sure to replace `` with your actual Cesium ion token. The built files will be located in the `dist` directory, which you can then upload to your server. ``` bash git submodule update --init --recursive npm install export VUE_APP_CESIUM_TOKEN= npm run build ``` ## build local Docker image ``` bash # Build Docker Image docker build -t /uavlogviewer . # Run Docker Image (token is read at container startup) docker run -e VUE_APP_CESIUM_TOKEN= -it -p 8080:8080 -v ${PWD}:/usr/src/app /uavlogviewer # Navigate to localhost:8080 in your web browser # changes should automatically be applied to the viewer ```