Skip to main content

212 posts tagged with "Foxglove"

Release notes for the Foxglove web and desktop app.

View All Tags

Foxglove 2.40.0

๐Ÿ–ผ๏ธ Synced Pixel Cursor Across Image Panelsโ€‹

Hovering on a pixel in the Image panel now shows the pixel value across all Image panels displaying images sharing the same frame_id and dimensions.

๐Ÿ”— Improvements to Embedding Foxgloveโ€‹

The embed API now includes several enhancements:

  • getLayout method: The API now includes a method to export the current layout from the embed. This enables programmatic access to layout data for sharing and other use cases.

    For the React package, a ref is available to access this functionality:

    const viewerRef = useRef<FoxgloveViewer>(null);
    const layout = await viewerRef.current?.getLayout();
  • Recordings by Device: You can now select a recording data source by deviceName or deviceId with optional start and end time parameters. This enables more flexible data source selection in embedded Foxglove instances.

๐Ÿ“‹ Event Details Pageโ€‹

You can now view details of individual events on a dedicated page. This page provides a way to link to a specific event. All actions from the event list page are available, including visualize, view recordings, download, and delete.

๐ŸŸ Fisheye62 Distortion Modelโ€‹

Added support for the Fisheye62 distortion model, a distortion model that adds tangential distortion parameters (p0, p1) to the Kannalaโ€“Brandt distortion model, along with an optional critical angle (ฮธcrit). This model is compatible with SymForce and Project Aria Fisheye62 calibrations. If ฮธcrit is not provided, it is calculated automatically from the radial coefficients.

New & Improved
  • The pointClouds.ts User Scripts utility now supports int8, uint32, and float64 for ROS PointCloud2 messages
  • Topic converter extension topics can now be used as input topics for user scripts
  • Problems tab badge count now includes player and session problems
  • Added copy and plot buttons for timestamp structs in the Raw Messages panel
  • Improved error messaging when an advertised channel uses an unknown schema
  • The Raw Messages panel now displays a degree symbol next to rpy values for quaternion fields
Fixes
  • Fixed 5s delay when unmounting extension panels
  • Fixed the ability to select Grid and VoxelGrid objects in the 3D panel when using the inspector
  • Fixed live subscriptions on topic aliases for state transition charts
  • Fixed an issue with keyframe lookback on aliased image topics
  • Fixed GridMap and Grid disappearing in the 3D panel when viewed from certain angles
  • Fixed Grid gradient coloring using auto for min and max values
  • Fixed an issue where if a series in an index-based plot contained all NaN values, other series would not display
  • Restored @derivative and @delta modifiers for filtered paths
  • Fixed crashes and freezes when loading invalid or empty VoxelGrid messages
  • Fixed cursor moving while typing in metadata search input
  • Fixed error when message-path plots point to series with no data
  • Fixed plots reloading data when a series before them is deleted
  • Fixed the playback bar buttons being enabled after the "Create Event" modal closes
  • Fixed seek-on-click behavior for events in sidebar

Downloads: Linux: deb amd64 arm64, snap amd64 | Windows: Universal | Mac: Universal

Foxglove 2.39.2

This release contains minor bug fixes.

Fixes
  • Fix issue with aliased topics not rendering on live data in the state transitions panel
  • Fix issue with keyframe lookback on aliased image topics

Downloads: Linux: deb amd64 arm64, snap amd64 | Windows: Universal | Mac: Universal

Foxglove 2.39.1

This release contains minor bug fixes.

Fixes
  • Fix issue with series in index-based plots which contain all undefined values
  • Fix @derivative and @delta math modifiers for filtered message paths

Downloads: Linux: deb amd64 arm64, snap amd64 | Windows: Universal | Mac: Universal

Foxglove 2.39.0

๐Ÿ Python Notebook Integrationโ€‹

You can now visualize data in any Jupyter-like notebook environment using the new notebook integration. Install the package with pip install "foxglove-sdk[notebook]", then use foxglove.init_notebook_buffer() to create a buffer for collecting and displaying data in an interactive Foxglove viewer within your notebook.

