Peter Johnson

Results 1014 comments of Peter Johnson

This is my hacky workaround of the 1st behaviour I mentioned: ``` bash diff --git a/lib/main.js b/lib/main.js index a3b254a..6f7c85a 100644 --- a/lib/main.js +++ b/lib/main.js @@ -40,6 +40,8 @@ module.exports =...

This is the solution I found the best for my use case: https://github.com/missinglink/osm-read/compare/marook:master...streams Note: this only works for the pbfParser at this stage so I didn't open a PR for...

heya, I shipped by streaming osm module today, which is based on `osm-read`, so thank you for everything. https://github.com/geopipes/openstreetmap-stream At the moment it's pointing to my fork because I need...

Sounds good. IMHO the streaming model (advancing iterator only by calling with `next()`) is much easier to deal with than a pause/resume approach. This was one of the major design...

hey @bekite you can also try using this lib https://github.com/geopipes/openstreetmap-stream which is based on `osm-read`. If you don't call `next()` in the consuming stream you'll only get 1 record. We...

This was caused by passing a reference to another go routine via a `chan *geos.Geometry`. Refactoring the code to do all operations within the scope of a single function avoided...

hi, sorry for the late reply. you could manually handle the queuing of urls by removing the `recurse`extension. doing so would mean that the clawler would only crawl a single...

:+1: I also get this error on one computer but not another, not sure what's going on here? the machine in question is a recently rebuilt `Ubuntu 15.10` box, is...

Hi again, once you've converted your data to the same format as WOF you can use our bundling tools to package them up as a SQLite database. . https://github.com/pelias/wof For...

The global file is a concatenation of the country files, so while it's not the fastest running solution you can use `wof sqlite export` to dump all the features from...