Hi,
I attached my origin points and the grid which I have been created based on then(I assigned a random number between 0-10 to all points as value).
I’m trying to read isoFeatures inside grid file using below code:
List<
double
> isoLineBreaks =
new List<double>() { 10 };
var gridFeatureSource = new GridFeatureSource(“0.grid”);
gridFeatureSource.Open();
Collection<
Feature
> isoFeatures = IsoLineLayer.GetIsoFeatures(gridFeatureSource.GenerateGridMatrix(),
isoLineBreaks, “GridCellValue”,
IsoLineType.ClosedLinesAsPolygons);
it keap return back only one feature which is one big rectangle similar to extent of origin points.
could you please help me to find the problem?
orignANDgrid.zip (3.32 KB)