The integration supports:

  • Streaming data visualization in Jupyter Notebook, JupyterLab, Google Colab, and VS Code
  • Real-time updates using refresh() to update viewer data
  • Local layout management for customized visualizations

Learn more in the Jupyter notebook documentation.

๐Ÿ”Ž Recording Metadata Search APIโ€‹

The optional metadataQuery parameter is now available in the Recordings List API. You can filter recordings by metadata using key-value search syntax:

  • temperature:high โ€” find recordings with sensor metadata where temperature is high
  • status:* location:lab โ€” find recordings with any status AND location lab
  • *:error โ€” find any key with "error" value
  • warehouseName:"leaping llama" โ€” use quotes for values with spaces

๐Ÿ”— Iframe Embeddingโ€‹

Embed Foxglove in your application or website using our TypeScript or React SDKs. The embedding capability enables multi-modal data visualization and debugging within your application.

The embedding SDK supports:

  • Multiple data sources: load from local files, recordings, and live connections
  • Local layout persistence: embed layouts now persist in IndexedDB, allowing users to make layout changes that are saved automatically
  • Programmatic control: switch between layouts, revert changes, export layouts, and manage multiple layouts with the selectLayout API
  • Extension support: install custom extensions programmatically (Enterprise only)

Learn more in the embedding documentation.

๐Ÿ“œ Custom User Script Utilitiesโ€‹

Extension authors can now register custom utilities that user scripts can import and use. Create reusable functions in your extensions to share complex data processing logic across multiple user scripts.

info

User script utilities are currently in beta. The API may change based on testing and feedback.

This feature lets you:

  • Register TypeScript utilities in extensions using registerUserScriptUtility
  • Import and use utilities in user scripts like standard modules
  • Keep utilities self-contained with their own source code and types
  • View utility source code in the User Script panel's "Utilities" tab

Utilities are great for implementing domain-specific algorithms, helper functions, and reusable transformations that users might need across different scripts.

Learn more in the user script utility documentation.

New & Improved
  • Added visual indicators for deprecated message fields in the Raw Messages panel with warning icons and tooltips
Performance
  • General performance improvements
Fixes
  • Fixed OMG IDL @default annotation handling during deserialization
  • Fixed missing data in message path-based XY plots after reset view
  • Fixed pan and zoom performance issues for plots with locked 1:1 scales
  • Fixed User Script autosave when viewing utility or generated files

Downloads: Linux: deb amd64 arm64, snap amd64 | Windows: Universal | Mac: Universal

Foxglove 2.38.0

๐Ÿ”Ž Search Over Recording Metadataโ€‹

You can now query the metadata on your recordings stored in Foxglove to filter and find the right data. All MCAP metadata records attached to files uploaded to Foxglove are automatically indexed and made available for search.

โŒจ๏ธ Keyboard Shortcuts for Recording Navigationโ€‹

We've added keyboard shortcuts to jump to the start and end of your recording, along with shortcuts for various seeking intervals:

ShortcutDescription
SpaceToggle playback
โ†Seek backward 100ms
โ†’Seek forward 100ms
Shift + โ†Seek backward 10ms
Shift + โ†’Seek forward 10ms
Alt + โ† (Windows and Linux)
Option + โ† (macOS)
Seek backward 500ms
Alt + โ†’ (Windows and Linux)
Option + โ†’ (macOS)
Seek forward 500ms
Home (Windows and Linux)
Fn + โ† (macOS)
Seek to start
End (Windows and Linux)
Fn + โ†’ (macOS)
Seek to end

๐Ÿ“Š Event Overlays on Time Seriesโ€‹

Hovering over events in the playback bar or events sidebar now displays overlays in your Plot and State Transitions panels, making it easier to correlate events with your time series data.

๐Ÿท๏ธ Multi-Select Custom Propertiesโ€‹

Custom properties now support multi-enum values, allowing you to select multiple options from a dropdown. Perfect for tagging devices with multiple attributes.

New & Improved
  • Improved tab panel usability with scrollable tabs and the "new tab" button positioned on the left, similar to Chrome
  • Added confirmation dialog when closing tabs containing layouts to prevent accidental data loss
  • Improved settings panel readability by limiting label width and allowing 2-line labels before truncation
  • Improved user experience of seeking in the Image panel using a progressively expanding time window to find keyframes
