Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What happened to the python bindings for CGAL?

I found the Computational Geometry Algorithms Library in my search for an algorithm to decompose a concave polygon into the minimum number of convex components. Links off the site and numerous google results indicate there are python bindings for it, which would be really handy, but all the links are dead! What happened to it? Where can I get it now?

like image 635
Nick Retallack Avatar asked Dec 05 '08 08:12

Nick Retallack


3 Answers

You may also be interested in the GEOS library, which is available in Python through Shapely and the GEOS API included in GeoDjango.

like image 91
Drew Dara-Abrams Avatar answered Nov 11 '22 18:11

Drew Dara-Abrams


Try this for now:

pip install -i https://test.pypi.org/simple/ cgal

It is experimental, but available on here

like image 34
A. Hendry Avatar answered Nov 11 '22 17:11

A. Hendry


A rewrite of the CGAL-Python bindings has been done as part of the cgal-bindings project. Check it out : http://code.google.com/p/cgal-bindings/

like image 25
Sylvain Pion Avatar answered Nov 11 '22 18:11

Sylvain Pion