Skip to content

Latest commit

 

History

History
29 lines (26 loc) · 841 Bytes

README.md

File metadata and controls

29 lines (26 loc) · 841 Bytes

Distance Matrix

This directory contains compressed precompiled distance matrix


Download:

In order to use the compressed file, download the file and place it in this directory.

Unzip the file using the command:

unzip CompressedDistanceMatrix.zip

PS: Make sure to keep all *.gz files

Format:

{
    // Distance matrix JSON compressed file example
    // Each value must be of type <FLOAT> or <INT>
    "Distance_Table": [
        [0.0, 1.0, 1.0, 3.0, 2.0, 4.0],
        [1.0, 0.0, 1.0, 3.0, 2.0, 4.0],
        [1.0, 1.0, 0.0, 3.0, 2.0, 4.0],
        [1.0, 1.0, 3.0, 0.0, 2.0, 4.0],
        [1.0, 1.0, 3.0, 2.0, 0.0, 4.0],
        [1.0, 1.0, 3.0, 2.0, 4.0, 0.0]
    ]
}