Hi @kewhew,
When the DWG reader explodes blocks, it outputs a separate feature for each component of the block, but maintains the relationship of the components using the format attribute autocad_block_number. You can expose this attribute on the source feature types, then use an Aggregator to group the components by autocad_block_number to create multiparts for each block instance.
FME 2023 introduced the option to read the blocks as geometry instances, which will automatically create a multipart from each block, and best reflects the actual structure of the block within AutoCAD. If you are using FME 2023, I would recommend enabling this option.
Hi @kewhew,
When the DWG reader explodes blocks, it outputs a separate feature for each component of the block, but maintains the relationship of the components using the format attribute autocad_block_number. You can expose this attribute on the source feature types, then use an Aggregator to group the components by autocad_block_number to create multiparts for each block instance.
FME 2023 introduced the option to read the blocks as geometry instances, which will automatically create a multipart from each block, and best reflects the actual structure of the block within AutoCAD. If you are using FME 2023, I would recommend enabling this option.
Hi @daveatsafe thanks a lot for your response. I tested both options (just installed 2023 to try) and they work great! :)