Crates.io | lonlat_bng |
lib.rs | lonlat_bng |
version | 0.3.8 |
source | src |
created_at | 2015-07-05 18:12:35.681694 |
updated_at | 2016-08-08 21:08:45.760071 |
description | Convert longitude and latitude coordinates to BNG coordinates, and vice versa |
homepage | |
repository | https://github.com/urschrei/lonlat_bng |
max_upload_size | |
id | 2537 |
size | 791,800 |
Python (etc.) is relatively slow; this type of conversion is usually carried out in bulk, so an order-of-magnitude improvement using FFI saves both time and energy.
Conversions which solely use Helmert transforms are accurate to within around 5 metres, and are not suitable for calculations or conversions used in e.g. surveying. Thus, we use the OSTN02 transform, which adjusts for local variation within the Terrestrial Reference Frame by incorporating OSTN02 data. See here for more information.
The OSTN02-enabled functions are:
Add the following to your Cargo.toml
(the latest version is displayed on the fourth badge at the top of this screen)
lonlat_bng = "x.x.x"
Full library documentation is available here
Note that lon
, lat
coordinates outside the UK bounding box will be transformed to (NAN, NAN)
, which cannot be mapped.
The functions exposed by the library can be found here
The FFI C-compatible functions exposed by the library are:
convert_to_bng_threaded(Array, Array) -> Array
convert_to_lonlat_threaded(Array, Array) -> Array
convert_to_osgb36_threaded(Array, Array) -> Array
convert_to_etrs89_threaded(Array, Array) -> Array)
convert_osgb36_to_ll_threaded(Array, Array) -> Array
convert_etrs89_to_ll_threaded(Array, Array) -> Array
convert_etrs89_to_osgb36_threaded(Array, Array) -> Array
convert_osgb36_to_etrs89_threaded(Array, Array) -> Array
convert_epsg3857_to_wgs84_threaded(Array, Array) -> Array
If your library, module, or script uses the FFI functions, it must implement drop_float_array
. Failing to do so may result in memory leaks. It has the following signature: drop_float_array(ar1: Array, ar2: Array)
The Array structs you pass to drop_float_array
must be those you receive from the FFI function. For examples, see the Array
struct and tests in ffi.rs, and the _FFIArray
class in convertbng.
Running cargo build --release
will build an artefact called liblonlat_bng.dylib
on OSX, and liblonlat_bng.a
on *nix
systems. Note that you'll have to generate liblonlat_bng.so
for *nix
hosts using the following steps:
ar -x target/release/liblonlat_bng.a
gcc -shared *.o -o target/release/liblonlat_bng.so -lrt
convert_bng
is available from PyPI for OSX and *nix:
pip install convertbng
More information is available in its repository
A CProfile benchmark was run, comparing 50 runs of converting 1m random lon, lat pairs in NumPy arrays.
EC2 Instance Type | Processors (vCPU) | Rust Ctypes (s) | Rust Cython (s) | Pyproj (s) | % change, Ctypes vs Pyproj | % change, Pyproj vs Cython |
---|---|---|---|---|---|---|
c4.xlarge | 4 | 42.075 | 27.964 | 18.73 | 124.64% | -33.02% |
c4.2xlarge | 8 | 28.743 | 14.094 | 19.055 | 50.84% | 35.20% |
c4.4xlarge | 16 | 22.108 | 7.554 | 18.797 | 17.61% | 148.84% |
c4.8xlarge | 36 | 18.288 | 4.42 | 18.285 | 0.02% | 313.69% |
Using multithreading gives excellent performance; Pyproj – which is a compiled Cython binary – is less than 20% faster than Rust + Ctypes on a 16-CPU system, and gives identical performance on 36 CPUs.
A compiled Cython binary + Rust is faster than Pyproj on an 8-CPU system, and outperforms Pyproj by greater margins as the number of CPUs increase: at 36 CPUs, it is over 300% faster.
Comparing how varying threads and weights affects overall speed, using cargo bench
On both 2- and 8-core i7 machines, running convert_bng_threaded_vec
using one thread per core gives optimum performance, whereas Rayon does a good job at choosing its own optimum weight.
This software makes use of OSTN02 data, which is © Crown copyright, Ordnance Survey and the Ministry of Defence (MOD) 2002. All rights reserved. Provided under the BSD 2-clause license.