2015-07-08 14:37:25 +02:00
|
|
|
#!/usr/bin/env python
|
2015-08-11 21:58:17 +02:00
|
|
|
#
|
|
|
|
# A library that provides a Python interface to the Telegram Bot API
|
2024-02-19 20:06:25 +01:00
|
|
|
# Copyright (C) 2015-2024
|
2016-01-05 14:12:03 +01:00
|
|
|
# Leandro Toledo de Souza <devs@python-telegram-bot.org>
|
2015-08-11 21:58:17 +02:00
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Lesser Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser Public License
|
|
|
|
# along with this program. If not, see [http://www.gnu.org/licenses/].
|
2016-10-17 00:22:40 +02:00
|
|
|
"""This module contains an object that represents a Telegram Location."""
|
2015-07-08 14:37:25 +02:00
|
|
|
|
2023-06-29 18:17:47 +02:00
|
|
|
from typing import Final, Optional
|
2022-11-22 11:07:42 +01:00
|
|
|
|
|
|
|
from telegram import constants
|
2022-05-05 09:27:54 +02:00
|
|
|
from telegram._telegramobject import TelegramObject
|
2022-10-07 11:51:53 +02:00
|
|
|
from telegram._utils.types import JSONDict
|
2020-10-31 16:33:34 +01:00
|
|
|
|
2015-07-09 16:40:44 +02:00
|
|
|
|
2015-07-20 04:06:04 +02:00
|
|
|
class Location(TelegramObject):
|
2017-09-01 08:43:08 +02:00
|
|
|
"""This object represents a point on the map.
|
2015-08-22 04:15:29 +02:00
|
|
|
|
2020-07-14 21:33:56 +02:00
|
|
|
Objects of this class are comparable in terms of equality. Two objects of this class are
|
2021-10-01 16:51:03 +02:00
|
|
|
considered equal, if their :attr:`longitude` and :attr:`latitude` are equal.
|
2020-07-14 21:33:56 +02:00
|
|
|
|
2015-08-22 04:15:29 +02:00
|
|
|
Args:
|
2024-07-07 13:08:52 +02:00
|
|
|
longitude (:obj:`float`): Longitude as defined by the sender.
|
|
|
|
latitude (:obj:`float`): Latitude as defined by the sender.
|
2020-11-29 16:20:46 +01:00
|
|
|
horizontal_accuracy (:obj:`float`, optional): The radius of uncertainty for the location,
|
2022-11-22 11:07:42 +01:00
|
|
|
measured in meters; 0-:tg-const:`telegram.Location.HORIZONTAL_ACCURACY`.
|
2020-11-29 16:20:46 +01:00
|
|
|
live_period (:obj:`int`, optional): Time relative to the message sending date, during which
|
|
|
|
the location can be updated, in seconds. For active live locations only.
|
2021-10-19 18:28:19 +02:00
|
|
|
heading (:obj:`int`, optional): The direction in which user is moving, in degrees;
|
2022-11-22 11:07:42 +01:00
|
|
|
:tg-const:`telegram.Location.MIN_HEADING`-:tg-const:`telegram.Location.MAX_HEADING`.
|
|
|
|
For active live locations only.
|
2020-11-29 16:20:46 +01:00
|
|
|
proximity_alert_radius (:obj:`int`, optional): Maximum distance for proximity alerts about
|
|
|
|
approaching another chat member, in meters. For sent live locations only.
|
2017-09-01 08:43:08 +02:00
|
|
|
|
2020-12-30 15:59:50 +01:00
|
|
|
Attributes:
|
2024-07-07 13:08:52 +02:00
|
|
|
longitude (:obj:`float`): Longitude as defined by the sender.
|
|
|
|
latitude (:obj:`float`): Latitude as defined by the sender.
|
2020-12-30 15:59:50 +01:00
|
|
|
horizontal_accuracy (:obj:`float`): Optional. The radius of uncertainty for the location,
|
2023-01-01 16:24:00 +01:00
|
|
|
measured in meters; 0-:tg-const:`telegram.Location.HORIZONTAL_ACCURACY`.
|
2020-12-30 15:59:50 +01:00
|
|
|
live_period (:obj:`int`): Optional. Time relative to the message sending date, during which
|
|
|
|
the location can be updated, in seconds. For active live locations only.
|
2023-01-01 16:24:00 +01:00
|
|
|
heading (:obj:`int`): Optional. The direction in which user is moving, in degrees;
|
|
|
|
:tg-const:`telegram.Location.MIN_HEADING`-:tg-const:`telegram.Location.MAX_HEADING`.
|
2020-12-30 15:59:50 +01:00
|
|
|
For active live locations only.
|
|
|
|
proximity_alert_radius (:obj:`int`): Optional. Maximum distance for proximity alerts about
|
|
|
|
approaching another chat member, in meters. For sent live locations only.
|
|
|
|
|
2015-08-22 04:15:29 +02:00
|
|
|
"""
|
|
|
|
|
2021-05-29 16:18:16 +02:00
|
|
|
__slots__ = (
|
2024-02-05 19:24:00 +01:00
|
|
|
"heading",
|
2021-05-29 16:18:16 +02:00
|
|
|
"horizontal_accuracy",
|
|
|
|
"latitude",
|
2024-02-05 19:24:00 +01:00
|
|
|
"live_period",
|
|
|
|
"longitude",
|
|
|
|
"proximity_alert_radius",
|
2021-05-29 16:18:16 +02:00
|
|
|
)
|
|
|
|
|
2020-11-29 16:20:46 +01:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
longitude: float,
|
|
|
|
latitude: float,
|
2023-05-18 07:57:59 +02:00
|
|
|
horizontal_accuracy: Optional[float] = None,
|
|
|
|
live_period: Optional[int] = None,
|
|
|
|
heading: Optional[int] = None,
|
|
|
|
proximity_alert_radius: Optional[int] = None,
|
2022-10-07 11:51:53 +02:00
|
|
|
*,
|
2023-05-18 07:57:59 +02:00
|
|
|
api_kwargs: Optional[JSONDict] = None,
|
2020-11-29 16:20:46 +01:00
|
|
|
):
|
2022-10-07 11:51:53 +02:00
|
|
|
super().__init__(api_kwargs=api_kwargs)
|
2015-08-22 04:15:29 +02:00
|
|
|
# Required
|
2023-02-02 18:55:07 +01:00
|
|
|
self.longitude: float = longitude
|
|
|
|
self.latitude: float = latitude
|
2015-07-08 14:37:25 +02:00
|
|
|
|
2020-11-29 16:20:46 +01:00
|
|
|
# Optionals
|
2023-02-02 18:55:07 +01:00
|
|
|
self.horizontal_accuracy: Optional[float] = horizontal_accuracy
|
|
|
|
self.live_period: Optional[int] = live_period
|
|
|
|
self.heading: Optional[int] = heading
|
|
|
|
self.proximity_alert_radius: Optional[int] = (
|
2020-11-29 16:20:46 +01:00
|
|
|
int(proximity_alert_radius) if proximity_alert_radius else None
|
|
|
|
)
|
|
|
|
|
2017-05-14 23:29:31 +02:00
|
|
|
self._id_attrs = (self.longitude, self.latitude)
|
2022-11-22 11:07:42 +01:00
|
|
|
|
2022-12-15 15:00:36 +01:00
|
|
|
self._freeze()
|
|
|
|
|
2023-06-29 18:17:47 +02:00
|
|
|
HORIZONTAL_ACCURACY: Final[int] = constants.LocationLimit.HORIZONTAL_ACCURACY
|
2022-11-22 11:07:42 +01:00
|
|
|
""":const:`telegram.constants.LocationLimit.HORIZONTAL_ACCURACY`
|
|
|
|
|
|
|
|
.. versionadded:: 20.0
|
|
|
|
"""
|
2023-06-29 18:17:47 +02:00
|
|
|
MIN_HEADING: Final[int] = constants.LocationLimit.MIN_HEADING
|
2022-11-22 11:07:42 +01:00
|
|
|
""":const:`telegram.constants.LocationLimit.MIN_HEADING`
|
|
|
|
|
|
|
|
.. versionadded:: 20.0
|
|
|
|
"""
|
2023-06-29 18:17:47 +02:00
|
|
|
MAX_HEADING: Final[int] = constants.LocationLimit.MAX_HEADING
|
2022-11-22 11:07:42 +01:00
|
|
|
""":const:`telegram.constants.LocationLimit.MAX_HEADING`
|
|
|
|
|
|
|
|
.. versionadded:: 20.0
|
|
|
|
"""
|