This extension is available in the Foxglove Extension Registry, you can install it by navigating to Settings->Extensions and selecting PX4 Converter from the list.
PX4 Converter extension that translates px4 messages to Foxglove schemas to visualize data in various panel types.
The converter will publish the following frame transforms:
- local_origin - an ENU frame matching the EKF2 initialization frame
- base_intermediate - an ENU intermediate frame containing the local position of the aircraft and yaw
- base_link - same as base_intermediate but with applied Roll and Pitch angles
Foxglove allows developers to create extensions, or custom code that is loaded and executed inside the Foxglove application. This can be used to add custom panels. Extensions are authored in TypeScript using the @foxglove/extension SDK.
Extension development uses the npm package manager to install development dependencies and run build scripts.
To install extension dependencies, run npm from the root of the extension package.
npm installTo build and install the extension into your local Foxglove desktop app, run:
npm run local-installOpen the Foxglove desktop (or ctrl-R to refresh if it is already open). Your extension is installed and available within the app.
Extensions are packaged into .foxe files. These files contain the metadata (package.json) and the build code for the extension.
Before packaging, make sure to set name, publisher, version, and description fields in package.json. When ready to distribute the extension, run:
npm run packageThis command will package the extension into a .foxe file in the local directory.
You can publish the extension to the public registry or privately for your organization.
See documentation here: https://docs.foxglove.dev/docs/visualization/extensions/publish/#packaging-your-extension