File tree Expand file tree Collapse file tree 3 files changed +20
-10
lines changed Expand file tree Collapse file tree 3 files changed +20
-10
lines changed Original file line number Diff line number Diff line change 7
7
extent in an oblique direction. Both parallels and meridians are complex
8
8
curves. The projection was developed in the early 1900s by several workers.
9
9
10
- **oa**\ *lon0/lat0* */azimuth*\ */scale*\ **[+v]** or
11
- **OA**\ *lon0/lat0* */azimuth*\ */width*\ **[+v]** or
10
+ **oa**\ |**oA**\ *lon0/lat0* */azimuth*\ */scale*\ **[+v]** or
11
+ **Oa**\ |** OA**\ *lon0/lat0* */azimuth*\ */width*\ **[+v]** or
12
12
13
- The projection is set with **o** or **O**. The central meridian is set by
14
- *lon0/lat0*. The oblique equator is set by the azimuth. Align the y-axis
13
+ The projection is set with **o** or **O**. The pole is set in the
14
+ northern hemisphere with **a** or the southern hemisphere
15
+ with **A**. The central meridian is set by *lon0/lat0*. The oblique equator
16
+ is set by the azimuth. Align the y-axis
15
17
with the optional *+v*. The figure size is set with *scale* or *width*.
16
18
"""
17
19
import pygmt
18
20
19
21
fig = pygmt .Figure ()
20
22
# Using the origin and azimuth
21
23
fig .coast (projection = "Oa-120/25/-30/12c+v" ,
24
+ # Set bottom left and top right coordinates of the figure with "+r"
22
25
region = "-122/35/-107/22+r" ,
23
26
frame = "afg" ,
24
27
land = "gray" ,
28
+ shorelines = "1/thin" ,
25
29
water = "lightblue" ,
26
30
)
27
31
fig .show ()
Original file line number Diff line number Diff line change 7
7
extent in an oblique direction. Both parallels and meridians are complex
8
8
curves. The projection was developed in the early 1900s by several workers.
9
9
10
- **ob**\ *lon0/lat0* */lon1/lat1*\ */scale*\ **[+v]** or
11
- **OB **\ *lon0/lat0* */lon1/lat1*\ */width*\ **[+v]** or
10
+ **ob**\ |**oB**\ *lon0/lat0* */lon1/lat1*\ */scale*\ **[+v]** or
11
+ **Ob **\ |**OB**\ *lon0/lat0* */lon1/lat1*\ */width*\ **[+v]** or
12
12
13
- The projection is set with **o** or **O**. The central meridian is set by
14
- *lon0/lat0*. The oblique equator is set by *lon1/lat1*. Align the y-axis
13
+ The projection is set with **o** or **O**. The pole is set in the
14
+ northern hemisphere with **b** or the southern hemisphere
15
+ with **B**. The central meridian is set by *lon0/lat0*. The oblique
16
+ equator is set by *lon1/lat1*. Align the y-axis
15
17
with the optional *+v*. The figure size is set with *scale* or *width*.
16
18
"""
17
19
import pygmt
18
20
19
21
fig = pygmt .Figure ()
20
22
# Using the origin and two points
21
23
fig .coast (projection = "Ob130/35/25/35/12c" ,
24
+ # Set bottom left and top right coordinates of the figure with "+r"
22
25
region = "130/35/145/40+r" ,
23
26
frame = "afg" ,
24
27
land = "gray" ,
28
+ shorelines = "1/thin" ,
25
29
water = "lightblue" ,
26
30
)
27
31
fig .show ()
Original file line number Diff line number Diff line change 7
7
extent in an oblique direction. Both parallels and meridians are complex
8
8
curves. The projection was developed in the early 1900s by several workers.
9
9
10
- **oc**\ *lon0/lat0* */lonp/latp*\ */scale*\ **[+v]** or
11
- **OC**\ *lon0/lat0* */lonp/latp*\ */width*\ **[+v]**
10
+ **oc**\ |**oC**\ *lon0/lat0* */lonp/latp*\ */scale*\ **[+v]** or
11
+ **Oc**\ |** OC**\ *lon0/lat0* */lonp/latp*\ */width*\ **[+v]**
12
12
13
13
The projection is set with **o** or **O**. The central meridian is set
14
14
by *lon0/lat0*. The projection pole is set by *lonp/latp* in option three.
20
20
fig = pygmt .Figure ()
21
21
# Using the origin projection pole
22
22
fig .coast (projection = "Oc280/25.5/22/69/12c" ,
23
+ # Set bottom left and top right coordinates of the figure with "+r"
23
24
region = "270/20/305/25+r" ,
24
25
frame = "afg" ,
25
26
land = "gray" ,
27
+ shorelines = "1/thin" ,
26
28
water = "lightblue" ,
27
29
)
28
30
fig .show ()
You can’t perform that action at this time.
0 commit comments