traces are now gzipped

This commit is contained in:
Matthias Wirth
2020-01-11 16:49:15 +01:00
parent 0be7624614
commit f7c458b86e
4 changed files with 15 additions and 4 deletions

View File

@@ -2091,8 +2091,8 @@ function selectPlaneByHex(hex, options) {
if (!options.noFetch && globeIndex && hex) {
var URL1 = 'data/traces/'+ hex.slice(-2) + '/trace_recent_' + hex + '.json';
var URL2 = 'data/traces/'+ hex.slice(-2) + '/trace_full_' + hex + '.json';
var URL1 = 'data/traces/'+ hex.slice(-2) + '/trace_recent_' + hex + '.json.gz';
var URL2 = 'data/traces/'+ hex.slice(-2) + '/trace_full_' + hex + '.json.gz';
//console.log('Requesting trace: ' + hex);
var req1 = $.ajax({ url: URL1,