2012-06-05 17:40:21 +02:00
|
|
|
#!/usr/bin/env python3
|
2012-05-12 16:44:27 +02:00
|
|
|
|
|
|
|
# TODO
|
|
|
|
# Gatewayliste
|
|
|
|
# aliases.json
|
|
|
|
|
|
|
|
import json
|
|
|
|
import fileinput
|
|
|
|
import argparse
|
|
|
|
|
|
|
|
from nodedb import NodeDB
|
|
|
|
from geomapbuilder import GeoMapBuilder
|
|
|
|
|
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
|
|
|
|
parser.add_argument('-a', '--aliases',
|
|
|
|
help='read aliases from FILE',
|
|
|
|
metavar='FILE')
|
|
|
|
|
2012-06-11 23:53:45 +02:00
|
|
|
parser.add_argument('-g', '--gateway', action='append',
|
|
|
|
help='MAC of a gateway')
|
|
|
|
|
2012-05-12 16:44:27 +02:00
|
|
|
parser.add_argument('batmanjson', help='output of batman vd json')
|
|
|
|
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
options = vars(args)
|
|
|
|
|
|
|
|
db = NodeDB()
|
|
|
|
|
|
|
|
db.import_batman(list(fileinput.input(options['batmanjson'])))
|
|
|
|
|
|
|
|
if options['aliases']:
|
|
|
|
db.import_aliases(json.load(open(options['aliases'])))
|
|
|
|
|
2012-06-11 23:53:45 +02:00
|
|
|
if options['gateway']:
|
|
|
|
db.mark_gateways(options['gateway'])
|
2012-05-12 16:44:27 +02:00
|
|
|
|
2012-06-11 23:53:45 +02:00
|
|
|
db.import_wikigps("http://freifunk.metameute.de/Knoten")
|
2012-05-31 20:05:04 +02:00
|
|
|
|
2012-05-12 16:44:27 +02:00
|
|
|
m = GeoMapBuilder(db)
|
|
|
|
|
2012-06-05 17:40:21 +02:00
|
|
|
print(m.build())
|