Dear Nazca team,
I have a question about gds handling in nazca. I want to load a gds, read out all top cells and write to another gds. So far I am using a statement similar to
bb_lib = nd.gds_import.GDSII_stream(filename=some file, layermap=some layers)
#get the top cells from gds
cellList = bb_lib.topcell()
# write a specific cell out
bb_lib.GDSII_write_cellcellname = cellList[1]
I do get the error
…self.GDSII_write_cell_and_under(f, cellname)
AttributeError: ‘GDSII_stream’ object has no attribute ‘GDSII_write_cell_and_under’
It seems to me that the function GDSII_write_cell_and_under is missing. Is there a better way for me to do the task?
Version: 0.4.3.post2
Thanks!