output geo as floats, not strings
This commit is contained in:
parent
828b68ab34
commit
78e8d4f6ff
|
@ -11,7 +11,7 @@ class D3MapBuilder:
|
||||||
|
|
||||||
output['nodes'] = [{'name': x.name, 'id': x.id,
|
output['nodes'] = [{'name': x.name, 'id': x.id,
|
||||||
'macs': ', '.join(x.macs),
|
'macs': ', '.join(x.macs),
|
||||||
'geo': x.gps.split(" ") if x.gps else None,
|
'geo': [float(x) for x in x.gps.split(" ")] if x.gps else None,
|
||||||
'flags': x.flags
|
'flags': x.flags
|
||||||
} for x in nodes]
|
} for x in nodes]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue