File tree Expand file tree Collapse file tree 3 files changed +13
-11
lines changed Expand file tree Collapse file tree 3 files changed +13
-11
lines changed Original file line number Diff line number Diff line change 1+ prune .dvc
12prune .github*
23prune doc*
34prune examples*
5+ exclude .dvcignore
46exclude .gitignore
57exclude .pylintrc
68exclude AUTHORSHIP.md
Original file line number Diff line number Diff line change 11"""
2- Plot lines
3- ==========
2+ Plotting lines
3+ ==============
44
55Plotting lines is handled by :meth:`pygmt.Figure.plot`.
66
2828fig = pygmt .Figure ()
2929fig .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 ],
4343fig = pygmt .Figure ()
4444fig .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 ],
5959fig = pygmt .Figure ()
6060fig .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 ],
8181fig = pygmt .Figure ()
8282fig .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 ],
9696fig = pygmt .Figure ()
9797fig .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 ],
112112fig = pygmt .Figure ()
113113fig .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 ],
130130fig = pygmt .Figure ()
131131fig .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 ],
Original file line number Diff line number Diff line change 11"""
2- Set the region
3- ==============
2+ Setting the region
3+ ==================
44
55Many of the plotting functions take the ``region`` parameter, which sets
66the area that will be shown in the figure. This tutorial covers the different types of
You can’t perform that action at this time.
0 commit comments