Skip to Content

lignes - multilignes

  1. # ligne simple et quelques propriétés
  2. >>> ligne1 = loads('LINESTRING (3 1, 4 4, 5 5, 5 6)')
  3. >>> ligne1.bounds
  4. (3.0, 1.0, 5.0, 6.0)
  5. >>> ligne1.length
  6. 5.5764912225414749
  7.  
  8. # multiligne
  9. >>> multiligne = loads('MULTILINESTRING ((1 2, 1 2, 2 1, 3 2),(2 4, 3 4, 5 3))')