cartopy.mpl.patch.path_segments#

cartopy.mpl.patch.path_segments(path, **kwargs)[source]#

Create an array of vertices and a corresponding array of codes from a matplotlib.path.Path.

Parameters:
  • path – A matplotlib.path.Path instance.

  • kwargs – See matplotlib.path.iter_segments() for details of the keyword arguments.

Returns:

vertices, codes – A (vertices, codes) tuple, where vertices is a numpy array of coordinates, and codes is a numpy array of matplotlib path codes. See matplotlib.path.Path for information on the types of codes and their meanings.