ThinkGeo.com    |     Documentation    |     Premium Support

GetIntersectingRowColumnRange error in Map Suite 3.0 routing explorer

Hello,


Im facing the following problem when i try to enter an shp file that contains roads in map suite routing explorer an error message pops up informing me that


"This method will return too many cells that might cause performance problem. Please using GetIntersectingRowColumnRange method instead"


and after a while an error window appears informing me that an unhadled exception has occured


Can any1 help we get through this. The shp file is working well when i display it in think geo web suite as polylines


Also i have entered it in sql server 2008 as geospatial data and i can see it in spatial result view in sql server


Thanks in advanced


dom



Dimitris,



Currently, the routing explorer only supports decimal degree data; if you use meter or feet, it may cause this issue. On the other hand, you can simply convert your shape file to decimal degree by the following code; please have a try.

roj4Projection.InternalProjectionParametersString = Proj4Projection.GetGoogleMapParametersString();
proj4Projection.ExternalProjectionParametersString = Proj4Projection.GetEpsgParametersString(4326);
ShapeFileFeatureLayer.SaveToProjection(@"[Source File Path]", @"Target File Path", proj4Projection, OverwriteMode.Overwrite);

Thanks,

Howard