Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pschoepf/naturalbreaks
Ports of fisher natural breaks optimization with O(k×n×log(n)) complexity
https://github.com/pschoepf/naturalbreaks
Last synced: 16 days ago
JSON representation
Ports of fisher natural breaks optimization with O(k×n×log(n)) complexity
- Host: GitHub
- URL: https://github.com/pschoepf/naturalbreaks
- Owner: pschoepf
- License: gpl-3.0
- Created: 2016-02-26T09:25:34.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-10-13T06:41:07.000Z (about 4 years ago)
- Last Synced: 2024-08-01T00:45:52.119Z (3 months ago)
- Language: Java
- Homepage:
- Size: 31.3 KB
- Stars: 29
- Watchers: 3
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Naturalbreaks
Ports of fisher/jenks natural breaks algorithm with O(k×n×log(n)) complexity, engineered and described by Maarten Hilferink:
http://wiki.objectvision.nl/index.php/Fisher%27s_Natural_Breaks_ClassificationThe code provided is a (nearly 1:1, as there is not much left for optimization) port of the corresponding C code that was
originally developed by Maarten Hilferink, © Object Vision BV and which can be found here:
http://wiki.objectvision.nl/index.php/CalcNaturalBreaksCodeMy contribution is:
- a basic port to Java (src/main/java)
- a basic port to javascript (src/main/javascript) which allows direct execution in the browser to compute natural looking color scales.Please see the contained unit tests for usage.
License is provided on the same GNU GPL v3.0 license as the original contribution from Marteen.