SDFIdk / DHMQC

Processing suite for the Danish Digital Elevation Model

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Find a suitable replacement for Triangle

kbevers opened this issue · comments

Triangle is a very nice library but it in terms of licensing it is horrible. A new gridding library would allow us to simplify the install-script and let us distribute a pre-build package.

Alternatives to Triangle includes:

We need to figure out if any of the alternatives are usable. Are they fast enough? Producing the desired results? How big a change to the existing code-base is needed? Any license issues?

Qhull is an easy option, being used behind the scenes in the Delaunay and griddata functions in SciPy. Used in this way, it can triangulate 1 million random points in about 10 seconds.

Another interesting option could be porting the delaunator JavaScript library (ISC-licensed), which can apparently triangulate 1 million points in about 2 seconds. (Not to be confused with the Delaunator python library.)

The very fastest library I've heard of is fqDel (paper, slides), though no source seems available. The authors report being able to triangulate 1 million points in 0.2 seconds, a 4x speed improvement over Triangle.

We have experimented with Qhull before. At the time it wasn't as robust as Triangle and also slower. Things might have changed since, but I don't think so.

Another thing to this issue is that it would be preferable to use an existing Python module, so we limit the amount of code we have to maintain and also avoid compiling binaries as part of the installation Just a thing to keep in mind.

I have investigated a bit more. The Geogram C++ library seems very suitable for our purposes:

  • Small, standalone Delaunay module with no mandatory dependencies outside standard library
  • BSD (3-clause) license
  • Fast and robust (I have successfully triangulated 100M random points in ~3 CPU minutes), time seems to scale roughly linearly with number of points

We'll just need to generate Python bindings for it.

CGAL (under GPLv3) can also handle at least 75M points (tested on an Ubuntu machine), but it is a fairly heavy library using lots of C++ templates, and does not seem to be anywhere as fast as Geogram without a bit of optimization.

Qhull is indeed not as fast, and complains when fed more than 16.7M input points.