14
14
B = "frame" ,
15
15
C = "cmap" ,
16
16
D = "rescale" ,
17
- E = "uncertainty_color " ,
17
+ E = "uncertaintycolor " ,
18
18
G = "color" ,
19
19
H = "scale" ,
20
20
I = "shading" ,
@@ -39,11 +39,11 @@ def velo(self, data=None, **kwargs):
39
39
Plot velocity vectors, crosses, anisotropy bars, and wedges.
40
40
41
41
Reads data values from files, :class:`numpy.ndarray` or
42
- :class:`pandas.DataFrame` and plots the selected geodesy symbol on a
43
- map. You may choose from velocity vectors and their uncertainties,
44
- rotational wedges and their uncertainties, anisotropy bars, or strain
45
- crosses. Symbol fills or their outlines may be colored based on constant
46
- parameters or via color lookup tables.
42
+ :class:`pandas.DataFrame` and plots the selected geodesy symbol on a map.
43
+ You may choose from velocity vectors and their uncertainties, rotational
44
+ wedges and their uncertainties, anisotropy bars, or strain crosses. Symbol
45
+ fills or their outlines may be colored based on constant parameters or via
46
+ color lookup tables.
47
47
48
48
Must provide ``data`` and ``spec``.
49
49
@@ -59,10 +59,10 @@ def velo(self, data=None, **kwargs):
59
59
are only supported with file or pandas DataFrame inputs.
60
60
61
61
spec: str
62
- Selects the meaning of the columns in the data file and the figure
63
- to be plotted. In all cases, the scales are in data units per length
64
- unit and sizes are in length units (default length unit is controlled
65
- by :gmt-term:`PROJ_LENGTH_UNIT` unless **c**, **i**, or **p** is
62
+ Selects the meaning of the columns in the data file and the figure to
63
+ be plotted. In all cases, the scales are in data units per length unit
64
+ and sizes are in length units (default length unit is controlled by
65
+ :gmt-term:`PROJ_LENGTH_UNIT` unless **c**, **i**, or **p** is
66
66
appended).
67
67
68
68
- **e**\ [*velscale*/]\ *confidence*\ [**+f**\ *font*]
@@ -76,7 +76,7 @@ def velo(self, data=None, **kwargs):
76
76
labeling. The arrow will be drawn with the pen attributes specified
77
77
by the ``pen`` option and the arrow-head can be colored via
78
78
``color``. The ellipse will be filled with the color or shade
79
- specified by the ``uncertainty_color `` option [Default is
79
+ specified by the ``uncertaintycolor `` option [Default is
80
80
transparent], and its outline will be drawn if ``line`` is selected
81
81
using the pen selected (by ``pen`` if not given by ``line``).
82
82
Parameters are expected to be in the following columns:
@@ -109,7 +109,7 @@ def velo(self, data=None, **kwargs):
109
109
labeling. The arrow will be drawn with the pen attributes specified
110
110
by the ``pen`` option and the arrow-head can be colored via
111
111
``color``. The ellipse will be filled with the color or shade
112
- specified by the ``uncertainty_color `` option [Default is
112
+ specified by the ``uncertaintycolor `` option [Default is
113
113
transparent], and its outline will be drawn if ``line`` is selected
114
114
using the pen selected (by ``pen`` if not given by ``line``).
115
115
Parameters are expected to be in the following columns:
@@ -128,7 +128,7 @@ def velo(self, data=None, **kwargs):
128
128
extra column. Rotation values are multiplied by *wedgemag* before
129
129
plotting. For example, setting *wedgemag* to 1.e7 works well for
130
130
rotations of the order of 100 nanoradians/yr. Use ``color`` to set
131
- the fill color or shade for the wedge, and ``uncertainty_color `` to
131
+ the fill color or shade for the wedge, and ``uncertaintycolor `` to
132
132
set the color or shade for the uncertainty. Parameters are expected
133
133
to be in the following columns:
134
134
@@ -138,10 +138,9 @@ def velo(self, data=None, **kwargs):
138
138
139
139
- **x**\ [*cross_scale*]
140
140
141
- Strain crosses. The *cross_scale* sets the size of the cross.
142
- If *cross_scale* is not given then we read it from the data file as
143
- an extra column. Parameters are expected to be in the following
144
- columns:
141
+ Strain crosses. The *cross_scale* sets the size of the cross. If
142
+ *cross_scale* is not given then we read it from the data file as an
143
+ extra column. Parameters are expected to be in the following columns:
145
144
146
145
- **1**,\ **2**: longitude, latitude of station
147
146
- **3**: eps1, the most extensional eigenvalue of strain tensor,
@@ -163,10 +162,10 @@ def velo(self, data=None, **kwargs):
163
162
can be used to rescale the uncertainties of velocities (``spec='e'``
164
163
and ``spec='r'``) and rotations (``spec='w'``). Can be combined with
165
164
the ``confidence`` variable.
166
- uncertainty_color : str
165
+ uncertaintycolor : str
167
166
Sets the color or shade used for filling uncertainty wedges
168
167
(``spec='w'``) or velocity error ellipses (``spec='e'`` or
169
- ``spec='r'``). If ``uncertainty_color `` is not specified, the
168
+ ``spec='r'``). If ``uncertaintycolor `` is not specified, the
170
169
uncertainty regions will be transparent. **Note**: Using ``cmap`` and
171
170
``zvalue='+e'`` will update the uncertainty fill color based on the
172
171
selected measure in ``zvalue`` [magnitude error]. More details at
0 commit comments