Andrew Bell
Andrew Bell
Version 1.7 only set environment variables that matched certain patterns. Version 1.8 sets all variables set by `vcvarsall`. This caused a failure on my application because the earlier code wouldn't...
--- **Description:** This fixes all warnings building on OSX-clang 12.0.5 I have no good ability to test so changes should be checked carefully. Please take note of the apparently useless...
Hi, Is there some reason why the non-inline functions in delaunator.hpp aren't in a source (.cpp) file? The functions aren't inlined, which makes including the header file in more than...
This is a first step at changing the viewshed code to break up an overly long algorithm and increase efficiency.
store_into captures the default value at the time it is called, rather than at parse time. This arrangement ignores the default argument if default_value is called for an argument after...
This changes the implementation to use functions and uses threads for the separable bits. It also merges the two result vectors into one.
### Feature description CPLList isn't good code and it shouldn't be used. Linked lists in general shouldn't be used on modern CPUs except in special circumstances. ### Additional context That...
Allow integer literals as default values in store_into for numeric types.
This adds support for cumulative viewsheds. I've changed the C++ interface from earlier a little bit, but it's trivial (some support structures were moved out of the Viewshed class and...