I have written a script in Python 3.3 which reads position (x, y coordinate) and risk values from a text file and saves the resulting contour plot using matplotlib. My company needs to be able to edit the contour in AutoCAD. Unfortunately, my knowledge about AutoCAD is severely limited, and the people at my company who know AutoCAD know very little about generating contour plots.
How can I create a contour plot that can be imported in AutoCAD? My current thinking is that I should save the plot as an svg file and convert it to something AutoCAD can open, or install a plugin for AutoCAD that will allow it to open one of the formats that matplotlib can save. I have seen this question but that does not quite suit my needs.
*Edit*
I have tried saving the plot as an SVG file, opening it in Inkscape, and saving it as DXF, but it does not save the contour color information, and the task needs to be automated anyway. The contour color information is important to preserve because the color indicates the order of magnitude of risk.