4

I'm trying to plot a 2D and 3D contour from x, y, z data. Does anyone know any good JavaScript library that does that?

Thank you

jzlas
  • 187
  • 2
  • 11
  • See [d3: Contour or Surface plot from Irregular/Scattered Data](https://stackoverflow.com/q/44662862/195835) – Simon East Feb 10 '23 at 10:56

1 Answers1

0

This question is very similar to another question that was already asked and answered at Create contour map

In that post, it was recommended to use d3.js and conrec.js.

Community
  • 1
  • 1
jluckin
  • 662
  • 4
  • 6
  • Thank you, I'm sorry I wasn't able to find it. – jzlas Jun 09 '14 at 19:49
  • 1
    The OP states "scattered", i.e. irregular data. This makes it different from that earlier post in which the data was already on a uniform grid. The means to interpolate irregular data onto a regular grid for use with d3.js and conrec.js is the crux of the issue. – sh37211 Jun 14 '17 at 18:25