Jochen Topf
Jochen Topf
And maybe we should just use `snprintf` to tell us how long the output will be? See second paragraph under [Notes](https://en.cppreference.com/w/cpp/io/c/snprintf#Return_value). Unless that's much more expensive than the `log()`.
I have fixed this in a242ddc7 with an extra function. Thanks @ginnyTheCat for reporting this and providing the fix.
That's because the search is implemented using a full-text search with tokenization. The data is broken into words at non-alphabetical characters, so `semidetached_house` is broken into `semidetached` and `house`. You...
I have removed use of sqlite3-pcre completely from taginfo now.
That's a tricky one. The underlying problem is that there are no wiki pages with a space in them. The wiki automatically turns spaces into underscores (`_`) when you create...
My "immediate" use case would be this: Most nodes don't have any tags, the only thing that's important (for instance in osm2pgsql) is storing their location in some efficient storage...
We can not use that encoding in libosmium because it would break backwards compatibility. We need an encoding where the `undefined` value and all values between -90° and +90° are...
@patrickbr Because current versions of the library have written that data into files that new versions will have to read.
Unfortunately it is not that easy. `endian.h` is not part of the C++ standard, it isn't available on all platforms. And protozero is header-only, so there is no build-step we...