gis.admin.GeoModelAdmin.default_zoom

default_zoom The default zoom level to use. Defaults to 18.

views.i18n.JavaScriptCatalog.domain

domain Translation domain containing strings to add in the view output. Defaults to 'djangojs'.

gis.gdal.Point.z

z Returns the Z coordinate of this point, or None if the point does not have a Z coordinate: >>> OGRGeometry('POINT (1 2 3)').z 3.0

gis.geos.PreparedGeometry.covers()

covers(other)

gis.geos.GEOSGeometry.difference()

GEOSGeometry.difference(other) Returns a GEOSGeometry representing the points making up this geometry that do not make up other.

gis.geos.PreparedGeometry.overlaps()

overlaps(other)

gis.geos.PreparedGeometry.intersects()

intersects(other)

File Uploads

When Django handles a file upload, the file data ends up placed in request.FILES (for more on the request object see the documentation for request and response objects). This document explains how files are stored on disk and in memory, and how to customize the default behavior. Warning There are security risks if you are accepting uploaded content from untrusted users! See the security guide’s topic on User-uploaded content for mitigation details. Basic file uploads Consider a simple form co

core.management.AppCommand.handle_app_config()

AppCommand.handle_app_config(app_config, **options) Perform the command’s actions for app_config, which will be an AppConfig instance corresponding to an application label given on the command line.

test.Response.wsgi_request

wsgi_request The WSGIRequest instance generated by the test handler that generated the response.