Is there a possibilty to directly read the "styling" properties of a DWG layer in FME? By styling properties I mean e.g. the color, linetype, and lineweight.
I know that with the FeatureReader transformer, I can read the so-called "Schema Features". These Schema Features correspond to the layers in the DWG file (also see accepted solution at https://community.safe.com/s/question/0D5Dm000006a48rKAA/read-all-layer-names-from-dwg-files).
Unfortunately, at least with standard reader options, these Schema Features do not have any styling properties associated with them:
As a workaround, I could read the Data Features of the DWG file with e.g. a standard RealDWG reader (Autodesk AutoCAD RealDWG DWG/DXF) and activate the option 'Store Layer Properties on Features' in the reader properties:
Then, the single Data Features have corresponding attributes with the information on their layer's styling properties:
However, this workaround has some limitations (e.g. if there are no Data Features on a specific layer).
Does anyone have an idea?