A package to return H3 hexagons based on an OSMnx network
Project description
networkh3
A package to return clipped H3 hexagons from the extent of an OSMnx network. Useful for anyone looking to use the H3 spatial indexing system in route analyses or spatial analyses, and for saving time sourcing H3 hexagons.
Examples
(L-R): London, Washington DC
Example workflows are available in the Github repository.
Install
Install the latest version from PyPI:
pip install networkh3
Import
from networkh3 import NETWORKH3
Usage
NETWORKH3 requires three parameters: the area of interest, the type of OSMNx network, and the resolution of the returned H3 hexagons:
from networkh3 import NETWORKH3
NETWORKH3.get_h3('Leeds, United Kingdom', 'drive', 9)
Optional style keywords can also be specified:
from networkh3 import NETWORKH3
import contextily as cx
NETWORKH3.get_h3('Leeds, United Kingdom', 'drive', 9,
network_kwargs={
'node_size': 1,
'node_color': 'black',
'edge_color': 'red',
'edge_linewidth': 0.2},
h3_kwargs={
'facecolor': 'white',
'alpha': 0.6},
basemap_kwargs={
'source': cx.providers.Stamen.TonerLite}
)
The network and clipped H3 hexagons can then be used in analysis:
# Calling the network
NETWORKH3.network
# Calling the clipped H3 hexagons
NETWORKH3.h3
Issues and support
See the Github repository to report an issue or contribute to this project.
Contact
- Website: callumscoby.com
- Twitter: @ScobyCallum
- Github: @callumscoby
- LinkedIn: @callumscoby
Acknowledgements
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
File details
Details for the file networkh3-0.0.5.tar.gz
.
File metadata
- Download URL: networkh3-0.0.5.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e3e3bc4d0e635f67da198fb9e6e87880662e60605644d6bfc55d50c38d719fe9 |
|
MD5 | a10dbfd573fbdf5e994c1d64bf5f136d |
|
BLAKE2b-256 | b1fad0226cc0821097c56e2e16d43f08c6a53b71d910861535059cd69c481262 |