Skip to content

Commit f3ed1fc

Browse files
authored
Merge branch 'main' into patch-5
2 parents be7d114 + b7c826a commit f3ed1fc

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Things that will *not* be covered in Harmonica:
5252
- Multi-physics partial differential equation solvers. Use
5353
[SimPEG](http://www.simpeg.xyz/) or [PyGIMLi](https://www.pygimli.org/)
5454
instead.
55-
- Generic grid processing methods (like FFT and standards interpolation).
55+
- Generic grid processing methods (like FFT and standard interpolation).
5656
We'll rely on [Verde](https://www.fatiando.org/verde),
5757
[xrft](https://xrft.readthedocs.io/en/latest/) and
5858
[xarray](https://xarray.dev) for those.

doc/overview.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,15 @@ Before we get started, here are a few conventions we keep across Harmonica:
6262

6363
.. seealso::
6464

65-
Checkout the :ref:`coordinate_systems` section for more details on these
66-
coordinates systems.
65+
Check out the :ref:`coordinate_systems` section for more details on these
66+
coordinate systems.
6767

6868

6969
The Library
7070
-----------
7171

7272
Most classes and functions are available through the :mod:`harmonica` top level
73-
package. Througout the documentation, we'll use ``hm`` as an alias for
73+
package. Throughout the documentation, we'll use ``hm`` as an alias for
7474
:mod:`harmonica`.
7575

7676
.. code::
@@ -79,5 +79,5 @@ package. Througout the documentation, we'll use ``hm`` as an alias for
7979
8080
.. seealso::
8181

82-
Checkout the :ref:`api` for a comprehensive list of the available function
82+
Check out the :ref:`api` for a comprehensive list of the available functions
8383
and classes in Harmonica.

doc/user_guide/forward_modelling/prism.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ coordinates and in meters.
2121

2222
import harmonica as hm
2323

24-
Lets define a single prism and compute the gravitational potential
24+
Let's define a single prism and compute the gravitational potential
2525
it generates on a computation point located at 500 meters above its uppermost
2626
surface.
2727

@@ -57,7 +57,7 @@ potential (``"potential"``), the acceleration components (``"g_e"``, ``"g_n"``,
5757
``"g_en"``, ``"g_ez"``, ``"g_nz"``).
5858

5959

60-
Build a regular grid of computation points located a 10m above the zero height:
60+
Build a regular grid of computation points located 10m above the zero height:
6161

6262
.. jupyter-execute::
6363

@@ -374,7 +374,7 @@ sample a trigonometric function for this simple example:
374374
wavelength = 24 * spacing
375375
surface = np.abs(np.sin(easting * 2 * np.pi / wavelength))
376376

377-
Lets assign the same density to each prism through a 2d array with the same
377+
Let's assign the same density to each prism through a 2d array with the same
378378
value: 2700 kg per cubic meter.
379379

380380
.. jupyter-execute::
@@ -392,7 +392,7 @@ Now we can define the prism layer specifying the reference level to zero:
392392
properties={"density": density},
393393
)
394394

395-
Lets define a grid of observation points at 1 km above the zeroth height:
395+
Let's define a grid of observation points at 1 km above the zeroth height:
396396

397397
.. jupyter-execute::
398398

@@ -408,7 +408,7 @@ And compute the gravitational field generated by the prism layer on them:
408408

409409
gravity = prisms.prism_layer.gravity(coordinates, field="g_z")
410410

411-
Finally, lets plot the gravitational field:
411+
Finally, let's plot the gravitational field:
412412

413413
.. jupyter-execute::
414414

harmonica/_io/oasis_montaj_grd.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def _check_ordering(ordering):
220220
"""
221221
if ordering not in (-1, 1):
222222
raise NotImplementedError(
223-
f"Found an ordering (a.k.a as KX) equal to '{ordering}'. "
223+
f"Found an ordering (a.k.a KX) equal to '{ordering}'. "
224224
+ "Only orderings equal to 1 and -1 are supported."
225225
)
226226

@@ -230,7 +230,7 @@ def _check_sign_flag(sign_flag):
230230
Check if sign_flag value is within the ones we are supporting.
231231
"""
232232
if sign_flag == 3:
233-
msg = "Reading .grd files with colour grids is not currenty supported."
233+
msg = "Reading .grd files with colour grids is not currently supported."
234234
raise NotImplementedError(msg)
235235

236236

0 commit comments

Comments
 (0)