Skip to content

Commit b91fa27

Browse files
Fix for non-ASCII quotes to ASCII quotes (#1179)
1 parent a165f2c commit b91fa27

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

examples/gallery/lines/linestyles.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
99
A *pen* in GMT has three attributes: *width*, *color*, and *style*.
1010
The *style* attribute controls the appearance of the line.
11-
Giving dotted or “.” yields a dotted line, whereas a dashed pen is requested
12-
with dashed or “-”. Also combinations of dots and dashes, like “.-” for a
11+
Giving "dotted" or "." yields a dotted line, whereas a dashed pen is requested
12+
with "dashed" or "-". Also combinations of dots and dashes, like ".-" for a
1313
dot-dashed line, are allowed.
1414
1515
For more advanced *pen* attributes, see the GMT cookbook

examples/projections/misc/misc_robinson.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Arthur H. Robinson in 1963, is a modified cylindrical projection that is neither
77
conformal nor equal-area. Central meridian and all parallels are straight lines; other
88
meridians are curved. It uses lookup tables rather than analytic expressions to make
9-
the world map look right 22. The scale is true along latitudes 38. The projection was
9+
the world map "look" right 22. The scale is true along latitudes 38. The projection was
1010
originally developed for use by Rand McNally and is currently used by the
1111
National Geographic Society.
1212

examples/projections/misc/misc_sinusoidal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
The sinusoidal projection is one of the oldest known projections, is equal-area, and
66
has been used since the mid-16th century. It has also been called the
7-
Equal-area Mercator projection. The central meridian is a straight line; all other
7+
"Equal-area Mercator" projection. The central meridian is a straight line; all other
88
meridians are sinusoidal curves. Parallels are all equally spaced straight lines, with
99
scale being true along all parallels (and central meridian).
1010

examples/projections/misc/misc_winkel_tripel.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
55
In 1921, the German mathematician Oswald Winkel a projection that was to strike a
66
compromise between the properties of three elements (area, angle and distance). The
7-
German word tripel refers to this junction of where each of these elements are least
7+
German word "tripel" refers to this junction of where each of these elements are least
88
distorted when plotting global maps. The projection was popularized when Bartholomew
9-
and Son started to use it in its world-renowned The Times Atlas of the World in the
9+
and Son started to use it in its world-renowned "The Times Atlas of the World" in the
1010
mid-20th century. In 1998, the National Geographic Society made the Winkel Tripel as
1111
its map projection of choice for global maps.
1212

pygmt/src/coast.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def coast(self, **kwargs):
8585
(**h**\ )igh, (**i**\ )ntermediate, (**l**\ )ow,
8686
and (**c**\ )rude.
8787
land : str
88-
Select filling or clipping of dry areas.
88+
Select filling or clipping of "dry" areas.
8989
rivers : int or str or list
9090
*river*\ [/*pen*].
9191
Draw rivers. Specify the type of rivers and [optionally] append
@@ -151,7 +151,7 @@ def coast(self, **kwargs):
151151
152152
a = All boundaries (1-3)
153153
water : str
154-
Select filling or clipping of wet areas.
154+
Select filling or clipping of "wet" areas.
155155
{U}
156156
shorelines : int or str or list
157157
[*level*\ /]\ *pen*.

pygmt/src/grdtrack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def grdtrack(points, grid, newcolname=None, outfile=None, **kwargs):
2626
table with the interpolated values added as (one or more) new columns. A
2727
bicubic [Default], bilinear, B-spline or nearest-neighbor interpolation is
2828
used, requiring boundary conditions at the limits of the region (see
29-
``interpolation``; Default uses natural conditions (second partial
29+
``interpolation``; Default uses "natural" conditions (second partial
3030
derivative normal to edge is zero) unless the grid is automatically
3131
recognized as periodic.)
3232

0 commit comments

Comments
 (0)