Source code for pygeohash.geohash

"""Geohash encoding and decoding functionality.

This module provides the core functionality for encoding coordinates to geohashes
and decoding geohashes back to coordinates. It includes both standard and exact
decoding options, as well as strict encoding.

This implementation uses a high-performance C extension for all operations.
"""

from __future__ import annotations

from typing import Dict

from pygeohash.cgeohash.geohash_module import (
    decode as c_decode,
    decode_exactly as c_decode_exactly,
    encode as c_encode,
    encode_strictly as c_encode_strictly,
    get_base32,
)
from pygeohash.geohash_types import ExactLatLong, LatLong

__base32 = get_base32()
__decodemap: Dict[str, int] = {base32_char: i for i, base32_char in enumerate(__base32)}


[docs] def encode(latitude: float, longitude: float, precision: int = 12) -> str: """Encode a latitude and longitude into a geohash. Args: latitude (float): The latitude to encode. longitude (float): The longitude to encode. precision (int, optional): The number of characters in the geohash. Defaults to 12. Returns: str: The geohash string. """ return c_encode(latitude, longitude, precision)
[docs] def encode_strictly(latitude: float, longitude: float, precision: int = 12) -> str: """Encode a latitude and longitude into a geohash with strict midpoint handling. Args: latitude (float): The latitude to encode. longitude (float): The longitude to encode. precision (int, optional): The number of characters in the geohash. Defaults to 12. Returns: str: The geohash string. """ return c_encode_strictly(latitude, longitude, precision)
[docs] def decode(geohash: str) -> LatLong: """Decode a geohash into a latitude and longitude. Args: geohash (str): The geohash string to decode. Returns: LatLong: A named tuple containing the latitude and longitude. """ return c_decode(geohash)
[docs] def decode_exactly(geohash: str) -> ExactLatLong: """Decode a geohash into a latitude and longitude with error margins. This function provides more detailed information than the standard decode function by including the error margins for both latitude and longitude. Args: geohash (str): The geohash string to decode. Returns: ExactLatLong: A named tuple containing the latitude, longitude, and their respective error margins. """ return c_decode_exactly(geohash)
__all__ = [ "decode", "decode_exactly", "encode", "encode_strictly", "LatLong", "ExactLatLong", "__base32", "__decodemap", ]