Learn how you (developer, engineer, end-user, domain expert, project manager, etc.) can contribute to the creation of apps that provide real value to your work.
There are two ways in which geotechnical engineers can use this functionality:
Here you, we have a snippet of the application code. The following 6 lines of Python code allow you to easily import and read out GEF files within seconds. The full application code is available in our GitHub repository.
1from viktor.geo import GEFFile
2
3@ParamsFromFile(file_types=['.gef'])
4def process_file(self, file: File, **kwargs) -> dict:
5 """Process the CPT file when it is first uploaded"""
6 cpt_file = GEFFile(file.getvalue("ISO-8859-1"))
7 return cpt_data_object.serialize()
With VIKTOR, reading out GEF files is really easy. You simply add them to the GEF file object and use serialise to get a Python dictionary with all the results, ready to be used in your code. There is no need to implement a parser yourself. Instead, you can go straight to the application!
In the video you can see the functionality being used in a VIKTOR application.
As you can see in the video, the process of comparing CPT’s with the functionality consists of only four steps:
You can use the functionality to compare not only two but also multiple CPT’s. You can choose to compare them in separate graphs or in only one graph. Additionally, it is possible to select specific areas of a graph to zoom in and view in more detail. You can also plot the Rf signal that shows you the cone resistance and friction number.
Use our free version to start using this app!