Richard Fairhurst

Results 314 comments of Richard Fairhurst

In real-world usage there is often a very good reason _not_ to include OSM ids, which is that it stops features with otherwise identical tags being merged in the output...

@etienneJr That's out of scope for this repo - this issue is for tracking what goes into the Shortbread spec, not any particular deployment on osm.org or any other site....

> Because given 5 separate nearby benches with otherwise identical tags: why should they be merged? Because the MVT representation is more efficient. Unmerged, it looks like this: > bench...

Ruby appears to be happy to hoist a definition outside the layer in which it's defined. So, for example, I have: ```ruby layer(:roads_casing_11, :zoom=>11..12, :source_layer=>:roads) { Is_Minor = _!(type.in(MAIN_ROADS)) Is_Rural_Minor...

Thanks for this! Would you be able to update https://github.com/isaacbrodsky/h3-android-sample to include the latest .jar?

P2 handles it via a magic keypress (of course): select shared node, press / to cycle through all the ways that use that node.

It might be interesting to integrate Wikidata QRank, not just for cities/towns but for other features such as mountain peaks: https://github.com/brawer/wikidata-qrank

This is probably something you want to implement as a GeoJSON overlay layer in your client (Maplibre GL or similar) rather than baking into your vector tiles. But if you...

That appears to be imposm and this is the repository for tilemaker?

I had a similar issue and fixed it in `toContainer` as follows: var pxPageHeight = this.prop.pageSize.inner.px.height; // Check all requested modes. var ratio = this.prop.src.clientWidth / this.prop.pageSize.inner.px.width; pxPageHeight *= ratio;