Are there any good implementations of spatial indexes in Haskell such as R-tree, kd-tree, etc…
Are there any good implementations of spatial indexes in Haskell such as R-tree, kd-tree,
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The only implementations I’m aware of are the
spacepartpackage, which seems to be incomplete and abandoned, and theKdTreepackage, which as you might guess has no ambitions beyond providing a kd-tree type.This is something that’s been on my TODO list for a while, since there have been several occasions where I wanted a spatial index data structure, but didn’t want one badly enough to stop everything and write a decent implementation on the spot.