An open API service indexing awesome lists of open source software.

https://github.com/jaakkor2/surfaceprofilereaders.jl

Surface profile readers in Julia language
https://github.com/jaakkor2/surfaceprofilereaders.jl

frt opd

Last synced: 4 months ago
JSON representation

Surface profile readers in Julia language

Awesome Lists containing this project

README

          

# SurfaceProfileReaders

[![Build Status](https://github.com/jaakkor2/SurfaceProfileReaders.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/jaakkor2/SurfaceProfileReaders.jl/actions/workflows/CI.yml?query=branch%3Amain)

Reader for surface profiler data sets written in Julia language. Implemented formats
* Wyko OPD
* MicroProf FRT

```julia
using SurfaceProfileReaders
data = readopd("profile.opd")
(; x, y, z) = opdprepplot(data)
```
See `?readopd` for a plotting example.