コード例 #1
0
ファイル: collections.py プロジェクト: meteogrid/pygeos
 def _set_list(self, length, items):
     "Create a new collection, and destroy the contents of the previous pointer."
     prev_ptr = self.ptr
     srid = self.srid
     self.ptr = self._create_collection(length, items)
     if srid: self.srid = srid
     capi.destroy_geom(prev_ptr)
コード例 #2
0
ファイル: polygon.py プロジェクト: meteogrid/pygeos
 def _set_list(self, length, items):
     # Getting the current pointer, replacing with the newly constructed
     # geometry, and destroying the old geometry.
     prev_ptr = self.ptr
     srid = self.srid
     self.ptr = self._create_polygon(length, items)
     if srid: self.srid = srid
     capi.destroy_geom(prev_ptr)
コード例 #3
0
ファイル: point.py プロジェクト: meteogrid/pygeos
 def _set_list(self, length, items):
     ptr = self._create_point(length, items)
     if ptr:
         capi.destroy_geom(self.ptr)
         self._ptr = ptr
         self._set_cs()
     else:
         # can this happen?
         raise GEOSException('Geometry resulting from slice deletion was invalid.')
コード例 #4
0
ファイル: linestring.py プロジェクト: meteogrid/pygeos
    def _set_list(self, length, items):
        ndim = self._cs.dims #
        hasz = self._cs.hasz # I don't understand why these are different

        # create a new coordinate sequence and populate accordingly
        cs = GEOSCoordSeq(capi.create_cs(length, ndim), z=hasz)
        for i, c in enumerate(items):
            cs[i] = c

        ptr = self._init_func(cs.ptr)
        if ptr:
            capi.destroy_geom(self.ptr)
            self.ptr = ptr
            self._post_init(self.srid)
        else:
            # can this happen?
            raise GEOSException('Geometry resulting from slice deletion was invalid.')
コード例 #5
0
ファイル: geometry.py プロジェクト: meteogrid/pygeos
    def transform(self, ct, clone=False):
        """
        Requires GDAL. Transforms the geometry according to the given
        transformation object, which may be an integer SRID, and WKT or
        PROJ.4 string. By default, the geometry is transformed in-place and
        nothing is returned. However if the `clone` keyword is set, then this
        geometry will not be modified and a transformed clone will be returned
        instead.
        """
        srid = self.srid

        if ct == srid:
            # short-circuit where source & dest SRIDs match
            if clone:
                return self.clone()
            else:
                return

        if (srid is None) or (srid < 0):
            warnings.warn("Calling transform() with no SRID set does no transformation!",
                          stacklevel=2)
            warnings.warn("Calling transform() with no SRID will raise GEOSException in v1.5",
                          FutureWarning, stacklevel=2)
            return

        if not gdal.HAS_GDAL:
            raise GEOSException("GDAL library is not available to transform() geometry.")

        # Creating an OGR Geometry, which is then transformed.
        g = gdal.OGRGeometry(self.wkb, srid)
        g.transform(ct)
        # Getting a new GEOS pointer
        ptr = wkb_r().read(g.wkb)
        if clone:
            # User wants a cloned transformed geometry returned.
            return GEOSGeometry(ptr, srid=g.srid)
        if ptr:
            # Reassigning pointer, and performing post-initialization setup
            # again due to the reassignment.
            capi.destroy_geom(self.ptr)
            self.ptr = ptr
            self._post_init(g.srid)
        else:
            raise GEOSException('Transformed WKB was invalid.')
コード例 #6
0
ファイル: geometry.py プロジェクト: meteogrid/pygeos
 def __del__(self):
     """
     Destroys this Geometry; in other words, frees the memory used by the
     GEOS C++ object.
     """
     if self._ptr: capi.destroy_geom(self._ptr)