Skip to content

Commit a9c0f48

Browse files
committed
spelling
1 parent 343d3c3 commit a9c0f48

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/src/man/Tutorial_Basic.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ GeoData
3131
````
3232

3333
This is a so-called `GeoData` object, which is a 3D grid of seismic velocities as a function of longitude, latitude and depth, which can include various fields (here we only have a single field: `:dVp_Percentage`)
34-
We can save ths in `VTK` format, which is a widely used format that can for exampke be read by the 3D open-source visualization tool [Paraview](https://www.paraview.org/):
34+
We can save this in `VTK` format, which is a widely used format that can for exampke be read by the 3D open-source visualization tool [Paraview](https://www.paraview.org/):
3535

3636
```julia
3737
Write_Paraview(Tomo_Alps_full,"Tomo_Alps_full")
@@ -42,7 +42,7 @@ Saved file: Tomo_Alps_full.vts
4242
4343
````
4444

45-
We also uploaded a dataset with the topography of the Alpine region which can be donwloaded with:
45+
We also uploaded a dataset with the topography of the Alpine region which can be downloaded with:
4646

4747
```julia
4848
Topo_Alps = load_GMG("https://zenodo.org/records/10738510/files/AlpsTopo.jld2?download=1")
@@ -199,7 +199,7 @@ Saved file: data_200km.vts
199199
````
200200

201201
![Basic_Tutorial_3](../assets/img/Basic_Tutorial_3.png)
202-
In creating this image, I used the `Clip` tool of Paraview to only show topography above sealevel and made it 50% transparant.
202+
In creating this image, I used the `Clip` tool of Paraview to only show topography above sealevel and made it 50% transparent.
203203

204204
### 4. Cartesian data
205205
As you can see, the curvature or the Earth is taken into account here. Yet, for many applications it is more convenient to work in Cartesian coordinates (kilometers) rather then in geographic coordinates.

tutorials/Tutorial_Basic.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ using GeophysicalModelGenerator;
1111
Tomo_Alps_full = load_GMG("https://zenodo.org/records/10738510/files/Paffrath_2021_SE_Pwave.jld2?download=1")
1212

1313
# This is a so-called `GeoData` object, which is a 3D grid of seismic velocities as a function of longitude, latitude and depth, which can include various fields (here we only have a single field: `:dVp_Percentage`)
14-
# We can save ths in `VTK` format, which is a widely used format that can for exampke be read by the 3D open-source visualization tool [Paraview](https://www.paraview.org/):
14+
# We can save this in `VTK` format, which is a widely used format that can for exampke be read by the 3D open-source visualization tool [Paraview](https://www.paraview.org/):
1515
Write_Paraview(Tomo_Alps_full,"Tomo_Alps_full")
1616

17-
# We also uploaded a dataset with the topography of the Alpine region which can be donwloaded with:
17+
# We also uploaded a dataset with the topography of the Alpine region which can be downloaded with:
1818
Topo_Alps = load_GMG("https://zenodo.org/records/10738510/files/AlpsTopo.jld2?download=1")
1919

2020
# Different than the 3D tomographic model, the topography has size 1 for the last index which indicates that this is a 3D surface. As you can see, the depth varies, which is because it is a warped surface.
@@ -94,7 +94,7 @@ Write_Paraview(Cross_vert,"Cross_vert");
9494
Write_Paraview(data_200km,"data_200km");
9595

9696
# ![Basic_Tutorial_3](../assets/img/Basic_Tutorial_3.png)
97-
# In creating this image, I used the `Clip` tool of Paraview to only show topography above sealevel and made it 50% transparant.
97+
# In creating this image, I used the `Clip` tool of Paraview to only show topography above sealevel and made it 50% transparent.
9898
#
9999
# ### 4. Cartesian data
100100
# As you can see, the curvature or the Earth is taken into account here. Yet, for many applications it is more convenient to work in Cartesian coordinates (kilometers) rather then in geographic coordinates.

0 commit comments

Comments
 (0)