redirects.middleware.RedirectFallbackMiddleware.response_gone_class

response_gone_class The HttpResponse class used when a Redirect is not found for the requested path or has a blank new_path value. Defaults to HttpResponseGone.

gis.gdal.GDALBand.height

height The height of the band in pixels (Y-axis).

db.models.F

class F [source] An F() object represents the value of a model field or annotated column. It makes it possible to refer to model field values and perform database operations using them without actually having to pull them out of the database into Python memory. Instead, Django uses the F() object to generate an SQL expression that describes the required operation at the database level. This is easiest to understand through an example. Normally, one might do something like this: # Tintin file

db.models.FilePathField.recursive

FilePathField.recursive Optional. Either True or False. Default is False. Specifies whether all subdirectories of path should be included

gis.forms.LineStringField

class LineStringField

http.HttpRequest.xreadlines()

HttpRequest.xreadlines() [source]

gis.db.models.functions.SymDifference

class SymDifference(expr1, expr2, **extra) Availability: MySQL (≥ 5.6.1), PostGIS, Oracle, SpatiaLite Accepts two geographic fields or expressions and returns the geometric symmetric difference (union without the intersection) between the given parameters. Changed in Django 1.10: MySQL support was added.

gis.geos.WKBReader

class WKBReader Example: >>> from django.contrib.gis.geos import WKBReader >>> wkb_r = WKBReader() >>> wkb_r.read('0101000000000000000000F03F000000000000F03F') <Point object at 0x103a88910>

gis.measure.Distance.__getattr__()

__getattr__(unit_att) Returns the distance value in units corresponding to the given unit attribute. For example: >>> print(dist.km) 8.04672

views.generic.edit.FormMixin.form_invalid()

form_invalid(form) Renders a response, providing the invalid form as context.