.NET Open Source Contour Plotting

梦想的初衷 提交于 2019-12-03 15:14:30

问题


I am looking for an Open Source .NET Library (or wrapper to a library) that will create contour plots from a set of values along a grid/mesh. ZedGraph is the closest thing I could find (http://zedgraph.org/).

It would also be great if it could export to EPS.


回答1:


With D3 you can plot contour lines (isolines) for WPF. I am not sure about contour surfaces. WPF has great printing capabilities so I think that printing to EPS would not be a problem.

Edit: recently found this one WinForms example around a .dll which calculates isolines.




回答2:


The contour extraction routine ConRec worked very well (fast and efficient) for me:

http://paulbourke.net/papers/conrec/

It doesn't output contours but a collection of line segments and associated z-values. You can use this raw data to construct contour polygon if required.



来源:https://stackoverflow.com/questions/3180401/net-open-source-contour-plotting

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!