Small, dependency-light geospatial feature primitives: distance, jitter, coordinate validation and normalization.
Project description
aei-geo-features
Small, dependency-light geospatial feature primitives for tabular data: great-circle distance, distance-to-landmark, location-jitter (movement between successive points), coordinate normalization, and coordinate validation. Built on pandas/numpy only - no geopandas, no shapely, no Dask, no network calls.
Status: published on PyPI. This repository is public on GitHub under Apache License 2.0. See the production PyPI project page.
Why this exists
aei-geo-features is a small, general-purpose geospatial feature utility
- distance, jitter, coordinate validation and normalization over tabular data. It exists as a small, independently reviewable example of AID Edge Inc.'s engineering quality: typed errors, deterministic functions, no hidden I/O, and a test suite that exercises real behavior rather than mocks.
This project is separate from, and does not include, any part of AID Edge Inc.'s proprietary Velorona telecom and decision-intelligence capabilities. It contains only generic geospatial math and ships with no data beyond three widely-known public landmarks used as illustrative examples - no telecom, network, or detection-specific logic of any kind.
Who this is for
aei-geo-features is intended for developers, data scientists, analysts,
and researchers working with tabular data that includes latitude and
longitude.
It is useful for:
- Building lightweight geospatial features for machine-learning pipelines
- Calculating point-to-point or point-to-landmark distance
- Validating and normalizing coordinate columns in pandas DataFrames
- Measuring movement between sequential observations
- Preparing GPS, IoT, logistics, infrastructure, mobility, or asset-location data
- Adding basic geospatial context without introducing a full GIS stack
This library is especially suitable when simple, deterministic geospatial utilities are needed, but routing, geocoding, polygon operations, CRS transformation, or spatial databases are out of scope.
Example use cases
Typical use cases include:
- Distance from a customer, device, or asset to a reference location
- Movement or jitter between sequential GPS observations
- Coordinate validation before analytics or model training
- Feature engineering for logistics, IoT, mobility, infrastructure, and location-based datasets
- Lightweight preprocessing where GeoPandas or other GIS-heavy dependencies are unnecessary
Install
pip install aei-geo-features
Quick start
import pandas as pd
from aei_geo_features import haversine_distance, add_distance_to_landmark
# Single-pair distance
toronto = (43.6426, -79.3871)
paris = (48.8584, 2.2945)
print(round(haversine_distance(*toronto, *paris), 2))
# 5997.88
# DataFrame feature helper
df = pd.DataFrame({"latitude": [43.64], "longitude": [-79.38]})
df = add_distance_to_landmark(df, landmark="CN_TOWER")
print(df)
# latitude longitude dist_to_cn_tower_km
# 0 43.64 -79.38 0.640313
See examples/basic_usage.py for a complete, runnable example.
Public API
| Function / value | Purpose |
|---|---|
haversine_distance(lat1, lon1, lat2, lon2, unit="km") |
Great-circle distance between two points. |
validate_coordinate(lat, lon) |
Raises InvalidCoordinateError for an out-of-range or non-numeric pair; returns True otherwise. |
add_distance_to_landmark(df, landmark=..., ...) |
Adds a distance-to-landmark column to a DataFrame. |
add_location_jitter(df, ...) |
Adds a distance-from-previous-row column (optionally time-sorted first). |
normalize_coordinates(df, ...) |
Clips latitude to [-90, 90], wraps longitude into [-180, 180]. |
validate_dataframe(df, ...) |
Validates a DataFrame's coordinate columns exist, are numeric, and are in range. |
REFERENCE_LANDMARKS |
Three illustrative public landmarks (CN Tower, Eiffel Tower, Statue of Liberty) - not a claim about any real deployment or dataset. |
GeoFeatureError and subclasses (InvalidCoordinateError, MissingColumnError, UnsupportedUnitError, LandmarkNotFoundError) |
Typed, catchable errors - never a bare ValueError/Exception for a domain failure. |
This is deliberately a narrow API. It does not include polygon region
assignment, CRS transformation, spatial indexing, or GeoJSON export - those
are heavier, geopandas/shapely/pyproj-dependent capabilities that were
evaluated and intentionally excluded from this package (see
CHANGELOG.md and the project's internal audit notes) as out of scope for
a small, narrowly-useful public library. They may be reconsidered for a
future major version if there is real external demand.
What this is not
- Not a GIS platform. No polygon operations, no coordinate-reference-system transforms, no spatial database integration.
- Not a routing, geocoding, or reverse-geocoding library.
- Not affiliated with the Apache Software Foundation. "Apache License 2.0"
refers only to the license text under which this project is distributed
- see
LICENSE.
- see
- Not a certified or compliance-audited product. No FIPS, SOC 2, GDPR, ISO 27001, or similar claim is made anywhere in this project.
Dependencies
Runtime: pandas, numpy. Nothing else. See CHANGELOG.md for the full
dependency and license audit.
Security
See SECURITY.md for supported versions and how to report a vulnerability
privately. See docs/PUBLISHING.md for the release process. PyPI releases
use Trusted Publishing with OIDC and no stored API token.
Contributing
See CONTRIBUTING.md.
License
Apache License 2.0 - see LICENSE.
Copyright 2026 AID Edge Inc.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aei_geo_features-0.1.4.tar.gz.
File metadata
- Download URL: aei_geo_features-0.1.4.tar.gz
- Upload date:
- Size: 18.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
265eeb5c2951c8dc47590176ec1f698e2566ad7f02d89fb99d8ff75a622655e8
|
|
| MD5 |
ef4a22d03c5ca66e9888e0dff061ef29
|
|
| BLAKE2b-256 |
cabcec3038b8f4ca749f97b120aac2f50bdbd1f0fd06df876831474f45486d11
|
Provenance
The following attestation bundles were made for aei_geo_features-0.1.4.tar.gz:
Publisher:
publish.yml on AIDEdgeInc-Lab/aei-geo-features
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aei_geo_features-0.1.4.tar.gz -
Subject digest:
265eeb5c2951c8dc47590176ec1f698e2566ad7f02d89fb99d8ff75a622655e8 - Sigstore transparency entry: 2155912149
- Sigstore integration time:
-
Permalink:
AIDEdgeInc-Lab/aei-geo-features@a7908aeb7b1153d7f938eaf637356d94aacf5522 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AIDEdgeInc-Lab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a7908aeb7b1153d7f938eaf637356d94aacf5522 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file aei_geo_features-0.1.4-py3-none-any.whl.
File metadata
- Download URL: aei_geo_features-0.1.4-py3-none-any.whl
- Upload date:
- Size: 14.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b9169d78877a352b24d4ad77d518a5d6c8f54289ee78cb55add14bb2faef016
|
|
| MD5 |
ca88706efb274c81ea84ea5255836870
|
|
| BLAKE2b-256 |
c18315e5b2b7b1e40518d93e390cde4f22ea104366eb437e7ca3bb0396ca2369
|
Provenance
The following attestation bundles were made for aei_geo_features-0.1.4-py3-none-any.whl:
Publisher:
publish.yml on AIDEdgeInc-Lab/aei-geo-features
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aei_geo_features-0.1.4-py3-none-any.whl -
Subject digest:
1b9169d78877a352b24d4ad77d518a5d6c8f54289ee78cb55add14bb2faef016 - Sigstore transparency entry: 2155912179
- Sigstore integration time:
-
Permalink:
AIDEdgeInc-Lab/aei-geo-features@a7908aeb7b1153d7f938eaf637356d94aacf5522 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AIDEdgeInc-Lab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a7908aeb7b1153d7f938eaf637356d94aacf5522 -
Trigger Event:
workflow_dispatch
-
Statement type: