Paul Mach
Paul Mach
I'll look into that, but time is tight. Anyone want to submit a patch :)
My use-cases is parsing osm history files where the elements are ordered by type, id, version. I need them to be ordered like this to process all the versions of...
The filters are faster because they are parallelized. It's not really the serialization that is causing the problem. I don't think your use-case is a misuse of filters. If you...
Hi, I have been working though this problem for a while now as part of a side project to create accurate diffs and before/after states. The problem being, as described...
For what it's worth, this is the commit I used to fix it. There is an option to turn on `ReuseHTTPClient `. I also modified my use of the library...
I just created a PR, let the discussion start :) https://github.com/crowdmob/goamz/pull/248 It looks like this issue has been attacked before (https://github.com/crowdmob/goamz/pull/171, https://github.com/crowdmob/goamz/issues/108) but the changes were reverted. I don't know...
So I've been running this code over the weekend. First, for bulk usage, this has fixed my socket issues. I'm doing 1000qps with my script using this branch no problem....
Can you provide the data and tile number for the province, so I can debug? Possible issues are polygon not closed (endpoints not the same), or the wrong winding order....
I am not able to duplicate. One thing to consider is that Clip modifies the input data. If you need to reuse it then you need to `Clone()` it before...
> Sutherland-Hodgeman clip algorithm can not deal with polyon with hole and Concave polygon. Is that true? the [wikipedia page](https://en.wikipedia.org/wiki/Sutherland%E2%80%93Hodgman_algorithm) has an example of a concave polygon. From the [Vatti...