pbf2json icon indicating copy to clipboard operation
pbf2json copied to clipboard

An OpenStreetMap pbf parser which exports json, allows you to cherry-pick tags and handles denormalizing ways and relations. Available as a standalone binary and comes with a convenient npm wrapper.

Results 12 pbf2json issues
Sort by recently updated
recently updated
newest added

an additional filter in addition to _-tags_ would be useful called _-type_ with one of the following values; node, way, relation ### Use-cases useful to further subdivide the output obtained...

enhancement

On the Mac ARM machines this one test fails due to -0 != +0 ``` go test --- FAIL: TestComputeCentroidForClosedPolygon (0.00s) centroid_test.go:84: Error Trace: centroid_test.go:84 Error: Not equal: expected: "0.0000000"...

bug

this PR rewrites some older code in a clearer way, which opens it up for extension. in particular issue https://github.com/pelias/pbf2json/issues/96 could benefit from this refactor some notes on what this...

**Describe the bug** Currently, centroids of relations are being calculated by detecting the largest area and calculating the centroid of it. This is broken for some relations, since members of...

bug

*** ☝️ **Important announcement:** Greenkeeper will be saying goodbye 👋 and passing the torch to Snyk on June 3rd, 2020! [Find out how to migrate to Snyk and more at...

greenkeeper

*** ☝️ **Important announcement:** Greenkeeper will be saying goodbye 👋 and passing the torch to Snyk on June 3rd, 2020! [Find out how to migrate to Snyk and more at...

greenkeeper

### Use-cases The user should be able to figure out: - How to get the latest pre-built binary - What is the version number of a given pre-built binary ###...

enhancement

optionally print record metadata such as `version` and `timestamp` by specifying the `--metadata=true` flag. Eg. ```javascript { "id": 26882421, "type": "node", "lat": 52.484265400000005, "lon": 13.320669100000002, "tags": { "amenity": "fuel", "name":...

In Pelias, we have two places named 'Markthalle Neun': - https://www.openstreetmap.org/node/1955564757 - https://www.openstreetmap.org/way/37465046 The node is actually part of the way, so we could consider detecting this and only outputting...

It'd be great to be able to do: ``` npm install -g pbf2json pbf2json ... ``` I'm guessing that what needs to happen is during the install process, it sets...