From d0c0275153523f87e7af8c0086a7bd09dc7e351c Mon Sep 17 00:00:00 2001 From: mthielma Date: Thu, 29 Feb 2024 16:19:06 +0100 Subject: [PATCH] typo --- tutorials/Tutorial_AlpineData.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/Tutorial_AlpineData.jl b/tutorials/Tutorial_AlpineData.jl index 0d7250f0..20c717d3 100644 --- a/tutorials/Tutorial_AlpineData.jl +++ b/tutorials/Tutorial_AlpineData.jl @@ -160,7 +160,7 @@ end # Once the data has been downloaded, we can extract lon/lat/depth/magnitude using one of the GMG functions, which will give us a GeoData structure: Data_ISC = GetLonLatDepthMag_QuakeML("ISCData.xml"); -# As before, we can export this dataset to VTK annd also save it as a jld2 file (as we are now exporting point data, we have to use the option PointsData=true): +# As before, we can export this dataset to VTK and also save it as a jld2 file (as we are now exporting point data, we have to use the option PointsData=true): Write_Paraview(Data_ISC, "EQ_ISC", PointsData=true); save_GMG("EQ_ISC",Data_ISC)