Shapely を使用しようとしていますが、見つからparallel_offset
ないようです。例にあるインポートを含めましたが、認識されませんparallel_offset
。
from matplotlib import pyplot
from shapely.geometry import LineString
from descartes import PolygonPatch
line=LineString([(0,0),(0,1),(1,1),(2,0)])
offset = line.parallel_offset(1,'left',join_style=2)
そして私は得る:
$ python parallel_offset.py
Traceback (most recent call last):
File "parallel_offset.py", line 6, in <module>
offset = line.parallel_offset(1,'left',join_style=2)
AttributeError: 'LineString' object has no attribute 'parallel_offset'
私は何を間違っていますか?