django1/django/contrib/gis/geos
Justin Bronn 66e1670efa Refactored the GEOS interface. Improvements include:
* Geometries now allow list-like manipulation, e.g., can add, insert, delete vertexes (or other geometries in collections) like Python lists.  Thanks, Aryeh Leib Taurog.
* Added support for GEOS prepared geometries via `prepared` property.  Prepared geometries significantly speed up certain operations.
* Added support for GEOS cascaded union as `MultiPolygon.cascaded_union` property.
* Added support for GEOS line merge as `merged` property on `LineString`, and `MultiLineString` geometries.  Thanks, Paul Smith.
* No longer use the deprecated C API for serialization to/from WKB and WKT.  Now use the GEOS I/O classes, which are now exposed as `WKTReader`, `WKTWriter`, `WKBReader`, and `WKBWriter` (which supports 3D and SRID inclusion)
* Moved each type of geometry to their own module, eliminating the cluttered `geometries.py`.
* Internally, all C API methods are explicitly called from a module rather than a star import.

Fixed #9557, #9877, #10222


git-svn-id: http://code.djangoproject.com/svn/django/trunk@10131 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-03-24 00:12:21 +00:00
..
prototypes Refactored the GEOS interface. Improvements include: 2009-03-24 00:12:21 +00:00
tests Refactored the GEOS interface. Improvements include: 2009-03-24 00:12:21 +00:00
LICENSE Refactored the GEOS interface. Improvements include: 2009-03-24 00:12:21 +00:00
__init__.py Refactored the GEOS interface. Improvements include: 2009-03-24 00:12:21 +00:00
base.py Refactored the GEOS interface. Improvements include: 2009-03-24 00:12:21 +00:00
collections.py Refactored the GEOS interface. Improvements include: 2009-03-24 00:12:21 +00:00
coordseq.py Refactored the GEOS interface. Improvements include: 2009-03-24 00:12:21 +00:00
error.py Merged the gis branch into trunk. 2008-08-05 18:13:06 +00:00
factory.py Refactored the GEOS interface. Improvements include: 2009-03-24 00:12:21 +00:00
geometry.py Refactored the GEOS interface. Improvements include: 2009-03-24 00:12:21 +00:00
io.py Refactored the GEOS interface. Improvements include: 2009-03-24 00:12:21 +00:00
libgeos.py Refactored the GEOS interface. Improvements include: 2009-03-24 00:12:21 +00:00
linestring.py Refactored the GEOS interface. Improvements include: 2009-03-24 00:12:21 +00:00
mutable_list.py Refactored the GEOS interface. Improvements include: 2009-03-24 00:12:21 +00:00
point.py Refactored the GEOS interface. Improvements include: 2009-03-24 00:12:21 +00:00
polygon.py Refactored the GEOS interface. Improvements include: 2009-03-24 00:12:21 +00:00
prepared.py Refactored the GEOS interface. Improvements include: 2009-03-24 00:12:21 +00:00