gis.gdal.Layer.num_feat

num_feat Returns the number of features in the layer. Same as len(layer): >>> layer.num_feat 3

db.models.Options.abstract

Options.abstract If abstract = True, this model will be an abstract base class.

views.generic.edit.ProcessFormView.put()

put(*args, **kwargs) The PUT action is also handled and just passes all parameters through to post().

postgres.aggregates.BitOr

class BitOr(expression, **extra) [source] Returns an int of the bitwise OR of all non-null input values, or None if all values are null.

utils.cache.patch_cache_control()

patch_cache_control(response, **kwargs) [source] This function patches the Cache-Control header by adding all keyword arguments to it. The transformation is as follows: All keyword parameter names are turned to lowercase, and underscores are converted to hyphens. If the value of a parameter is True (exactly True, not just a true value), only the parameter name is added to the header. All other parameters are added with their value, after applying str() to it.

gis.geos.GEOSGeometry.prepared

GEOSGeometry.prepared Returns a GEOS PreparedGeometry for the contents of this geometry. PreparedGeometry objects are optimized for the contains, intersects, covers, crosses, disjoint, overlaps, touches and within operations. Refer to the Prepared Geometries documentation for more information.

gis.measure.D

class D Alias for Distance class.

test.runner.DiscoverRunner.suite_result()

DiscoverRunner.suite_result(suite, result, **kwargs) Computes and returns a return code based on a test suite, and the result from that test suite.

gis.gdal.OGRGeometry.__iter__()

__iter__() Iterates over the points in a LineString, the rings in a Polygon, or the geometries in a GeometryCollection. Not applicable to other geometry types.

db.models.Lookup.lhs

lhs The left-hand side - what is being looked up. The object must follow the Query Expression API.