diff --git a/README.md b/README.md index a32acfde..30964b7e 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/src/IO.jl b/src/IO.jl index dcf2ab7b..d9aa3432 100644 --- a/src/IO.jl +++ b/src/IO.jl @@ -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")