Skip to content

Commit 4402899

Browse files
committed
Tiny improvements for the multi-parameter symbols example
1 parent aaee599 commit 4402899

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

examples/gallery/symbols/multi_parameter_symbols.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,37 +26,26 @@
2626
import pygmt
2727

2828
fig = pygmt.Figure()
29-
3029
fig.basemap(region=[0, 6, 0, 2], projection="x3c", frame=True)
3130

32-
###################
3331
# ELLIPSE
3432
data = np.array([[0.5, 1, 45, 3, 1]])
35-
3633
fig.plot(data=data, style="e", color="orange", pen="2p,black")
3734

38-
###################
3935
# ROTATED RECTANGLE
4036
data = np.array([[1.5, 1, 120, 5, 0.5]])
41-
4237
fig.plot(data=data, style="j", color="red3", pen="2p,black")
4338

44-
###################
4539
# RECTANGLE
4640
data = np.array([[3, 1, 4, 1.5]])
47-
4841
fig.plot(data=data, style="r", color="dodgerblue", pen="2p,black")
4942

50-
###################
5143
# ROUNDED RECTANGLE
5244
data = np.array([[4.5, 1, 1.25, 4, 0.5]])
53-
5445
fig.plot(data=data, style="R", color="seagreen", pen="2p,black")
5546

56-
###################
5747
# PIE WEDGE
5848
data = np.array([[5.5, 1, 2.5, 45, 330]])
59-
6049
fig.plot(data=data, style="w", color="lightgray", pen="2p,black")
6150

6251
fig.show()

0 commit comments

Comments
 (0)