stac-hash 0.0.2

Sortable spatio-temporal hashes for STAC items
Documentation
# stac-hash

[![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/gadomski/stac-hash/pr.yml?branch=main&style=for-the-badge)](https://github.com/gadomski/stac-hash/actions/workflows/pr.yml)
[![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/gadomski/stac-hash/docs.yml?branch=main&style=for-the-badge&label=docs)](https://github.com/gadomski/stac-hash/actions/workflows/docs.yml)
[![Crates.io Version](https://img.shields.io/crates/v/stac-hash?style=for-the-badge)](https://crates.io/crates/stac-hash)
[![PyPI - Version](https://img.shields.io/pypi/v/stac-hash?style=for-the-badge)](https://pypi.org/project/stac-hash/)

Sortable spatio-temporal hashes for [STAC](https://stacspec.org/)
[items](https://github.com/radiantearth/stac-spec/blob/master/item-spec/item-spec.md).

Our simple hashing algorithm turns a (datetime, point) pair into a single `u64`
hash. The hash is a [Morton code](https://en.wikipedia.org/wiki/Z-order_curve)
in space and time, which makes the hash useful as a sort key or an index prefix
for range scans.

We have [Python](https://pypi.org/project/stac-hash/) and [Rust](https://crates.io/crates/stac-hash) packages.

## License

Licensed under either of

- Apache License, Version 2.0 ([LICENSE-APACHE]https://github.com/gadomski/stac-hash/blob/main/LICENSE-APACHE or <http://www.apache.org/licenses/LICENSE-2.0>)
- MIT license ([LICENSE-MIT]https://github.com/gadomski/stac-hash/blob/main/LICENSE-MIT or <http://opensource.org/licenses/MIT>)

at your option.