Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
boriskaus committed Nov 5, 2023
2 parents ff091d0 + e0266b3 commit 3e7ee3e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://juliageodynamics.github.io/GeophysicalModelGenerator.jl/dev/)
[![Build Status](https://github.com/JuliaGeodynamics/GeophysicalModelGenerator.jl/workflows/CI/badge.svg)](https://github.com/JuliaGeodynamics/GeophysicalModelGenerator.jl/actions)

![GMG_LogoWide](https://github.com/JuliaGeodynamics/GeophysicalModelGenerator.jl/assets/1148509/0fa80120-0f99-4eb2-bb00-60551ea3b6c4)

Creating consistent 3D images of geophysical and geological datasets and turning that into an input model for geodynamic simulations is often challenging. The aim of this package is to help with this, by providing a number of routines to easily import data and create a consistent 3D visualisation from it in the VTK-toolkit format, which can for example be viewed with [Paraview](https://www.paraview.org). In addition, we provide a range of tools that helps to generate input models to perform geodynamic simulations and import the results of such simulations back into julia.

![README_img](./docs/src/assets/img/Readme_pic.png)
Expand Down
2 changes: 1 addition & 1 deletion src/IO.jl
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ function load_GMG(filename::String, dir=pwd())

if contains(filename,"http")
#download remote file to a local temporary directory
file_ext = Downloads.download(filename, pwd()*"download_GMG_temp.jld2")
file_ext = Downloads.download(filename, joinpath(pwd(),"download_GMG_temp.jld2"))
else
# local file
file_ext = joinpath(dir,filename*".jld2")
Expand Down

0 comments on commit 3e7ee3e

Please sign in to comment.