Re: [postgis-users] ST_MakeLine() woes

2014-05-13 Thread Rémi Cura
Sorry it didn't work :-( . Can you check that temp_id is not always 1? It is more that this approach is flawed _depending on the raster resolution and the small turn in your line (fixe = simplify line). _anyway, you are constructing a new line from centroid, and not putting the height information

Re: [postgis-users] ST_MakeLine() woes

2014-05-13 Thread georgew
Remi, you replied before the edits I made to my last posting were accepted by the forum. It actually did work!, with very minor adjustments to your code. But I accept that my approach may not the best way to go about this problem, so I'll try your latest suggestion and let you know the results.

Re: [postgis-users] ST_MakeLine() woes

2014-05-12 Thread georgew
thanks Remi, attached is the result after running your code, no change unfortunately. I had to make some slight changes to the code to make it work. The image has the code. However you also say that my approach is not as robust as it could be. Any suggestions on how to make it more robust?

Re: [postgis-users] ST_MakeLine() woes

2014-05-11 Thread Hugues François
the previous tables. Hugues. -Message d'origine- De : postgis-users-boun...@lists.osgeo.org [mailto:postgis-users-boun...@lists.osgeo.org] De la part de georgew Envoyé : dimanche 11 mai 2014 08:34 À : postgis-users@lists.osgeo.org Objet : [postgis-users] ST_MakeLine() woes Hi, I have

Re: [postgis-users] ST_MakeLine() woes

2014-05-11 Thread georgew
Thanks Francois, the ORDER BY statement was in the original blog I quoted, but even if I remove it, the points are still displayed in the same wrong sequence. -- View this message in context: http://postgis.17.x6.nabble.com/ST-MakeLine-woes-tp5006266p5006268.html Sent from the PostGIS - User

Re: [postgis-users] ST_MakeLine() woes

2014-05-11 Thread Hugues François
de georgew Envoyé : dimanche 11 mai 2014 11:07 À : postgis-users@lists.osgeo.org Objet : Re: [postgis-users] ST_MakeLine() woes Thanks Francois, the ORDER BY statement was in the original blog I quoted, but even if I remove it, the points are still displayed in the same wrong sequence. -- View

Re: [postgis-users] ST_MakeLine() woes

2014-05-11 Thread Hugues François
I don't  have any available data and not enough time for now but you may try the same query but without all with statements for the final one ( SELECT ST_MakeLine(geom)  FROM points3d).  You can also add a serial column in the points3d with to keep the ordering information. Hug Le 11 mai 2014

Re: [postgis-users] ST_MakeLine() woes

2014-05-11 Thread Rémi Cura
Hey, the order by has to be on the same statement of your ST_makeline, or the order could be wrong. Morevover, the order by should order the Point3D CTE because you want (points3d.geom) to be ordered, not line or others. Cheers, rémi-C 2014-05-11 13:30 GMT+02:00 Hugues François

Re: [postgis-users] ST_MakeLine() woes

2014-05-11 Thread georgew
Thank you Remi, I assume that means that my original code was correct (although it produces unwanted results). I am slowly reaching the conclusion that the problem is with st_intersection(), which traverses the raster in an order which is not compatible with my line shape and any attempt to create