1

我在 Python 3.3 中编写了一个脚本,它从文本文件中读取位置(x,y 坐标)和风险值,并使用 matplotlib 保存生成的等高线图。我的公司需要能够在 AutoCAD 中编辑轮廓。不幸的是,我对 AutoCAD 的了解非常有限,而且我公司中了解 AutoCAD 的人员对生成等高线图知之甚少。

如何创建可以在 AutoCAD 中导入的等高线图?我目前的想法是,我应该将绘图保存为 svg 文件并将其转换为 AutoCAD 可以打开的文件,或者为 AutoCAD 安装一个插件,使其能够打开 matplotlib 可以保存的格式之一。我已经看到了这个问题,但这并不完全适合我的需求。

*编辑*

我尝试将绘图保存为 SVG 文件,在Inkscape中打开它,然后将其保存为 DXF,但它不保存轮廓颜色信息,并且无论如何任务都需要自动化。轮廓颜色信息对于保留很重要,因为颜色表示风险的数量级。

4

2 回答 2

2

如果您可以生成 postscript 文件(matplotlib 可以创建 pdf 对吗?),您也许可以从命令行使用pstoedit将其转换为 dxf。

或者,您可以使用 Illustrator(非免费)或 Inkscape(免费)将 svg 转换为 dxf。互联网上有一些普遍的谣言说 Inkscape 有时会将贝塞尔曲线变成直线,但我还没有检查这是否仍然正确。

于 2013-04-16T20:14:10.510 回答
0

我最终让我的绘图程序创建了一个非常基本的 Autocad 脚本。我提到了这个关于从等高线图中提取 x,y 数据以编写 Autocad 脚本的问题。以下是相关功能:

def make_autocad_script(outfile_name, contour):
    ''' 
    Creates an Autocad script which contains polylines for each contour.
    Args
    outfile_name: the name of the Autocad script file.
    contour: the contour plot that needs to be exported to Autocad.
    '''

    with open(outfile_name, 'w', newline='') as outfile:
        writer = csv.writer(outfile, delimiter=',', )
        # each collection is associated with a contour level    
        for collection in contour.collections:

            # If the contour level is never reached, then the collection will be an empty list.
            if collection:
                # Set color for contour level
                outfile.write('COLOR {}\n'.format(random.randint(1,100)))
                # Each continuous contour line in a collection is a path.
                for path in collection.get_paths():

                    vertices = path.vertices

                    # pline is an autocad command for polyline.  It interprets
                    # the next (x,y) pairs as coordinates of a line until
                    # it sees a blank line.
                    outfile.write('pline\n')
                    writer.writerows(vertices)
                    outfile.write('\n')

我发送我需要make_autocad_script的绘图,然后在 Autocad 中导入脚本outfilecontour这会将每个轮廓绘制为随机颜色,但可以用您想要的任何颜色替换。

于 2013-07-01T21:33:27.720 回答