npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

chimps

v1.1.2

Published

Spatial-temporal dynamics processor for context-aware physical spaces. We believe in an open Internet of Things.

Downloads

87

Readme

chimps

Spatial-temporal dynamics processor for context-aware physical spaces and companion to barnacles.

chimps ingests a real-time stream of raddec objects and outputs spatem (SPAtial-TEMporal) objects based on positions calculated internally by positioning engines and/or externally by third-party systems.

chimps is a lightweight Node.js package that can run on resource-constrained edge devices as well as on powerful cloud servers and anything in between. It is typically connected with a barnowl and/or barnacles instance which sources real-time radio decodings from an underlying hardware layer. Together these packages are core components of reelyActive's Pareto Anywhere open source middleware.

Getting Started

Follow our step-by-step tutorials to get started with chimps bundled within Pareto Anywhere:

Learn "owl" about the spatem JSON data output:

Quick Start

Clone this repository, install package dependencies with npm install, and then from the root folder run at any time:

npm start

chimps will listen for raddec UDP packets on 0.0.0.0:50001 and print the spatial-temporal (spatem) data to the console.

spatem

The format of the spatem object, which is the sole output of chimps, is as follows:

{
  deviceId: "bada55beac04",
  deviceIdType: 2,
  type: "location", // "position" or "location"
  data: { /* FeatureCollection */ },
  timestamp: 1645568542222
}

In the case where the position of the associated raddec cannot be matched with any Features in chimps' FeatureCollection, the spatem type will be a position and include a FeatureCollection of exactly one item, a "Point", as its data property. Else, the spatem type will be a location and include a FeatureCollection which adds all matched Features as its data property. Each type of spatem is described in full detail below.

position

A spatem of type position has the following format:

{
  deviceId: "bada55beac04",
  deviceIdType: 2,
  type: "position",
  data: {
    type: "FeatureCollection",
    features: [{
      type: "Feature",
      properties: { isDevicePosition: true, positioningEngine: "External" },
      geometry: {
        type: "Point",
        coordinates: [ 0.0, 0.0, 0.0 ]
      }
    }]
  },
  timestamp: 1645568542222
}

chimps adds the property isDevicePosition to indicate that the "Point" represents the device position, as per the raddec.

location

A spatem of type location has the following format:

{
  deviceId: "bada55beac04",
  deviceIdType: 2,
  type: "location",
  data: {
    type: "FeatureCollection",
    features: [{
      type: "Feature",
      properties: { isDevicePosition: true,
                    positioningEngine: "AnchorAndPull" },
      geometry: {
        type: "Point",
        coordinates: [ 0.0, 0.0, 0.0 ]
      }
    },{
      type: "Feature",
      id: "(from chickadee)",
      properties: { name: "" },
      geometry: {
        type: "Polygon",
        coordinates: [[[ 0, 1 ], [ 1, 0 ], [ 0, -1 ], [ -1, 0 ], [ 0, 1 ]]]
      }
    }
  ]},
  timestamp: 1645568542222
}

Note that the first feature in the FeatureCollection will always be the "Point" representing the device position as per the raddec, with chimps adding the property isDevicePosition to differentiate from any other associated "Point" which may be present in the FeatureCollection.

Positioning Engines

chimps supports both internal and external positioning engines for estimating the real-time position of devices based on radio decodings and metadata. Positioning engines are configured through the positioningEngines option which has the following default setting:

[
  { inputFilterParameters: {}, engine: PositioningEngines.External },
  { inputFilterParameters: {
        acceptedEvents: [ Raddec.events.APPEARANCE,
                          Raddec.events.DISPLACEMENT,
                          Raddec.events.KEEPALIVE ] },
    engine: PositioningEngines.AnchorAndPull }
]

The first positioning engine in the array to meet the inputFilterParameters criteria and return a position will be observed. In other words, the positioning engines are priority-based and mutually exclusive.

The default setting prioritises external (third-party) positioning engines which add a position property to the raddec before it is ingested by chimps. If no position property is present, instead the anchor-and-pull engine will provide a position estimate, when possible, upon ingestion of a raddec from barnacles which corresponds with an appearance, displacement or keepalive event.

A user-defined positioning engine can be specified by providing as the engine property a Class which includes an estimatePosition function which takes as parameters a raddec and associations. For example:

engine:
  class AlwaysAtParc {
    constructor(options) {}
    estimatePosition(raddec, associations) {
      return [ -73.57123, 45.50883 ];
    }
  }

Be advised that RSSI-based positioning in real-world conditions, especially with ambient devices and existing infrastructure, is inherently limited in accuracy. The anchor-and-pull method is provided as a low-overhead means to output "good enough" positions for applications which must consume data in the form of coordinates. If highly-accurate coordinate-based positioning is absolutely required, instead select the appropriate technologies and infrastructure that add a position property before it is ingested by chimps.

Options

chimps supports the following options:

| Property | Default | Description | |:-----------------------|:--------|:---------------------------------------| | inputFilterParameters | {} | Filter on inbound raddecs (see raddec-filter) | | observedEvents | [ 'position', 'location' ] | List of event types that will produce a spatem output | | maxStoredSpatems | 1 | The number of historic spatems to maintain in memory per device | | historyMilliseconds | 5000 | How long to retain spatem data before it is flushed from memory | | featureCollection | {} | Explicit FeatureCollection to use in the absence of a connected chickadee instance | | associations | Map() | Explicit device associations to use in the absence of a connected chickadee instance | | positioningEngines | (see above) | The positioning engines and parameters to use to estimate device positions | | barnowl | null | barnowl instance providing source data | | barnacles | null | barnacles instance providing source data |

What's in a name?

Chimpanzees (chimps) have outstanding spatial awareness. chimps is our first mascot-nameworthy module since perhaps 2015, and we intend to continue our tradition of mascot name storytelling, so check back soon!

Project History

chimps v1.0.0 was released in October 2022, developed to accommodate 2D and 3D real-time location data, initially from barnowl-rfcontrols.

Contributing

Discover how to contribute to this open source project which upholds a standard code of conduct.

Security

Consult our security policy for best practices using this open source software and to report vulnerabilities.

License

MIT License

Copyright (c) 2022-2023 reelyActive

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.