SpmGrids

Documentation for SpmGrids.

About

A julia library to analyze scanning tuprobe microscopy grid data. Currently, only Nanonis files are supported.

Installation

SpmGrids can be installed from the Julia package registry via:

using Pkg
Pkg.add("SpmGrids")

Additionally, you need to install a Makie backend.

using Pkg
Pkg.add("GLMakie")

Interactive widget

Now the fun begins. The easiest way to analyze grids is the interactive widget.

using SpmGrids
using GLMakie  # you can also use the WGLMakie backend

interactive_display("Bias_spectroscopy.3ds", colormap=:bluegreenyellow)

demo of interactive display

You can also easily create and adapt these plots in julia, as described in the Tutorial.