This repository contains a simple Python package for looking up UK postcodes to obtain their easting/northing coordinates and corresponding latitude/longitude values. The package reads data from CSV files based on the postcode prefix and uses this data to perform lookups efficiently.
- Lookup eastings and northings for a given UK postcode.
- Convert the easting and northing coordinates to latitude and longitude.
- Efficient caching using
functools.lru_cache
to improve performance for repeated postcode prefix lookups.
You can install this package directly from PyPI using pip
:
pip install uklookup
Once installed, you can use the package directly from the command line to look up the easting, northing, latitude, and longitude for a UK postcode:
python -m uklookup "SW1A 1AA"
Example output:
Postcode: SW1A 1AA
Easting: 530046, Northing: 179386
Latitude: 51.501009, Longitude: -0.141588
You can also import the package and use it in your own Python scripts.
from uklookup import lookup_postcode_lat_long
postcode = "SW1A 1AA"
lat_long = lookup_postcode_lat_long(postcode)
if lat_long:
lat, long = lat_long
print(f"Latitude: {lat}, Longitude: {long}")
else:
print("Postcode not found.")
Looks up the easting and northing for a given UK postcode. Returns a tuple of integers (easting, northing)
if found, or None
if the postcode is not in the dataset.
Looks up the latitude and longitude for a given UK postcode. Returns a tuple of floats (latitude, longitude)
if found, or None
if the postcode is not in the dataset.
numpy
convertbng
(for converting eastings/northings to latitudes/longitudes)
This project is licensed under the MIT License.
This project uses data from the Code-Point Open dataset provided by Ordnance Survey. The data is available under the Open Government Licence v3.0.
A much more comprehensive postcode lookup tool is available at postcodes.io. This project is a simple alternative for basic postcode lookups in an offline setting.
pgeocode looks like a much more advanced, multi-country, higher detail version of this tool. So if you are looking for a high power tool in offline setting check that out.