This directory contains compressed precompiled distance matrix
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
{
// 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]
]
}