Skip to content

Commit

Permalink
remove tracknumber that performs less well
Browse files Browse the repository at this point in the history
  • Loading branch information
aloxe committed Nov 15, 2024
1 parent 7768026 commit a5d1867
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 37 deletions.
2 changes: 0 additions & 2 deletions public/datavelo/tracklist.json.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
$i = 0;
foreach ($tracks as $key => $val) {
$date = substr($val, 0, 10);
if ($date != "2010-01-01") {
$i++;
$countries = explode(".", $val);
$name = preg_replace("/[-_]/", " ", substr($countries[0], 10));
Expand All @@ -47,7 +46,6 @@
}
$trackobject = (object) ['id' => $i, 'date' => $date, 'name' => $name, 'url' => $val, 'cc' => $cc, 'flag' => $flag];
array_push($tracklist, $trackobject);
}
}
echo json_encode($tracklist);
?>
35 changes: 0 additions & 35 deletions public/datavelo/tracknumber.json.php

This file was deleted.

0 comments on commit a5d1867

Please sign in to comment.