我可以将seaborn的绘图输出另存为shp文件吗?

时间:2019-07-04 11:02:11

标签: python seaborn geojson geopandas

我正在尝试通过Python创建内核密度图并将其另存为形状文件。

通过Seaborn,我已经绘制了这样的内核密度图(https://imgur.com/vy0d3Ir),但是我不知道如何将其另存为形状文件。

我曾经使用过GeoPandas,GeoJson和其他功能,但仍然找不到答案。

import numpy as np
import seaborn as sns
import matplotlib.pyplot as plt

ax = sns.kdeplot(Cood_Wgs84_Array, shade = True, cmap = "PuBu")

ax.patch.set_facecolor('white')
ax.collections[0].set_alpha(0)

plt.show()

0 个答案:

没有答案