Skip to main content

Fast lon, lat to BNG conversion

Project description

Fast lon, lat to BNG conversion

Uses a Rust 1.x binary to perform fast longitude, latitude to BNG conversion. This module exposes two methods: util.convertbng() – pass a lon, lat. Returns a tuple of Eastings, Northings util.convertbng_list() – pass lists (or Numpy arrays) of lons, lats. Both methods return Easting, Northing tuples (in a list in the case of the latter).

Installation

Installation as a binary wheel using pip, for OS X: pip install convertbng Binary wheels aren’t yet available for Linux or Windows, but installation directly from Github works: pip install git+git://github.com/urschrei/convertbng.git

Usage

from convertbng.util import convertbng, convertbng_list

res = convertbng(lon, lat)

lons = [lon1, lon2, lon3]
lats = [lat1, lat2, lat3]
# assumes numpy imported as np
lons_np = np.array(lons)
lats_np = np.array(lats)

res_list = convertbng_list(lons, lats)
res_list_np = convertbng_list(lons_np, lats_np)

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

convertbng-0.1.17.tar.gz (1.8 MB view hashes)

Uploaded Source

Built Distribution

convertbng-0.1.17-cp27-none-macosx_10_6_intel.whl (1.8 MB view hashes)

Uploaded CPython 2.7 macOS 10.6+ intel

Supported by

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