如何获取/提取定义shapely多边形的点?谢谢! 形状多边形的示例 from shapely.geometry import Polygon # Create polygon from lists of points x = [list of x vals] y = [list of y vals] polygon = Polygon(x,y)
我在Fedora 19中使用Python。我想运行以下行: import shapely.geometry 但是出现以下错误: OSError: Could not find library geos_c or load any of its variants ['libgeos_c.so.1', 'libgeos_c.so'] 我安装了软件包Shapely和以下两个库: glibc-2.17-4.fc19.i686.rpm geos-3.3.8-2.fc19.i686.rpm。 我该怎么办才能解决问题?