Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Native triangulation support in Julia #14

Closed
henry2004y opened this issue Apr 23, 2021 · 1 comment
Closed

Native triangulation support in Julia #14

henry2004y opened this issue Apr 23, 2021 · 1 comment
Labels
enhancement New feature or request

Comments

@henry2004y
Copy link
Owner

henry2004y commented Apr 23, 2021

Currently the 2D plot for unstructured data is done through triangulation and interpolation provided by Matplotlib: https://matplotlib.org/stable/api/tri_api.html#matplotlib.tri.TriInterpolator. I want to find a substitution of triangulation and interpolation in Julia.

There are several options in Julia, but I haven't found a good solution yet. I've looked at

  • ScatteredInterpolations.jl
  • BasicIntepolators.jl

These two are pretty similar, but neither of them support linear scatter interpolations, and they both suffer from the OOM issue.


  • Triangulate.jl is a wrapper over another famous triangle mesh generator. I don't know if it supports linear scatter interpolations.

  • GridInterpolation.jl is another option, but the so-called simplex grid implementation suffers from performance issues.

  • NaturalNeighbours.jl is a working package.

@henry2004y
Copy link
Owner Author

Closed via ec470e7

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant