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¶
-
In the main repository folder, create a codespace.
-
Open the Visual Studio Code Codespaces environment.
-
Install prerequisites / build using CMake.
Install VSC CMake Tools extension or execute the following command:
- 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
- To execute on linux:
Use VSC CMake Tools option or execute the following command:
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: