forms.Textarea

class Textarea [source] Text area: <textarea>...</textarea>

gis.geos.GEOSGeometry.distance()

GEOSGeometry.distance(geom) Returns the distance between the closest points on this geometry and the given geom (another GEOSGeometry object). Note GEOS distance calculations are linear – in other words, GEOS does not perform a spherical calculation even if the SRID specifies a geographic coordinate system.

core.paginator.Paginator

class Paginator(object_list, per_page, orphans=0, allow_empty_first_page=True) [source]

admin.InlineModelAdmin.formset

InlineModelAdmin.formset This defaults to BaseInlineFormSet. Using your own formset can give you many possibilities of customization. Inlines are built around model formsets.

gis.gdal.GDALRaster.srid

srid New in Django 1.10. The Spatial Reference System Identifier (SRID) of the raster. This property is a shortcut to getting or setting the SRID through the srs attribute. >>> rst = GDALRaster({'width': 10, 'height': 20, 'srid': 4326}) >>> rst.srid 4326 >>> rst.srid = 3086 >>> rst.srid 3086 >>> rst.srs.srid # This is equivalent 3086

gis.gdal.SpatialReference.angular_name

angular_name Returns the name of the angular units.”

auth.models.PermissionsMixin.get_group_permissions()

get_group_permissions(obj=None) Returns a set of permission strings that the user has, through their groups. If obj is passed in, only returns the group permissions for this specific object.

db.models.ExpressionWrapper

class ExpressionWrapper(expression, output_field) [source] ExpressionWrapper simply surrounds another expression and provides access to properties, such as output_field, that may not be available on other expressions. ExpressionWrapper is necessary when using arithmetic on F() expressions with different types as described in Using F() with annotations.

gis.gdal.GDALBand.pixel_count

pixel_count New in Django 1.9. The total number of pixels in this band. Is equal to width * height.

gis.gdal.Feature.num_fields

num_fields Returns the number of fields of data associated with the feature. This will be the same for all features in a given layer and is equivalent to the Layer.num_fields property of the Layer object the feature came from.