|
14 | 14 | nrows=1, ncols=2, subsize=("8c", "4c"), frame=["ag", "WSne"], sharey=True
|
15 | 15 | ):
|
16 | 16 |
|
17 |
| - fig.basemap(region=[0, 4, 0, 3], panel=True, frame="+tvertical") |
18 |
| - fig.basemap(region=[0, 4, 0, 3], panel=True, frame="+thorizontal") |
19 |
| - |
20 | 17 | pen = "1.5p"
|
21 | 18 | with fig.set_panel(panel=0):
|
22 | 19 | color = "skyblue"
|
| 20 | + fig.basemap(region=[0, 4, 0, 3], frame="+tvertical") |
23 | 21 | fig.plot(x=1, y=2, style="b0.5c", color=color, pen=pen)
|
24 | 22 | fig.plot(x=2, y=2.5, style="b1c", color=color, pen=pen)
|
25 | 23 | fig.plot(x=3, y=2.5, style="b0.75c+b1", color=color, pen=pen)
|
26 | 24 |
|
27 | 25 | with fig.set_panel(panel=1):
|
28 | 26 | color = "tomato"
|
| 27 | + fig.basemap(region=[0, 4, 0, 3], frame="+thorizontal") |
29 | 28 | fig.plot(x=1.5, y=0.5, style="B0.75c", color=color, pen=pen)
|
30 | 29 | fig.plot(x=3, y=1.5, style="B1c", color=color, pen=pen)
|
31 | 30 | fig.plot(x=3.5, y=2.5, style="B0.5c+b2", color=color, pen=pen)
|
|
0 commit comments