我是Python的新手。刚与OSMnx合作,并想在Illustrator中以svg形式打开地图。这已发布在GitHub文档中:
#您还可以将图形绘制/保存为SVG,以便以后在Illustrator中使用 无花果,ax = ox.plot_graph(G_projected,save = True,file_format ='svg')
我在JupyterLab中尝试过它,并将其下载到我的文件中,但是当我打开它时,它只是文本。如何正确下载并以SVG格式打开? - 谢谢!
答案 0 :(得分:0)
fig, ax = ox.plot_graph(G, save=True, show=False, filename='image', file_format='svg')
运行代码行。它将在当前工作目录中创建一个images
子文件夹,并保存一个名为image.svg
的SVG文件。在您选择的SVG程序(Adobe Illustrator等)中打开该文件。