Skip to main content

A Python-wrapped Rust Location Checker

Project description

Public README for location_checker Package


location_checker

A Python extension module for geographic operations, including country lookups, Haversine distance calculations, and travel time verification. This module is implemented in Rust using the pyo3 library for Python bindings, offering high performance and reliability.

Features

  • Country Lookup: Identify the country (or countries) corresponding to a given latitude and longitude.
  • Distance Calculation: Calculate the Haversine distance between two locations.
  • Travel Time Verification: Verify if travel between two locations is feasible within a specified time based on a realistic speed limit.

Installation

To build and install the package, you need Rust and Python installed on your system. Install the package using:

pip install maturin
maturin develop

Alternatively, for a production build:

maturin build
pip install ./target/wheels/location_checker-*.whl

Usage

Here’s an example demonstrating how to use the location_checker module:

Example

from location_checker import Location, LocationChecker

# Initialize the LocationChecker
checker = LocationChecker()

# Load the country boundaries
checker.load_boundaries()

# Define locations
loc1 = Location(latitude=37.7749, longitude=-122.4194, timestamp="2024-12-01T10:00:00Z")  # San Francisco
loc2 = Location(latitude=34.0522, longitude=-118.2437, timestamp="2024-12-01T14:00:00Z")  # Los Angeles

# Get the country of a location
countries = checker.get_country(loc1)
print(f"San Francisco is in: {countries}")

# Calculate the distance between two locations
distance = checker.calculate_distance(loc1, loc2)
print(f"Distance between San Francisco and Los Angeles: {distance:.2f} meters")

# Verify travel feasibility
feasible = checker.verify_travel_time(loc1, loc2)
print(f"Is it feasible to travel between San Francisco and Los Angeles in the given time? {feasible}")

API Documentation

Location

Represents a geographic location.

  • Location(latitude: float, longitude: float, timestamp: Optional[str] = None)
    • latitude: Latitude in degrees (-90 to 90).
    • longitude: Longitude in degrees (-180 to 180).
    • timestamp: Optional RFC3339 formatted datetime string.

LocationChecker

Performs operations related to locations.

  • load_boundaries() -> None

    • Loads country boundaries into memory.
  • get_country(location: Location) -> List[str]

    • Identifies the country (or countries) for a given location.
  • calculate_distance(location1: Location, location2: Location) -> float

    • Calculates the Haversine distance between two locations (in meters).
  • verify_travel_time(start_location: Location, end_location: Location) -> bool

    • Verifies if travel between two locations within the given timestamps is feasible.

Tests

Here’s an example of a test case for the package:

test_location_checker.py

from location_checker import Location, LocationChecker


def test_location_checker():
    checker = LocationChecker()

    # Load boundaries
    checker.load_boundaries()

    # Test location creation
    loc1 = Location(latitude=37.7749, longitude=-122.4194, timestamp="2024-12-01T10:00:00Z")
    loc2 = Location(latitude=34.0522, longitude=-118.2437, timestamp="2024-12-01T14:00:00Z")

    # Test country lookup
    countries = checker.get_country(loc1)
    assert len(countries) > 0, "Country lookup failed"

    # Test distance calculation
    distance = checker.calculate_distance(loc1, loc2)
    assert distance > 0, "Distance calculation failed"

    # Test travel feasibility
    feasible = checker.verify_travel_time(loc1, loc2)
    assert feasible, "Travel time verification failed"

    print("All tests passed!")


if __name__ == "__main__":
    test_location_checker()

License

This project is licensed under the MIT License. See the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

location_checker-0.1.1.tar.gz (21.5 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

location_checker-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl (608.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

location_checker-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (583.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

Details for the file location_checker-0.1.1.tar.gz.

File metadata

  • Download URL: location_checker-0.1.1.tar.gz
  • Upload date:
  • Size: 21.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.7

File hashes

Hashes for location_checker-0.1.1.tar.gz
Algorithm Hash digest
SHA256 655432c9c41168ba1bd2a329a0283f2bb145866c3da29c69b936a1cee7097b1c
MD5 299b4857f838d212388a58ee45b3d32d
BLAKE2b-256 8cc1e0826a1171659262c88b983ebe799e72b8de51bb0380b839595164d9eb71

See more details on using hashes here.

File details

Details for the file location_checker-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for location_checker-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6f8c01a94cdfb7f1be8615db598274dd8679c101c13cd107fabf51027dcbf18d
MD5 b23dcfdb3257ba3715e3364db5a8c7d7
BLAKE2b-256 45ac16b60bb44dba58217576a06abadbaaa483991332a150548f8734302fe9ea

See more details on using hashes here.

File details

Details for the file location_checker-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for location_checker-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 702e5a6bb94966eca56b2dee5baaf475df675215c8c2046a8dd42fdcd319f5ab
MD5 e6fc4bfde211f028845ae5491597f416
BLAKE2b-256 58aa54eada8033bc570c82085e2deae596e30bfefe3afd15b434c05e61fff9aa

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page