gis.gdal.Feature.get

get A method that returns the value of the given field (specified by name) for this feature, not a Field wrapper object: >>> city.get('Population') 102121

gis.gdal.Layer.name

name Returns the name of this layer in the data source. >>> layer.name 'cities'

core.files.File.read()

read(num_bytes=None) Read content from the file. The optional size is the number of bytes to read; if not specified, the file will be read to the end.

db.backends.base.schema.BaseDatabaseSchemaEditor.execute()

BaseDatabaseSchemaEditor.execute(sql, params=[]) [source] Executes the SQL statement passed in, with parameters if supplied. This is a simple wrapper around the normal database cursors that allows capture of the SQL to a .sql file if the user wishes.

gis.gdal.SpatialReference.name

name Returns the name of this Spatial Reference.

auth.models.Group.permissions

permissions Many-to-many field to Permission: group.permissions.set([permission_list]) group.permissions.add(permission, permission, ...) group.permissions.remove(permission, permission, ...) group.permissions.clear()

gis.admin.GeoModelAdmin.openlayers_url

openlayers_url Link to the URL of the OpenLayers JavaScript. Defaults to 'http://openlayers.org/api/2.13.1/OpenLayers.js'.

db.models.Options.proxy

Options.proxy If proxy = True, a model which subclasses another model will be treated as a proxy model.

urls.ResolverMatch.func

func The view function that would be used to serve the URL

gis.geos.GEOSGeometry.simple

GEOSGeometry.simple Returns a boolean indicating whether the geometry is ‘simple’. A geometry is simple if and only if it does not intersect itself (except at boundary points). For example, a LineString object is not simple if it intersects itself. Thus, LinearRing and Polygon objects are always simple because they do cannot intersect themselves, by definition.