diff --git a/docs/source/whatsnew/v0.21.rst b/docs/source/whatsnew/v0.21.rst index 972cf657e..4ce294436 100644 --- a/docs/source/whatsnew/v0.21.rst +++ b/docs/source/whatsnew/v0.21.rst @@ -90,7 +90,7 @@ Features ax.annotate('default crs', map_coords, size=5) # data in map projection using default transform, with - # text positioned in platecaree transform + # text positioned in platecarree transform ax.annotate('mixed crs transforms', map_coords, xycoords='data', xytext=(-175, -55), textcoords=platecarree, diff --git a/docs/source/whatsnew/v0.22.rst b/docs/source/whatsnew/v0.22.rst index f717d4c67..9e20fe7fc 100644 --- a/docs/source/whatsnew/v0.22.rst +++ b/docs/source/whatsnew/v0.22.rst @@ -53,4 +53,4 @@ Features * Martin Yeo added the Oblique Mercator projection. (:pull:`2096`) -* Elliott Sales de Andrade added the Aitoff and Hammer projections. (:pull:`1249``) +* Elliott Sales de Andrade added the Aitoff and Hammer projections. (:pull:`1249`) diff --git a/lib/cartopy/crs.py b/lib/cartopy/crs.py index ba505dab5..2c707bf74 100644 --- a/lib/cartopy/crs.py +++ b/lib/cartopy/crs.py @@ -2497,7 +2497,7 @@ def transform_points(self, src_crs, x, y, z=None, trap=False): class InterruptedGoodeHomolosine(Projection): """ - Composite equal-area projection empahsizing either land or + Composite equal-area projection emphasizing either land or ocean features. Original Reference: diff --git a/lib/cartopy/io/img_tiles.py b/lib/cartopy/io/img_tiles.py index bfad6ba5e..f96a17f42 100644 --- a/lib/cartopy/io/img_tiles.py +++ b/lib/cartopy/io/img_tiles.py @@ -296,7 +296,7 @@ def _image_url(self, tile): mqdevurl = ('https://devblog.mapquest.com/2016/06/15/' 'modernization-of-mapquest-results-in-changes' '-to-open-tile-access/') - warnings.warn(f'{url} will require a log in and and will likely' + warnings.warn(f'{url} will require a log in and will likely' f' fail. see {mqdevurl} for more details.') return url diff --git a/lib/cartopy/mpl/feature_artist.py b/lib/cartopy/mpl/feature_artist.py index 4673ef3a7..6d4f42459 100644 --- a/lib/cartopy/mpl/feature_artist.py +++ b/lib/cartopy/mpl/feature_artist.py @@ -90,7 +90,7 @@ def __init__(self, feature, **kwargs): feature An instance of :class:`cartopy.feature.Feature` to draw. styler - A callable that given a gemometry, returns matplotlib styling + A callable that given a geometry, returns matplotlib styling parameters. Other Parameters diff --git a/lib/cartopy/mpl/geoaxes.py b/lib/cartopy/mpl/geoaxes.py index ea291adf1..3074f8c97 100644 --- a/lib/cartopy/mpl/geoaxes.py +++ b/lib/cartopy/mpl/geoaxes.py @@ -643,7 +643,7 @@ def tissot(self, rad_km=500, lons=None, lats=None, n_samples=80, **kwargs): Parameters ---------- rad_km - The radius in km of the the circles to be drawn. + The radius in km of the circles to be drawn. lons A numpy.ndarray, list or tuple of longitude values that locate the centre of each circle. Specifying more than one diff --git a/lib/cartopy/tests/mpl/test_mpl_integration.py b/lib/cartopy/tests/mpl/test_mpl_integration.py index ebe096343..2e65d63d0 100644 --- a/lib/cartopy/tests/mpl/test_mpl_integration.py +++ b/lib/cartopy/tests/mpl/test_mpl_integration.py @@ -1022,7 +1022,7 @@ def test_annotate(): ax.annotate('default crs', map_coords, size=5) # data in map projection using default transform, with - # text positioned in platecaree transform + # text positioned in platecarree transform ax.annotate('mixed crs transforms', map_coords, xycoords='data', xytext=(-175, -55), textcoords=platecarree, diff --git a/lib/cartopy/tests/test_img_nest.py b/lib/cartopy/tests/test_img_nest.py index 37e3df97a..bc19b83a1 100644 --- a/lib/cartopy/tests/test_img_nest.py +++ b/lib/cartopy/tests/test_img_nest.py @@ -238,7 +238,7 @@ def test_nest(nest_from_config): sorted(_tile_from_img(img) for z, img in nest.subtiles(('aerial z1 test', x1_y0_z1)))) - # check that the the images in the nest from configuration are the + # check that the images in the nest from configuration are the # same as those created by hand. for name in nest_z0_z1._collections_by_name.keys(): for img in nest_z0_z1._collections_by_name[name].images: