Create contour map

前端 未结 2 2069
心在旅途
心在旅途 2021-01-31 06:09

Given a set of (x, y, z) coordinates, how would I go about creating a contour map?

Would be nice to know how to implement in d3 but wouldn\'t mind trying to

2条回答
  •  感动是毒
    2021-01-31 06:33

    It looks like this would be very easy with conrec.js. If you pass the data in the form that you have it, you can get a list of paths by calling .contourList() on the result. That you should be able to pass without modification to a d3 .data() call. All you should need to do is supply a path generator that maps the coordinates in the data to screen coordinates.

提交回复
热议问题