comparison freenet_data.js @ 0:fb5784aa45e6 default tip

from monotone. problematic https vs v2 API
author Matt Johnston <matt@ucc.asn.au>
date Sun, 21 Oct 2012 23:03:51 +0800
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:fb5784aa45e6
1 // format is
2 // 'nodeid': [lat, long, "Name", "Description", "url"]
3 // nodeid should be lowercase (for simplicity)
4 // lat/long must be decimal coords.
5 // Name and Description can be anything, valid HTML helps, so escape ampersands etc...
6 // url is optional
7
8 freenet_nodes = {
9
10 "perthap": [-31.959661, 115.872303, "PerthAP", ""],
11 "wannerooap": [-31.790564, 115.820094, "WannerooAP", ""],
12 "belmont2": [-31.959497, 115.928478, "Belmont2", ""],
13 "mitchland": [-31.788281, 115.769639, "MitchLand", ""],
14 "mystic": [-31.772086, 115.762192, "Mystic", ""],
15 "nhe": [-31.774867, 115.818853, "NHE (Welvis)", ""],
16 "doubleview": [-31.894761, 115.780794, "KodEBlaK", ""],
17 "belmontap": [-31.951286, 115.920939, "BelmontAP", ""],
18 "frogstar1": [-31.770429, 115.76983, "Frogstar 1", "15m", "http://www.wafreenet.org/node-Frogstar"],
19 "frogstar2": [-31.767973, 115.771309, "Frogstar 2", "22m", "http://www.wafreenet.org/node-Frogstar"],
20 "tichill": [-31.825769, 116.064408, "TIC Hill", ""],
21 "niak": [-32.101311, 115.943632, "niak", ""],
22 "msh": [-31.9285, 115.9085, "msh", ""],
23 "kaelnorr": [-31.6779966, 115.7161922, "kaelnorr", "", ""],
24 // the following are guessed from the map.
25 "duncraig": [-31.83017,115.772552, "Duncraig", "", "http://www.wafreenet.org/node-Duncraig"],
26 "spiked": [-31.812521,115.86113, "Spiked", "", "http://www.wafreenet.org/node-Spiked"],
27 "dericote": [-31.831774,115.803795, "Dericote", "", "http://www.wafreenet.org/node-Dericote"],
28 "vipernet": [-31.842566,115.801907, "Vipernet", "", "http://www.wafreenet.org/node-Vipernet"],
29 "bungknee": [-31.739263,115.801392, "Bungknee", "", ""],
30 "wirelesshill": [-32.030754,115.827302, "Wireless Hill", "", ""],
31 "jandakot": [-32.099736,115.870743, "Jandakot", "", "http://www.wafreenet.org/node-Jandakot"],
32 "armadale": [-32.128669,116.002235, "ArmadaleAP", "", "http://www.wafreenet.org/node-ArmadaleAP"],
33 "sgnet": [-32.132304,115.997772, "SGNet", "", "http://www.wafreenet.org/node-SGNet"]
34 };
35
36 // format is ['kind', 'node1', 'node2'].
37 // Make sure that nodes are defined in the freenet_nodes list above.
38 // Defined kinds are:
39 // '2ghz', '5ghz', 'vpn'.
40
41 freenet_links = [
42 [ '5ghz', 'perthap', 'tichill'],
43 [ '5ghz', 'niak', 'tichill'],
44 [ '5ghz', 'mitchland', 'mystic'],
45 [ '5ghz', 'nhe', 'mitchland'],
46 [ '5ghz', 'belmontap', 'belmont2'],
47 [ '5ghz', 'perthap', 'belmont2'],
48 [ '5ghz', 'msh', 'perthap'],
49 [ '5ghz', 'mystic', 'frogstar1'],
50 [ '5ghz', 'mitchland', 'frogstar1'],
51 [ 'vpn', 'mitchland', 'kaelnorr'],
52 [ '5ghz', 'mitchland', 'wannerooap'],
53 [ '5ghz', 'mystic', 'wannerooap'],
54 [ '5ghz', 'doubleview', 'wannerooap'],
55 [ '5ghz', 'doubleview', 'perthap'],
56 [ '5ghz', 'duncraig', 'nhe'],
57 [ '2ghz', 'mystic', 'spiked'],
58 [ '2ghz', 'mystic', 'dericote'],
59 [ '5ghz', 'mystic', 'vipernet'],
60 [ '2ghz', 'jandakot', 'armadale'],
61 [ '2ghz', 'sgnet', 'armadale']
62 ];