This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

@mapbox/route-annotator

0.4.1 • Public • Published

Build Status CodeCov

Route Annotator

This is a NodeJS module that indexes connected node pairs in OSM data, and allows you to query for meta-data. It's useful for retrieving tag information when you have geometry from your basemap.

Requires

  • Node >= 4

Building

To install via binaries:

npm install

To install from source, first install a C++14 capable compiler then run:

make

Testing

To run the tests (which run both the JS tests and the C++ tests):

make test

To run just the JS tests:

npm test

To run the C++ tests:

./build/Release/basic-tests

Usage

This library contains three main modules: Annotator, SegmentSpeedLookup, and WaySpeedLookup

Annotator

The Annotator() object is for looking up OSM tag data from OSM node IDs or coordinates.

Example:

var taglookup = new (require('route_annotator')).Annotator();

// Lookup some nodes and find out which ways they were on,
// and what tags they had
taglookup.loadOSMExtract(path.join(__dirname,'data/winthrop.osm'), (err) => {
  if (err) throw err;
  var nodes = [50253600,50253602,50137292];
  taglookup.annotateRouteFromNodeIds(nodes, (err, wayIds) => {
    if (err) throw err;
    annotator.getAllTagsForWayId(wayIds[0], (err, tags) => {
      if (err) throw err;
      console.log(tags);
    });
  });
});


// Do the same thing, but this time use coordinates instead
// of node ids.  Internally, a radius search finds the closest
// node within 5m
taglookup.loadOSMExtract(path.join(__dirname,'data/winthrop.osm'), (err) => {
  if (err) throw err;
  var coords = [[-120.1872774,48.4715898],[-120.1882910,48.4725110]];
  taglookup.annotateRouteFromLonLats(coords, (err, wayIds) => {
    if (err) throw err;
    annotator.getAllTagsForWayId(wayIds[0], (err, tags) => {
      if (err) throw err;
      console.log(tags);
    });
  });
});

SegmentSpeedLookup

The SegmentSpeedLookup() object is for loading segment speed information from CSV files, then looking it up quickly from an in-memory hashtable.

Example:

var segmentspeedlookup = new (require('route_annotator')).SegmentSpeedLookup();

// Loads example.csv, then looks up the pairs 123-124, 124-125, 125-126
// and prints the speeds for those segments (3 values) as comma-separated
// data
segmentspeedlookup.loadCSV("example.csv", (err) => {
  if (err) throw err;
  segmentspeedlookup.getRouteSpeeds([123,124,125,126],(err,results) => {
    if (err) throw err;
    console.log(results.join(","));
  });
});

The loadCSV method can also be passed an array of filenames.

WaySpeedLookup

The WaySpeedLookup() object is for loading way speed information from CSV files, then looking it up quickly from an in-memory hashtable.

Example:

var wayspeedlookup = new (require('route_annotator')).WaySpeedLookup();

// Loads example.csv, then looks up the ways 1111,2222,3333,4444
// and prints the speeds for those ways as comma-separated
// data
wayspeedlookup.loadCSV("example.csv", (err) => {
  if (err) throw err;
  wayspeedlookup.getRouteSpeeds([1111,2222,3333,4444],(err,results) => {
    if (err) throw err;
    console.log(results.join(","));
  });
});

The loadCSV method can also be passed an array of filenames.


Example HTTP server

This will not use a tag file.

npm install
curl --remote-name http://download.geofabrik.de/europe/monaco-latest.osm.pbf
node example-server.js monaco-latest.osm.pbf

Then, in a new terminal, you should be able to do:

curl "http://localhost:5000/coordlist/7.422155,43.7368838;7.4230139,43.7369751"

Release

You must be a member of the Mapbox npm organization to do this!

  • git checkout master
  • Update CHANGELOG.md
  • Bump version in package.json, package-lock.json
  • git commit -am "vx.y.z [publish binary] | [republish binary]" with Changelog list in commit message
  • Wait for Travis to finish publishing binaries so that all travis tests pass for the publish binary commit.
  • git tag vx.y.z -a with Changelog list in tag message
  • git push origin master; git push origin --tags
  • npm publish --access=public

Readme

Keywords

Package Sidebar

Install

npm i @mapbox/route-annotator

Weekly Downloads

20

Version

0.4.1

License

See LICENSE.txt file

Unpacked Size

135 kB

Total Files

47

Last publish

Collaborators

  • mapbox-admin
  • mapbox-machine-user
  • mapbox-npm
  • mapbox-npm-01
  • mapbox-npm-02
  • mapbox-npm-03
  • mapbox-npm-04
  • mapbox-npm-05
  • mapbox-npm-06
  • mapbox-npm-07
  • mapbox-npm-08
  • mapbox-npm-09
  • mapbox-npm-advanced-actions
  • mapbox-npm-ci
  • mbx-npm-01-production
  • mbx-npm-02-production
  • mbx-npm-02-staging
  • mbx-npm-03-production
  • mbx-npm-04-production
  • mbx-npm-05-production
  • mbx-npm-06-production
  • mbx-npm-07-production
  • mbx-npm-08-production
  • mbx-npm-09-production
  • mbx-npm-advanced-actions-production
  • mbx-npm-advanced-actions-staging
  • mbx-npm-ci-production
  • mbx-npm-ci-staging