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

random-access-osm-pbf

v1.0.0

Published

get random access into an osm pbf file at a specified offset

Downloads

4

Readme

random-access-osm-pbf

Provides random access reads into an osm pbf file.

Usually when parsing pbf files, you have to start at the beginning and if the files are really large, then this can take a really long time. It's also not parellelizable.

With this module, you can provide start and end offsets into a pbf file and receive complete items as output. the start and end values don't have to match exact alignments in the pbf file. this module scans forward from those offsets to find the nearest correct alignment point.

api

var raOSM = require('random-access-osm-pbf')

var osm = raOSM(opts)

Creates a new stream which gets processed by osm-pbf-parser.

This module expects binary data from an osm pbf file as input and returns an object stream. The objects in the output stream are in the form described in osm-pbf-parser.

Each item in opts can have properties:

  • opts.start - start file offset (can be unaligned)
  • opts.end - end file offset (can be unaligned)
  • opts.size - size of the pbf file in bytes
  • opts.read(offset, length, cb) - function that reads length bytes from an offset and returns the data in cb(err, buf)
  • opts.header - use a previously-parsed header from a file to skip parsing

osm.on('header', fn)

Emits a header event when the header is parsed with the header value as fn(header). You can pass this header as opts.header to skip parsing later.

examples

In this example, we pass in the pbf file as the first argument, and a start and end offset as the second and third arguments.

var raOSM = require('random-access-osm-pbf')
var through = require('through2')
var raf = require('random-access-file')
var fs = require('fs')

var store = raf(process.argv[2])
var osm = raOSM({
  start: Number(process.argv[3]),
  end: Number(process.argv[4]),
  read: store.read.bind(store),
  size: fs.statSync(process.argv[2]).size
})
osm.pipe(through.obj(function write (items, enc, next) {
  console.log(items)
  next()
}))

the output comes out in this form:

{
  { type: 'node',
    id: 3705065232,
    lat: 50.0699066,
    lon: 36.177443600000004,
    tags: {},
    info:
     { version: 1,
       timestamp: 1440001911000,
       changeset: 33443945,
       uid: 719573,
       user: 'dimonster' } },
  { type: 'node',
    id: 3705065233,
    lat: 50.0699133,
    lon: 36.1576718,
    tags: {},
    info:
     { version: 1,
       timestamp: 1440001911000,
       changeset: 33443945,
       uid: 719573,
       user: 'dimonster' } }
}

install

npm install random-access-osm-pbf

license

BSD