Hi,
How can i store color symbology from CAD Layers in an attribute and apply it to layers in File GDB after translation?
Thanks in advance.
Hi,
How can i store color symbology from CAD Layers in an attribute and apply it to layers in File GDB after translation?
Thanks in advance.
Best answer by jneujens
When you expose the attribute autocad_color, you will see that this field will contain numbers like 1, 24, 156, etc. That's because AutoCAD has its own color codes (Reference to the Autocad Color Index). They are pretty much useless if you would like to work with these attributes in other GIS software (unless you hard code the transformation from ACI to RGB).
Therefore, expose the attribute fme_color. This will give you an RGB, value. You could store this attribute to your output for example as '255,0,0'. Other GIS software might read this attribute and set the color of that feature to a red color.