Wraps the MDAL (Mesh Data Abstraction Library) in Julia and enables conversion to the GeometryTypes.jl library.
This is a very early work in progress
]add https://github.com/evetion/MDAL.jl
MDAL defines a Mesh as vertices and faces, including Dataset(s), which have a name and define data on either vertices or faces.
Read in a mesh and retrieve all vertices.
using MDAL
fn = "test/data/test.nc"
mesh = MDAL.load(fn)
collect(coords(mesh))