Home Forums Nazca Building block from a gds file Reply To: Building block from a gds file

#5125
Katarzyna
Keymaster

Dear lorenzo_btbw,

You can change the layer number of an imported GDS by using a ‘layermap’ argument.
‘layermap’ maps the original layer to a new layer. Omitted layers will not be changed.

For example, you can change layer #1 from a loaded GDS to layer #10 using the following syntax:

import nazca as nd

nd.load_gds(
    ...
    layermap={1:10},
    ...)

Katarzyna