costmap 0.2.0

2D costmaps, occupancy grids, and raycasting for robotics navigation - a Nav2 alternative in pure Rust
Documentation

costmap

Crates.io Documentation License

A Rust library for 2D costmaps, occupancy grids, and raycasting — aimed at robotics navigation.

The goal is to provide a standalone, composable alternative to costmap_2d from Nav2, implemented as an independent Rust crate with no ROS dependency. The Rust robotics ecosystem needs more self-contained libraries that can be mixed and matched outside of any single framework.

AI Disclaimer: I have been using this project as a way to test different workflows with AI generation. The majority of the code has been written by AI using a mix of Cursor Composer/Auto and Claude Opus 4.6. In all cases I had them generate a plan before implementation began. After generation, I have reviewed all code, however there are still many "odd decisions" that have embedded themselves in the code. Contributions in code or experience are welcome!

Status: Work in progress. The core grid, raycasting, coordinate transforms, inflation, and ROS2 map loading are functional.

Goals

  • Easy to use — clear API with sensible defaults; load a map and start querying in a few lines.
  • Performant — match or exceed the performance of Nav2's C++ costmap_2d implementation.
  • Composable — no framework lock-in. Use the grid on its own, plug in your own layers, or integrate with any robotics stack.

Who is this for?

This library is designed for:

  • Rust robotics developers building mobile robots, autonomous vehicles, or drone navigation systems
  • ROS2 users wanting to prototype or deploy navigation algorithms in pure Rust
  • Game developers needing efficient 2D spatial queries and line-of-sight calculations
  • Researchers experimenting with costmap algorithms without the overhead of a full robotics framework

Features

  • Rolling window costmapsupdate_origin shifts the grid while preserving overlapping data, enabling efficient robot-centered local costmaps.
  • Raycasting — DDA and grid-step algorithms for sensor simulation and collision detection in world coordinates.
  • Obstacle inflation — expand obstacles with Nav2-style inscribed exponential decay for safe navigation.
  • Line and polygon iterators — iterate cells along a ray or inside a convex polygon, with read/write access.
  • 2D occupancy grids & costmapsGrid2d<i8> and Grid2d<u8> with configurable resolution, origin, and coordinate transforms.
  • Nav2-compatible semantics — lethal / inscribed / free / unknown cost values matching costmap_2d conventions.
  • ROS2 map loading — load occupancy grids from the standard YAML + image format.
  • Rerun visualisation (optional) — log grids and costmaps as textured 3D planes with the RViz colour palette.
  • Nav2 compatibility layer (optional) — a Costmap2D-like API surface for incremental migration.

Installation

Add to your Cargo.toml:

[dependencies]
costmap = "0.1.0"

# Optional features
costmap = { version = "0.1.0", features = ["rerun"] }

Quick start

Load a map and perform raycasting for obstacle detection:

use costmap::RosMapLoader;
use glam::Vec2;

fn main() -> Result<(), Box<dyn std::error::Error>> {
    // Load a ROS2 map (YAML + image format)
    let grid = RosMapLoader::load_from_yaml("map.yaml")?;

    // Raycast from origin in a given direction
    let origin = Vec2::new(10.0, 10.0);  // meters, world coordinates
    let direction = Vec2::new(1.0, 0.0); // unit vector
    let max_range = 30.0;

    // Check for obstacles along the ray
    if let Some(hit) = grid.raycast_dda(&origin, &direction, max_range) {
        println!("Hit obstacle at distance: {:.2}m", hit.hit_distance);
        println!("Cell coordinates: {:?}", hit.cell);
    } else {
        println!("No obstacles within range");
    }

    Ok(())
}

Examples

footprint_checking

Footprint-based collision checking: a footprint moves through a funnel-shaped corridor. Its color matches the costmap (white when free, gradient when elevated, cyan when lethal). Demonstrates footprint_cost() for pose validation.

cargo run --example footprint_checking --features rerun

occupancy_raycast

Demonstrates the core raycasting API with an animated 360° sweep. Shows how to:

  • Load ROS2 map files
  • Perform DDA raycasting for obstacle detection
  • Handle hit/miss cases

Raycast example

local_costmap_lidar

Complete local costmap workflow for mobile robot navigation. Shows how to:

  • Create and update rolling window costmaps
  • Integrate simulated lidar data using clear_ray()
  • Apply inflation layers for safe path planning
  • Move the costmap origin to follow the robot

Costmap example

Contributing

Contributions are welcome! Please feel free to:

  • Open issues for bugs, feature requests, or questions
  • Submit pull requests (please open an issue first for major changes)
  • Improve documentation and examples
  • Share your use cases and feedback

When contributing code, please ensure it follows the existing style and includes appropriate tests.

License

Licensed under either of

at your option.