Hi all,
If you, like me, are working with experimental data or in the broad field of engineering, you have probably encountered UFF (Universal File Format) files.
To the best of my knowledge, some other programming languages have packages for reading and writing UFF files. In the Python world, we can use the excellent pyuff. In Matlab, users can adopt uff.m.
In Julia, we can of course call pyuff using PythonCall.jl and CondaPkg.jl, but it requires the user to postprocess the PyObject. As conversion is quite cumbersome given the diversity of UFF datasets and fields, I decided to develop a package for reading and writing UFF files directly in Julia. Tada! Here is where UFFFiles.jl comes into the scene.
For this initial release, only the reading functionalities are implemented (the writing functions will be released very soon) and the supported datasets are:
- Dataset 15 - Nodes
- Dataset 18 - Coordinate Systems
- Dataset 55 - Data at Nodes
- Dataset 58 - Function at Nodal DOF
- Dataset 82 - Tracelines
- Dataset 151 - Header
- Dataset 164 - Units
- Dataset 2411 - Nodes - Double Precision
- Dataset 2412 - Elements
- Dataset 2414 - Analysis Data
Please do not hesitate to provide feedbacks, to open issues or to contribute through PR. Your help will be welcomed!
To get a better overview of the package, the documentation is available here.
Enjoy!