Giter Site home page Giter Site logo

vbb-lines's Introduction

vbb-lines 🚏

A collection of all lines (and their stations) of the Berlin Brandenburg public transport service (VBB), computed from open GTFS data.

npm version ISC-licensed support me via GitHub Sponsors chat with me on Twitter

Installing

npm install vbb-lines

Usage

The npm package contains data in the Friendly Public Transport Format.

{
	type: 'line',
	id: '17519_400',
	name: 'U55',
	operator: '796',
	mode: 'train',
	product: 'subway',
	variants: [
		['070201054601', '070201054501', '070201054401'], // station ids
		['070201054401', '070201054501', '070201054601']
	]
}
const lines = require('vbb-lines')

lines(true, '15296_700').then(console.log) // query a single line
lines({mode: 'bus'}).on('data', console.log) // filter lines
lines('all').on('data', console.log)

If you want the data as JSON, use require('vbb-lines/data.json').

API

lines([promised], [pattern])

If promised is true, a Promise will be returned, resolving with an array of results.

Otherwise, a stream in object mode will be returned, emitting one line at a time.

pattern can be one of the following:

  • a line ID, like '15296_700'
  • 'all'
  • an object like {mode: 'bus', agencyId: '47'}, with each property being mandatory

Contributing

If you have a question, found a bug or want to propose a feature, have a look at the issues page.

vbb-lines's People

Contributors

dabendorf avatar derhuerst avatar greenkeeper[bot] avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

vbb-lines's Issues

An in-range update of tape is breaking the build 🚨

The devDependency tape was updated from 4.9.2 to 4.10.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

tape is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • ❌ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Commits

The new version differs by 60 commits.

  • 34b1832 v4.10.0
  • 6209882 Merge all orphaned tags: 'v1.1.2', 'v2.0.2', 'v2.1.1', 'v2.2.2', 'v2.3.3', 'v2.4.3', 'v2.5.1', 'v2.6.1', 'v2.7.3', 'v2.8.1', 'v2.9.1', 'v2.10.3', 'v2.11.1', 'v2.13.4', 'v2.14.0', 'v2.14.1', 'v3.6.1'
  • 82e7b26 [Deps] update glob
  • 9e3d25e [Dev Deps] update eslint, js-yaml
  • fd807f5 v1.1.2
  • eddbff5 v2.14.1
  • 6ce09d9 Minor test tweaks due to whitespace differences in v2 vs v4.
  • 71af8ba gitignore node_modules
  • 4c0d9e6 Merge pull request #268 from ljharb/throws_non_function_should_fail
  • d0a675f v3.6.1
  • d22b5fc Minor test tweaks due to output differences in v1 vs v4.
  • 8b3c1b7 Add missing concat-stream devDep
  • 3495543 gitignore node_modules
  • db81846 Merge pull request #268 from ljharb/throws_non_function_should_fail
  • 7ed6651 Minor test tweaks due to whitespace differences in v3 vs v4.

There are 60 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of tap-min is breaking the build 🚨

The devDependency tap-min was updated from 1.2.2 to 1.3.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

tap-min is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • ❌ continuous-integration/travis-ci/push: The Travis CI build could not complete due to an error (Details).

Commits

The new version differs by 3 commits.

  • 8a72530 1.3.0
  • 54a776c Tim Eulitz as contributor, minor changes
  • 3481671 Make error output of tap-min more verbose

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of moment is breaking the build 🚨

Version 2.19.2 of moment was just published.

Branch Build failing 🚨
Dependency moment
Current Version 2.19.1
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

moment is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • ❌ continuous-integration/travis-ci/push The Travis CI build failed Details

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of csv-parser is breaking the build 🚨

The devDependency csv-parser was updated from 2.0.0 to 2.1.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

csv-parser is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • ❌ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v2.1.0

Bugfixes

  • fix: mapHeaders error when using binary. fixes #99 (a22f006)
  • fix: bin version. fixes #98 (2c95c35)

