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

fetch-bvg-occupancy

v1.0.1

Published

Scrape average occupancies of Berlin public transport's lines.

Downloads

23

Readme

fetch-bvg-occupancy

Scrape the average occupancy of BVG lines from their Power BI Report.

npm version ISC-licensed minimum Node.js version support me via GitHub Sponsors chat with me on Twitter

Installation

npm install fetch-bvg-occupancy

Usage

const {scrapeLines, scrapeOccupancies} = require('fetch-bvg-occupancy')

const lines = await scrapeLines()
console.log('lines', ...lines)

const occupancies = await scrapeOccupancies(lines[0])
console.log(occupancies)
lines 100 101 104 108 110 112 114 122 123 124 125 130 131 133 134 135 137 139 140 142 147 150 154 160 164 166 169 175 179 187 191 192 194 197 200 221 240 245 247 248 249 255 256 260 269 271 275 277 282 291 294 296 300 371 372 377 395 398 399 744 M19 M21 M27 M29 M32 M36 M41 M44 M45 M46 M49 M76 M82 X10 X21 X33 X34 X54 X69 X83 12 16 18 21 27 37 50 60 61 67 68 M1 M2 M5 M6 M8 M10 M13 M17 U1

Map(2) {
	'(H) Hertzallee > Memhardstr.' => Map(18) {
		'(01) Hertzallee' => [
			[ 6, 0 ],     [ 7, null ],
			[ 8, null ],  [ 9, null ],
			[ 10, null ], [ 11, null ],
			[ 12, null ], [ 13, null ],
			[ 14, null ], [ 15, null ],
			[ 16, null ], [ 17, null ],
			[ 18, null ], [ 19, null ],
			[ 20, null ]
		],
		'(02) S+U Zoologischer Garten' => [
			[ 6, 1 ],     [ 7, 0 ],
			[ 8, 1 ],     [ 9, 0 ],
			[ 10, 1 ],    [ 11, 0 ],
			[ 12, 1 ],    [ 13, null ],
			[ 14, null ], [ 15, null ],
			[ 16, null ], [ 17, 0 ],
			[ 18, null ], [ 19, null ],
			[ 20, null ]
		],
		// …
	},
	'(R) S+U Alexanderpl/Memhardstr.[Bus] > S+U Zoolog. Garten/Jebensstr.' => Map(16) {
		'(01) S+U Alexanderpl/Memhardstr.[Bus]' => [
			[ 6, null ],  [ 7, null ],
			[ 8, null ],  [ 9, null ],
			[ 10, null ], [ 11, null ],
			[ 12, null ], [ 13, null ],
			[ 14, null ], [ 15, null ],
			[ 16, null ], [ 17, null ],
			[ 18, null ], [ 19, null ],
			[ 20, null ]
		],
		'(02) Spandauer Str./Marienkirche' => [
			[ 6, null ],  [ 7, null ],
			[ 8, null ],  [ 9, null ],
			[ 10, null ], [ 11, 1 ],
			[ 12, 0 ],    [ 13, null ],
			[ 14, null ], [ 15, 1 ],
			[ 16, 0 ],    [ 17, null ],
			[ 18, null ], [ 19, null ],
			[ 20, null ]
		],
		// …
	}
}

Contributing

If you have a question or need support using fetch-bvg-occupancy, please double-check your code and setup first. If you think you have found a bug or want to propose a feature, use the issues page.