@@ -960,10 +960,9 @@ def _check_kwargs_and_set_defaults(**kwargs):
960960 return kwargs
961961
962962 def quick_imshow (self , map_kws = None , roll_dateline = False , ** kwargs ):
963- """This function takes an xarray DataArray and quickly creates a figure
964- using cartopy and matplotlib ``imshow``.
963+ """Quickly create a geo-referenced image plot using Cartopy and Matplotlib.
965964
966- Note that this should only be used for regular grids.
965+ Note that this should only be used for regular grids (e.g. rectangular lat/lon grid) .
967966
968967 Parameters
969968 ----------
@@ -1028,8 +1027,7 @@ def quick_imshow(self, map_kws=None, roll_dateline=False, **kwargs):
10281027 return ax
10291028
10301029 def quick_map (self , map_kws = None , roll_dateline = False , ** kwargs ):
1031- """This function takes an xarray DataArray and quickly creates a figure
1032- using cartopy and matplotlib ``pcolormesh``.
1030+ """Quickly create a geo-referenced plot using Cartopy and Matplotlib.
10331031
10341032 Parameters
10351033 ----------
@@ -1041,6 +1039,7 @@ def quick_map(self, map_kws=None, roll_dateline=False, **kwargs):
10411039 at 0 degrees.
10421040 **kwargs :
10431041 kwargs for :meth:`xarray.DataArray.plot.pcolormesh`
1042+ (actually passed to :meth:`xarray.DataArray.plot`, but pcolormesh is the usual result)
10441043
10451044 Returns
10461045 -------
@@ -1087,8 +1086,7 @@ def quick_map(self, map_kws=None, roll_dateline=False, **kwargs):
10871086 return ax
10881087
10891088 def quick_contourf (self , map_kws = None , roll_dateline = False , ** kwargs ):
1090- """This function takes an xarray DataArray and quickly creates a figure
1091- using cartopy and matplotlib ``contourf``.
1089+ """Quickly create a geo-referenced filled-contour plot using Cartopy and Matplotlib.
10921090
10931091 Parameters
10941092 ----------
0 commit comments