Performance
  • General performance improvements
  • Stabilized iterable player URL state to reduce component re-renders
  • General stability improvements
API
  • The /v1/data/topics endpoint now streams responses for improved performance with large datasets
Fixes
  • Fixed dropdown menu actions when viewing recordings by recording key
  • Fixed rare error when reading ROS2 db3 bag files with invalid channels
  • Fixed blank video frames when seeking to already-played keyframes
  • Location fixes now correctly use the selected coloring method and show override notifications
  • Fixed Plot and State Transitions panel messages not being cached properly
  • Simplified embed validation to rely on the embedded viewer's validation
  • TF tree scale now correctly matches world units (1 = 1 meter), consistent with pose topic scaling

Downloads: Linux: deb amd64 arm64, snap amd64 | Windows: Universal | Mac: Universal

Foxglove 2.37.0

๐ŸŽฏ Follow Specific Location Fixesโ€‹

When using LocationFixes with multiple location fixes in a single topic, you can now select which specific fix to follow in the Map panel. When following is enabled, panning is disabled and zooming is centered on the followed coordinate for a better tracking experience.

๐Ÿ”„ Gauge Panel Reverse Directionโ€‹

Control the gauge display direction with the new reverse direction button, allowing for more flexible data visualization. The existing "Reverse" setting has been renamed to "Reverse Colors" for clarity.

New & Improved
  • Added new "Multi-line text" type for device custom properties
  • Added reset view button to the Map panel toolbar
  • Added site name and edge site columns to the recordings table for better organization
  • Added multi-line text input fields in panel settings with optional line limit for custom panels
  • Added Map panel setting to control point size (now in pixels instead of relative scale)
  • Variable Slider panel now shows the variable name in the toolbar by default
Performance
  • General performance improvements
Fixes
  • Fixed an issue with OMG IDL struct members being read out of order when explicit @id annotations were used
  • Fixed latched topics occasionally not appearing when switching tabs or layouts
  • Fixed Table panel column sorting to sort all items instead of only the current page
  • Prevented ROS bag downloads when topic encoding doesn't match, disabling the format option when incompatible
  • Fixed panning in orthographic mode having reduced effect when the perspective camera looks towards the horizon
  • Fixed a rare bug causing a blank screen
  • Fixed tab dragging keyboard interactions so holding Alt or Meta during drag results in copy instead of move
  • Fixed browser autocomplete appearing in the layout menu search
  • Fixed latched messages not being shown when switching between tabs
  • Fixed Map panel memory leak when toggling between point styles for location fixes

Downloads: Linux: deb amd64 arm64, snap amd64 | Windows: Universal | Mac: Universal

Foxglove 2.36.0

๐Ÿ“Š VoxelGrid Visualizationโ€‹

Visualize volumetric data with the new support for Foxglove.VoxelGrid schema, enabling powerful and flexible 3D grid visualizations. This adapts the existing VoxelGrid visualization to work with a more generic approach compared to the ROS-based implementation, which uses specific bit encoding for 4 state depth values into float32 across 16 elevations.

The new schema works more like 2D grids for settings and provides much greater flexibility for managing both color and depth values through customizable fields. With support for arbitrary PackedElementField definitions, you can define custom data fields including optional RGBA color channels, making it suitable for a wide variety of volumetric visualization use cases beyond the traditional fixed-format approaches.

๐Ÿ“ Multiple Location Fixes on Mapsโ€‹

Display multiple location fixes in a single message with the new Foxglove.LocationFixes schema support in the Map panel, perfect for visualizing multiple GPS trails and location history along with covariance data.

New & Improved
  • Device properties now configured in dedicated 'Devices' settings page
  • Updated syntax highlighter for better language support
Performance
  • Minor improvements to web app page load speed with better cache handling
Fixes
  • Fixed color picker values changing when adjusting transparency at high frequencies
  • Fixed Google sign-in error on signup page
  • Fixed URDF error reporting issues
  • Fixed race condition when selecting layouts with global variables and topic aliases
  • Upload manager card no longer obscures playback bar
  • 3D panel HUD items without click handlers are now unclickable
  • Improved error message when unable to create events in visualization

