<div dir="ltr"><div><div><div>Hey, a small correction :<br></div>ST_MakeLine is already an aggregate, and you may want to enforce the order inside the aggregate (see at the end).<br></div><div>Another interesting point is the possiblity to pu somehting in the M value of each point of the line, for instance the time.<br></div><div>This comes very handy when you want to extrat parts of the lines.<br></div><div><br></div><div><br></div>So for instance for the first proposition :<br><br><p class="MsoNormal"><span style="font-size:11pt;font-family:"Calibri","sans-serif";color:rgb(31,73,125)" lang="EN-GB">WITH multis AS (</span></p><p class="MsoNormal"><span style="font-size:11pt;font-family:"Calibri","sans-serif";color:rgb(31,73,125)" lang="EN-GB">                SELECT id, status,<b> ST_MakeLine( point_</b><b>geom ORDER BY time_field) </b>AS mylines</span></p><p class="MsoNormal"><span style="font-size:11pt;font-family:"Calibri","sans-serif";color:rgb(31,73,125)" lang="EN-GB">                FROM your_table</span></p><p class="MsoNormal" style="text-indent:35.4pt"><span style="font-size:11pt;font-family:"Calibri","sans-serif";color:rgb(31,73,125)" lang="EN-GB">GROUP BY id, status</span></p><p class="MsoNormal" style="text-indent:35.4pt"><span style="font-size:11pt;font-family:"Calibri","sans-serif";color:rgb(31,73,125)" lang="EN-GB">)</span></p><p class="MsoNormal"><span style="font-size:11pt;font-family:"Calibri","sans-serif";color:rgb(31,73,125)" lang="EN-GB"> </span></p><p class="MsoNormal"><span style="font-size:11pt;font-family:"Calibri","sans-serif";color:rgb(31,73,125)" lang="EN-GB">SELECT id, status, (ST_Dump(mylines)).geom</span></p><span style="font-size:11pt;font-family:"Calibri","sans-serif";color:rgb(31,73,125)" lang="EN-GB">FROM multis</span><br><br></div>Cheers,<br>Rémi-c<br><div><div><br></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">2014-11-25 9:53 GMT+01:00 Brent Wood <span dir="ltr"><<a href="mailto:pcreso@pcreso.com" target="_blank">pcreso@pcreso.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div style="color:#000;background-color:#fff;font-family:HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;font-size:16px"><div><span></span></div><div dir="ltr">or automatically get the start & end times for each trackline in the record like this:<br></div><div dir="ltr"><br></div><div><span style="font-size:11.0pt" lang="EN-GB">WITH multis AS (</span></div><div dir="ltr"><span style="font-size:11.0pt" lang="EN-GB">                SELECT id, min(time_field) AS time_start, max(time_field) as time_end, status, ST_MakeLine(array_agg(point_geom )) AS mylines</span></div><span class=""><div><span style="font-size:11.0pt" lang="EN-GB">                FROM your_table</span></div><div style="text-indent:35.4pt"><span style="font-size:11.0pt" lang="EN-GB">GROUP BY id, status</span></div><div style="text-indent:35.4pt"><span style="font-size:11.0pt" lang="EN-GB">ORDER BY time_field</span></div><div style="text-indent:35.4pt"><span style="font-size:11.0pt" lang="EN-GB">)</span></div><div><span style="font-size:11.0pt" lang="EN-GB">  </span></div><div><span style="font-size:11.0pt" lang="EN-GB">SELECT id, status, (ST_Dump(mylines)).geom</span></div></span><div><span style="font-size:11.0pt" lang="EN-GB">FROM multis;</span></div><div><br><span style="font-size:11.0pt" lang="EN-GB"></span></div><div><br><span style="font-size:11.0pt" lang="EN-GB"></span></div><div dir="ltr"><span style="font-size:11.0pt" lang="EN-GB">Cheers,</span></div><div dir="ltr"><span style="font-size:11.0pt" lang="EN-GB">   Brent Wood<br></span></div><div dir="ltr">  </div><div style="font-family:HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;font-size:16px"> <div style="font-family:HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;font-size:16px"> <div dir="ltr"> <hr size="1">  <font face="Arial"> <b><span style="font-weight:bold">From:</span></b> Hugues François <<a href="mailto:hugues.francois@irstea.fr" target="_blank">hugues.francois@irstea.fr</a>><br> <b><span style="font-weight:bold">To:</span></b> PostGIS Users Discussion <<a href="mailto:postgis-users@lists.osgeo.org" target="_blank">postgis-users@lists.osgeo.org</a>> <br> <b><span style="font-weight:bold">Sent:</span></b> Tuesday, November 25, 2014 8:13 PM<br> <b><span style="font-weight:bold">Subject:</span></b> Re: [postgis-users] Creating trajectory/lines from millions of    points[PostGIS]<br> </font> </div> <div><div><div class="h5"><br><div><div><div><div><span style="font-size:11.0pt">Hello,</span></div><div><span style="font-size:11.0pt">  </span></div><div><span style="font-size:11.0pt" lang="EN-GB">In your case I would have try to make multilines for each taxi and each status (i.e. two multi by taxi) and then dump them into  simple linestrings. All in a query that may look like this assuming you have a taxi id field:</span></div><div><span style="font-size:11.0pt" lang="EN-GB">  </span></div><div><span style="font-size:11.0pt" lang="EN-GB">WITH multis AS (</span></div><div><span style="font-size:11.0pt" lang="EN-GB">                SELECT id, status, ST_MakeLine(array_agg(point_geom )) AS mylines</span></div><div><span style="font-size:11.0pt" lang="EN-GB">                FROM your_table</span></div><div style="text-indent:35.4pt"><span style="font-size:11.0pt" lang="EN-GB">GROUP BY id, status</span></div><div style="text-indent:35.4pt"><span style="font-size:11.0pt" lang="EN-GB">ORDER BY time_field</span></div><div style="text-indent:35.4pt"><span style="font-size:11.0pt" lang="EN-GB">)</span></div><div><span style="font-size:11.0pt" lang="EN-GB">  </span></div><div><span style="font-size:11.0pt" lang="EN-GB">SELECT id, status, (ST_Dump(mylines)).geom</span></div><div><span style="font-size:11.0pt" lang="EN-GB">FROM multis</span></div><div><span style="font-size:11.0pt" lang="EN-GB">  </span></div><div><span style="font-size:11.0pt" lang="EN-GB">You may want to add a time reference to your lines. To do this, you can add an extraction from your timestamp field (e.g. day or month) and add it into the WITH and to the group by clause.</span></div><div><span style="font-size:11.0pt" lang="EN-GB">  </span></div><div><span style="font-size:11.0pt" lang="EN-GB">Hugues.</span></div><div><span style="font-size:11.0pt" lang="EN-GB">  </span></div><div><span style="font-size:11.0pt" lang="EN-GB">  </span></div><div style="text-indent:35.4pt"><span style="font-size:11.0pt" lang="EN-GB">  </span></div><div style="text-indent:35.4pt"><span style="font-size:11.0pt" lang="EN-GB">  </span></div><div><span style="font-size:11.0pt" lang="EN-GB">  </span></div><div><b><span style="font-size:10.0pt">De :</span></b><span style="font-size:10.0pt"> <a href="mailto:postgis-users-bounces@lists.osgeo.org" target="_blank">postgis-users-bounces@lists.osgeo.org</a> [mailto:<a href="mailto:postgis-users-bounces@lists.osgeo.org" target="_blank">postgis-users-bounces@lists.osgeo.org</a>] <b>De la part de</b> Oliver Burgfeld<br clear="none"><b>Envoyé :</b> mardi 25 novembre 2014 07:09<br clear="none"><b>À :</b> <a href="mailto:postgis-users@lists.osgeo.org" target="_blank">postgis-users@lists.osgeo.org</a><br clear="none"><b>Objet :</b> [postgis-users] Creating trajectory/lines from millions of points[PostGIS]</span></div><div>  </div><div><br><br></div><div><div><div><div>Hi,</div><div>I have millions of points in a PostGIS database containing taxi gps tracks. Now I want to create lines from these points by vehicleid and ordered by timestamp. But, and that's my problem right now, at first I want to include every column of my point table into the "line table" and I also need to intersect those lines at specific points.</div><div>I have one column representing the "taxi_is_occupied" status with 0 or 1. </div><div>What I want now is to create lines which are divided every time this status changes. In the end I need lines which show the path of every taxi over time, divided every time the status of the car changes so that I can query all lines where the taxi is occupied, for example.</div><div>What do I have to use therefore? I know that there is the ST_MakeLines tool existing in PostGIS, but as I am a new PostGIS user... I do not know exactly how to use it to get the results I need. </div><div>  </div><div>Thanks a lot</div></div></div></div></div></div></div><br></div></div><div>_______________________________________________<br clear="none">postgis-users mailing list<br clear="none"><a shape="rect" href="mailto:postgis-users@lists.osgeo.org" target="_blank">postgis-users@lists.osgeo.org</a><br clear="none"><a shape="rect" href="http://lists.osgeo.org/cgi-bin/mailman/listinfo/postgis-users" target="_blank">http://lists.osgeo.org/cgi-bin/mailman/listinfo/postgis-users</a></div><br><br></div> </div> </div>  </div></div><br>_______________________________________________<br>
postgis-users mailing list<br>
<a href="mailto:postgis-users@lists.osgeo.org">postgis-users@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/cgi-bin/mailman/listinfo/postgis-users" target="_blank">http://lists.osgeo.org/cgi-bin/mailman/listinfo/postgis-users</a><br></blockquote></div><br></div>