All Projects → fmalina → blocl-bnglatlon

fmalina / blocl-bnglatlon

Licence: MIT License
Converts british national grid (OSBG36) to lat lon (WGS84) and vice versa.

Programming Languages

python
139335 projects - #7 most used programming language
C#
18002 projects
javascript
184084 projects - #8 most used programming language
objective c
16641 projects - #2 most used programming language

Projects that are alternatives of or similar to blocl-bnglatlon

skynet-scrub-server
Backing store for developmentseed/skynet-scrub
Stars: ✭ 13 (-18.75%)
Mutual labels:  geospatial
lonlat bng
A multithreaded Rust library with FFI for converting WGS84 longitude and latitude coordinates into BNG (OSGB36) Eastings and Northings and vice versa (using OSTN15)
Stars: ✭ 20 (+25%)
Mutual labels:  geospatial
dea-coastlines
Extracting tidally-constrained annual shorelines and robust rates of coastal change from freely available Earth observation data at continental scale
Stars: ✭ 24 (+50%)
Mutual labels:  geospatial
geojson
GeoJSON classes for R
Stars: ✭ 32 (+100%)
Mutual labels:  geospatial
earthengine-py-examples
A collection of 300+ examples for using Earth Engine and the geemap Python package
Stars: ✭ 76 (+375%)
Mutual labels:  geospatial
tile38
Real-time Geospatial and Geofencing
Stars: ✭ 8,117 (+50631.25%)
Mutual labels:  geospatial
mapmint
Fast and easy webmapping.
Stars: ✭ 51 (+218.75%)
Mutual labels:  geospatial
fgpv-vpgf
RAMP2 FGP Visualiser / Visualisateur pour la PGF PCAR2 - The Reusable Accessible Mapping Platform (RAMP), also known as the Federal Geospatial Platform Visualiser (FGPV), is a Javascript based web mapping platform that provides a reusable, responsive and WCAG 2.1 "AA" compliant common viewer platform for the Government of Canada. This is an unsu…
Stars: ✭ 34 (+112.5%)
Mutual labels:  geospatial
xyz-spaces-python
Manage your XYZ Hub or HERE Data Hub spaces from Python.
Stars: ✭ 29 (+81.25%)
Mutual labels:  geospatial
rusty buntdb
A Rust port of BuntDB
Stars: ✭ 12 (-25%)
Mutual labels:  geospatial
GeoTriples
Publishing Big Geospatial data as Linked Open Geospatial Data
Stars: ✭ 32 (+100%)
Mutual labels:  geospatial
pylandtemp
Algorithms for computing global land surface temperature and emissivity from NASA's Landsat satellite images with Python.
Stars: ✭ 110 (+587.5%)
Mutual labels:  geospatial
Geospatial Python CourseV1
This is an collection of blog posts turned into a course format
Stars: ✭ 53 (+231.25%)
Mutual labels:  geospatial
Julia Geospatial
Examples for a blog series on Geospatial Julia using ArchGDAL
Stars: ✭ 58 (+262.5%)
Mutual labels:  geospatial
karta
A tidy Python package for geospatial computation
Stars: ✭ 98 (+512.5%)
Mutual labels:  geospatial
ows4R
R Interface for OGC Web-Services (OWS)
Stars: ✭ 29 (+81.25%)
Mutual labels:  geospatial
pygeoif
Basic implementation of the __geo_interface__
Stars: ✭ 44 (+175%)
Mutual labels:  geospatial
geodot-plugin
Godot plugin for loading geospatial data
Stars: ✭ 37 (+131.25%)
Mutual labels:  geospatial
fake-geo-images
A module to programmatically create geotiff images which can be used for unit tests
Stars: ✭ 18 (+12.5%)
Mutual labels:  geospatial
rafagas
Daily geospatial links curated by Raf Roset
Stars: ✭ 17 (+6.25%)
Mutual labels:  geospatial

🇬🇧 BNG ⇄ LatLon🌐

pypi


Converts british national grid eastings and northings (OSBG36) to latitude and longitude (WGS84) and vice versa as used by https://blocl.uk

Originally authored by Hannah Fry.

NEW! importable, installable, PEP8 styled, pure python, doctested, with optional numba compiler support for 10x speed

Documentation

Package includes:

The mathematical theory used here is set out in "A guide to coordinate systems in Great Britain" by Ordnance Survey.

Installation

Get the latest stable release from PyPi:

pip install bng_latlon

optional but recommend is numba compiler

pip install numba

Usage

>>> from bng_latlon import OSGB36toWGS84
>>> OSGB36toWGS84(538890, 177320)
(51.477795, -0.001402)
...
>>> from bng_latlon import WGS84toOSGB36
>>> WGS84toOSGB36(51.4778, -0.0014)
(538890.1053, 177320.4965)

MIT licensed. Designed in the UK, published from Slovakia. Blocl Schools.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].