Skip to content

Code Samples

Here are some code samples in C++ and in Python.

Use the CMake file to build the C++ examples. The C++ examples use hdf5 1.14.1. You can change the hdf5 version in the CMakeLists.txt.

You can try them using gitHub CodeSpaces, running the CMake file.

Setting up a codespace

  1. In the main repository folder, create a codespace.            

  2. Open the Visual Studio Code Codespaces environment.                    

  3. Install prerequisites / build using CMake.

Install VSC CMake Tools extension or execute the following command:

mkdir build
cd build 
cmake ..
make 
  1. Depending on the hdf5 version you may need to upgrade your cmake version. To upgrade codespace cmake version you can execute the following commands:
sudo apt purge --autoremove cmake
wget https://github.com/Kitware/CMake/releases/download/v3.20.2/cmake-3.20.2.tar.gz #select your desired cmake version here: https://github.com/Kitware/CMake/releases/download/
tar -zxvf cmake-3.20.2.tar.gz
cd cmake-3.20.2
./bootstrap
make
sudo make install
  1. To execute on linux:

Use VSC CMake Tools option or execute the following command:

./create-file
./read-ascan
./read-setup
./write-ascan

read-ascan ( c++ )

File read example:s

read-ascan sample on github.com

read-setup ( c++ )

Read setup example:

read-setup sample on github.com

read-setup ( python )

Read setup example.

read-python sample on github.com

create-file ( c++ )

An example of how to create an A-scan dataset and its domain setup json:

create-file sample on github.com

write-ascan

File write example:

write-ascan sample on github.com