CP map Issue
Closed this issue · 3 comments
Saintzju commented
noonchen commented
Hi Saintzju,
Multi-file support is a considerably difficult task for now, since this is my part-time project, I don't think it would be possible for me to do at the moment.
However, you can manually combine the STDF files into a single STDF file, then open it with STDF Viewer, it can easily achieved by python:
stdf_path_list = ['path1', 'path2']
stdf_output = 'out_path'
data = b''
for p in stdf_path_list:
with open(p, 'rb') as stdf:
data += stdf.read()
with open(stdf_output, 'wb') as stdf:
stdf.write(data)
As for the display issue, it may take some moments to fix, for it is a matplotlib
issue.
Saintzju commented
noonchen commented
I find a merge STDF tool and code, may reference for you:
Same as the example code I provided. The difficulty is not how to merge stdf, it's how to implement the feature in the current architecture.
Thanks anyway.