Features

  • feat: maxRowBytes to limit row length (#88)

Updates

  • docs: remove extraneous skipLines. fixes #96 (16944c1)
Commits

The new version differs by 5 commits.

  • 383060e chore(release): 2.1.0
  • a22f006 fix: fixes #99. mapHeaders error when using binary
  • 2c95c35 fix: bin version. fixes #98
  • 5ed860c feat: maxRowBytes to limit row length (#88)
  • 16944c1 docs: remove extraneous skipLines. fixes #96

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

Filter example in README broken

lines({type: 'bus'}).on('data', console.log) // filter lines

Filtering by type does not work. I guess it should be "mode"?

lines occur twice

As an example, there's two RE3 lines in the latest static data set.

curl 'https://vbb-gtfs.jannisr.de/2017-01-23/routes.txt' | head -n 1
curl 'https://vbb-gtfs.jannisr.de/2017-01-23/routes.txt' | grep RE3
"route_id","agency_id","route_short_name","route_long_name","route_type","route_color","route_text_color"
10881_100,108,"RE3","",100,,
10888_100,108,"RE3","",100,,
const lines = require('vbb-lines')
lines(true, '10881_100').then((lines) => {
	console.log(JSON.stringify(lines[0]))
})
lines(true, '10888_100').then((lines) => {
	console.log(JSON.stringify(lines[0]))
})
{
  "id": "10881_100",
  "name": "RE3",
  "agencyId": "108",
  "type": "regional",
  "variants": [
    [
      "000008010182",
      "000008012260",
      "000008013345",
      "000008013137",
      "000008013123",
      "000008010215",
      "000008080170",
      "000008011740",
      "000008013100",
      "000008011041",
      "000008011113",
      "000008011118",
      "000008098160"
    ],
    [
      "000008098160",
      "000008011102",
      "000008013470",
      "000008010093",
      "000008010064",
      "000008011314",
      "000008010004",
      "000008012637",
      "000008012944",
      "000008012943"
    ],
    [
      "000008098160",
      "000008011102",
      "000008013470",
      "000008012819",
      "000008011188",
      "000008012329",
      "000008010093"
    ],
    [
      "000008098160",
      "000008011102",
      "000008010036",
      "000008013470",
      "000008012819",
      "000008011188",
      "000008012329",
      "000008010093"
    ],
    [
      "000008098160",
      "000008011102",
      "000008010036"
    ],
    [
      "000008010093",
      "000008010064",
      "000008011314",
      "000008010004",
      "000008012637",
      "000008012944",
      "000008012943"
    ],
    [
      "000008011102",
      "000008013470",
      "000008012819",
      "000008011188",
      "000008012329",
      "000008010093"
    ],
    [
      "000008098160",
      "000008011102"
    ],
    [
      "000008011102",
      "000008010036",
      "000008013470",
      "000008010093",
      "000008010064",
      "000008011314",
      "000008010004",
      "000008012637",
      "000008012944",
      "000008012943"
    ],
    [
      "000008098160",
      "000008011102",
      "000008010036",
      "000008013470",
      "000008010093",
      "000008010064",
      "000008011314",
      "000008010004",
      "000008012637",
      "000008012944",
      "000008012943"
    ],
    [
      "000008098160",
      "000008011102",
      "000008010036",
      "000008013470",
      "000008012819",
      "000008011188",
      "000008012329",
      "000008010093",
      "000008010064",
      "000008011314",
      "000008010004",
      "000008012637",
      "000008012944",
      "000008012943"
    ],
    [
      "000008010036",
      "000008013470",
      "000008010093",
      "000008010064",
      "000008011314",
      "000008010004",
      "000008012637",
      "000008012944",
      "000008012943"
    ],
    [
      "000008098160",
      "000008010036",
      "000008013470",
      "000008012819",
      "000008011188",
      "000008012329",
      "000008010093"
    ],
    [
      "000008098160",
      "000008010036",
      "000008013470",
      "000008010093",
      "000008010064",
      "000008011314",
      "000008010004",
      "000008012637",
      "000008012944",
      "000008012943"
    ],
    [
      "000008098160",
      "000008011102",
      "000008010036",
      "000008013470",
      "000008012819",
      "000008011188",
      "000008012329",
      "000008010093",
      "000008010064",
      "000008011314",
      "000008010004"
    ],
    [
      "000008098160",
      "000008011102",
      "000008013470",
      "000008010093",
      "000008010064",
      "000008011314",
      "000008010004",
      "000008013313",
      "000008013238",
      "000008012968",
      "000008010282"
    ],
    [
      "000008010004",
      "000008013313",
      "000008013238",
      "000008012968",
      "000008010282"
    ],
    [
      "000008010004",
      "000008013313",
      "000008013238",
      "000008012968",
      "000008010282",
      "000008012418",
      "000008010268",
      "000008010179",
      "000008011536",
      "000008011438",
      "000008011044",
      "000008012021",
      "000008010396",
      "000008011723",
      "000008011694",
      "000008010139",
      "000008012358",
      "000008010338"
    ],
    [
      "000008098160",
      "000008010036",
      "000008013470",
      "000008010093",
      "000008010064",
      "000008011314",
      "000008010004",
      "000008013313",
      "000008013238",
      "000008012968",
      "000008010282",
      "000008012418",
      "000008010268",
      "000008010179",
      "000008011536",
      "000008011438",
      "000008011044",
      "000008012021",
      "000008010396",
      "000008011723",
      "000008011694",
      "000008010139",
      "000008012358",
      "000008010338"
    ],
    [
      "000008010182",
      "000008012260",
      "000008013345",
      "000008013137",
      "000008013123",
      "000008010215",
      "000008080170",
      "000008011740",
      "000008013100",
      "000008011041",
      "000008011113",
      "000008011118",
      "000008098160",
      "000008011102",
      "000008013470",
      "000008010093",
      "000008010064",
      "000008011314",
      "000008010004",
      "000008012637",
      "000008012944",
      "000008012943"
    ],
    [
      "000008010182",
      "000008012260",
      "000008013345",
      "000008013137",
      "000008013123",
      "000008010215",
      "000008080170",
      "000008011740",
      "000008013100",
      "000008011041",
      "000008011113",
      "000008011118",
      "000008098160",
      "000008011102",
      "000008013470",
      "000008010093",
      "000008010064",
      "000008011314",
      "000008010004"
    ],
    [
      "000008098160",
      "000008011102",
      "000008013470",
      "000008012819",
      "000008011188",
      "000008012329",
      "000008010093",
      "000008010064",
      "000008011314",
      "000008010004",
      "000008012637",
      "000008012944",
      "000008012943"
    ],
    [
      "000008011113",
      "000008011118",
      "000008098160",
      "000008011102",
      "000008013470",
      "000008011188",
      "000008010093",
      "000008010004"
    ],
    [
      "000008011113",
      "000008011118",
      "000008098160",
      "000008011102",
      "000008013470",
      "000008011188",
      "000008010093"
    ],
    [
      "000008010004",
      "000008013313",
      "000008013238",
      "000008012968",
      "000008010282",
      "000008012418",
      "000008010268"
    ],
    [
      "000008098160",
      "000008011102",
      "000008010036",
      "000008013470",
      "000008010093",
      "000008010064",
      "000008011314",
      "000008010004",
      "000008013313",
      "000008013238",
      "000008012968",
      "000008010282",
      "000008012418",
      "000008010268",
      "000008010179",
      "000008011536",
      "000008011438",
      "000008011044",
      "000008012021",
      "000008010396",
      "000008011723",
      "000008011694",
      "000008010139",
      "000008012358",
      "000008010338"
    ],
    [
      "000008011102",
      "000008013470",
      "000008011188",
      "000008010093",
      "000008010004"
    ],
    [
      "000008098160",
      "000008011102",
      "000008013470",
      "000008012819",
      "000008011188",
      "000008012329",
      "000008010093",
      "000008010064",
      "000008011314",
      "000008010004"
    ],
    [
      "000008011102",
      "000008010036",
      "000008013470",
      "000008012819",
      "000008011188",
      "000008012329",
      "000008010093",
      "000008010064",
      "000008011314",
      "000008010004",
      "000008012637",
      "000008012944",
      "000008012943"
    ],
    [
      "000008011102",
      "000008010036",
      "000008013470",
      "000008012819",
      "000008011188",
      "000008012329",
      "000008010093",
      "000008010064",
      "000008011314",
      "000008010004"
    ],
    [
      "000008010268",
      "000008010179",
      "000008011536",
      "000008011438",
      "000008011044",
      "000008012021",
      "000008010396",
      "000008011723",
      "000008011694",
      "000008010139",
      "000008012358",
      "000008010338"
    ],
    [
      "000008098160",
      "000008011102",
      "000008013470",
      "000008010093",
      "000008010064",
      "000008011314",
      "000008010004",
      "000008013313",
      "000008013238",
      "000008012968",
      "000008010282",
      "000008012418",
      "000008010268",
      "000008010179",
      "000008011536",
      "000008011438",
      "000008011044",
      "000008012021",
      "000008010396",
      "000008011723",
      "000008011694",
      "000008010139",
      "000008012358",
      "000008010338"
    ],
    [
      "000008011102",
      "000008013470",
      "000008010093",
      "000008010064",
      "000008011314",
      "000008010004",
      "000008013313",
      "000008013238",
      "000008012968",
      "000008010282",
      "000008012418",
      "000008010268",
      "000008010179",
      "000008011536",
      "000008011438",
      "000008011044",
      "000008012021",
      "000008010396",
      "000008011723",
      "000008011694",
      "000008010139",
      "000008012358",
      "000008010338"
    ],
    [
      "000008098160",
      "000008011102",
      "000008010036",
      "000008013470",
      "000008010093",
      "000008010064",
      "000008011314",
      "000008010004",
      "000008013313",
      "000008013238",
      "000008012968",
      "000008010282"
    ],
    [
      "000008011102",
      "000008010036",
      "000008013470",
      "000008010093",
      "000008010064",
      "000008011314",
      "000008010004",
      "000008013313",
      "000008013238",
      "000008012968",
      "000008010282",
      "000008012418",
      "000008010268",
      "000008010179",
      "000008011536",
      "000008011438",
      "000008011044",
      "000008012021",
      "000008010396",
      "000008011723",
      "000008011694",
      "000008010139",
      "000008012358",
      "000008010338"
    ],
    [
      "000008098160",
      "000008011102",
      "000008013470",
      "000008012819",
      "000008011188",
      "000008012329",
      "000008010093",
      "000008010064",
      "000008011314",
      "000008010004",
      "000008013313",
      "000008013238",
      "000008012968",
      "000008010282",
      "000008012418",
      "000008010268",
      "000008010179",
      "000008011536",
      "000008011438",
      "000008011044",
      "000008012021",
      "000008010396",
      "000008011723",
      "000008011694",
      "000008010139",
      "000008012358",
      "000008013352",
      "000008010338"
    ],
    [
      "000008010004",
      "000008013313",
      "000008013238",
      "000008012968",
      "000008010282",
      "000008012418",
      "000008010268",
      "000008010179",
      "000008011536",
      "000008011438",
      "000008011044",
      "000008012021",
      "000008010396",
      "000008011723",
      "000008011694",
      "000008010139",
      "000008012358",
      "000008013352",
      "000008010338"
    ],
    [
      "000008098160",
      "000008011118",
      "000008011113",
      "000008011041",
      "000008010215",
      "000008013123",
      "000008013137",
      "000008012260",
      "000008010182",
      "000008012487",
      "000008011210",
      "000008013371",
      "000008010222"
    ],
    [
      "000008098160",
      "000008011118",
      "000008011113",
      "000008011041",
      "000008010215",
      "000008013123",
      "000008013137",
      "000008013345",
      "000008012260",
      "000008010182",
      "000008012552",
      "000008013384",
      "000008012233",
      "000008011909",
      "000008011867",
      "000008010103"
    ],
    [
      "000008098160",
      "000008011118",
      "000008011113",
      "000008011041",
      "000008010215",
      "000008013123",
      "000008013137",
      "000008013345",
      "000008012260",
      "000008010182",
      "000008012552",
      "000008013384",
      "000008012233",
      "000008011909",
      "000008011867",
      "000008010103",
      "000008011078",
      "000008010100"
    ],
    [
      "000008098160",
      "000008011118",
      "000008011113",
      "000008011041",
      "000008010215",
      "000008013123",
      "000008013137",
      "000008012260",
      "000008010182",
      "000008012487",
      "000008011210",
      "000008013371",
      "000008011290",
      "000008013418",
      "000008010222"
    ],
    [
      "000008010338",
      "000008012358",
      "000008010139",
      "000008011694",
      "000008011723",
      "000008010396",
      "000008012021",
      "000008011044",
      "000008011438",
      "000008011536",
      "000008010179",
      "000008010268",
      "000008012418",
      "000008010282",
      "000008012968",
      "000008013238",
      "000008013313",
      "000008010004",
      "000008011314",
      "000008010064",
      "000008010093",
      "000008013470",
      "000008011102",
      "000008098160",
      "000008011118",
      "000008011113",
      "000008011041",
      "000008010215",
      "000008013123",
      "000008013137",
      "000008013345",
      "000008012260",
      "000008010182",
      "000008012552",
      "000008013384",
      "000008012233",
      "000008011909",
      "000008011867",
      "000008010103",
      "000008011078",
      "000008010100"
    ],
    [
      "000008098160",
      "000008011118",
      "000008011113",
      "000008011041",
      "000008013100",
      "000008011740",
      "000008080170",
      "000008010215",
      "000008013123",
      "000008013137",
      "000008013345",
      "000008012260",
      "000008010182"
    ],
    [
      "000008012943",
      "000008012944",
      "000008012637",
      "000008010004",
      "000008011314",
      "000008010064",
      "000008010093",
      "000008013470",
      "000008010036",
      "000008011102",
      "000008098160"
    ],
    [
      "000008012943",
      "000008012944",
      "000008012637",
      "000008010004",
      "000008011314",
      "000008010064",
      "000008010093",
      "000008013470",
      "000008011102",
      "000008098160",
      "000008011118",
      "000008011113",
      "000008011041",
      "000008013100",
      "000008011740",
      "000008080170",
      "000008010215",
      "000008013123",
      "000008013137",
      "000008012260",
      "000008010182",
      "000008012487",
      "000008011210",
      "000008013371",
      "000008011290",
      "000008013418",
      "000008010222"
    ],
    [
      "000008012943",
      "000008012944",
      "000008012637",
      "000008010004",
      "000008011314",
      "000008010064",
      "000008010093",
      "000008013470",
      "000008011102",
      "000008098160"
    ],
    [
      "000008010282",
      "000008012968",
      "000008013238",
      "000008013313",
      "000008010004"
    ],
    [
      "000008010282",
      "000008012968",
      "000008013238",
      "000008013313",
      "000008010004",
      "000008011314",
      "000008010064",
      "000008010093",
      "000008013470",
      "000008010036",
      "000008011102",
      "000008098160"
    ],
    [
      "000008010093",
      "000008012329",
      "000008011188",
      "000008012819",
      "000008013470",
      "000008010036",
      "000008011102",
      "000008098160"
    ],
    [
      "000008011102",
      "000008098160",
      "000008011118",
      "000008011113"
    ],
    [
      "000008010093",
      "000008012329",
      "000008011188",
      "000008012819",
      "000008013470",
      "000008011102",
      "000008098160",
      "000008011118",
      "000008011113"
    ],
    [
      "000008010036",
      "000008011102",
      "000008098160"
    ],
    [
      "000008012943",
      "000008012944",
      "000008012637",
      "000008010004"
    ],
    [
      "000008098160",
      "000008011118",
      "000008011113",
      "000008011041",
      "000008013100",
      "000008011740",
      "000008080170",
      "000008010215",
      "000008013123",
      "000008013137",
      "000008013345",
      "000008012260",
      "000008010182",
      "000008010222",
      "000008012280",
      "000008010077",
      "000008010050",
      "000008010159"
    ],
    [
      "000008011102",
      "000008098160"
    ],
    [
      "000008011113",
      "000008011041",
      "000008013100",
      "000008011740",
      "000008080170",
      "000008010215",
      "000008013123",
      "000008013137",
      "000008013345",
      "000008012260",
      "000008010182"
    ],
    [
      "000008010036",
      "000008011102",
      "000008098160",
      "000008011118",
      "000008011113"
    ],
    [
      "000008010093",
      "000008012329",
      "000008011188",
      "000008012819",
      "000008013470",
      "000008010036",
      "000008011102",
      "000008098160",
      "000008011118",
      "000008011113"
    ],
    [
      "000008012943",
      "000008012944",
      "000008012637",
      "000008010004",
      "000008011314",
      "000008010064",
      "000008010093",
      "000008013470",
      "000008011102",
      "000008098160",
      "000008011118",
      "000008011113",
      "000008011041",
      "000008010215",
      "000008013123",
      "000008013137",
      "000008012260",
      "000008010182",
      "000008012487",
      "000008011210",
      "000008013371",
      "000008010222"
    ],
    [
      "000008012943",
      "000008012944",
      "000008012637",
      "000008010004",
      "000008011314",
      "000008010064",
      "000008010093",
      "000008013470",
      "000008010036"
    ],
    [
      "000008012943",
      "000008012944",
      "000008012637",
      "000008010004",
      "000008011314",
      "000008010064",
      "000008010093",
      "000008013470",
      "000008010036",
      "000008011102"
    ],
    [
      "000008010004",
      "000008011314",
      "000008010064",
      "000008010093",
      "000008013470",
      "000008011102",
      "000008098160",
      "000008011118",
      "000008011113",
      "000008011041",
      "000008010215",
      "000008013123",
      "000008013137",
      "000008012260",
      "000008010182",
      "000008012487",
      "000008011210",
      "000008013371",
      "000008010222"
    ],
    [
      "000008098160",
      "000008011118",
      "000008011113",
      "000008011041",
      "000008013100",
      "000008011740",
      "000008080170",
      "000008010215",
      "000008013123",
      "000008013137",
      "000008012260",
      "000008010182",
      "000008012487",
      "000008011210",
      "000008013371",
      "000008011290",
      "000008013418",
      "000008010222"
    ],
    [
      "000008010338",
      "000008012358",
      "000008010139",
      "000008011694",
      "000008011723",
      "000008010396",
      "000008012021",
      "000008011044",
      "000008011438",
      "000008011536",
      "000008010179",
      "000008010268"
    ],
    [
      "000008010338",
      "000008012358",
      "000008010139",
      "000008011694",
      "000008011723",
      "000008010396",
      "000008012021",
      "000008011044",
      "000008011438",
      "000008011536",
      "000008010179",
      "000008010268",
      "000008012418",
      "000008010282",
      "000008012968",
      "000008013238",
      "000008013313",
      "000008010004",
      "000008011314",
      "000008010064",
      "000008010093",
      "000008013470",
      "000008010036",
      "000008011102"
    ],
    [
      "000008010338",
      "000008012358",
      "000008010139",
      "000008011694",
      "000008011723",
      "000008010396",
      "000008012021",
      "000008011044",
      "000008011438",
      "000008011536",
      "000008010179",
      "000008010268",
      "000008012418",
      "000008010282",
      "000008012968",
      "000008013238",
      "000008013313",
      "000008010004",
      "000008011314",
      "000008010064",
      "000008010093",
      "000008013470",
      "000008010036",
      "000008011102",
      "000008098160"
    ],
    [
      "000008010093",
      "000008013470",
      "000008010036",
      "000008011102",
      "000008098160"
    ],
    [
      "000008010338",
      "000008012358",
      "000008010139",
      "000008011694",
      "000008011723",
      "000008010396",
      "000008012021",
      "000008011044",
      "000008011438",
      "000008011536",
      "000008010179",
      "000008010268",
      "000008012418",
      "000008010282",
      "000008012968",
      "000008013238",
      "000008013313",
      "000008010004",
      "000008011314",
      "000008010064",
      "000008010093",
      "000008012329",
      "000008011188",
      "000008012819",
      "000008013470",
      "000008011102",
      "000008098160"
    ],
    [
      "000008010093",
      "000008011188",
      "000008013470",
      "000008010036",
      "000008011102"
    ],
    [
      "000008010268",
      "000008012418",
      "000008010282",
      "000008012968",
      "000008013238",
      "000008013313",
      "000008010004",
      "000008011314",
      "000008010064",
      "000008010093",
      "000008011188",
      "000008013470",
      "000008011102",
      "000008098160",
      "000008011118",
      "000008011113"
    ],
    [
      "000008010338",
      "000008010139",
      "000008011694",
      "000008010396",
      "000008011044",
      "000008010268",
      "000008012418",
      "000008010282",
      "000008012968",
      "000008013238",
      "000008013313",
      "000008010004",
      "000008011314",
      "000008010064",
      "000008010093",
      "000008011188",
      "000008013470",
      "000008011102",
      "000008098160",
      "000008011118",
      "000008011113"
    ],
    [
      "000008010338",
      "000008012358",
      "000008010139",
      "000008011694",
      "000008011723",
      "000008010396",
      "000008012021",
      "000008011044",
      "000008011438",
      "000008011536",
      "000008010179",
      "000008010268",
      "000008012418",
      "000008010282",
      "000008012968",
      "000008013238",
      "000008013313",
      "000008010004",
      "000008011314",
      "000008010064",
      "000008010093",
      "000008013470",
      "000008011102",
      "000008098160",
      "000008011118",
      "000008011113",
      "000008011041",
      "000008010215",
      "000008013123",
      "000008013137",
      "000008013345",
      "000008012260",
      "000008010182",
      "000008012552",
      "000008013384",
      "000008012233",
      "000008011909",
      "000008011867",
      "000008010103"
    ],
    [
      "000008010338",
      "000008012358",
      "000008010139",
      "000008011694",
      "000008011723",
      "000008010396",
      "000008012021",
      "000008011044",
      "000008011438",
      "000008011536",
      "000008010179",
      "000008010268",
      "000008012418",
      "000008010282",
      "000008012968",
      "000008013238",
      "000008013313",
      "000008010004",
      "000008011314",
      "000008010064",
      "000008010093",
      "000008012329",
      "000008011188",
      "000008012819",
      "000008013470",
      "000008010036",
      "000008011102",
      "000008098160"
    ],
    [
      "000008010338",
      "000008012358",
      "000008010139",
      "000008011694",
      "000008011723",
      "000008010396",
      "000008012021",
      "000008011044",
      "000008011438",
      "000008011536",
      "000008010179",
      "000008010268",
      "000008012418",
      "000008010282",
      "000008012968",
      "000008013238",
      "000008013313",
      "000008010004",
      "000008011314",
      "000008010064",
      "000008010093",
      "000008013470",
      "000008011102",
      "000008098160"
    ],
    [
      "000008010093",
      "000008011188",
      "000008013470",
      "000008011102",
      "000008098160",
      "000008011118",
      "000008011113"
    ],
    [
      "000008010338",
      "000008012358",
      "000008010139",
      "000008011694",
      "000008011723",
      "000008010396",
      "000008012021",
      "000008011044",
      "000008011438",
      "000008011536",
      "000008010179",
      "000008010268",
      "000008012418",
      "000008010282",
      "000008012968",
      "000008013238",
      "000008013313",
      "000008010004"
    ],
    [
      "000008010004",
      "000008011314",
      "000008010064",
      "000008010093",
      "000008012329",
      "000008011188",
      "000008012819",
      "000008013470",
      "000008010036",
      "000008011102",
      "000008098160"
    ],
    [
      "000008010268",
      "000008012418",
      "000008010282",
      "000008012968",
      "000008013238",
      "000008013313",
      "000008010004",
      "000008011314",
      "000008010064",
      "000008010093",
      "000008013470",
      "000008010036",
      "000008011102"
    ],
    [
      "000008010268",
      "000008012418",
      "000008010282",
      "000008012968",
      "000008013238",
      "000008013313",
      "000008010004",
      "000008011314",
      "000008010064",
      "000008010093",
      "000008013470",
      "000008011102",
      "000008098160",
      "000008011118",
      "000008011113",
      "000008011041",
      "000008010215",
      "000008013123",
      "000008013137",
      "000008013345",
      "000008012260",
      "000008010182",
      "000008012552",
      "000008013384",
      "000008012233",
      "000008011909",
      "000008011867",
      "000008010103"
    ],
    [
      "000008010093",
      "000008012329",
      "000008011188",
      "000008012819",
      "000008013470",
      "000008011102",
      "000008098160",
      "000008011118",
      "000008011113",
      "000008011041",
      "000008010215",
      "000008013123",
      "000008013137",
      "000008013345",
      "000008012260",
      "000008010182",
      "000008012552",
      "000008013384",
      "000008012233",
      "000008011909",
      "000008011867",
      "000008010103"
    ],
    [
      "000008010004",
      "000008011314",
      "000008010064",
      "000008010093",
      "000008012329",
      "000008011188",
      "000008012819",
      "000008013470",
      "000008011102",
      "000008098160",
      "000008011118",
      "000008011113",
      "000008011041",
      "000008010215",
      "000008013123",
      "000008013137",
      "000008013345",
      "000008012260",
      "000008010182",
      "000008012552",
      "000008013384",
      "000008012233",
      "000008011909",
      "000008011867",
      "000008010103"
    ]
  ]
}
{
  "id": "10888_100",
  "name": "RE3",
  "agencyId": "108",
  "type": "regional",
  "variants": [
    [
      "000008010222",
      "000008013371",
      "000008011210",
      "000008012487",
      "000008010182",
      "000008012260",
      "000008013137",
      "000008013123",
      "000008010215",
      "000008011041",
      "000008011113",
      "000008011118",
      "000008098160"
    ],
    [
      "000008010222",
      "000008013418",
      "000008011290",
      "000008013371",
      "000008011210",
      "000008012487",
      "000008010182",
      "000008012260",
      "000008013345",
      "000008013137",
      "000008013123",
      "000008010215",
      "000008080170",
      "000008011740",
      "000008013100",
      "000008011041",
      "000008011113",
      "000008011118",
      "000008098160"
    ],
    [
      "000008010222",
      "000008013418",
      "000008011290",
      "000008013371",
      "000008011210",
      "000008012487",
      "000008010182",
      "000008012260",
      "000008013345",
      "000008013137",
      "000008013123",
      "000008010215",
      "000008080170",
      "000008011740",
      "000008013100",
      "000008011041",
      "000008011113",
      "000008011118",
      "000008098160",
      "000008011102",
      "000008010036",
      "000008013470",
      "000008012819",
      "000008011188",
      "000008012329",
      "000008010093"
    ],
    [
      "000008010222",
      "000008013371",
      "000008011210",
      "000008012487",
      "000008010182",
      "000008012260",
      "000008013137",
      "000008013123",
      "000008010215",
      "000008011041",
      "000008011113",
      "000008011118",
      "000008098160",
      "000008011102",
      "000008013470",
      "000008012819",
      "000008011188",
      "000008012329",
      "000008010093",
      "000008010064",
      "000008011314",
      "000008010004",
      "000008012637",
      "000008012944",
      "000008012943"
    ],
    [
      "000008010222",
      "000008013371",
      "000008011210",
      "000008012487",
      "000008010182",
      "000008012260",
      "000008013137",
      "000008013123",
      "000008010215",
      "000008011041",
      "000008011113",
      "000008011118",
      "000008098160",
      "000008011102",
      "000008013470",
      "000008012819",
      "000008011188",
      "000008012329",
      "000008010093"
    ],
    [
      "000008010222",
      "000008013418",
      "000008011290",
      "000008013371",
      "000008011210",
      "000008012487",
      "000008010182",
      "000008012260",
      "000008013137",
      "000008013123",
      "000008010215",
      "000008011041",
      "000008011113",
      "000008011118",
      "000008098160"
    ],
    [
      "000008010159",
      "000008010050",
      "000008012409",
      "000008011296",
      "000008011683",
      "000008012704",
      "000008011150",
      "000008010281",
      "000008010222",
      "000008013418",
      "000008011290",
      "000008013371",
      "000008011210",
      "000008012487",
      "000008010182",
      "000008012260",
      "000008013137",
      "000008013123",
      "000008010215",
      "000008011041",
      "000008011113",
      "000008011118",
      "000008098160"
    ],
    [
      "000008010103",
      "000008011867",
      "000008011909",
      "000008012233",
      "000008013384",
      "000008012552",
      "000008010182",
      "000008012260",
      "000008013345",
      "000008013137",
      "000008013123",
      "000008010215",
      "000008011041",
      "000008011113",
      "000008011118",
      "000008098160"
    ],
    [
      "000008010100",
      "000008011078",
      "000008010103",
      "000008011867",
      "000008011909",
      "000008012233",
      "000008013384",
      "000008012552",
      "000008010182",
      "000008012260",
      "000008013345",
      "000008013137",
      "000008013123",
      "000008010215",
      "000008011041",
      "000008011113",
      "000008011118",
      "000008098160"
    ],
    [
      "000008010222",
      "000008013418",
      "000008011290",
      "000008013371",
      "000008011210",
      "000008012487",
      "000008010182",
      "000008012260",
      "000008013345",
      "000008013137",
      "000008013123",
      "000008010215",
      "000008080170",
      "000008011740",
      "000008013100",
      "000008011041",
      "000008011113",
      "000008011118",
      "000008098160",
      "000008011102",
      "000008013470",
      "000008012819",
      "000008011188",
      "000008012329",
      "000008010093"
    ],
    [
      "000008010222",
      "000008013418",
      "000008011290",
      "000008013371",
      "000008011210",
      "000008012487",
      "000008010182",
      "000008012260",
      "000008013345",
      "000008013137",
      "000008013123",
      "000008010215",
      "000008080170",
      "000008011740",
      "000008013100",
      "000008011041",
      "000008011113",
      "000008011118",
      "000008098160",
      "000008011102"
    ],
    [
      "000008010222",
      "000008013371",
      "000008011210",
      "000008012487",
      "000008010182",
      "000008012260",
      "000008013137",
      "000008013123",
      "000008010215",
      "000008011041",
      "000008011113",
      "000008011118",
      "000008098160",
      "000008011102",
      "000008013470",
      "000008010093",
      "000008010064",
      "000008011314",
      "000008010004",
      "000008012637",
      "000008012944",
      "000008012943"
    ],
    [
      "000008010159",
      "000008011905",
      "000008012147",
      "000008011260",
      "000008012788",
      "000008010050",
      "000008012409",
      "000008011296",
      "000008011683",
      "000008012704",
      "000008011150",
      "000008010281",
      "000008010222",
      "000008013418",
      "000008011290",
      "000008013371",
      "000008011210",
      "000008012487",
      "000008010182",
      "000008012260",
      "000008013137",
      "000008013123",
      "000008010215",
      "000008011041",
      "000008011113",
      "000008011118",
      "000008098160"
    ],
    [
      "000008010100",
      "000008011078",
      "000008010103",
      "000008011867",
      "000008011909",
      "000008012233",
      "000008013384",
      "000008012552",
      "000008010182",
      "000008012260",
      "000008013345",
      "000008013137",
      "000008013123",
      "000008010215",
      "000008011041",
      "000008011113",
      "000008011118",
      "000008098160",
      "000008011102",
      "000008013470",
      "000008010093",
      "000008010064",
      "000008011314",
      "000008010004",
      "000008013313",
      "000008013238",
      "000008012968",
      "000008010282",
      "000008012418",
      "000008010268",
      "000008010179",
      "000008011536",
      "000008011438",
      "000008011044",
      "000008012021",
      "000008010396",
      "000008011723",
      "000008011694",
      "000008010139",
      "000008012358",
      "000008010338"
    ],
    [
      "000008010103",
      "000008011867",
      "000008011909",
      "000008012233",
      "000008013384",
      "000008012552",
      "000008010182",
      "000008012260",
      "000008013345",
      "000008013137",
      "000008013123",
      "000008010215",
      "000008011041",
      "000008011113",
      "000008011118",
      "000008098160",
      "000008011102",
      "000008013470",
      "000008010093",
      "000008010064",
      "000008011314",
      "000008010004",
      "000008013313",
      "000008013238",
      "000008012968",
      "000008010282",
      "000008012418",
      "000008010268",
      "000008010179",
      "000008011536",
      "000008011438",
      "000008011044",
      "000008012021",
      "000008010396",
      "000008011723",
      "000008011694",
      "000008010139",
      "000008012358",
      "000008010338"
    ],
    [
      "000008010100",
      "000008011078",
      "000008010103",
      "000008011867",
      "000008011909",
      "000008012233",
      "000008013384",
      "000008012552",
      "000008010182",
      "000008012260",
      "000008013345",
      "000008013137",
      "000008013123",
      "000008010215",
      "000008011041",
      "000008011113",
      "000008011118",
      "000008098160",
      "000008011102",
      "000008013470",
      "000008012819",
      "000008011188",
      "000008012329",
      "000008010093",
      "000008010064",
      "000008011314",
      "000008010004",
      "000008012637",
      "000008012944",
      "000008012943"
    ],
    [
      "000008010100",
      "000008011078",
      "000008010103",
      "000008011867",
      "000008011909",
      "000008012233",
      "000008013384",
      "000008012552",
      "000008010182",
      "000008012260",
      "000008013345",
      "000008013137",
      "000008013123",
      "000008010215",
      "000008011041",
      "000008011113",
      "000008011118",
      "000008098160",
      "000008011102",
      "000008013470",
      "000008012819",
      "000008011188",
      "000008012329",
      "000008010093",
      "000008010064",
      "000008011314",
      "000008010004"
    ],
    [
      "000008010100",
      "000008011078",
      "000008010103",
      "000008011867",
      "000008011909",
      "000008012233",
      "000008013384",
      "000008012552",
      "000008010182",
      "000008012260",
      "000008013345",
      "000008013137",
      "000008013123",
      "000008010215",
      "000008011041",
      "000008011113",
      "000008011118",
      "000008098160",
      "000008011102"
    ],
    [
      "000008010222",
      "000008013418",
      "000008011290",
      "000008013371",
      "000008011210",
      "000008012487",
      "000008010182",
      "000008012260",
      "000008013137",
      "000008013123",
      "000008010215",
      "000008011041",
      "000008011113",
      "000008011118",
      "000008098160",
      "000008011102",
      "000008013470",
      "000008010093",
      "000008010064",
      "000008011314",
      "000008010004",
      "000008012637",
      "000008012944",
      "000008012943"
    ],
    [
      "000008010159",
      "000008010050",
      "000008012409",
      "000008011296",
      "000008011683",
      "000008012704",
      "000008011150",
      "000008010281",
      "000008010222",
      "000008013418",
      "000008011290",
      "000008013371",
      "000008011210",
      "000008012487",
      "000008010182",
      "000008012260",
      "000008013137",
      "000008013123",
      "000008010215",
      "000008011041",
      "000008011113",
      "000008011118",
      "000008098160",
      "000008011102",
      "000008013470",
      "000008010093",
      "000008010064",
      "000008011314",
      "000008010004",
      "000008012637",
      "000008012944",
      "000008012943"
    ],
    [
      "000008010103",
      "000008011078",
      "000008010100"
    ]
  ]
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.