bryceco's Comments
Post | When | Comment | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Update: Who maps every day (without fail)? | Yeah, I agree those days should be excluded. |
|||||||||||||||||||
Who maps every day (without fail)? | Updated list here! |
|||||||||||||||||||
someone should praise me | Good job! đđđđđ |
|||||||||||||||||||
Vector Tile File Formats | The piece I was missing is that a single range request can ask for multiple non-adjacent ranges, so you can request an arbitrary number of non-sequential tiles in a single request. Thanks for the explanation. |
|||||||||||||||||||
Vector Tile File Formats | I saw Brandonâs presentation on pmtiles at SOTM US in Richmond but didnât really grok the significance. I now understand better what many of the advantages are, but I donât know enough about cloud services to understand the big reduction in cost. Is it because AWS charges based on number of files so by putting everything in a single file (and use range requests) you can hack the usage fees? Iâd really appreciate a more thorough explanation. |
|||||||||||||||||||
Check if POI website is active | So nice to see the fluent use of bash and the unix toolchain for this. It feels like itâs a dying art. There is a QA tool (I unfortunately donât recall which one) that does something similar, but also ensures that the POI name appears somewhere on the first page of the site. With a slightly longer awk script you could do the same. |
|||||||||||||||||||
An Essay I Wrote For My Town's Local Newsletter | Very nice! |
|||||||||||||||||||
Simple demo app that analyses OSM changeset data (and why modern file formats are cool) | You can also read the changeset data already hosted on AWS rather than uploading it yourself: osm.org/user/Jennings%20Anderson/diary/394762 |
|||||||||||||||||||
Who maps every day (without fail)? | @Aurimas FiĹĄeras Youâre right, and your streak is incredible! Table is updated with improved data. |
|||||||||||||||||||
The worst night club for a durty take away after chucking out time: Distance to the nearest fast food place for every nightclub | Lots of locales have food carts that never get mapped since theyâre not permanent structures, but are still relatively permanent establishments. |
|||||||||||||||||||
2022 Taiwan Street-view Expedition Series: Recaps on the 2nd Street-view Expedition | Thanks! |
|||||||||||||||||||
2022 Taiwan Street-view Expedition Series: Recaps on the 2nd Street-view Expedition | Lorry driver joke is inappropriate (and not in the TW version). |
|||||||||||||||||||
Google Summer of Code 2022 | If anyone else is curious about the map access statistics referenced here, itâs the number of times each map tile has been served by the tile server: https://planet.openstreetmap.org/tile_logs/ |
|||||||||||||||||||
Archaeological Discovery | Very interesting! |
|||||||||||||||||||
Finding OSM users who comment on changeset, but don't edit OSM | I didnât know about pbzip2, which I agree might be a big time saver. But the documentation says the input needs to have been compressed with pbzip2 to yield a speed up during decompression. Is that the case for the planet file dumps? |
|||||||||||||||||||
"Latest Changes" is mobile friendly now | Okay itâs working now. It would be great to have a button to zoom to your current location. |
|||||||||||||||||||
"Latest Changes" is mobile friendly now | I donât see any markers on iOS using either Safari or Firefox Focus (didnât try other browsers). |
|||||||||||||||||||
OpenStreetMap Isn't Unicode | A little more analysis, looking at the year the data was created indicates that new data is using Unicode, we just need to clean up the old data:
|
|||||||||||||||||||
OpenStreetMap Isn't Unicode | Should have pushed Preview before Publish:
|
|||||||||||||||||||
OpenStreetMap Isn't Unicode | It seems that as long as the editor apps enforce display of the data using Unicode, and intentionally not support Zawgyi and other non-Unicode fonts, that users will naturally be pushed to âdo the right thingâ when adding new data, or updating old data. I went through your file and pulled statistics about where the non-Unicode strings originated (to simplify things I only looked at objects that were version=1): 298 MAPS.ME 295 iD 121 JOSM 28 Vespucci 5 OSM Contributor 1 Potlatch 1 Go Map!! Around 10 mappers are responsible for > 50% of the strings, so perhaps a direct appeal to them would be effective. Itâs not clear whether the non-Unicode strings are intentional or simply a lack of guidance. While I agree that having native speakers do the translations is ideal, it would also be easy to have the same Google toolchain you used to do detection also do the âbest guessâ conversion to Unicode. Then native speakers could just confirm/fix the conversion. Or, if you want to be really fancy, you could display the Zwangyi font and Unicode font side-by-side and userâs could just confirm theyâre visually identical. |