I am retrieving a list of shapes from a line shapefile file using the following code:<br><br>for($x=0;$x<count($oShapeList);$x++)<br>{    <br>   $oSelectedShape = $oRelationLayer->getshape(-1, $oShapeList[$x]);<br>   array_push($oShapeObjectList,$oSelectedShape);
<br>}<br><br>I want to merge this list of shapes into one shape (i.e. one line).  I thought I could do it using the following code but it returns a "<b>Fatal error</b>: Object has an invalid _handle_ property":<br>
<br>$oLine = ms_newShapeObj(MS_SHAPE_LINE);<br>For($x=0; $x<count($oShapeObjectList);$x++)<br>{<br>   $oLine->add($oShapeObjectList[$x]);<br>}<br><br>The goal here is to create one line, then use the GEOS - buffer(width) to create a polygon object that I can save to a new shapefile.
<br><br>Does anybody have any ideas? OR CODE!!!<br><br>Sincerely,<br>Bryon