django/contrib/gis/geos/linestring.py
branchtrunk
changeset 362 87b34dce202d
parent 360 fd85d0fb4fb5
child 435 d75ff359e306
     1.1 --- a/django/contrib/gis/geos/linestring.py	Thu Mar 19 12:14:17 2009 -0500
     1.2 +++ b/django/contrib/gis/geos/linestring.py	Thu Mar 19 13:08:50 2009 -0500
     1.3 @@ -126,6 +126,11 @@
     1.4          return self._listarr(self._cs.__getitem__)
     1.5  
     1.6      @property
     1.7 +    def merged(self):
     1.8 +        "Returns the line merge of this LineString."
     1.9 +        return self._topology(capi.geos_linemerge(self.ptr))   
    1.10 +
    1.11 +    @property
    1.12      def x(self):
    1.13          "Returns a list or numpy array of the X variable."
    1.14          return self._listarr(self._cs.getX)