Skip to content

ROS (Robot Operating System) Time and Duration primitives and helper methods

License

Notifications You must be signed in to change notification settings

Lichtblick-Suite/rostime

 
 

Repository files navigation

@lichtblick/rostime

ROS (Robot Operating System) Time and Duration primitives and helper methods

npm version

Introduction

ROS (Robot Operating System) defines two primitive types for dealing with time, ros::Time and ros::Duration (see http://wiki.ros.org/roscpp/Overview/Time). These are both represented by the same data type, { sec: number; nsec: number } and serialized as a pair of 32-bit integers (seconds, then nanoseconds). This package provides a TypeScript type definition for these types and helper methods for working with ROS time and duration values.

Usage

import * as rostime from "@lichtblick/rostime";

const a = { sec: 1, nsec: 0 };
const b = rostime.fixTime({ sec: 0, nsec: 1e9 });
console.log(`${rostime.toString(a)} == ${rostime.toString(b)} (${rostime.areEqual(a, b)})`);

License

@lichtblick/rostime is licensed under the MIT License.

Releasing

  1. Run yarn version --[major|minor|patch] to bump version
  2. Run git push && git push --tags to push new tag
  3. GitHub Actions will take care of the rest

About

ROS (Robot Operating System) Time and Duration primitives and helper methods

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 100.0%