Jochen Topf
Jochen Topf
I usually just use `getopt_long()` available in libc for simpler cases. The interface is C and not C++ and slightly ugly. But for many cases this is simple enough and...
Something to investigate: [Clara](https://github.com/philsquared/Clara) "A simple to use, composable, command line parser for C++ 11 and beyond". By the same guy who created the Catch unit test framework.
My experience with Clara so far: Positive: * Easy to use, clean code. * Easy to integrate 42k header file. * In active development. Negative: * Documentation is not complete....
One important tip here: All code that is `#include`d from somewhere outside your own code should be included as system library by having the right include path configuration. Use `-isystem...
@matkoniecz I have. Because that's a welcome message und people should start their own threads for own topics. It doesn't make sense to have everything in one topic. This Github...
Including the bounding rectangle would help with only one specific use-case, namely creating some kind of geographical extract of the data. Adding the node locations to the ways as implemented...
@tyrasd No, this can't work on full history files, because a node might change while the way using it didn't change. In effect we would have to make two way...
Translating the tag key/value strings just by the numbers without having humans in the loop who understand the meaning and use of the tags is probably going to create a...
I couldn't find any real documentation on the pgoutput plugin. I am all for using something that's already there instead our own implementation, but is it intended as something that...
Are you sure osmdbt is the right tool for whatever it is that you are trying to do? What are you trying to do?