ifcopenshell.api.owner.edit_actor

Module Contents

ifcopenshell.api.owner.edit_actor.edit_actor(file: ifcopenshell.file, actor: ifcopenshell.entity_instance, attributes: dict[str, Any]) None

Edits the attributes of an IfcActor

For more information about the attributes and data types of an IfcActor, consult the IFC documentation.

Parameters:
  • actor (ifcopenshell.entity_instance) – The IfcActor entity you want to edit

  • attributes (dict) – a dictionary of attribute names and values.

Returns:

None

Return type:

None

Example:

# Setup an organisation with a single role
organisation = ifcopenshell.api.owner.add_organisation(model,
    identification="AWB", name="Architects Without Ballpens")
role = ifcopenshell.api.owner.add_role(model, assigned_object=organisation)
ifcopenshell.api.owner.edit_role(model, role=role, attributes={"Role": "ARCHITECT"})

# Assign that organisation to a newly created actor
actor = ifcopenshell.api.owner.add_actor(model, actor=organisation)

# Edit the description of the attribute.
ifcopenshell.api.actor.edit_actor(model,
    actor=actor, attributes={"Description": "Responsible for buildings A, B, and C."})