Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have to get an array of simple lines from one multipoint linestring. How can I do it?

share|improve this question
Doesn't anybody know? – Roman C Aug 18 '11 at 3:57

1 Answer

Try this query:

SELECT MakeLine(sp,ep)
FROM (
    SELECT  pointn(wkb_geometry, generate_series(1, npoints(wkb_geometry)-1)) as sp,
            pointn(wkb_geometry, generate_series(2, npoints(wkb_geometry)  )) as ep
    FROM geom_table
  ) as tmp;

Though this isn't very performant on larger linestrings.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.