triangulate_indices#

triangulate_indices(indices)#

Prepare data for matplotlib.tri.Triangulate.

Examples

>>> lons, lats, intmat = triangulate_indices(indices)   
>>> triang = tri.Triangulation(lons,lats,intmat)        
>>> plt.triplot(triang,'r-',transform=transform,lw=1,markersize=3)