[mapserver-users] PPH Mapscript - limit to number of shape objects in a layer?

Alan Boudreault aboudreault at mapgears.com
Fri Oct 23 11:49:19 EDT 2009


Hi Alan,

What's happen when you reach 11528? Is is a PHP error or a mapserver error ? 
Could you show us the error?

Alan

On October 23, 2009 11:30:00 am Alan Hale wrote:
> Hi
> 
> I'm using PHP Mapscript to construct a layer with 2km square polygons
> based on coordinates from a database query - thus:
> 
> 
> $i = 0;
> foreach($qresult as $row) {
>     $ln[$i] = ms_newLineObj();
> 
>     $X = $row[1];
>     $Y = $row[2];
>     $ln[$i]->addXY($X-1000,$Y-1000);
>     $ln[$i]->addXY($X+1000,$Y-1000);
>     $ln[$i]->addXY($X+1000,$Y+1000);
>     $ln[$i]->addXY($X-1000,$Y+1000);
>     $ln[$i]->addXY($X-1000,$Y-1000);
> 
>     $shp[$i] = ms_newShapeObj(MS_SHAPE_POLYGON);
> 
>     $shp[$i]->add($ln[$i]);
>     $shp[$i]->set(index, $row[0]);
> 
>     $layerPoi->addFeature( $shp[$i] );
>  $i++;
> 
> This seems to work fine UNTIL the query result reaches more than 11528
> rows (this number is exact). Is there a limit? Am I expecting too much
>  here?
> 
> Many thanks
> 
> Alan Hale
> 
> 
> __________ Information from ESET Smart Security, version of virus signature
>  database 4536 (20091023) __________
> 
> The message was checked by ESET Smart Security.
> 
> http://www.eset.com
> 
> 
> _______________________________________________
> mapserver-users mailing list
> mapserver-users at lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/mapserver-users
> 

-- 
Alan Boudreault
Mapgears
http://www.mapgears.com


More information about the mapserver-users mailing list