bigworld

compute diameter of flights graph
git clone https://a3nm.net/git/bigworld/
Log | Files | Refs

commit 140014be3b22f415860bc2a7d26d090d6df55063
parent 090eb6ef6e88254d214dabbe69a2642ee95df560
Author: Antoine Amarilli <a3nm@a3nm.net>
Date:   Fri,  4 Mar 2016 18:52:03 +0100

fix URLs

Diffstat:
antipodes.sh | 2+-
bigworld.sh | 4++--
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/antipodes.sh b/antipodes.sh @@ -2,7 +2,7 @@ if [ ! -f airports.dat ] then - wget -O airports.dat 'https://sourceforge.net/p/openflights/code/HEAD/tree/openflights/data/airports.dat?format=raw' + wget -O airports.dat 'https://raw.githubusercontent.com/jpatokal/openflights/master/data/airports.dat' fi # rev is to avoid problems with ',' occurring in earlier fields diff --git a/bigworld.sh b/bigworld.sh @@ -2,12 +2,12 @@ if [ ! -f airlines.dat ] then - wget -O airlines.dat 'https://sourceforge.net/p/openflights/code/HEAD/tree/openflights/data/airlines.dat?format=raw' + wget -O airlines.dat 'https://raw.githubusercontent.com/jpatokal/openflights/master/data/airlines.dat' fi if [ ! -f routes.dat ] then - wget -O routes.dat 'https://sourceforge.net/p/openflights/code/HEAD/tree/openflights/data/routes.dat?format=raw' + wget -O routes.dat 'https://raw.githubusercontent.com/jpatokal/openflights/master/data/routes.dat' fi cut -d ',' -f1,8 airlines.dat | tr -d '"' | tr ',' ' ' > active.dat