Plotting Layers - Getting outline layer #1720
-
In EDBLayer.plot there is an optional outline parameter. I would like to plot my selected layer with the board outline in the image. I have tried the EDBLayers.add_outline_layer function but it will return false with the default arguments. This would suggest there is already a layer named "Outline" in the project. However, I'm not sure how to access the outline layer... and how to get it into the list form required for the EDBLayer.plot method. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @pyAnsysUser, |
Beta Was this translation helpful? Give feedback.
Hi @pyAnsysUser,
The outline layer is a non stackup one and is always included in an EDB database. To access it:
edb.stackup.non_stackup_layers["Outline"].
However the plot command is only valid for physical layers e.g stackup ones.