Skip to content

Commit edb5d4b

Browse files
Merge branch 'master' into test-coast-dvc
2 parents 30fe194 + a121f4d commit edb5d4b

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1+
prune .dvc
12
prune .github*
23
prune doc*
34
prune examples*
5+
exclude .dvcignore
46
exclude .gitignore
57
exclude .pylintrc
68
exclude AUTHORSHIP.md

examples/tutorials/lines.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
2-
Plot lines
3-
==========
2+
Plotting lines
3+
==============
44
55
Plotting lines is handled by :meth:`pygmt.Figure.plot`.
66
@@ -28,7 +28,7 @@
2828
fig = pygmt.Figure()
2929
fig.plot(
3030
region=[0, 10, 0, 10],
31-
projection="X25c/20c",
31+
projection="X15c/10c",
3232
frame="a",
3333
x=[1, 8],
3434
y=[5, 9],
@@ -43,7 +43,7 @@
4343
fig = pygmt.Figure()
4444
fig.plot(
4545
region=[0, 10, 0, 10],
46-
projection="X25c/20c",
46+
projection="X15c/10c",
4747
frame="a",
4848
x=[1, 6, 9],
4949
y=[5, 7, 4],
@@ -59,7 +59,7 @@
5959
fig = pygmt.Figure()
6060
fig.plot(
6161
region=[0, 10, 0, 10],
62-
projection="X25c/20c",
62+
projection="X15c/10c",
6363
frame="a",
6464
x=[1, 6, 9],
6565
y=[5, 7, 4],
@@ -81,7 +81,7 @@
8181
fig = pygmt.Figure()
8282
fig.plot(
8383
region=[0, 10, 0, 10],
84-
projection="X25c/20c",
84+
projection="X15c/10c",
8585
frame="a",
8686
x=[1, 8],
8787
y=[3, 9],
@@ -96,7 +96,7 @@
9696
fig = pygmt.Figure()
9797
fig.plot(
9898
region=[0, 10, 0, 10],
99-
projection="X25c/20c",
99+
projection="X15c/10c",
100100
frame="a",
101101
x=[1, 8],
102102
y=[3, 9],
@@ -112,7 +112,7 @@
112112
fig = pygmt.Figure()
113113
fig.plot(
114114
region=[0, 10, 0, 10],
115-
projection="X25c/20c",
115+
projection="X15c/10c",
116116
frame="a",
117117
x=[1, 8],
118118
y=[3, 9],
@@ -130,7 +130,7 @@
130130
fig = pygmt.Figure()
131131
fig.plot(
132132
region=[0, 10, 0, 10],
133-
projection="X25c/20c",
133+
projection="X15c/10c",
134134
frame="a",
135135
x=[1, 8],
136136
y=[3, 9],

examples/tutorials/regions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
2-
Set the region
3-
==============
2+
Setting the region
3+
==================
44
55
Many of the plotting functions take the ``region`` parameter, which sets
66
the area that will be shown in the figure. This tutorial covers the different types of

0 commit comments

Comments
 (0)