我保存了一些多边形多边形的字符串表示形式:
'POLYGON ((51.0 3.0, 51.3 3.61, 51.3 3.0, 51.0 3.0))'
是否有一些快速的方法可以直接将其转换回Polygon类型?还是我需要手动解析字符串以创建Polygon对象?
答案 0 :(得分:6)
Shapely可以直接parse this:
import shapely.wkt
P = shapely.wkt.loads('POLYGON ((51.0 3.0, 51.3 3.61, 51.3 3.0, 51.0 3.0))')
print(P)