lindel

Crates.iolindel
lib.rslindel
version0.1.1
sourcesrc
created_at2021-03-25 11:50:05.437603
updated_at2021-03-26 12:08:39.183963
descriptionA crate for Hilbert and Morton encoding and decoding; in a word, linearising and delinearising.
homepagehttps://github.com/DoubleHyphen/lindel
repositoryhttps://github.com/DoubleHyphen/lindel
max_upload_size
id373349
size70,483
(DoubleHyphen)

documentation

https://docs.rs/lindel/

README

Lindel (lineariser-delineariser)

Introduction

The lindel crate offers functions for transforming arrays of primitive unsigned integers to Morton or Hilbert keys and back, via the eponymous encoding processes. This helps linearise data points while preserving some measure of locality.

This crate is an extension of the morton-encoding crate.

Getting started

If it is not necessary to use lindel with nalgebra, it is sufficient to insert the line

lindel = "0.1"

under the [dependencies] section. Otherwise, the following section must be inserted to the project's Cargo.toml file:

[dependencies.lindel]
version = "0.1"
features = ["nalgebra"]

Usage

Primitive integers

use lindel::*;
let input = 99251;
let output_1: [u8; 5] = hilbert_decode(input);
let output_2: [u32; 2] = morton_decode(input);
let input = [543u32, 23765];
let output_1 = input.hilbert_index();
let output_2 = input.z_index();

Please note the necessity of specifying the output data-types for the decoding operations.

Points:

use nalgebra::Point;
use nalgebra::U4;
use lindel::nalgebra_points::Lineariseable;
type FourDees = Point<u32, U4>;
let input = 26327612u128;
let pnt = FourDees::from_z_index(input);
let result = pnt.hilbert_index();

New large uints:

lindel::create_lineariseable_data_type!(u128, 33, NewKey);
let input = [870u128; 33];
let hind = NewKey::hilbert_index(input);
let zind = NewKey::z_index(input);
let reinstated_input = hind.from_hilbert_index();
assert_eq!(input, reinstated_input);
let reinstated_input = NewKey::from_z_index(zind);
assert_eq!(input, reinstated_input);

Advantages and Disadvantages

Long story short: Choose Morton encoding (“z-indexing”) if speed is more important than locality. Otherwise, feel free to use Hilbert encoding everywhere.

Commit count: 13

cargo fmt