gis.models.coordinates ====================== .. py:module:: gis.models.coordinates Attributes ---------- .. autoapisummary:: gis.models.coordinates.AnyCoordinates Classes ------- .. autoapisummary:: gis.models.coordinates.Coordinates gis.models.coordinates.NullCoordinates gis.models.coordinates.CoordinatesMixin Module Contents --------------- .. py:type:: AnyCoordinates :canonical: 'RealCoordinates | NullCoordinates' .. py:class:: Coordinates Bases: :py:obj:`onegov.core.custom.json.Serializable` Represents a pair of coordinates. May contain zoom factor and other information like marker icon and color. Note that only latitude and longitude really matter, the rest may or may not be used. .. py:attribute:: __slots__ :value: ('lon', 'lat', 'zoom') .. py:attribute:: lat :type: float | None .. py:attribute:: lon :type: float | None .. py:attribute:: zoom :type: int | None .. py:method:: __bool__() -> bool .. py:method:: __eq__(other: object) -> bool .. py:class:: NullCoordinates Bases: :py:obj:`Coordinates` Represents a pair of coordinates. May contain zoom factor and other information like marker icon and color. Note that only latitude and longitude really matter, the rest may or may not be used. .. py:attribute:: lat :type: None .. py:attribute:: lon :type: None .. py:attribute:: zoom :type: None .. py:method:: __bool__() -> Literal[False] .. py:class:: CoordinatesMixin Extends any class that has a content dictionary field with a single coordinates pair. .. py:attribute:: content :type: sqlalchemy.schema.Column[dict[str, Any]] .. py:property:: coordinates :type: AnyCoordinates