Coder Social home page Coder Social logo

dobbyscan's Introduction

dobbyscan Build Status Simply Awesome

A very fast density based clustering JavaScript library for geographic points. Implements a variation of DBSCAN with great circle distance metric.

Example

var clusters = dobbyscan(points, radius, (p) => p.lon, (p) => p.lat);

API

dobbyscan(points, radius[, getLng, getLat])

Returns an array of clusters, where each cluster is an array of points (from the input array).

  • points: an array of input points of an arbitrary format.
  • radius: density clustering radius in kilometers.
  • getLng: (optional) a function that returns longitude given an input point, (p) => p[0] by default.
  • getLat: (optional) a function that returns latitude given an input point, (p) => p[1] by default.

Performance

This library is incredibly fast โ€” run bench.js to see it cluster 140k points in a couple seconds.

Install

npm install dobbyscan

dobbyscan's People

Contributors

mourner avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.