mirror of
https://github.com/jhbruhn/eurorack.git
synced 2025-03-15 02:55:49 +00:00
33 lines
1 KiB
Python
33 lines
1 KiB
Python
|
#!/usr/bin/env python3
|
||
|
# coding=utf8
|
||
|
|
||
|
import sys
|
||
|
import csv
|
||
|
from collections import OrderedDict
|
||
|
|
||
|
in_t_file = open(sys.argv[1], 'r')
|
||
|
in_b_file = open(sys.argv[2], 'r')
|
||
|
out_file = open(sys.argv[3], 'w')
|
||
|
|
||
|
reader_t = csv.reader(in_t_file, dialect='excel-tab')
|
||
|
reader_b = csv.reader(in_b_file, dialect='excel-tab')
|
||
|
ordered_fieldnames = OrderedDict([('Designator', None), ('Mid X', None), ('Mid Y', None), ('Layer', None), ('Rotation', None)])
|
||
|
writer = csv.DictWriter(out_file, delimiter=',', quoting=csv.QUOTE_NONNUMERIC, fieldnames=ordered_fieldnames)
|
||
|
|
||
|
writer.writerow({'Designator': 'Designator', 'Mid X': 'Mid X', 'Mid Y': 'Mid Y', 'Layer': 'Layer', 'Rotation': 'Rotation'})
|
||
|
|
||
|
|
||
|
for reader in [reader_t, reader_b]:
|
||
|
layer = 'Top'
|
||
|
if reader == reader_b:
|
||
|
layer = 'Bottom'
|
||
|
|
||
|
for row in reader:
|
||
|
row = list(filter(None, row[0].split(' ')))
|
||
|
|
||
|
writer.writerow({'Designator': row[0], 'Mid X': row[1], 'Mid Y': row[2], 'Layer': layer, 'Rotation': row[3]})
|
||
|
|
||
|
in_t_file.close()
|
||
|
in_b_file.close()
|
||
|
out_file.close()
|