mirror of
https://github.com/Telecominfraproject/oopt-gnpy.git
synced 2025-11-02 11:07:57 +00:00
Parse advanced fiber parameters from xls into json format:
accept a .xls or a .json input parameter
creates the corresponding .json file
read east/west directions for fiber parameters (fber type, distance...)
read node type (ILA or ROADM)
provide default values if fields are missing
=> full backward compatibility to read the original CORONET xls
Signed-off-by: Jean-Luc Auge <jeanluc.auge@orange.com>
223 lines
9.6 KiB
Python
223 lines
9.6 KiB
Python
#!/usr/bin/env python3
|
|
|
|
from sys import exit
|
|
try:
|
|
from xlrd import open_workbook
|
|
except ModuleNotFoundError:
|
|
exit('Required: `pip install xlrd`')
|
|
from argparse import ArgumentParser
|
|
from collections import namedtuple, Counter, defaultdict
|
|
from itertools import chain
|
|
from json import dumps
|
|
from uuid import uuid4
|
|
import math
|
|
import numpy as np
|
|
|
|
#output_json_file_name = 'coronet_conus_example.json'
|
|
parser = ArgumentParser()
|
|
parser.add_argument('workbook', nargs='?', default='meshTopologyExampleV2.xls')
|
|
parser.add_argument('-f', '--filter-region', action='append', default=[])
|
|
all_rows = lambda sh, start=0: (sh.row(x) for x in range(start, sh.nrows))
|
|
|
|
class Node(namedtuple('Node', 'city state country region latitude longitude node_type')):
|
|
def __new__(cls, city, state, country, region, latitude, longitude, node_type='ROADM'):
|
|
return super().__new__(cls, city, state, country, region, latitude, longitude, node_type)
|
|
|
|
class Link(namedtuple('Link', 'from_city to_city \
|
|
east_distance east_fiber east_lineic east_con_in east_con_out east_pmd east_cable \
|
|
west_distance west_fiber west_lineic west_con_in west_con_out west_pmd west_cable \
|
|
distance_units')):
|
|
def __new__(cls, from_city, to_city,
|
|
east_distance, east_fiber='SSMF', east_lineic=0.2,
|
|
east_con_in=0.5, east_con_out=0.5, east_pmd=0.1, east_cable='',
|
|
west_distance=-100, west_fiber='SSMF', west_lineic=0.2,
|
|
west_con_in=0.5, west_con_out=0.5, west_pmd=0.1, west_cable='',
|
|
distance_units='km'):
|
|
if west_distance == -100:
|
|
west_distance = east_distance
|
|
return super().__new__(cls, from_city, to_city,
|
|
east_distance, east_fiber, east_lineic, east_con_in, east_con_out, east_pmd, east_cable,
|
|
west_distance, west_fiber, west_lineic, west_con_in, west_con_out, west_pmd, west_cable,
|
|
distance_units)
|
|
|
|
def convert_file(input_filename, filter_region=[]):
|
|
nodes, links = parse_excel(input_filename)
|
|
|
|
if filter_region:
|
|
nodes = [n for n in nodes if n.region.lower() in filter_region]
|
|
cities = {n.city for n in nodes}
|
|
links = [lnk for lnk in links if lnk.from_city in cities and
|
|
lnk.to_city in cities]
|
|
cities = {lnk.from_city for lnk in links} | {lnk.to_city for lnk in links}
|
|
nodes = [n for n in nodes if n.city in cities]
|
|
|
|
nodes_by_city = {n.city: n for n in nodes}
|
|
|
|
links_by_city = defaultdict(list)
|
|
for l in links:
|
|
if nodes_by_city[l.from_city].node_type.lower() == 'ila':
|
|
links_by_city[f'{l.from_city}'].append(l)
|
|
if nodes_by_city[l.to_city].node_type.lower() == 'ila':
|
|
links_by_city[f'{l.to_city}'].append(l)
|
|
repeat = False
|
|
for city,link in links_by_city.items():
|
|
if len(link) != 2:
|
|
#wrong input: ILA sites can only be Degree 2
|
|
# => correct to make it a ROADM and remove entry in links_by_city
|
|
nodes_by_city[city].node_type = 'ROADM'
|
|
del links_by_city[city]
|
|
|
|
|
|
data = {
|
|
'elements':
|
|
[{'uid': f'trx {x.city}',
|
|
'metadata': {'location': {'city': x.city,
|
|
'region': x.region,
|
|
'latitude': x.latitude,
|
|
'longitude': x.longitude}},
|
|
'type': 'Transceiver'}
|
|
for x in nodes if x.node_type.lower() == 'roadm'] +
|
|
[{'uid': f'roadm {x.city}',
|
|
'metadata': {'location': {'city': x.city,
|
|
'region': x.region,
|
|
'latitude': x.latitude,
|
|
'longitude': x.longitude}},
|
|
'type': 'Roadm'}
|
|
for x in nodes if x.node_type.lower() == 'roadm'] +
|
|
[{'uid': f'fiber ({x.from_city} → {x.to_city})-{x.east_cable}',
|
|
'metadata': {'location': midpoint(nodes_by_city[x.from_city],
|
|
nodes_by_city[x.to_city])},
|
|
'type': 'Fiber',
|
|
'type_variety': x.east_fiber,
|
|
'params': {'length': round(x.east_distance, 3),
|
|
'length_units': x.distance_units,
|
|
'loss_coef': x.east_lineic}
|
|
}
|
|
for x in links]+
|
|
[{'uid': f'fiber ({x.to_city} → {x.from_city})-{x.west_cable}',
|
|
'metadata': {'location': midpoint(nodes_by_city[x.from_city],
|
|
nodes_by_city[x.to_city])},
|
|
'type': 'Fiber',
|
|
'type_variety': x.west_fiber,
|
|
'params': {'length': round(x.west_distance, 3),
|
|
'length_units': x.distance_units,
|
|
'loss_coef': x.west_lineic}
|
|
}
|
|
for x in links],
|
|
'connections':
|
|
list(chain.from_iterable(zip( # put bidi next to each other
|
|
[{'from_node': f'roadm {x.from_city}',
|
|
'to_node': f'fiber ({x.from_city} → {x.to_city})-{x.east_cable}'}
|
|
for x in links if nodes_by_city[x.from_city].node_type.lower()=='roadm'],
|
|
[{'from_node': f'fiber ({x.to_city} → {x.from_city})-{x.west_cable}',
|
|
'to_node': f'roadm {x.from_city}'}
|
|
for x in links if nodes_by_city[x.from_city].node_type.lower()=='roadm'])))
|
|
+
|
|
list(chain.from_iterable(zip( # put bidi next to each other
|
|
[{'from_node': f'roadm {x.to_city}',
|
|
'to_node': f'fiber ({x.to_city} → {x.from_city})-{x.west_cable}'}
|
|
for x in links if nodes_by_city[x.to_city].node_type.lower()=='roadm'],
|
|
[{'from_node': f'fiber ({x.from_city} → {x.to_city})-{x.east_cable}',
|
|
'to_node': f'roadm {x.to_city}'}
|
|
for x in links if nodes_by_city[x.to_city].node_type.lower()=='roadm'])))
|
|
+
|
|
list(chain.from_iterable([fiber_connection_by_node(links_by_city[n.city], f'{n.city}')
|
|
for n in nodes if n.node_type.lower() == 'ila']))
|
|
+
|
|
list(chain.from_iterable(zip(
|
|
[{'from_node': f'trx {x.city}',
|
|
'to_node': f'roadm {x.city}'}
|
|
for x in nodes if x.node_type.lower()=='roadm'],
|
|
[{'from_node': f'roadm {x.city}',
|
|
'to_node': f'trx {x.city}'}
|
|
for x in nodes if x.node_type.lower()=='roadm'])))
|
|
}
|
|
|
|
#print(dumps(data, indent=2))
|
|
output_json_file_name = input_filename.split(".")[0]+".json"
|
|
with open(output_json_file_name,'w') as edfa_json_file:
|
|
edfa_json_file.write(dumps(data, indent=2))
|
|
|
|
def parse_excel(input_filename):
|
|
with open_workbook(input_filename) as wb:
|
|
nodes_sheet = wb.sheet_by_name('Nodes')
|
|
links_sheet = wb.sheet_by_name('Links')
|
|
|
|
"""
|
|
# sanity check
|
|
header = [x.value.strip() for x in nodes_sheet.row(4)]
|
|
expected = ['City', 'State', 'Country', 'Region', 'Latitude', 'Longitude']
|
|
if header != expected:
|
|
raise ValueError(f'Malformed header on Nodes sheet: {header} != {expected}')
|
|
"""
|
|
|
|
nodes = []
|
|
for row in all_rows(nodes_sheet, start=5):
|
|
nodes.append(Node(*(x.value for x in row)))
|
|
|
|
# sanity check
|
|
"""
|
|
header = [x.value.strip() for x in links_sheet.row(4)]
|
|
expected = ['Node A', 'Node Z',
|
|
'Distance (km)', 'Fiber type', 'lineic att', 'Con_in', 'Con_out', 'PMD', 'Cable id',
|
|
'Distance (km)', 'Fiber type', 'lineic att', 'Con_in', 'Con_out', 'PMD', 'Cable id']
|
|
if header != expected:
|
|
raise ValueError(f'Malformed header on Nodes sheet: {header} != {expected}')
|
|
"""
|
|
links = []
|
|
for row in all_rows(links_sheet, start=5):
|
|
links.append(Link(*(x.value for x in row)))
|
|
|
|
# sanity check
|
|
all_cities = Counter(n.city for n in nodes)
|
|
if len(all_cities) != len(nodes):
|
|
ValueError(f'Duplicate city: {all_cities}')
|
|
if any(ln.from_city not in all_cities or
|
|
ln.to_city not in all_cities for ln in links):
|
|
ValueError(f'Bad link.')
|
|
|
|
return nodes, links
|
|
|
|
|
|
def fiber_connection_by_node(link, node_name):
|
|
subdata = [{'from_node': fiber_link_by_dest(link[0], node_name),
|
|
'to_node': fiber_link_by_source(link[1], node_name)},
|
|
{'from_node': fiber_link_by_dest(link[1], node_name),
|
|
'to_node': fiber_link_by_source(link[0], node_name)}]
|
|
return subdata
|
|
|
|
def fiber_link_by_dest(link, dest_node):
|
|
fiber_link_name = ''
|
|
if dest_node == link.to_city:
|
|
fiber_link_name = f'fiber ({link.from_city} → {link.to_city})-{link.east_cable}'
|
|
elif dest_node == link.from_city:
|
|
fiber_link_name = f'fiber ({link.to_city} → {link.from_city})-{link.west_cable}'
|
|
return fiber_link_name
|
|
|
|
def fiber_link_by_source(link, source_node):
|
|
fiber_link_name = ''
|
|
if source_node == link.from_city:
|
|
fiber_link_name = f'fiber ({link.from_city} → {link.to_city})-{link.east_cable}'
|
|
elif source_node == link.to_city :
|
|
fiber_link_name = f'fiber ({link.to_city} → {link.from_city})-{link.west_cable}'
|
|
return fiber_link_name
|
|
|
|
def midpoint(city_a, city_b):
|
|
lats = city_a.latitude, city_b.latitude
|
|
longs = city_a.longitude, city_b.longitude
|
|
try:
|
|
result = {
|
|
'latitude': sum(lats) / 2,
|
|
'longitude': sum(longs) / 2
|
|
}
|
|
except :
|
|
result = {
|
|
'latitude': 0,
|
|
'longitude': 0
|
|
}
|
|
return result
|
|
|
|
if __name__ == '__main__':
|
|
args = parser.parse_args()
|
|
convert_file(args.workbook, args.filter_region)
|