Using local topography files instead of through published containers #331
|
Are there any example files that show how to use local topography files (AFM scans/XYZ data/MATLAb files) instead of read_published_container? |
Replies: 3 comments
|
The container is a collection (list) of measurements, if you want to read individual files you can just do that with |
|
Note that if you read MATLAB files, you need to provide some additional information to the reader, in particular the size of the measurement and the unit. You can do this via |
|
There is limited documentation here: https://contactengineering.github.io/SurfaceTopography/usage.html |
Note that if you read MATLAB files, you need to provide some additional information to the reader, in particular the size of the measurement and the unit. You can do this via
read_topography('myfile.mat', physical_sizes=(1, 2), unit='mm')(of course adjust the numbers appropriately).