gis.geos.GEOSGeometry.intersects()

GEOSGeometry.intersects(other) Returns True if GEOSGeometry.disjoint() is False.

gis.geos.GEOSGeometry.intersection()

GEOSGeometry.intersection(other) Returns a GEOSGeometry representing the points shared by this geometry and other.

gis.gdal.OGRGeometry.kml

kml Returns a string representation of this geometry in KML format.

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.