@@ -30,7 +30,7 @@ def grdview( # noqa: PLR0913
3030 grid : PathLike | xr .DataArray ,
3131 plane : float | bool = False ,
3232 facade_fill : str | None = None ,
33- facadepen : str | None = None ,
33+ facade_pen : str | None = None ,
3434 projection : str | None = None ,
3535 zscale : float | str | None = None ,
3636 zsize : float | str | None = None ,
@@ -62,7 +62,7 @@ def grdview( # noqa: PLR0913
6262 - N = plane, facade_fill
6363 - R = region
6464 - V = verbose
65- - Wf = facadepen
65+ - Wf = facade_pen
6666 - c = panel
6767 - p = perspective
6868 - t = transparency
@@ -90,12 +90,12 @@ def grdview( # noqa: PLR0913
9090 plane
9191 Draw a plane at the specified z-level. If ``True``, default to the minimum value
9292 in the grid. However, if ``region`` was used to set zmin/zmax then that value is
93- used if it is less than the grid minimum value. Use ``facadepen `` and
93+ used if it is less than the grid minimum value. Use ``facade_pen `` and
9494 ``facade_fill`` to control the appearance of the plane.
9595 facade_fill
9696 Fill for the frontal facade between the plane specified by ``plane`` and the
9797 data perimeter.
98- facadepen
98+ faacde_pen
9999 Set the pen attributes used for the facade.
100100 surftype : str
101101 Specify cover type of the grid. Select one of following settings:
@@ -164,8 +164,8 @@ def grdview( # noqa: PLR0913
164164 """
165165 self ._activate_figure ()
166166
167- # Enable 'plane' if 'facade_fill' or 'facadepen ' is set
168- if plane is False and (facade_fill is not None or facadepen is not None ):
167+ # Enable 'plane' if 'facade_fill' or 'facade_pen ' is set
168+ if plane is False and (facade_fill is not None or facade_pen is not None ):
169169 plane = True
170170
171171 aliasdict = AliasSystem (
@@ -175,7 +175,7 @@ def grdview( # noqa: PLR0913
175175 Alias (plane , name = "plane" ),
176176 Alias (facade_fill , name = "facade_fill" , prefix = "+g" ),
177177 ],
178- Wf = Alias (facadepen , name = "facadepen " ),
178+ Wf = Alias (facade_pen , name = "facade_pen " ),
179179 ).add_common (
180180 B = frame ,
181181 J = projection ,
0 commit comments