Use EWMA instead of bare rtt for min rtt.
[tor.git] / scripts / maint / geoip / README.geoip
blob0ed94b2276d0cb13a4427b68a7c36db5163e7c1b
1 To generate new geoip files, you'll need to install the
2 libloc/"location" tool provided by https://location.ipfire.org/.
3 I personally build it with:
5   ./configure CFLAGS='-g -O2' --disable-perl --without-systemd --prefix=/opt/libloc
6   make
7   make install
9 Then (after adjusting PATH and PYTHONPATH) you can get the latest
10 dump with:
12   location update
13   location dump geoip-dump.txt
15 And transform it into geoip files with
17   cargo run --release -- -i geoip-dump.txt
20 ==============================
22 Note that the current version "0.1.9" of rangemap has a performance
23 bug, making this tool quite slow.  Previous versions had a
24 correctness bug that made the output needlessly long.  With luck,
25 there will soon be a fast correct rangemap version.