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

geoip_location_checker-0.1.1.tar.gz (16.3 kB view details)

Uploaded Source

Built Distributions

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

geoip_location_checker-0.1.1-cp311-cp311-manylinux_2_28_x86_64.whl (623.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

geoip_location_checker-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl (614.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

File details

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

File metadata

  • Download URL: geoip_location_checker-0.1.1.tar.gz
  • Upload date:
  • Size: 16.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.2

File hashes

Hashes for geoip_location_checker-0.1.1.tar.gz
Algorithm Hash digest
SHA256 b56b48b22815a940331217371db1bd5041e18343a4e063c48d8a3db56ea2466f
MD5 c5e9aa755c6d12ebac23d7838d107596
BLAKE2b-256 d68f6aadd54756019c488b4200b3272f777e278a551b77adbbf8a74711180fdb

See more details on using hashes here.

File details

Details for the file geoip_location_checker-0.1.1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for geoip_location_checker-0.1.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b2f057343ef91c857b80ba53b76e5fec5bb633dffc699fa74403ff05dad0be04
MD5 57541842ed4e138887664880fb1c513c
BLAKE2b-256 aed07c153d5ce063858ca7995dfa4a09751179a69a2d79dc2ddaf520804f4c2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for geoip_location_checker-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eda2aa5fb1c1fb59467098b753ec43984137a8ca1b48939f9d8f607ee0735a40
MD5 a3d4206a7d8ce1de79bb0d7ede494ea4
BLAKE2b-256 0619eee9671531e85e204e0edec7048c811a184df72479fdb98e43afe5f8718e

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