The goal of this repository is to demonstrate how to use GemPy.jl to generate a geological model that can be used to perform geodynamic simulations in LaMEM.jl.
To execute the example code, clone the Repo and open a new VSCode window in the GemPy_Eifel folder. Then open a new Julia REPL and activate the package manager by typing a closing square bracket.
julia> ]
(@v1.11) pkg> By typing 'activate .' in the package manager we activate the correct julia environment and by typing 'instantiate' the correct versions of all necessary packages are downloaded and compiled.
(@v1.11) pkg> activate .
(GemPy_Eifel) pkg> instantiateThe first time that GemPy.jl is compiled, all necessary Python packages will be downloaded into a Python envionment.
Because the GemPy.jl package is not yet registered as a julia package, this will likely fail initially. The current workaround is to clone the GemPy.jl repository and to add it to the environment manually before insantiating.
(GemPy_Eifel) pkg> add Path/to/Gempy.jl