Efficient 3D Morton Encoding and Decoding
Project description
Morton3D (Homepage)
Efficient pythonic implementation of 3D Morton encoding and decoing.
Installation
pip install:
pip install Morton3D==1.0.1
install from source:
git clone https://github.com/Jianningli/Morton3D
cd Morton3D
python setup.py install
Usage
import Morton3D
m=Morton3D.zorder(9) # 9 is the bit length
mortonValue,mortonBinary=m.Morton(51,20,50) # encoding, (51,20,50) is the 3D integer coordinate.
coordinate=m.deMorton(192681,0) # decoding, given the mortonValue, return the 3D coordinate
# decoding, given the morton value in bit representation, return the 3D coordinate, 1 is the flag.
coordinate=m.deMorton('000000000101111000010101001',1)
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
Morton3D-1.0.1.tar.gz
(3.5 kB
view details)
File details
Details for the file Morton3D-1.0.1.tar.gz
.
File metadata
- Download URL: Morton3D-1.0.1.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 851dce4be28dc49a53e2680663236f9fd213c04cbc58ba967355dff15da38a42 |
|
MD5 | 697195bcaf608968333f1f33f8cb4f08 |
|
BLAKE2b-256 | fe02d3f582818af659d7566b1a59b58743d2a7efdefffc6b56042c24d4a2812b |