Downloads: Linux: deb amd64 arm64, snap amd64 | Windows: Universal | Mac: Universal

Foxglove 2.35.0

๐Ÿงฎ New Math Modifiers for Plot Panelโ€‹

Transform your plot data on the fly with new math modifiers! In addition to the existing Plot panel math modifiers, we've added .@add(number), .@sub(number), .@mul(number), .@div(number), and .@delta. Append these operators to your series' message path to add, subtract, multiply, divide, and get the delta between successive values. Use these operators for unit conversions, scaling, and shifting data without custom scripts.

โฉ Improved Video Seeking in Image Panelโ€‹

Experience smoother playback when seeking through compressed video sources. The Image panel now intelligently buffers keyframes for more responsive navigation through your video data.

New & Improved
  • Improved error message when attempting to open directories that end with recognized file extensions
  • New math modifiers in Plot panel: add, subtract, multiply, and divide message path values for easy unit conversions
  • Improved seeking behavior in the Image panel for compressed video sources with configurable keyframe buffering
  • Support for duplicating tabs in Tab panel via context menu or Option+drag
  • Added setting to explicitly set the ENU (East-North-Up) orientation of your map in the 3D panel using a frame other than the root/fixed frame
  • Projects feature now generally available for all enterprise organizations
Fixes
  • Fixed topic converters with same outputSchemaName overwriting other schemas - these converters are now disabled with an error message
  • Fixed scrollbar overlap with menu buttons in layout selector on macOS
  • Non-square GridMaps now display correctly when using nearest neighbor interpolation
  • Fixed OMGIDL XCDR message deserialization for out-of-order fields on mutable structs and optional non-mutable fields
  • Fixed message emission on invalid MCAP channels
  • Image annotations from different namespaces no longer override each other

Downloads: Linux: deb amd64 arm64, snap amd64 | Windows: Universal | Mac: Universal

Foxglove 2.34.0

๐Ÿšœ Introducing data loader extensionsโ€‹

Data loaders are Foxglove extensions that let you write a Rust or C++ translator to load your own file formats in Foxglove.

Using a data loader extension, you can enable Foxglove to open anything from a .csv file to your own proprietary file format.

info

Data loaders are currently in beta. The API may change based on testing and feedback. Contact [email protected] if you have questions.

๐ŸŒฒ New Transform Tree panelโ€‹

The new Transform Tree panel allows you to visualize and explore the relationships and hierarchy of your transform tree.

๐Ÿ—บ๏ธ Measure distance in the Map panelโ€‹

Measure distances directly on your map visualizations with the new distance measuring tool. Click through multiple points to get a total distance, with measurements automatically displayed in human-readable units (mm, cm, m, or km) based on scale.

New & Improved
  • Added distance measuring tool for Map panel with support for multiple points and human-readable units
  • Panel expansion now keeps sidebars visible and intelligently handles playback control space
  • Improved number formatting in plot tooltips with comma separators and cleaner XY labels
  • Removed scientific notation from plot axes based on user feedback
  • Disabled browser autocomplete by default for text fields
  • The Raw Messages panel now more clearly distinguishes missing messages from message paths that select zero results, and more accurately displays arrays with one item
  • The visualization sidebars are still accessible when in full-screen mode
Performance
  • General performance and stability improvements
  • Improved websocket subscription handling to prevent false positive error messages
Fixes
  • Fixed 3D panel crash when GridMap messages have no dimensions
  • Fixed Map panel crash when given an invalid covariance matrix
  • Fixed Map panel to properly center on GeoJSON points when loading
  • Fixed stale topic frequency estimates when reconnecting to live data sources
  • Fixed inconsistent array handling in Raw Message panel for empty arrays and single values
  • Fixed decay time setting for Velodyne point clouds not persisting data correctly
  • Fixed user script topics incorrectly keeping messages when seeking
  • Fixed an OMG IDL parsing issue preventing enums from being accessed via their parent module namespace

Downloads: Linux: deb amd64 arm64, snap amd64 | Windows: Universal | Mac: Universal