|
37 | 37 | (using ``binary="o"``), where *ncols* is the number of data columns
|
38 | 38 | of *type*, which must be one of:
|
39 | 39 |
|
40 |
| - - **c** - int8_t (1-byte signed char) |
41 |
| - - **u** - uint8_t (1-byte unsigned char) |
42 |
| - - **h** - int16_t (2-byte signed int) |
43 |
| - - **H** - uint16_t (2-byte unsigned int) |
44 |
| - - **i** - int32_t (4-byte signed int) |
45 |
| - - **I** - uint32_t (4-byte unsigned int) |
46 |
| - - **l** - int64_t (8-byte signed int) |
47 |
| - - **L** - uint64_t (8-byte unsigned int) |
48 |
| - - **f** - 4-byte single-precision float |
49 |
| - - **d** - 8-byte double-precision float |
50 |
| - - **x** - use to skip *ncols* anywhere in the record |
| 40 | + - **c**: int8_t (1-byte signed char) |
| 41 | + - **u**: uint8_t (1-byte unsigned char) |
| 42 | + - **h**: int16_t (2-byte signed int) |
| 43 | + - **H**: uint16_t (2-byte unsigned int) |
| 44 | + - **i**: int32_t (4-byte signed int) |
| 45 | + - **I**: uint32_t (4-byte unsigned int) |
| 46 | + - **l**: int64_t (8-byte signed int) |
| 47 | + - **L**: uint64_t (8-byte unsigned int) |
| 48 | + - **f**: 4-byte single-precision float |
| 49 | + - **d**: 8-byte double-precision float |
| 50 | + - **x**: use to skip *ncols* anywhere in the record |
51 | 51 |
|
52 | 52 | For records with mixed types, append additional comma-separated
|
53 | 53 | combinations of *ncols* *type* (no space). The following modifiers
|
|
84 | 84 | **e**\|\ **f**\|\ **g**.
|
85 | 85 | Determine how spherical distances are calculated.
|
86 | 86 |
|
87 |
| - - **e** - Ellipsoidal (or geodesic) mode |
88 |
| - - **f** - Flat Earth mode |
89 |
| - - **g** - Great circle distance [Default] |
| 87 | + - **e**: Ellipsoidal (or geodesic) mode |
| 88 | + - **f**: Flat Earth mode |
| 89 | + - **g**: Great circle distance [Default] |
90 | 90 |
|
91 | 91 | All spherical distance calculations depend on the current ellipsoid
|
92 | 92 | (:gmt-term:`PROJ_ELLIPSOID`), the definition of the mean radius
|
|
118 | 118 | a list with each item containing a string describing one set of
|
119 | 119 | criteria.
|
120 | 120 |
|
121 |
| - - **x**\|\ **X** - define a gap when there is a large enough |
| 121 | + - **x**\|\ **X**: define a gap when there is a large enough |
122 | 122 | change in the x coordinates (upper case to use projected
|
123 | 123 | coordinates).
|
124 |
| - - **y**\|\ **Y** - define a gap when there is a large enough |
| 124 | + - **y**\|\ **Y**: define a gap when there is a large enough |
125 | 125 | change in the y coordinates (upper case to use projected
|
126 | 126 | coordinates).
|
127 |
| - - **d**\|\ **D** - define a gap when there is a large enough |
| 127 | + - **d**\|\ **D**: define a gap when there is a large enough |
128 | 128 | distance between coordinates (upper case to use projected
|
129 | 129 | coordinates).
|
130 |
| - - **z** - define a gap when there is a large enough change in |
| 130 | + - **z**: define a gap when there is a large enough change in |
131 | 131 | the z data. Use **+c**\ *col* to change the z data column
|
132 | 132 | [Default *col* is 2 (i.e., 3rd column)].
|
133 | 133 |
|
|
146 | 146 |
|
147 | 147 | One of the following modifiers can be appended:
|
148 | 148 |
|
149 |
| - - **+n** - specify that the previous value minus the current |
| 149 | + - **+n**: specify that the previous value minus the current |
150 | 150 | column value must exceed *gap* for a break to be imposed.
|
151 |
| - - **+p** - specify that the current value minus the previous |
| 151 | + - **+p**: specify that the current value minus the previous |
152 | 152 | value must exceed *gap* for a break to be imposed.""",
|
153 | 153 | "grid": r"""
|
154 | 154 | grid : str or xarray.DataArray
|
|
367 | 367 | Select verbosity level [Default is **w**], which modulates the messages
|
368 | 368 | written to stderr. Choose among 7 levels of verbosity:
|
369 | 369 |
|
370 |
| - - **q** - Quiet, not even fatal error messages are produced |
371 |
| - - **e** - Error messages only |
372 |
| - - **w** - Warnings [Default] |
373 |
| - - **t** - Timings (report runtimes for time-intensive algorithms) |
374 |
| - - **i** - Informational messages (same as ``verbose=True``) |
375 |
| - - **c** - Compatibility warnings |
376 |
| - - **d** - Debugging messages""", |
| 370 | + - **q**: Quiet, not even fatal error messages are produced |
| 371 | + - **e**: Error messages only |
| 372 | + - **w**: Warnings [Default] |
| 373 | + - **t**: Timings (report runtimes for time-intensive algorithms) |
| 374 | + - **i**: Informational messages (same as ``verbose=True``) |
| 375 | + - **c**: Compatibility warnings |
| 376 | + - **d**: Debugging messages""", |
377 | 377 | "wrap": r"""
|
378 | 378 | wrap : str
|
379 | 379 | **y**\|\ **a**\|\ **w**\|\ **d**\|\ **h**\|\ **m**\|\ **s**\|\
|
|
382 | 382 | different column if selected via **+c**\ *col*. The following
|
383 | 383 | cyclical coordinate transformations are supported:
|
384 | 384 |
|
385 |
| - - **y** - yearly cycle (normalized) |
386 |
| - - **a** - annual cycle (monthly) |
387 |
| - - **w** - weekly cycle (day) |
388 |
| - - **d** - daily cycle (hour) |
389 |
| - - **h** - hourly cycle (minute) |
390 |
| - - **m** - minute cycle (second) |
391 |
| - - **s** - second cycle (second) |
392 |
| - - **c** - custom cycle (normalized) |
| 385 | + - **y**: yearly cycle (normalized) |
| 386 | + - **a**: annual cycle (monthly) |
| 387 | + - **w**: weekly cycle (day) |
| 388 | + - **d**: daily cycle (hour) |
| 389 | + - **h**: hourly cycle (minute) |
| 390 | + - **m**: minute cycle (second) |
| 391 | + - **s**: second cycle (second) |
| 392 | + - **c**: custom cycle (normalized) |
393 | 393 |
|
394 | 394 | Full documentation is at :gmt-docs:`gmt.html#w-full`.""",
|
395 | 395 | }
|
|
0 commit comments