Skip to content

Commit c0b506c

Browse files
committed
typos
1 parent a67afb5 commit c0b506c

File tree

2 files changed

+15
-16
lines changed

2 files changed

+15
-16
lines changed

docs/src/man/Tutorial_Basic.md

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Tomo_Alps_full = load_GMG("https://zenodo.org/records/10738510/files/Paffrath_20
2121
```
2222

2323
````
24-
GeoData
24+
GeoData
2525
size : (162, 130, 42)
2626
lon ϵ [ -13.3019 : 35.3019]
2727
lat ϵ [ 30.7638 : 61.2362]
@@ -49,7 +49,7 @@ Topo_Alps = load_GMG("https://zenodo.org/records/10738510/files/AlpsTopo.jld2?do
4949
```
5050

5151
````
52-
GeoData
52+
GeoData
5353
size : (961, 841, 1)
5454
lon ϵ [ 4.0 : 20.0]
5555
lat ϵ [ 36.0 : 50.0]
@@ -70,7 +70,7 @@ Saved file: Topo_Alps.vts
7070
7171
````
7272

73-
If we open both datasets in Paraview, and changing both files from outline/solid colors to the corresponing data field, we see:
73+
If we open both datasets in Paraview, and changing both files from outline/solid colors to the corresponding data field, we see:
7474
![Basic_Tutorial_1](../assets/img/Basic_Tutorial_Paraview_1.png)
7575
Now we can change the colormap on the right side, marked by a red square. For topography we use the `Oleron` colormap, which you can download [here](https://www.fabiocrameri.ch/colourmaps/).
7676
For the tomography we use the `Roma` scientific colormap. You will now see a blue'ish box of the tomography, this is not the best color to visualise the data. Let's invert the colormap by clicking on the item marked by the blue arrow.
@@ -79,7 +79,7 @@ Note that you will need to adapt the range of the topography colormap as the cha
7979

8080
![Basic_Tutorial_1](../assets/img/Basic_Tutorial_Paraview_2.png)
8181

82-
Now you should see somthing like this:
82+
Now you should see something like this:
8383
![Basic_Tutorial_1](../assets/img/Basic_Tutorial_1.png)
8484

8585
### 2. Extract subset of data
@@ -97,7 +97,7 @@ Saved file: Tomo_Alps.vts
9797
9898
````
9999

100-
After loading the new data again in paraview, switching to the proper data field and adjusting the colormap, you should see somthing like this:
100+
After loading the new data again in paraview, switching to the proper data field and adjusting the colormap, you should see something like this:
101101
![Basic_Tutorial_2](../assets/img/Basic_Tutorial_2.png)
102102

103103
### 3. Create cross sections
@@ -110,7 +110,7 @@ data_200km = cross_section(Tomo_Alps, Depth_level=-200)
110110
```
111111

112112
````
113-
GeoData
113+
GeoData
114114
size : (54, 60, 1)
115115
lon ϵ [ 3.9057 : 19.9057]
116116
lat ϵ [ 35.9606 : 49.8976]
@@ -126,7 +126,7 @@ data_200km_exact = cross_section(Tomo_Alps, Depth_level=-200, Interpolate=true)
126126
```
127127

128128
````
129-
GeoData
129+
GeoData
130130
size : (100, 100, 1)
131131
lon ϵ [ 3.9057 : 19.9057]
132132
lat ϵ [ 35.9606 : 49.8976]
@@ -184,7 +184,7 @@ Cross_vert = cross_section(Tomo_Alps, Start=(5,47), End=(15,44))
184184
```
185185

186186
````
187-
GeoData
187+
GeoData
188188
size : (100, 100, 1)
189189
lon ϵ [ 5.0 : 15.0]
190190
lat ϵ [ 47.0 : 44.0]
@@ -225,7 +225,7 @@ Topo_cart = convert2CartData(Topo_Alps, proj)
225225
```
226226

227227
````
228-
CartData
228+
CartData
229229
size : (961, 841, 1)
230230
x ϵ [ -748.7493528015041 : 695.3491277129204]
231231
y ϵ [ -781.2344794653393 : 831.6826244089501]
@@ -241,7 +241,7 @@ Tomo_cart = convert2CartData(Tomo_Alps, proj)
241241
```
242242

243243
````
244-
CartData
244+
CartData
245245
size : (54, 60, 39)
246246
x ϵ [ -757.8031278236692 : 687.0608438357591]
247247
y ϵ [ -785.601866956207 : 821.3433749818317]
@@ -281,7 +281,7 @@ Tomo_rect = project_CartData(Tomo_rect, Tomo_Alps, proj)
281281
```
282282

283283
````
284-
CartData
284+
CartData
285285
size : (116, 121, 117)
286286
x ϵ [ -550.0 : 600.0]
287287
y ϵ [ -500.0 : 700.0]
@@ -298,7 +298,7 @@ Topo_rect = project_CartData(Topo_rect, Topo_Alps, proj)
298298
```
299299

300300
````
301-
CartData
301+
CartData
302302
size : (1151, 1201, 1)
303303
x ϵ [ -550.0 : 600.0]
304304
y ϵ [ -500.0 : 700.0]
@@ -327,4 +327,3 @@ At this stage, the data can directly be used to generate cartesian numerical mod
327327
---
328328

329329
*This page was generated using [Literate.jl](https://github.com/fredrikekre/Literate.jl).*
330-

tutorials/Tutorial_Basic.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Topo_Alps = load_GMG("https://zenodo.org/records/10738510/files/AlpsTopo.jld2?do
2121
# We can write this to disk as well
2222
write_paraview(Topo_Alps,"Topo_Alps")
2323

24-
# If we open both datasets in Paraview, and changing both files from outline/solid colors to the corresponing data field, we see:
24+
# If we open both datasets in Paraview, and changing both files from outline/solid colors to the corresponding data field, we see:
2525
# ![Basic_Tutorial_1](../assets/img/Basic_Tutorial_Paraview_1.png)
2626
# Now we can change the colormap on the right side, marked by a red square. For topography we use the `Oleron` colormap, which you can download [here](https://www.fabiocrameri.ch/colourmaps/).
2727
# For the tomography we use the `Roma` scientific colormap. You will now see a blue'ish box of the tomography, this is not the best color to visualise the data. Let's invert the colormap by clicking on the item marked by the blue arrow.
@@ -30,7 +30,7 @@ write_paraview(Topo_Alps,"Topo_Alps")
3030

3131
# ![Basic_Tutorial_1](../assets/img/Basic_Tutorial_Paraview_2.png)
3232

33-
# Now you should see somthing like this:
33+
# Now you should see something like this:
3434
# ![Basic_Tutorial_1](../assets/img/Basic_Tutorial_1.png)
3535
#
3636
# ### 2. Extract subset of data
@@ -40,7 +40,7 @@ Tomo_Alps = extract_subvolume(Tomo_Alps_full,Lon_level=(4,20),Lat_level=(36,50),
4040

4141
write_paraview(Tomo_Alps,"Tomo_Alps");
4242

43-
# After loading the new data again in paraview, switching to the proper data field and adjusting the colormap, you should see somthing like this:
43+
# After loading the new data again in paraview, switching to the proper data field and adjusting the colormap, you should see something like this:
4444
# ![Basic_Tutorial_2](../assets/img/Basic_Tutorial_2.png)
4545

4646
# ### 3. Create cross sections

0 commit comments

Comments
 (0)