Results 26 comments of blackboxlogic

Since our interactions have been limited, I'm having trouble judging if you're serious or not. I stair endlessly at that smiley face you added, hoping for it to reveal a...

Thank you for clarifying, I found my mistake. The reference image had the horizontal access labeled with 'W' and _increased_ leftward. I didn't notice that 'W' is the _negative_ of...

Elements are not indexed by their location so there is no built-in efficient way to retrieve them that way. You could either build your own collection using lat/lon as the...

Seems like you don't get anything when you read the file? Try: ``` using (var fileStream = File.OpenRead("tmp.osm.txt")) { XmlSerializer Serializer = new XmlSerializer(typeof(Osm)); var osm = (Osm)Serializer.Deserialize(fileStream); var way...

Also for Google email services: [email protected] is the same as [email protected] see: [here](https://gmail.googleblog.com/2008/03/2-hidden-ways-to-get-more-from-your.html?m=1)

There is no clear path for fixing this. If I got guidance, I can make a pull request. The problem is that Deletes are stored as an OsmGeo[] in OsmSharp.Changesets.OsmChange.Delete...

Please consider updating your public documentation to include a list of tags you will (or won't) use. That would address community questions like "will speed data be tagged?" or "will...

@mtmail I'm glad it's by design instead of a mistake. Did you consider any other options, maybe index the location as _both_ the tagged and inferred addresses? @lonvia Thanks for...

This did end up being a missing road, which I've fixed. You're detecting when addr:street doesn't match a nearby road and assuming the addr:street is wrong. For the record, in...

We're seeing a similar issue preventing deployments to IIS even after stopping the site because `git2- 106a5f2.dll` is in use by IIS. Windows does not allow us to delete the...