convertbng


Nameconvertbng JSON
Version 0.6.43 PyPI version JSON
download
home_pagehttps://github.com/urschrei/convertbng
SummaryFast lon, lat to and from ETRS89 and BNG (OSGB36) using the OS OSTN15 transform via Rust FFI
upload_time2023-07-03 11:23:09
maintainer
docs_urlNone
authorStephan Hügel
requires_python>=3.7
licenseMIT
keywords geo bng osgb36 gis etrs89 ostn02 ostn15
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![CI Status](https://github.com/urschrei/convertbng/actions/workflows/wheels.yml/badge.svg)](https://github.com/urschrei/convertbng/actions/workflows/wheels.yml) [![Coverage Status](https://coveralls.io/repos/github/urschrei/convertbng/badge.svg?branch=master)](https://coveralls.io/github/urschrei/convertbng?branch=master) [![PyPI Version](https://img.shields.io/pypi/v/convertbng.svg)](https://pypi.python.org/pypi/convertbng) [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](license.txt) [![Downloads](https://pepy.tech/badge/convertbng)](https://pepy.tech/project/convertbng)[![DOI](https://zenodo.org/badge/37950596.svg)](https://zenodo.org/badge/latestdoi/37950596)

# Description
A utility library for converting decimal [WGS84](http://spatialreference.org/ref/epsg/wgs-84/) longitude and latitude coordinates into ETRS89 ([EPSG:25830](http://spatialreference.org/ref/epsg/etrs89-utm-zone-30n/)) and/or British National Grid (More correctly: OSGB36, or [EPSG:27700](http://spatialreference.org/ref/epsg/osgb-1936-british-national-grid/)) Eastings and Northings, and vice versa.  

Conversion is handled by a [Rust binary](https://github.com/urschrei/rust_bng) using FFI, and is quite fast. Some benchmarks can be found [here](https://github.com/urschrei/lonlat_bng#benchmark).

# Installation
`pip install convertbng`  
Please use an up-to-date version of pip (`8.1.2` as of June 2016)

## Supported Platforms
The package has been built for and tested on the following platforms:
- Linux x86_64 and aarch64 Python 3.{7, 8, 9, 10, 11} (Manylinux2014)
- macOS x86_64 and arm64 Python 3.{7, 8, 9, 10, 11}
- Windows 64-bit Python 3.{7, 8, 9, 10, 11}

### Windows Binaries
The Rust DLL and the Cython extension used by this package have been built with an MSVC toolchain. You shouldn't need to install any additional runtimes in order for the wheel to work, but please open an issue if you encounter any errors.

# Usage
The functions accept either a sequence (such as a list or numpy array) of longitude or easting values and a sequence of latitude or northing values, **or** a single longitude/easting value and single latitude/northing value. Note the return type:  
`"returns a list of two lists containing floats, respectively"`

**NOTE**: Coordinate pairs outside the BNG bounding box, or without OSTN15 coverage will return a result of  
`[[nan], [nan]]`, which cannot be mapped. Since transformed coordinates are guaranteed to be returned in the same order as the input, it is trivial to check for this value. Alternatively, ensure your data fall within the bounding box before transforming them:  

**Longitude**:  
East: 1.7800  
West: -7.5600  
**Latitude**:  
North: 60.8400  
South: 49.9600  

All functions try to be liberal about what containers they accept: `list`, `tuple`, `array.array`, `numpy.ndarray`, and pretty much anything that has the `__iter__` attribute should work, including generators.

```python
from convertbng.util import convert_bng, convert_lonlat

# convert a single value
res = convert_bng(lon, lat)

# convert longitude and latitude to OSGB36 Eastings and Northings using OSTN15 corrections
lons = [lon1, lon2, lon3]
lats = [lat1, lat2, lat3]
res_list = convert_bng(lons, lats)

# convert lists of BNG Eastings and Northings to longitude, latitude
eastings = [easting1, easting2, easting3]
northings = [northing1, northing2, northing3]
res_list_en = convert_lonlat(eastings, northings)

# assumes numpy imported as np
lons_np = np.array(lons)
lats_np = np.array(lats)
    res_list_np = convert_bng(lons_np, lats_np)
```

# Cython Module
If you're comfortable with restricting yourself to `NumPy f64` arrays, you may use the Cython functions instead. These are identical to those listed below, but performance on large datasets is better. They are selected by changing the import statement  
`from convertbng.util import` to  
**`from convertbng.cutil import`**  

The conversion functions will accept most sequences which implement `__iter__`, as above (`list`, `tuple`, `float`, `array.array`, `numpy.ndarray`), but **will always return `NumPy f64 ndarray`**. In addition, you must ensure that your inputs are `float`, `f64`, or `d` in the case of `array.array`.  

## But I Have a List of Coordinate Pairs

```python
coords = [[1.0, 2.0], [3.0, 4.0]]
a, b = list(zip(*coords))
# a is (1.0, 3.0)
# b is (2.0, 4.0)
```
### But I have `Shapely` Geometries

```python
from convertbng.util import convert_etrs89_to_ll
from shapely.geometry import LineString
from shapely.ops import transform
from math import isnan
from functools import partial

def transform_protect_nan(f, xs, ys):
    # This function protects Shapely against NaN values in the output of the
    # transform, which would otherwise case a segfault.
    xs_t, ys_t = f(xs, ys)
    assert not any([isnan(x) for x in xs_t]), "Transformed xs contains NaNs"
    assert not any([isnan(y) for y in ys_t]), "Transformed ys contains NaNs"
    return xs_t, ys_t

convert_etrs89_to_lonlat_protect_nan = partial(transform_protect_nan, convert_etrs89_to_ll)

line = LineString([[651307.003, 313255.686], [651307.004, 313255.687]])

new_line = transform(convert_etrs89_to_lonlat_protect_nan, line)
```


# Available Conversions (AKA I Want To…)
- transform longitudes and latitudes to OSGB36 Eastings and Northings **very accurately**:
    - use `convert_bng()`
- transform OSGB36 Eastings and Northings to longitude and latitude, **very accurately**:
    - use `convert_lonlat()`
- transform longitudes and latitudes to ETRS89 Eastings and Northings, **very quickly** (without OSTN15 corrections):
    - use `convert_to_etrs89()`
- transform ETRS89 Eastings and Northings to ETRS89 longitude and latitude, **very quickly** (the transformation does not use OSTN15):
    - use `convert_etrs89_to_lonlat()`
- convert ETRS89 Eastings and Northings to their most accurate real-world representation, using the OSTN15 corrections:
    - use `convert_etrs89_to_osgb36()`

Provided for completeness:

- transform accurate OSGB36 Eastings and Northings to *less-accurate* ETRS89 Eastings and Northings:
    - use `convert_osgb36_to_etrs89()`

# Relationship between ETRS89 and WGS84
From [Transformations and OSGM02™ User guide](https://www.ordnancesurvey.co.uk/business-and-government/help-and-support/navigation-technology/os-net/formats-for-developers.html), p7. Emphasis mine.
>[…] ETRS89 is a precise version of the better known WGS84 reference system optimised for use in Europe; **however, for most purposes it can be considered equivalent to WGS84**.
Specifically, the motion of the European continental plate is not apparent in ETRS89, which allows a fixed relationship to be established between this system and Ordnance Survey mapping coordinate systems.
Additional precise versions of WGS84 are currently in use, notably ITRS; these are not equivalent to ETRS89. The difference between ITRS and ETRS89 is in the order of 0.25 m (in 1999), and growing by 0.025 m per year in UK and Ireland. This effect is only relevant in international scientific applications. **For all navigation, mapping, GIS, and engineering applications within the tectonically stable parts of Europe (including UK and Ireland), the term ETRS89 should be taken as synonymous with WGS84**.

In essence, this means that anywhere you see ETRS89 in this README, you can substitute WGS84. 

## What CRS Are My Data In
- if you have latitude and longitude coordinates: 
    - They're probably [WGS84](http://spatialreference.org/ref/epsg/wgs-84/). Everything's fine!
- if you got your coordinates from a smartphone or a consumer GPS:
    - They're probably [WGS84](http://spatialreference.org/ref/epsg/wgs-84/). Everything's fine!
- if you have x and y coordinates, or you got your coordinates from Google Maps or Bing Maps and they look something like `(-626172.1357121646, 6887893.4928337997)`, or the phrase "Spherical Mercator" is mentioned anywhere:
    - they're probably in [Web Mercator](http://spatialreference.org/ref/sr-org/6864/). You **must** convert them to WGS84 first. Use `convert_epsg3857_to_wgs84([x_coordinates], [y_coordinates])` to do so.

# Accuracy
`convert_bng` and `convert_lonlat` first use the standard seven-step [Helmert transform](https://en.wikipedia.org/wiki/Helmert_transformation) to convert coordinates. This is fast, but not particularly accurate – it can introduce positional error up to approximately 5 metres. For most applications, this is not of particular concern – the input data (especially those originating with smartphone GPS) probably exceed this level of error in any case. In order to adjust for this, the OSTN15 adjustments for the kilometer-grid the ETRS89 point falls in are retrieved, and a linear interpolation to give final, accurate coordinates is carried out. This process happens in reverse for `convert_lonlat`.

## OSTN15
[OSTN15](https://www.ordnancesurvey.co.uk/business-and-government/help-and-support/navigation-technology/os-net/surveying.html) data are used for highly accurate conversions from ETRS89 latitude and longitude, or ETRS89 Eastings and Northings to OSGB36 Eastings and Northings, and vice versa. These data will usually have been recorded using the [National GPS Network](https://www.ordnancesurvey.co.uk/business-and-government/products/os-net/index.html):

### Accuracy of *Your* Data
Conversion of your coordinates using OSTN15 transformations will be accurate, but if you're using consumer equipment, or got your data off the web, be aware that you're converting coordinates which probably weren't accurately recorded in the first place. That's because [accurate surveying is difficult](https://www.ordnancesurvey.co.uk/business-and-government/help-and-support/navigation-technology/os-net/surveying.html).

### Accuracy of the OSTN15 transformation used in this library
- ETRS89 longitude and latitude / Eastings and Northings to OSGB36 conversion agrees with the provided Ordnance Survey test data in **39 of the 40** test coordinates (excluding two coordinates designed to return no data; these correctly fail).
- The only discrepancy – in point `TP31`–  is **1mm**.
- OSGB36 to ETRS89 longitude and latitude conversion is accurate to within 8 decimal places, or 1.1mm.

### A Note on Ellipsoids
WGS84 and ETRS89 coordinates use the GRS80 ellipsoid, whereas OSGB36 uses the Airy 1830 ellipsoid, which provides a regional best fit for Britain. Positions for coordinates in Great Britain can differ by over 100m as a result. It is thus inadvisable to attempt calculations using mixed ETRS89 and OSGB36 coordinates.

[![OSTN15](ostn002_s.gif)]( "OSTN15")

## Implementation
The main detail of interest is the FFI interface between Python and Rust, the Python side of which can be found in [util.py](https://github.com/urschrei/convertbng/blob/master/convertbng/util.py#L64-L100) (the `ctypes` implementation), [cutil.pyx](https://github.com/urschrei/convertbng/blob/master/convertbng/cutil.pyx#L51-L86) (the `cython` implementation), and the Rust side of which can be found in [ffi.rs](https://github.com/urschrei/rust_bng/blob/master/src/ffi.rs#L47-L271).  
The [ctypes](https://docs.python.org/2/library/ctypes.html) library expects C-compatible data structures, which we define in Rust (see above). We then define methods which allow us to receive, safely access, return, and free data across the FFI boundary.  
Finally, we link the Rust conversion functions from `util.py` [again](https://github.com/urschrei/convertbng/blob/master/convertbng/util.py#L103-L205). Note the `errcheck` assignments, which convert the FFI-compatible ctypes data structures to tuple lists. 

# Building the binary for local development
- ensure you have Rust 1.x and Cargo [installed](https://www.rustup.rs)
- download the Rust extension for your platform from [github](https://github.com/urschrei/rust_bng/releases)
- copy the binary into the `convertbng` directory
- run `python setup.py build_ext --inplace`

# Tests
- install `pytest`
- run `pytest`

# License
[MIT](license.txt)

## Citing `Convertbng`
If Convertbng has been significant in your research, and you would like to acknowledge the project in your academic publication, we suggest citing it as follows (example in APA style, 7th edition):

> Hügel, S. (2021). Convertbng (Version X.Y.Z) [Computer software]. https://doi.org/10.5281/zenodo.5774931

In Bibtex format:

    @software{Hugel_Convertbng_2021,
    author = {Hügel, Stephan},
    doi = {10.5281/zenodo.5774931},
    license = {MIT},
    month = {12},
    title = {{Convertbng}},
    url = {https://github.com/urschrei/convertbng},
    version = {X.Y.Z},
    year = {2021}
    }

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/urschrei/convertbng",
    "name": "convertbng",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "Geo,BNG,OSGB36,GIS,ETRS89,OSTN02,OSTN15",
    "author": "Stephan H\u00fcgel",
    "author_email": "urschrei@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/f7/60/0a5313853b9031c061068d28b84b8260c2f7798736bcb65ebde4626461bb/convertbng-0.6.43.tar.gz",
    "platform": null,
    "description": "[![CI Status](https://github.com/urschrei/convertbng/actions/workflows/wheels.yml/badge.svg)](https://github.com/urschrei/convertbng/actions/workflows/wheels.yml) [![Coverage Status](https://coveralls.io/repos/github/urschrei/convertbng/badge.svg?branch=master)](https://coveralls.io/github/urschrei/convertbng?branch=master) [![PyPI Version](https://img.shields.io/pypi/v/convertbng.svg)](https://pypi.python.org/pypi/convertbng) [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](license.txt) [![Downloads](https://pepy.tech/badge/convertbng)](https://pepy.tech/project/convertbng)[![DOI](https://zenodo.org/badge/37950596.svg)](https://zenodo.org/badge/latestdoi/37950596)\n\n# Description\nA utility library for converting decimal [WGS84](http://spatialreference.org/ref/epsg/wgs-84/) longitude and latitude coordinates into ETRS89 ([EPSG:25830](http://spatialreference.org/ref/epsg/etrs89-utm-zone-30n/)) and/or British National Grid (More correctly: OSGB36, or [EPSG:27700](http://spatialreference.org/ref/epsg/osgb-1936-british-national-grid/)) Eastings and Northings, and vice versa.  \n\nConversion is handled by a [Rust binary](https://github.com/urschrei/rust_bng) using FFI, and is quite fast. Some benchmarks can be found [here](https://github.com/urschrei/lonlat_bng#benchmark).\n\n# Installation\n`pip install convertbng`  \nPlease use an up-to-date version of pip (`8.1.2` as of June 2016)\n\n## Supported Platforms\nThe package has been built for and tested on the following platforms:\n- Linux x86_64 and aarch64 Python 3.{7, 8, 9, 10, 11} (Manylinux2014)\n- macOS x86_64 and arm64 Python 3.{7, 8, 9, 10, 11}\n- Windows 64-bit Python 3.{7, 8, 9, 10, 11}\n\n### Windows Binaries\nThe Rust DLL and the Cython extension used by this package have been built with an MSVC toolchain. You shouldn't need to install any additional runtimes in order for the wheel to work, but please open an issue if you encounter any errors.\n\n# Usage\nThe functions accept either a sequence (such as a list or numpy array) of longitude or easting values and a sequence of latitude or northing values, **or** a single longitude/easting value and single latitude/northing value. Note the return type:  \n`\"returns a list of two lists containing floats, respectively\"`\n\n**NOTE**: Coordinate pairs outside the BNG bounding box, or without OSTN15 coverage will return a result of  \n`[[nan], [nan]]`, which cannot be mapped. Since transformed coordinates are guaranteed to be returned in the same order as the input, it is trivial to check for this value. Alternatively, ensure your data fall within the bounding box before transforming them:  \n\n**Longitude**:  \nEast: 1.7800  \nWest: -7.5600  \n**Latitude**:  \nNorth: 60.8400  \nSouth: 49.9600  \n\nAll functions try to be liberal about what containers they accept: `list`, `tuple`, `array.array`, `numpy.ndarray`, and pretty much anything that has the `__iter__` attribute should work, including generators.\n\n```python\nfrom convertbng.util import convert_bng, convert_lonlat\n\n# convert a single value\nres = convert_bng(lon, lat)\n\n# convert longitude and latitude to OSGB36 Eastings and Northings using OSTN15 corrections\nlons = [lon1, lon2, lon3]\nlats = [lat1, lat2, lat3]\nres_list = convert_bng(lons, lats)\n\n# convert lists of BNG Eastings and Northings to longitude, latitude\neastings = [easting1, easting2, easting3]\nnorthings = [northing1, northing2, northing3]\nres_list_en = convert_lonlat(eastings, northings)\n\n# assumes numpy imported as np\nlons_np = np.array(lons)\nlats_np = np.array(lats)\n    res_list_np = convert_bng(lons_np, lats_np)\n```\n\n# Cython Module\nIf you're comfortable with restricting yourself to `NumPy f64` arrays, you may use the Cython functions instead. These are identical to those listed below, but performance on large datasets is better. They are selected by changing the import statement  \n`from convertbng.util import` to  \n**`from convertbng.cutil import`**  \n\nThe conversion functions will accept most sequences which implement `__iter__`, as above (`list`, `tuple`, `float`, `array.array`, `numpy.ndarray`), but **will always return `NumPy f64 ndarray`**. In addition, you must ensure that your inputs are `float`, `f64`, or `d` in the case of `array.array`.  \n\n## But I Have a List of Coordinate Pairs\n\n```python\ncoords = [[1.0, 2.0], [3.0, 4.0]]\na, b = list(zip(*coords))\n# a is (1.0, 3.0)\n# b is (2.0, 4.0)\n```\n### But I have `Shapely` Geometries\n\n```python\nfrom convertbng.util import convert_etrs89_to_ll\nfrom shapely.geometry import LineString\nfrom shapely.ops import transform\nfrom math import isnan\nfrom functools import partial\n\ndef transform_protect_nan(f, xs, ys):\n    # This function protects Shapely against NaN values in the output of the\n    # transform, which would otherwise case a segfault.\n    xs_t, ys_t = f(xs, ys)\n    assert not any([isnan(x) for x in xs_t]), \"Transformed xs contains NaNs\"\n    assert not any([isnan(y) for y in ys_t]), \"Transformed ys contains NaNs\"\n    return xs_t, ys_t\n\nconvert_etrs89_to_lonlat_protect_nan = partial(transform_protect_nan, convert_etrs89_to_ll)\n\nline = LineString([[651307.003, 313255.686], [651307.004, 313255.687]])\n\nnew_line = transform(convert_etrs89_to_lonlat_protect_nan, line)\n```\n\n\n# Available Conversions (AKA I Want To\u2026)\n- transform longitudes and latitudes to OSGB36 Eastings and Northings **very accurately**:\n    - use `convert_bng()`\n- transform OSGB36 Eastings and Northings to longitude and latitude, **very accurately**:\n    - use `convert_lonlat()`\n- transform longitudes and latitudes to ETRS89 Eastings and Northings, **very quickly** (without OSTN15 corrections):\n    - use `convert_to_etrs89()`\n- transform ETRS89 Eastings and Northings to ETRS89 longitude and latitude, **very quickly** (the transformation does not use OSTN15):\n    - use `convert_etrs89_to_lonlat()`\n- convert ETRS89 Eastings and Northings to their most accurate real-world representation, using the OSTN15 corrections:\n    - use `convert_etrs89_to_osgb36()`\n\nProvided for completeness:\n\n- transform accurate OSGB36 Eastings and Northings to *less-accurate* ETRS89 Eastings and Northings:\n    - use `convert_osgb36_to_etrs89()`\n\n# Relationship between ETRS89 and WGS84\nFrom [Transformations and OSGM02\u2122 User guide](https://www.ordnancesurvey.co.uk/business-and-government/help-and-support/navigation-technology/os-net/formats-for-developers.html), p7. Emphasis mine.\n>[\u2026] ETRS89 is a precise version of the better known WGS84 reference system optimised for use in Europe; **however, for most purposes it can be considered equivalent to WGS84**.\nSpecifically, the motion of the European continental plate is not apparent in ETRS89, which allows a fixed relationship to be established between this system and Ordnance Survey mapping coordinate systems.\nAdditional precise versions of WGS84 are currently in use, notably ITRS; these are not equivalent to ETRS89. The difference between ITRS and ETRS89 is in the order of 0.25 m (in 1999), and growing by 0.025 m per year in UK and Ireland. This effect is only relevant in international scientific applications. **For all navigation, mapping, GIS, and engineering applications within the tectonically stable parts of Europe (including UK and Ireland), the term ETRS89 should be taken as synonymous with WGS84**.\n\nIn essence, this means that anywhere you see ETRS89 in this README, you can substitute WGS84. \n\n## What CRS Are My Data In\n- if you have latitude and longitude coordinates: \n    - They're probably [WGS84](http://spatialreference.org/ref/epsg/wgs-84/). Everything's fine!\n- if you got your coordinates from a smartphone or a consumer GPS:\n    - They're probably [WGS84](http://spatialreference.org/ref/epsg/wgs-84/). Everything's fine!\n- if you have x and y coordinates, or you got your coordinates from Google Maps or Bing Maps and they look something like `(-626172.1357121646, 6887893.4928337997)`, or the phrase \"Spherical Mercator\" is mentioned anywhere:\n    - they're probably in [Web Mercator](http://spatialreference.org/ref/sr-org/6864/). You **must** convert them to WGS84 first. Use `convert_epsg3857_to_wgs84([x_coordinates], [y_coordinates])` to do so.\n\n# Accuracy\n`convert_bng` and `convert_lonlat` first use the standard seven-step [Helmert transform](https://en.wikipedia.org/wiki/Helmert_transformation) to convert coordinates. This is fast, but not particularly accurate \u2013 it can introduce positional error up to approximately 5 metres. For most applications, this is not of particular concern \u2013 the input data (especially those originating with smartphone GPS) probably exceed this level of error in any case. In order to adjust for this, the OSTN15 adjustments for the kilometer-grid the ETRS89 point falls in are retrieved, and a linear interpolation to give final, accurate coordinates is carried out. This process happens in reverse for `convert_lonlat`.\n\n## OSTN15\n[OSTN15](https://www.ordnancesurvey.co.uk/business-and-government/help-and-support/navigation-technology/os-net/surveying.html) data are used for highly accurate conversions from ETRS89 latitude and longitude, or ETRS89 Eastings and Northings to OSGB36 Eastings and Northings, and vice versa. These data will usually have been recorded using the [National GPS Network](https://www.ordnancesurvey.co.uk/business-and-government/products/os-net/index.html):\n\n### Accuracy of *Your* Data\nConversion of your coordinates using OSTN15 transformations will be accurate, but if you're using consumer equipment, or got your data off the web, be aware that you're converting coordinates which probably weren't accurately recorded in the first place. That's because [accurate surveying is difficult](https://www.ordnancesurvey.co.uk/business-and-government/help-and-support/navigation-technology/os-net/surveying.html).\n\n### Accuracy of the OSTN15 transformation used in this library\n- ETRS89 longitude and latitude / Eastings and Northings to OSGB36 conversion agrees with the provided Ordnance Survey test data in **39 of the 40** test coordinates (excluding two coordinates designed to return no data; these correctly fail).\n- The only discrepancy \u2013 in point `TP31`\u2013  is **1mm**.\n- OSGB36 to ETRS89 longitude and latitude conversion is accurate to within 8 decimal places, or 1.1mm.\n\n### A Note on Ellipsoids\nWGS84 and ETRS89 coordinates use the GRS80 ellipsoid, whereas OSGB36 uses the Airy 1830 ellipsoid, which provides a regional best fit for Britain. Positions for coordinates in Great Britain can differ by over 100m as a result. It is thus inadvisable to attempt calculations using mixed ETRS89 and OSGB36 coordinates.\n\n[![OSTN15](ostn002_s.gif)]( \"OSTN15\")\n\n## Implementation\nThe main detail of interest is the FFI interface between Python and Rust, the Python side of which can be found in [util.py](https://github.com/urschrei/convertbng/blob/master/convertbng/util.py#L64-L100) (the `ctypes` implementation), [cutil.pyx](https://github.com/urschrei/convertbng/blob/master/convertbng/cutil.pyx#L51-L86) (the `cython` implementation), and the Rust side of which can be found in [ffi.rs](https://github.com/urschrei/rust_bng/blob/master/src/ffi.rs#L47-L271).  \nThe [ctypes](https://docs.python.org/2/library/ctypes.html) library expects C-compatible data structures, which we define in Rust (see above). We then define methods which allow us to receive, safely access, return, and free data across the FFI boundary.  \nFinally, we link the Rust conversion functions from `util.py` [again](https://github.com/urschrei/convertbng/blob/master/convertbng/util.py#L103-L205). Note the `errcheck` assignments, which convert the FFI-compatible ctypes data structures to tuple lists. \n\n# Building the binary for local development\n- ensure you have Rust 1.x and Cargo [installed](https://www.rustup.rs)\n- download the Rust extension for your platform from [github](https://github.com/urschrei/rust_bng/releases)\n- copy the binary into the `convertbng` directory\n- run `python setup.py build_ext --inplace`\n\n# Tests\n- install `pytest`\n- run `pytest`\n\n# License\n[MIT](license.txt)\n\n## Citing `Convertbng`\nIf Convertbng has been significant in your research, and you would like to acknowledge the project in your academic publication, we suggest citing it as follows (example in APA style, 7th edition):\n\n> H\u00fcgel, S. (2021). Convertbng (Version X.Y.Z) [Computer software]. https://doi.org/10.5281/zenodo.5774931\n\nIn Bibtex format:\n\n    @software{Hugel_Convertbng_2021,\n    author = {H\u00fcgel, Stephan},\n    doi = {10.5281/zenodo.5774931},\n    license = {MIT},\n    month = {12},\n    title = {{Convertbng}},\n    url = {https://github.com/urschrei/convertbng},\n    version = {X.Y.Z},\n    year = {2021}\n    }\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Fast lon, lat to and from ETRS89 and BNG (OSGB36) using the OS OSTN15 transform via Rust FFI",
    "version": "0.6.43",
    "project_urls": {
        "Homepage": "https://github.com/urschrei/convertbng",
        "Source": "https://github.com/urschrei/convertbng",
        "Tracker": "https://github.com/urschrei/convertbng/issues"
    },
    "split_keywords": [
        "geo",
        "bng",
        "osgb36",
        "gis",
        "etrs89",
        "ostn02",
        "ostn15"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "200147a511748b0e192e38cf0f4faf435f9327ceb2fe43c66afe5ed8bd0c252f",
                "md5": "c6e049c64f743b8d4155bc8c1e8fa133",
                "sha256": "f1389f8462886cf9fa21de58980de685fe5a9aef83775841221169396187e07c"
            },
            "downloads": -1,
            "filename": "convertbng-0.6.43-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c6e049c64f743b8d4155bc8c1e8fa133",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 13681853,
            "upload_time": "2023-07-03T11:21:30",
            "upload_time_iso_8601": "2023-07-03T11:21:30.030099Z",
            "url": "https://files.pythonhosted.org/packages/20/01/47a511748b0e192e38cf0f4faf435f9327ceb2fe43c66afe5ed8bd0c252f/convertbng-0.6.43-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2015ce02f4849e9a6fa4419a7476bedd30436f87ae532e6bf4a39c527ea303ed",
                "md5": "27607705f51d9867a68f9ab51e0d6e2c",
                "sha256": "769fc964ce51ccf1bd1ec4c924241b03cf75df338b9bb78b5941bc124f1344f4"
            },
            "downloads": -1,
            "filename": "convertbng-0.6.43-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "27607705f51d9867a68f9ab51e0d6e2c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 13900310,
            "upload_time": "2023-07-03T11:21:35",
            "upload_time_iso_8601": "2023-07-03T11:21:35.033415Z",
            "url": "https://files.pythonhosted.org/packages/20/15/ce02f4849e9a6fa4419a7476bedd30436f87ae532e6bf4a39c527ea303ed/convertbng-0.6.43-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8aeaba378060c330dcabcab92e32d586f012df7e1dbf7ae4235aeecd473a171c",
                "md5": "849503d8f0a7ebff3d1778dcb66f329d",
                "sha256": "eb9e5bfa063b16cf52524bba1a6d11a2d743acebe7db776a3bf441ba200cdb7e"
            },
            "downloads": -1,
            "filename": "convertbng-0.6.43-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "849503d8f0a7ebff3d1778dcb66f329d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 14011985,
            "upload_time": "2023-07-03T11:22:05",
            "upload_time_iso_8601": "2023-07-03T11:22:05.485410Z",
            "url": "https://files.pythonhosted.org/packages/8a/ea/ba378060c330dcabcab92e32d586f012df7e1dbf7ae4235aeecd473a171c/convertbng-0.6.43-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c2d88b4e9b0d16dbd8f2de3bc3cba9b68b66b94bb82dfd62bbf6252d70b1056",
                "md5": "0c4858561178abd4a836847b0f865f5e",
                "sha256": "e0d56836e9ce5c8117b929884908f24bcd414af93ea303a3e391714703891693"
            },
            "downloads": -1,
            "filename": "convertbng-0.6.43-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0c4858561178abd4a836847b0f865f5e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 14028566,
            "upload_time": "2023-07-03T11:22:08",
            "upload_time_iso_8601": "2023-07-03T11:22:08.561034Z",
            "url": "https://files.pythonhosted.org/packages/2c/2d/88b4e9b0d16dbd8f2de3bc3cba9b68b66b94bb82dfd62bbf6252d70b1056/convertbng-0.6.43-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "95718d85e54beec1e328df4efd6c5a73ce842e277d3d369ccfcab3a87390e2ad",
                "md5": "489b6216fbea7837e4d64c64c71e6c9f",
                "sha256": "155b6f03077ee2e605461537088a449e0580cc17b4e325f9a10465d0892100ee"
            },
            "downloads": -1,
            "filename": "convertbng-0.6.43-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "489b6216fbea7837e4d64c64c71e6c9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 13615751,
            "upload_time": "2023-07-03T11:22:46",
            "upload_time_iso_8601": "2023-07-03T11:22:46.086848Z",
            "url": "https://files.pythonhosted.org/packages/95/71/8d85e54beec1e328df4efd6c5a73ce842e277d3d369ccfcab3a87390e2ad/convertbng-0.6.43-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6331a8251bc722b00d83b93026de1ac80ad6202e287add308525f675be503cc",
                "md5": "c5662dfe7ba6232fa109189cc0d1ff17",
                "sha256": "fd45261938c86b46e9d1fa1be8f03db438e57bd347121824786e8004ba626ed6"
            },
            "downloads": -1,
            "filename": "convertbng-0.6.43-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c5662dfe7ba6232fa109189cc0d1ff17",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 13680656,
            "upload_time": "2023-07-03T11:21:38",
            "upload_time_iso_8601": "2023-07-03T11:21:38.354152Z",
            "url": "https://files.pythonhosted.org/packages/d6/33/1a8251bc722b00d83b93026de1ac80ad6202e287add308525f675be503cc/convertbng-0.6.43-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2acc7d350633305113301ef9dd4b7d5abd33eab08ff4e4c636dc45d837d603f1",
                "md5": "5e7b98ab31948859c90da755dff7ae79",
                "sha256": "122f7be7da169ff4350fe9635f539723dbe24a241cb77d6408844788ddac0201"
            },
            "downloads": -1,
            "filename": "convertbng-0.6.43-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5e7b98ab31948859c90da755dff7ae79",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 13899262,
            "upload_time": "2023-07-03T11:21:45",
            "upload_time_iso_8601": "2023-07-03T11:21:45.856676Z",
            "url": "https://files.pythonhosted.org/packages/2a/cc/7d350633305113301ef9dd4b7d5abd33eab08ff4e4c636dc45d837d603f1/convertbng-0.6.43-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "835c4d2c761b93080591598b85af39ec2c4267faac9bdec4ee3405a1308d9a10",
                "md5": "a218d61170dd0cd9fe5164091d19ca0d",
                "sha256": "41d2e5cbe6fac0746c070e23104858df85a6a29aab83daa1a48fb4f10372ea15"
            },
            "downloads": -1,
            "filename": "convertbng-0.6.43-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a218d61170dd0cd9fe5164091d19ca0d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 14030727,
            "upload_time": "2023-07-03T11:22:11",
            "upload_time_iso_8601": "2023-07-03T11:22:11.801713Z",
            "url": "https://files.pythonhosted.org/packages/83/5c/4d2c761b93080591598b85af39ec2c4267faac9bdec4ee3405a1308d9a10/convertbng-0.6.43-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eaeb47f20627664f7d2e331d5eb4a10e653f3a5e487c49f11ee8623da6c95e4e",
                "md5": "8814f4da7480aaec1ba3554044931063",
                "sha256": "27c61ac415962d6d361caf0e23a974a0cf7de135749f1d3b4fab984066fb2e1e"
            },
            "downloads": -1,
            "filename": "convertbng-0.6.43-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8814f4da7480aaec1ba3554044931063",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 14046790,
            "upload_time": "2023-07-03T11:22:15",
            "upload_time_iso_8601": "2023-07-03T11:22:15.422570Z",
            "url": "https://files.pythonhosted.org/packages/ea/eb/47f20627664f7d2e331d5eb4a10e653f3a5e487c49f11ee8623da6c95e4e/convertbng-0.6.43-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a043e5827f9f96df213e19893cddd49560087eaf420a1e6ee50479b6f3035d0",
                "md5": "33f87a38d8e202d7def8d0f0c92fd753",
                "sha256": "cb1c89140c5c061121503090b08e5794b38c8a9ae8155388a0939b1e13be0072"
            },
            "downloads": -1,
            "filename": "convertbng-0.6.43-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "33f87a38d8e202d7def8d0f0c92fd753",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 13614981,
            "upload_time": "2023-07-03T11:22:55",
            "upload_time_iso_8601": "2023-07-03T11:22:55.958522Z",
            "url": "https://files.pythonhosted.org/packages/4a/04/3e5827f9f96df213e19893cddd49560087eaf420a1e6ee50479b6f3035d0/convertbng-0.6.43-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9611e04fda2caaac7967b61e8c59fbbb746517ae185f0f1c13113c7652180705",
                "md5": "8c51b183df64a5f900e04abc04d03a6b",
                "sha256": "22018f21ba031cdeac04287f7be876cdd3e4c7ed6d7d8642e36c0fefa02a41d0"
            },
            "downloads": -1,
            "filename": "convertbng-0.6.43-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8c51b183df64a5f900e04abc04d03a6b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 13680553,
            "upload_time": "2023-07-03T11:21:48",
            "upload_time_iso_8601": "2023-07-03T11:21:48.954118Z",
            "url": "https://files.pythonhosted.org/packages/96/11/e04fda2caaac7967b61e8c59fbbb746517ae185f0f1c13113c7652180705/convertbng-0.6.43-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3abddb21b1ad863af5ef1346fd5e18081857bb366e2090e09ccd8aeaab9141a",
                "md5": "841fe5d0ba1f85f9f845b55e1945a595",
                "sha256": "9f37b63a3183487e248b28b0e5a997bf23d3de2823647cbae500a601aa99ad3e"
            },
            "downloads": -1,
            "filename": "convertbng-0.6.43-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "841fe5d0ba1f85f9f845b55e1945a595",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 13995614,
            "upload_time": "2023-07-03T11:22:19",
            "upload_time_iso_8601": "2023-07-03T11:22:19.072907Z",
            "url": "https://files.pythonhosted.org/packages/a3/ab/ddb21b1ad863af5ef1346fd5e18081857bb366e2090e09ccd8aeaab9141a/convertbng-0.6.43-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3509616fcc6b6aa62420a0c345460629e37d8067dab1385626ce14b43de29799",
                "md5": "6ffc12c1ae51c9b4c3f5a64e678fd5d3",
                "sha256": "9479b24ef71c5e9db01dd6582150203e5ec1c12050c596cf97ce602a859c915f"
            },
            "downloads": -1,
            "filename": "convertbng-0.6.43-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6ffc12c1ae51c9b4c3f5a64e678fd5d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 14011617,
            "upload_time": "2023-07-03T11:22:22",
            "upload_time_iso_8601": "2023-07-03T11:22:22.476874Z",
            "url": "https://files.pythonhosted.org/packages/35/09/616fcc6b6aa62420a0c345460629e37d8067dab1385626ce14b43de29799/convertbng-0.6.43-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d3ad85501ea0a16fb9f82e51c1e556fc6376786494a44b225ee7250e02a8a848",
                "md5": "07c0cb110860bfd6790aca3b2e319bfd",
                "sha256": "ae6b7a760f12bb03084e7516394b42b5655f375c9160a484de24751c461cef11"
            },
            "downloads": -1,
            "filename": "convertbng-0.6.43-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "07c0cb110860bfd6790aca3b2e319bfd",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 13616225,
            "upload_time": "2023-07-03T11:22:59",
            "upload_time_iso_8601": "2023-07-03T11:22:59.020153Z",
            "url": "https://files.pythonhosted.org/packages/d3/ad/85501ea0a16fb9f82e51c1e556fc6376786494a44b225ee7250e02a8a848/convertbng-0.6.43-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f965fe8824acca3a855bf3e45df9409cd0d2f753a6f2b47dc2143407b6e91ef",
                "md5": "139d9121b70d79a7388ffb220e716292",
                "sha256": "cd647f1f0c70ea9bf3b8d58637073b85f9d47068e65de9746874db258b4df748"
            },
            "downloads": -1,
            "filename": "convertbng-0.6.43-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "139d9121b70d79a7388ffb220e716292",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 13680258,
            "upload_time": "2023-07-03T11:21:52",
            "upload_time_iso_8601": "2023-07-03T11:21:52.740317Z",
            "url": "https://files.pythonhosted.org/packages/4f/96/5fe8824acca3a855bf3e45df9409cd0d2f753a6f2b47dc2143407b6e91ef/convertbng-0.6.43-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f9f08f6893170fda645bfad28420312457df2f69088cdc7c0b19e50a68385c8",
                "md5": "7ebc3e1b5ca7cfa7c0c01b71d79872c3",
                "sha256": "67787cf0be8005ece7adefd05da12bb2e3a1fc214a7bfcbe188a2ecc71411ebb"
            },
            "downloads": -1,
            "filename": "convertbng-0.6.43-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7ebc3e1b5ca7cfa7c0c01b71d79872c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 13899045,
            "upload_time": "2023-07-03T11:21:55",
            "upload_time_iso_8601": "2023-07-03T11:21:55.802262Z",
            "url": "https://files.pythonhosted.org/packages/8f/9f/08f6893170fda645bfad28420312457df2f69088cdc7c0b19e50a68385c8/convertbng-0.6.43-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "44b1336bc1faf7f746aff2f15faa8e70640ab77dc847244a72fb9aaccbadaa1c",
                "md5": "588afeb5f19857c071cf5937beab1d9d",
                "sha256": "a289b4a71e574b81df268a71cf71c519f8b8534aa88503e2dd2a37b51b78a1f9"
            },
            "downloads": -1,
            "filename": "convertbng-0.6.43-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "588afeb5f19857c071cf5937beab1d9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 14025638,
            "upload_time": "2023-07-03T11:22:28",
            "upload_time_iso_8601": "2023-07-03T11:22:28.522988Z",
            "url": "https://files.pythonhosted.org/packages/44/b1/336bc1faf7f746aff2f15faa8e70640ab77dc847244a72fb9aaccbadaa1c/convertbng-0.6.43-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "31b69be10aae7dc84a06e8975663d9f1dcd4dca9a40c74cd5c21bc8054333175",
                "md5": "66a41a78c5821622af76156f51d8b2d9",
                "sha256": "8c97259ba13fc67ebf1d659b78abfb314480d7e417eb8db2ebdedb4b166016e4"
            },
            "downloads": -1,
            "filename": "convertbng-0.6.43-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "66a41a78c5821622af76156f51d8b2d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 14041050,
            "upload_time": "2023-07-03T11:22:31",
            "upload_time_iso_8601": "2023-07-03T11:22:31.802443Z",
            "url": "https://files.pythonhosted.org/packages/31/b6/9be10aae7dc84a06e8975663d9f1dcd4dca9a40c74cd5c21bc8054333175/convertbng-0.6.43-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fcd8c52f860e00b8ab2416d60ee08b0af6b7aed4dd5c915acc3b8b389094ad6b",
                "md5": "27e2161db9b0142bf784bc5c2f856900",
                "sha256": "efb4cfee8d5b0e0a1bf9f58bbee4d073f2c517ee927cc1864eaa9b5ca730c2b7"
            },
            "downloads": -1,
            "filename": "convertbng-0.6.43-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "27e2161db9b0142bf784bc5c2f856900",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 13682138,
            "upload_time": "2023-07-03T11:21:58",
            "upload_time_iso_8601": "2023-07-03T11:21:58.995955Z",
            "url": "https://files.pythonhosted.org/packages/fc/d8/c52f860e00b8ab2416d60ee08b0af6b7aed4dd5c915acc3b8b389094ad6b/convertbng-0.6.43-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33070aa7a237c78c1f99f3c35ed0bb13da3d6c68b52e478cb99c9d9dac538c05",
                "md5": "7070fba52a4745daaa009d42c1e97ff0",
                "sha256": "eede62b46f698a43d4969767cb5dfe4e0cba1f53731a4f693e46ac36f0a46044"
            },
            "downloads": -1,
            "filename": "convertbng-0.6.43-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7070fba52a4745daaa009d42c1e97ff0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 13900591,
            "upload_time": "2023-07-03T11:22:02",
            "upload_time_iso_8601": "2023-07-03T11:22:02.070205Z",
            "url": "https://files.pythonhosted.org/packages/33/07/0aa7a237c78c1f99f3c35ed0bb13da3d6c68b52e478cb99c9d9dac538c05/convertbng-0.6.43-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "887d412638f2ff35cb799bfa0e4a42bf7158c4eeac4e5d82471aab5b97608f4e",
                "md5": "54765fb6e4b7153f7a19c4b316632c9b",
                "sha256": "12503539bd797200640a2f6ab91e1d1a9aff2cb754d2020fbdea8dbd41782f1f"
            },
            "downloads": -1,
            "filename": "convertbng-0.6.43-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "54765fb6e4b7153f7a19c4b316632c9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 14023205,
            "upload_time": "2023-07-03T11:22:36",
            "upload_time_iso_8601": "2023-07-03T11:22:36.481677Z",
            "url": "https://files.pythonhosted.org/packages/88/7d/412638f2ff35cb799bfa0e4a42bf7158c4eeac4e5d82471aab5b97608f4e/convertbng-0.6.43-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "efe54b5472d0205187356e700321feba14e70b9282bc82b165bf0a19827d56e4",
                "md5": "40e8e5e4e3af3a0f59715da373ac86c5",
                "sha256": "0fe218a6d0ade1a6189a236b870a949c6ba455d86611b4f996867c5fb1f3f114"
            },
            "downloads": -1,
            "filename": "convertbng-0.6.43-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "40e8e5e4e3af3a0f59715da373ac86c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 14039310,
            "upload_time": "2023-07-03T11:22:42",
            "upload_time_iso_8601": "2023-07-03T11:22:42.814478Z",
            "url": "https://files.pythonhosted.org/packages/ef/e5/4b5472d0205187356e700321feba14e70b9282bc82b165bf0a19827d56e4/convertbng-0.6.43-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a182662fd20d3719ef9f635bcea36b382dbbb931567cb9b51a7f55b253ebb3a5",
                "md5": "c7033a097b251905e13025354f393716",
                "sha256": "51d71f03e702f1de08c0609b3ef47bccba9b643dbfa94f336f042c44fc998279"
            },
            "downloads": -1,
            "filename": "convertbng-0.6.43-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c7033a097b251905e13025354f393716",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 13616844,
            "upload_time": "2023-07-03T11:23:06",
            "upload_time_iso_8601": "2023-07-03T11:23:06.827879Z",
            "url": "https://files.pythonhosted.org/packages/a1/82/662fd20d3719ef9f635bcea36b382dbbb931567cb9b51a7f55b253ebb3a5/convertbng-0.6.43-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f7600a5313853b9031c061068d28b84b8260c2f7798736bcb65ebde4626461bb",
                "md5": "2726efb81a72dd168aaf2f9abfca3ed5",
                "sha256": "e6dffb2288dd85fa207d0d329043e1704eb526591e84204ff10ed7f07a527656"
            },
            "downloads": -1,
            "filename": "convertbng-0.6.43.tar.gz",
            "has_sig": false,
            "md5_digest": "2726efb81a72dd168aaf2f9abfca3ed5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 141166,
            "upload_time": "2023-07-03T11:23:09",
            "upload_time_iso_8601": "2023-07-03T11:23:09.225325Z",
            "url": "https://files.pythonhosted.org/packages/f7/60/0a5313853b9031c061068d28b84b8260c2f7798736bcb65ebde4626461bb/convertbng-0.6.43.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-03 11:23:09",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "urschrei",
    "github_project": "convertbng",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "convertbng"
}
        
Elapsed time: 0.08061s