All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.davidmoten.rtree.LeafFactory Maven / Gradle / Ivy

Go to download

Java implementation of an immutable in-memory R-Tree for spatial indexing

There is a newer version: 0.12
Show newest version
package com.github.davidmoten.rtree;

import java.util.List;

import com.github.davidmoten.rtree.geometry.Geometry;

public interface LeafFactory {
    Leaf createLeaf(List> entries, Context context);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy