Guest User

Untitled

a guest
Aug 10th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. from shapely.geometry import LineString
  2. line = LineString([(0, 0), (1, 1)])
  3. for coord in line.coords:
  4. print(coord)
  5.  
  6. (0.0, 0.0)
  7. (1.0, 1.0)
Add Comment
Please, Sign In to add comment