#geospatial #tile #mvt

supercluster

Geospatial and non-geospatial point clustering

32 stable releases

new 2.1.1 Feb 13, 2025
2.0.5 Jan 30, 2025
1.2.3 Jan 24, 2025
1.0.19 Oct 21, 2024
1.0.14 Nov 27, 2023

#26 in Geospatial

Download history 32/week @ 2024-10-25 2/week @ 2024-11-01 28/week @ 2024-12-06 10/week @ 2024-12-13 82/week @ 2024-12-27 198/week @ 2025-01-03 102/week @ 2025-01-10 16/week @ 2025-01-17 619/week @ 2025-01-24 216/week @ 2025-01-31 218/week @ 2025-02-07

1,079 downloads per month

MIT license

88KB
1.5K SLoC

Supercluster

A high-performance Rust crate for geospatial and non-geospatial point clustering.

Reference implementation

test docs crate downloads GitHub codecov

Features

Documentation

For more in-depth details, please refer to the full documentation.

If you encounter any issues or have questions that are not addressed in the documentation, feel free to submit an issue.

This crate was initially inspired by Mapbox's supercluster blog post.

Usage

To use the supercluster crate in your project, add it to your Cargo.toml:

[dependencies]
supercluster = "2.1.1"

You can also include additional features, such as logging, by specifying them in your Cargo.toml:

[dependencies]
supercluster = { version = "2.1.1", features = ["logger"] }

Below is an example of how to create and run a supercluster using the crate. This example demonstrates how to build supercluster options, create a new supercluster, and get a tile. For more detailed information and advanced usage, please refer to the full documentation.

use supercluster::{ CoordinateSystem, Supercluster, SuperclusterError };

fn main() -> Result<(), SuperclusterError> {
    // Set the configuration settings
    let options = Supercluster::builder()
        .radius(40.0)
        .extent(512.0)
        .min_points(2)
        .max_zoom(16)
        .coordinate_system(CoordinateSystem::LatLng)
        .build();

    // Create a new instance with the specified configuration settings
    let mut cluster = Supercluster::new(options);

    // Create a a list of features
    let features = Supercluster::feature_builder()
        .add_point(vec![0.0, 0.0])
        .build();

    // Load a list of features into the supercluster
    let index = cluster.load(features)?;

    index.get_tile(0, 0.0, 0.0)?;

    Ok(())
}

Benchmarks

We use the criterion crate to benchmark the performance of the supercluster crate.

Benchmarks help us understand the performance characteristics of supercluster and identify areas for optimization.

We have several benchmark scenarios to test different aspects of supercluster:

  • Getting a Tile: Tests the performance of retrieving a tile from the Supercluster.
  • Getting Clusters: Tests the performance of retrieving clusters for a given bounding box and zoom level.
  • Loading a Feature Collection: Tests the performance of loading a FeatureCollection into the Supercluster.

For more detailed benchmark scenarios, please refer to the benches directory in the repository.

Safety

This crate uses #![forbid(unsafe_code)] to ensure everything is implemented in 100% safe Rust.

Contributing

🎈 Thanks for your help improving the project! We are so happy to have you!

We have a contributing guide to help you get involved in the project.

Sponsors

Chargetrip

Dependencies

~1.7–2.7MB
~57K SLoC