Access STEP Instance ID's with PythonOCC

1.3k Views Asked by At

Let's suppose I'm using this STEP file data as input:

#417=ADVANCED_FACE('face_1',(#112),#405,.F.);
#418=ADVANCED_FACE('face_2',(#113),#406,.F.);
#419=ADVANCED_FACE('face_3',(#114),#407,.F.);

I'm using pythonocc-core to read the STEP file. Then the following code will print the names of the ADVANCED_FACE instances (face_1,face_2 and face_3):

from OCC.Core.STEPControl import STEPControl_Reader
from OCC.Core.TopExp import TopExp_Explorer
from OCC.Core.TopAbs import TopAbs_FACE
from OCC.Core.StepRepr import StepRepr_RepresentationItem

reader = STEPControl_Reader()
tr = reader.WS().TransferReader()
reader.ReadFile('model.stp')
reader.TransferRoots()
shape = reader.OneShape()


exp = TopExp_Explorer(shape, TopAbs_FACE)
while exp.More():
    s = exp.Current()
    exp.Next()

    item = tr.EntityFromShapeResult(s, 1)
    item = StepRepr_RepresentationItem.DownCast(item)
    name = item.Name().ToCString()
    print(name)

How can I access the identifiers of the individual shapes? (#417,#418 and #419)

Minimal reproduction

https://github.com/flolu/step-occ-instance-ids

2

There are 2 best solutions below

0
On BEST ANSWER

Create a STEP model after reader.TransferRoots() like this:

model = reader.StepModel()

And access the ID like this in the loop:

id = model.IdentLabel(item)

The full code looks like this and can also be found on GitHub:

from OCC.Core.STEPControl import STEPControl_Reader
from OCC.Core.TopExp import TopExp_Explorer
from OCC.Core.TopAbs import TopAbs_FACE
from OCC.Core.StepRepr import StepRepr_RepresentationItem

reader = STEPControl_Reader()
tr = reader.WS().TransferReader()
reader.ReadFile('model.stp')
reader.TransferRoots()
model = reader.StepModel()
shape = reader.OneShape()


exp = TopExp_Explorer(shape, TopAbs_FACE)
while exp.More():
    s = exp.Current()
    exp.Next()

    item = tr.EntityFromShapeResult(s, 1)
    item = StepRepr_RepresentationItem.DownCast(item)

    label = item.Name().ToCString()
    id = model.IdentLabel(item)

    print('label', label)
    print('id', id)

Thanks to temurka1 for pointing this out!

8
On

I was unable to run your code due to issues installing the pythonocc module, however, I suspect that you should be able to inspect the StepRep_RepresentationItem object (prior to string conversion) by traversing __dict__ on it to discover/access whatever attributes/properties/methods of the object you may need:

    entity = tr.EntityFromShapeResult(s, 1)
    item = StepRepr_RepresentationItem.DownCast(entity)
    
    print(entity.__dict__)
    print(item.__dict__)

If necessary the inspect module exists to pry deeper into the object.

References

https://docs.python.org/3/library/stdtypes.html#object.__dict__

https://docs.python.org/3/library/inspect.html

https://github.com/tpaviot/pythonocc-core/blob/66d6e1ef6b7552a1110a90e86a1ed34eb12ecf16/src/SWIG_files/wrapper/StepElement.pyi