Home

Awesome

Largest-Triangle downsampling algorithm implementations for Java8

</br>

[!IMPORTANT] This project has been superseded by https://github.com/ggalmazor/lttb_downsampling

These implementations are based on the paper "Downsampling Time Series for Visual Representation" by Sveinn Steinarsson from the Faculty of Industrial Engineering, Mechanical Engineering and Computer Science University of Iceland (2013). You can read the paper here

The goal of Largest-Triangle downsampling algorithms for data visualization is to reduce the number of points in a number series without losing important visual features of the resulting graph. However, it is essential to know these algorithms are not numerically correct.

See how this algorithm compares to other algorithms designed to keep local extrema in the input series at ggalmazor.com/blog/evaluating_downsampling_algorithms.html

Download

Latest version: 0.1.0

You can add this library to your Maven/Gradle/SBT/Leiningen project using a couple of source repositories.

JitPack.io

Please follow the instructions at the JitPack.io page for this project. Gradle example:

allprojects {
  repositories {
    maven { url 'https://jitpack.io' }
  }
}

dependencies {
  implementation 'com.github.ggalmazor:lt_downsampling_java8:0.1.0'
}

GithHub Package Repository

⚠️ Warning: Access to Maven repos hosted by GitHub requires authentication. More information at https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-gradle-registry.

Please follow the instructions at the GitHub Package Repository for this project. Gradle example:

repositories {
    maven {
        url = uri("https://maven.pkg.github.com/ggalmazor/lt_downsampling_java")
        credentials {
            username = project.findProperty("gpr.user") ?: System.getenv("USERNAME")
            password = project.findProperty("gpr.key") ?: System.getenv("TOKEN")
        }
   }
}

dependencies {
  implementation 'com.github.ggalmazor:lt_downsampling_java8:0.1.0'
}

Largest-Triangle Three-Buckets

This version of the algorithm groups numbers in buckets of the same size and then selects the point that produces the largest area from each bucket with points in neighboring buckets.

You can produce a downsampled version of an input series with:

List<Point> input = Arrays.asList(...);
int numberOfBuckets = 200;

List<Point> output = LTThreeBuckets.ofSorted(input, numberOfBuckets);

The first and last points of the original series are always in the output. The rest are grouped into the defined number of buckets, and the algorithm chooses the best point from each bucket, resulting in a list of 202 elements.

Notes on Point types

Largest-Triangle Dynamic

Not yet implemented

Example

This is how a raw time series with ~5000 data points and downsampled versions (2000, 500, and 250 buckets) look like (graphed by AirTable) image image image image

These are close-ups for 250, 500, 1000, and 2000 buckets with raw data in the back: image image image image

Other Java implementations you might want to check