Class GeometryField
This is the basic form field for a Geometry. Any textual input that is accepted by GEOSGeometry is accepted by this form. By default, this includes WKT, HEXEWKB, WKB (in a buffer), and GeoJSON.
Declaration
class GeometryField(forms.Field)
source linkDocumentation
Methods
▷ def __init__(self, *, srid=None, geom_type=None, **kwargs) ▷ def clean(self, value) Validate that the input value can be converted to a Geometry object and return it. Raise a ValidationError if the value cannot be instantiated as a Geometry.
▷ def has_changed(self, initial, data) Compare geographic value of data with its initial value.
▷ def to_python(self, value) Transform the value to a Geometry object.
Subclasses
Reexports