JPK Modules
For decoding and loading .jpk AFM file format into Python Numpy arrays.
load_jpk(file_path, channel, config_path=None)
Load image from JPK Instruments .jpk files.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
file_path
|
Path | str
|
Path to the .jpk file. |
required |
channel
|
str
|
The channel to extract from the .jpk file. |
required |
config_path
|
Path | str | None
|
Path to a configuration file. If ''None'' (default) then the packages default configuration is loaded from ''default_config.yaml''. |
None
|
Returns:
Type | Description |
---|---|
tuple[NDArray, float]
|
A tuple containing the image and its pixel to nanometre scaling value. |
Raises:
Type | Description |
---|---|
FileNotFoundError
|
If the file is not found. |
KeyError
|
If the channel is not found in the file. |
Examples:
Load height trace channel from the .jpk file. 'height_trace' is the default channel name.
>>> from AFMReader.jpk import load_jpk
>>> image, pixel_to_nanometre_scaling_factor = load_jpk(file_path="./my_jpk_file.jpk", channel="height_trace")