#10222: [patch] Add line_merge to GEOS geometries under django.contrib.gis
----------------------------+-----------------------------------------------
Reporter: psmith | Owner: nobody
Status: new | Milestone:
Component: GIS | Version: 1.0
Keywords: geos linemerge | Stage: Unreviewed
Has_patch: 1 |
----------------------------+-----------------------------------------------
In the C API of GEOS, GEOSLineMerge returns a new geometry that is the
result of having merged contiguous line strings in a geometry collection
or multi-line string geometry.
Example:
{{{
>>> geomcoll = fromstr('MULTILINESTRING((1 1, 3 3), (3 3, 4 2))')
>>> print geomcoll.line_merge()
LINESTRING(1 1, 3 3, 4 2)
}}}
--
Ticket URL: <http://code.djangoproject.com/ticket/10222>
Django <http://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---