Profile Picture

Smoothing out a contour map...

Posted By Sean Dorsett 9 Years Ago

Smoothing out a contour map...

Author
Message
Sean Dorsett
Posted 9 Years Ago
View Quick Profile
Forum Newbie

Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)

Group: Forum Members
Last Active: 7 Years Ago
Posts: 9, Visits: 55
I am currently using triangulation to render a contour map and trying to determine if there is a property that I can set or a technique that I can use to smooth out the rough edges of my map. I have a data file with 800 data point over a small area and the fillowing map is rendered. 

Here is the logic that I am currently using...

  public void PlotChart()
   {
    var chart = nChartControl1.Charts[0];
    chart.Series.Clear();

    var triangulatedSurface = new NTriangulatedSurfaceSeries
    {
      Name = "Surface Map",
      Legend = {Mode = SeriesLegendMode.SeriesLogic},
      FillMode = SurfaceFillMode.ZoneTexture,
      ShadingMode = ShadingMode.Smooth,
      FrameMode = SurfaceFrameMode.Contour,
      FrameColorMode = SurfaceFrameColorMode.Zone,
      DrawFlat = false,
      PositionValue = 0.5,
      SyncPaletteWithAxisScale = false,
      PaletteSteps = 8,
      UsePreciseGeometry = true,
      ValueFormatter = {FormatSpecifier = "0.00"},
      FillStyle = new NColorFillStyle(Color.YellowGreen)
    };

    chart.Series.Add(triangulatedSurface);

    var modGeospatialPoints = _geospatialPoints.ToList();

    SetMapProperties();

    // Remove unwanted depth.
    var maxDepth = Convert.ToDouble(MaxDepth.SelectedIndex);
    modGeospatialPoints.RemoveAll(item => item.Y > maxDepth);

    foreach (var point in modGeospatialPoints)
    {
      triangulatedSurface.XValues.Add(point.X);
      triangulatedSurface.ZValues.Add(point.Z);
      triangulatedSurface.Values.Add(point.Y);
      Debug.WriteLine("{0}, {1}, {2}", point.X, point.Z, point.Y);
    }

    chart.Refresh();
   }
73% of original size (was 692x19) - Click to enlarge
https://www.nevron.com/forum/uploads/images/6670bedf-9371-4294-9e5c-566a.png



Nevron Support
Posted 9 Years Ago
View Quick Profile
Supreme Being

Supreme Being (4,437 reputation)Supreme Being (4,437 reputation)Supreme Being (4,437 reputation)Supreme Being (4,437 reputation)Supreme Being (4,437 reputation)Supreme Being (4,437 reputation)Supreme Being (4,437 reputation)Supreme Being (4,437 reputation)Supreme Being (4,437 reputation)

Group: Forum Members
Last Active: Last Month
Posts: 3,055, Visits: 4,055
Hi Sean,
Unfortunately there is no build in way to create a smooth surface series.


Best Regards,
Nevron Support Team





Similar Topics


Reading This Topic

1 active, 1 guest, 0 members, 0 anonymous.
No members currently viewing this topic!