geo#

class platypush.message.event.geo.LatLongUpdateEvent(latitude: float, longitude: float, *, altitude: float | None = None, address: str | None = None, locality: str | None = None, country: str | None = None, description: str | None = None, timestamp: float | datetime | str | None = None, **kwargs)[source]#

Bases: Event

Event triggered upon GPS location update

__init__(latitude: float, longitude: float, *, altitude: float | None = None, address: str | None = None, locality: str | None = None, country: str | None = None, description: str | None = None, timestamp: float | datetime | str | None = None, **kwargs)[source]#
Parameters:
  • latitude – GPS latitude.

  • longitude – GPS longitude.

  • altitude – GPS altitude.

  • address – Human-readable address.

  • locality – Locality.

  • country – Country or city.

  • description – Description.

  • timestamp – Timestamp of the event (default: now).

as_dict()#

Converts the event into a dictionary

classmethod build(msg)#

Builds an event message from a JSON UTF-8 string/bytearray, a dictionary, or another Event

matches_condition(condition)#

If the event matches an event condition, it will return an EventMatchResult :param condition: The platypush.event.hook.EventCondition object

classmethod parse(msg)#

Parse a generic message into a key-value dictionary

Parameters:

msg – Original message. It can be a dictionary, a Message, or a string/bytearray, as long as it’s valid UTF-8 JSON

classmethod to_dict(msg)#

Converts a Message object into a dictionary

Parameters:

msg – Message object