You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the `removeNaN_z` option removes `NaN` values from the dataset and instead uses the z-value of the nearest point.
80
-
That is important if you want to use this surface to generate a 3D model setup (using `belowSurface`, for example).
80
+
That is important if you want to use this surface to generate a 3D model setup (using `below_surface`, for example).
81
81
82
82
The thesis also provides a few interpreted vertical cross-sections. As before, we import them as a screenshot and estimate the lower-left and upper right corners.
83
83
In this particular case, we are lucky that the `lon/lat` values are indicated on the cross-section.
@@ -123,7 +123,7 @@ CartData
123
123
124
124
The problem is that the result is not strictly orthogonal, but instead slightly curved.
125
125
That causes issues later on when we want to intersect the surface with a 3D box.
126
-
It is therefore better to use the `projectCartData` to project the `GeoData` structure to a `CartData` struct.
126
+
It is therefore better to use the `project_CartData` to project the `GeoData` structure to a `CartData` struct.
127
127
Let's first create this structure by using `x`,`y` coordinates that are slightly within the ranges given above:
Copy file name to clipboardExpand all lines: docs/src/man/Tutorial_NumericalModel_2D.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -351,7 +351,7 @@ We have a number of other functions to help create a geometry, specifically:
351
351
-`AddCylinder!`
352
352
353
353
The help functions are quite self-explanatory, so we won't show it in detail here.
354
-
If you have a topography surface or any other horizontal surface, you can surface with the cartesian grid with `aboveSurface` or `belowSurface`.
354
+
If you have a topography surface or any other horizontal surface, you can surface with the cartesian grid with `above_surface` or `below_surface`.
355
355
356
356
Also, if you wish to take a seismic tomography as inspiration to set a slab geometry, you can interpolate it to a `CartGrid` with the same dimensions and use that with the julia `findall` function.
0 commit comments