我正在尝试通过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()