@mapbox/graph-normalizer

3.1.3 • Public • Published

Graph-normalizer

Build Status

graph-normalizer is a JavaScript module that performs operations on an array of GeoJSON LineStrings representing OpenStreetMap ways. The operations performed cover a standard set of graph normalization techniques such as merging edges between intersections and splitting edges that cross over intersections. Ids assigned to ways in the normalized graph are deterministic and reproducible.

Installation

npm install @mapbox/graph-normlizer

Test

npm test

Benchmark

npm run bench

Use

var normalizer = require('@mapbox/graph-normalizer');

var ways = require('./ways.json');

var splitWays = normalizer.splitWays(ways);
var mergedWays = normalizer.mergeWays(ways);

console.log(JSON.stringify(ways));

API

splitWays(ways)

Any ways that traverse an intersection are split in two. !<i> is appended to the way id where i is the index of the split way in the original geometry. Note that !0 is appended to the way id if there is no split.

mergeWays(ways)

Ways that share a node which is not an intersection (only 2 way owners) are merged together. The resulting id is <wayOne>,<wayTwo>.

Input format

  • An array of GeoJSON LineString Features
  • Each feature must have a refs array signifying node Ids of the coordinates that make up the way used for topology construction
  • Each feature must have an id property representing the OpenStreetMap id of the way
  • Each feature must have a highway property representing the OpenStreetMap highway tag of the way
  • Each feature must have a oneway property representing the OpenStreetMap oneway tag of the way
    • the oneway property must be normalized to 0, 1, or -1
    • 0 signifies a bidirectional way
    • 1 signifies a oneway way traveling in coordinate order
    • -1 signifies a oneway way traveling in reverse coordinate order (this will be normalized to forward order 1)
    • graph-normalizer will not work with raw OpenStreetMap oneway values such as yes, or no

Misc

  • All way geometries in the original road network have an equivalent in the normalized graph.
  • No intersection ever lies within a normalized way, only at its ends.
  • Normalized way ids keep track of the history of transformations that led to it.
  • highway, oneway, bridge, tunnel and junction tags are conserved from the original graph by default.
  • highway, bridge, tunnel and junction tags can be merged using optional arguments. When merging different tags:
    • highway tag is set as unclassified
    • tunnel tag is set to yes i.e. we keep the info that there is a tunnel in the merged way
    • bridge tag is set to yes i.e. we keep the info that there is a bridge in the merged way
    • junction tag is set we keep the info about the junction in the merged way

Readme

Keywords

Package Sidebar

Install

npm i @mapbox/graph-normalizer

Weekly Downloads

48

Version

3.1.3

License

ISC

Unpacked Size

1.98 MB

Total Files

105

Last publish

Collaborators

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