Hi,
I have a problem with IsoLineLayer.GetIsoFeatures function.
Problem is when I try call IsoLineLayer.GetIsoFeatures application goes to infinite loop. If you try to debug you can no pass this line .
I’ve created a sample . Please check and let me know what’s wrong with my code ? Is there any problem with my data ?
Data stored on CSV file (XCoordination , YCoordination)
Regards
ThikGeo_Contour_Problem.zip (10.6 KB)
Contour problem
Hi Shaahin,
Thanks for you post, would you please try to replace
"CreateGridCellFile(points.ToDictionary(key => new PointShape(key.XCoord, key.YCoord), v => 1.0), 10, 10,-1, 2);"
var isoLineBreaks = new List<double> {10};
with
"Random r = new Random();
CreateGridCellFile(points.ToDictionary(key =>new PointShape(key.XCoord, key.YCoord), v => r.NextDouble() * 10), 10, 10,-1, 2);
var isoLineBreaks = new List<double> {5};
If you have any more question, please feel free to let us know
Best Regards
Summer