File tree Expand file tree Collapse file tree 8 files changed +14
-12
lines changed Expand file tree Collapse file tree 8 files changed +14
-12
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ jobs:
113
113
sphinx-autodoc-typehints
114
114
sphinx-copybutton
115
115
sphinx-design
116
- sphinx-gallery<0.17.0
116
+ sphinx-gallery
117
117
sphinx_rtd_theme
118
118
119
119
# Download cached remote files (artifacts) from GitHub
Original file line number Diff line number Diff line change @@ -28,5 +28,5 @@ dependencies:
28
28
- sphinx-autodoc-typehints
29
29
- sphinx-copybutton
30
30
- sphinx-design
31
- - sphinx-gallery<0.17.0
31
+ - sphinx-gallery
32
32
- sphinx_rtd_theme
Original file line number Diff line number Diff line change @@ -8,5 +8,6 @@ visit the {gmt-docs}`GMT Technical Reference <reference.html>`.
8
8
``` {toctree}
9
9
:maxdepth: 1
10
10
11
+ projections.rst
11
12
encodings.md
12
13
```
Original file line number Diff line number Diff line change 1
- Projection Table
2
- ----------------
1
+ GMT Map Projections
2
+ -------------------
3
3
4
4
The table below shows the projection codes for the 31 GMT projections:
5
5
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ dependencies:
40
40
- sphinx-autodoc-typehints
41
41
- sphinx-copybutton
42
42
- sphinx-design
43
- - sphinx-gallery<0.17.0
43
+ - sphinx-gallery
44
44
- sphinx_rtd_theme
45
45
# Dev dependencies (type hints)
46
46
- mypy
Original file line number Diff line number Diff line change 1
1
Projections
2
2
===========
3
3
4
- PyGMT supports many map projections. Use the ``projection`` parameter to specify which
5
- one you want to use in all plotting methods. The projection is specified by a one-letter
6
- code along with (sometimes optional) reference longitude and latitude and the
7
- width of the map (for example, **A**\ *lon0/lat0*\ [*/horizon*\ ]\ */width*). The map
8
- height is determined based on the region and projection.
4
+ PyGMT supports many map projections; see :doc:`/techref/projections` for an overview.
5
+ Use the ``projection`` parameter to specify which one you want to use in all plotting
6
+ methods. The projection is specified by a one-letter code along with (sometimes optional)
7
+ reference longitude and latitude and the width of the map (for example,
8
+ **A**\ *lon0/lat0*\ [*/horizon*\ ]\ */width*). The map height is determined based on the
9
+ region and projection.
9
10
10
11
These are all the available projections:
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ def load_tile_map(
122
122
* band (band) uint8 ... 1 2 3
123
123
* y (y) float64 ... -7.081e-10 -7.858e+04 ... -1.996e+07 -2.004e+07
124
124
* x (x) float64 ... -2.004e+07 -1.996e+07 ... 1.996e+07 2.004e+07
125
- spatial_ref int64 ... 0
125
+ spatial_ref int ... 0
126
126
>>> # CRS is set only if rioxarray is available
127
127
>>> if hasattr(raster, "rio"):
128
128
... raster.rio.crs
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ def text_( # noqa: PLR0912
63
63
The text strings passed via the ``text`` parameter can contain ASCII characters and
64
64
non-ASCII characters defined in the Adobe ISOLatin1+, Adobe Symbol, Adobe
65
65
ZapfDingbats and ISO-8859-x (x can be 1-11, 13-16) encodings. Refer to
66
- :doc:`techref/encodings` for the full list of supported non-ASCII characters.
66
+ :doc:`/ techref/encodings` for the full list of supported non-ASCII characters.
67
67
68
68
Full option list at :gmt-docs:`text.html`.
69
69
You can’t perform that action at this time.
0 commit comments