It looks like you're new here. If you want to get involved, click one of these buttons!
Hi sir ,
We have multi-top cell in GDSII , and need to export (to csv file) for what the cell name / coordinate in the first level in each top cells.
Can you let me know how to do that?
Comments
Hi!
I think you should look make loop over each cell in layout (
Layout.each_cell
) and then useCell.bbox
. See documentation and similar code as example.Hi Eugenne,

Thanks for your answer , but I can't work it into my Klayout.
I can using(make code) for DRC or Ruby just a little , but I can't code Python....
do you have another ways to do that?
Hi!
Ruby API is almost same as Python. Most importang thing is to know classes and their methods as well as context of their usage. Python example could serve this purpose :-) You could try to search this forum for Ruby examples of same API.
@jiunnweiyeh
Quick and Dirty use at your own risk
Hello,
I use this one for my wafer maps and chip floorplans:
Cheers,
Tomas
@tomas2004
Excellent I tend to stick to Python
Very good! Thanks for the code!
Matthias