Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.06 KB

README.md

File metadata and controls

28 lines (21 loc) · 1.06 KB

Stable Dev CI Codecov

[WIP] MDAL.jl

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

Install

]add https://github.com/evetion/MDAL.jl

Abstraction

MDAL defines a Mesh as vertices and faces, including Dataset(s), which have a name and define data on either vertices or faces.

Examples

Read in a mesh and retrieve all vertices.

using MDAL

fn = "test/data/test.nc"
mesh = MDAL.load(fn)
collect(coords(mesh))