Python osgeo.ogr.wkbPolygon() Examples
The following are 4
code examples of osgeo.ogr.wkbPolygon().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
osgeo.ogr
, or try the search function
.
Example #1
Source File: listing13_2.py From osgeopy-code with MIT License | 6 votes |
def plot_layer(filename, symbol, layer_index=0, **kwargs): """Plots an OGR polygon layer using the given symbol.""" ds = ogr.Open(filename) # Loop through all of the features in the layer. for row in ds.GetLayer(layer_index): geom = row.geometry() geom_type = geom.GetGeometryType() # If the geometry is a single polygon. if geom_type == ogr.wkbPolygon: plot_polygon(geom, symbol, **kwargs) # Else if the geometry is a multipolygon, send each # part to plot_polygon individually. elif geom_type == ogr.wkbMultiPolygon: for i in range(geom.GetGeometryCount()): subgeom = geom.GetGeometryRef(i) plot_polygon(subgeom, symbol, **kwargs) # Plot countries.
Example #2
Source File: listing13_3.py From osgeopy-code with MIT License | 5 votes |
def plot_layer(filename, symbol, layer_index=0, **kwargs): """Plots an OGR layer using the given symbol.""" ds = ogr.Open(filename) for row in ds.GetLayer(layer_index): geom = row.geometry() geom_type = geom.GetGeometryType() # Polygons if geom_type == ogr.wkbPolygon: plot_polygon(geom, symbol, **kwargs) # Multipolygons elif geom_type == ogr.wkbMultiPolygon: for i in range(geom.GetGeometryCount()): subgeom = geom.GetGeometryRef(i) plot_polygon(subgeom, symbol, **kwargs) # Lines elif geom_type == ogr.wkbLineString: plot_line(geom, symbol, **kwargs) # Multilines elif geom_type == ogr.wkbMultiLineString: for i in range(geom.GetGeometryCount()): subgeom = geom.GetGeometryRef(i) plot_line(subgeom, symbol, **kwargs) # Points elif geom_type == ogr.wkbPoint: plot_point(geom, symbol, **kwargs) # Multipoints elif geom_type == ogr.wkbMultiPoint: for i in range(geom.GetGeometryCount()): subgeom = geom.GetGeometryRef(i) plot_point(subgeom, symbol, **kwargs) # Now plot countries, rivers, and cities.
Example #3
Source File: zonalstats.py From wradlib with MIT License | 5 votes |
def _check_src(self, src): """Basic check of source elements (sequence of points or polygons). - array cast of source elements - create ogr_src datasource/layer holding src points/polygons - transforming source grid points/polygons to ogr.geometries on ogr.layer """ tmpfile = tempfile.NamedTemporaryFile(mode="w+b").name ogr_src = io.gdal.gdal_create_dataset( "ESRI Shapefile", os.path.join("/vsimem", tmpfile), gdal_type=gdal.OF_VECTOR ) src = np.array(src) # create memory datasource, layer and create features if src.ndim == 2: geom_type = ogr.wkbPoint # no Polygons, just Points else: geom_type = ogr.wkbPolygon fields = [("index", ogr.OFTInteger)] georef.vector.ogr_create_layer( ogr_src, self._name, srs=self._srs, geom_type=geom_type, fields=fields ) georef.vector.ogr_add_feature(ogr_src, src, name=self._name) return ogr_src
Example #4
Source File: vector.py From wradlib with MIT License | 5 votes |
def ogr_create_layer(ds, name, srs=None, geom_type=None, fields=None): """Creates OGR.Layer objects in gdal.Dataset object. Creates one OGR.Layer with given name in given gdal.Dataset object using given OGR.GeometryType and FieldDefinitions Parameters ---------- ds : gdal.Dataset object name : string OGRLayer name srs : OSR.SpatialReference object geom_type : OGR GeometryType (eg. ogr.wkbPolygon) fields : list of 2 element tuples (strings, OGR.DataType) field name, field type Returns ------- out : OGR.Layer object """ if geom_type is None: raise TypeError("geometry_type needed") lyr = ds.CreateLayer(name, srs=srs, geom_type=geom_type) if fields is not None: for fname, fvalue in fields: lyr.CreateField(ogr.FieldDefn(fname, fvalue)) return lyr