We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be nice if one could skip one or multiple layers using strmxor, similar to klayout's "xor only visible layers".
E.g. skip all base and tile layer if you're only interested in metal differences.
The text was updated successfully, but these errors were encountered:
Actually, this is already possible through the layer mapping feature:
For example, if you like to exclude layers 10 to 12, datatype 0 and all datatypes of layer 15, you can use:
strmxor -am "[*/*] -(10-12/0) -(15/*)" -as -bm "[*/*] -(10-12/0) -(15/*)" -bs a.gds b.gds xor.gds
"-as" and "-bs" (skip unknown layers) is necessary, so the reader won't add the unmapped layers again.
Matthias
Sorry, something went wrong.
No branches or pull requests
It would be nice if one could skip one or multiple layers using strmxor, similar to klayout's "xor only visible layers".
E.g. skip all base and tile layer if you're only interested in metal differences.
The text was updated successfully, but these errors were encountered: