Python - get surrounding area of line (coordinates) Python - get surrounding area of line (coordinates) numpy numpy

Python - get surrounding area of line (coordinates)


Shapely did work:

import shapely.geometry as shgeoline = vstack( (x,y) ).Tline = shgeo.LineString( line )surrounding_polygon = line.buffer( 10,cap_style=3 ) # 10=Dist

Thanks for the hint;)