6 min read

What is a TIN (Triangulated Irregular Network)?

A TIN — Triangulated Irregular Network — is a surface built from triangles that connect measured points directly, rather than from a regular grid of cells. It is the other way of representing terrain, and the difference from a raster DEM is not cosmetic: it changes how faithfully breaklines survive, how much storage a surface needs, and how a volume is computed from it. This guide explains what a TIN is, how it is built, and when each representation is the right one.

The short definition

A TIN is a continuous surface made of non-overlapping triangles. Each triangle vertex is a real measured point with its own X, Y and Z, and every point inside a triangle is interpolated across that triangle's plane.

The word irregular is the important one. A raster DEM samples elevation on a fixed grid whether or not the ground has anything to say at that spot. A TIN puts vertices where the measurements are — dense where the ground is complex, sparse where it is flat.

How a TIN is built

The usual construction is Delaunay triangulation, which connects the points so that no point falls inside the circumcircle of any triangle. In practice that rule avoids long thin slivers and produces triangles as close to equilateral as the point distribution allows — which matters because a sliver triangle interpolates badly.

Constrained triangulation goes one step further: you supply breaklines — a crest, a toe, a road edge, a ditch — and the triangulation is forced to place triangle edges along them. Without that constraint the triangulation may span a triangle straight across a crest, rounding off exactly the feature you surveyed carefully.

TIN and raster DEM: the practical differences

Fidelity to features. A TIN can hold a vertical-sided detail because two vertices can share an X,Y with different Z along a breakline. A raster cell has one elevation, so a sharp edge is always smeared across at least one cell.

Storage efficiency. Over a flat area a raster keeps storing cells at full density; a TIN can cover the same flat area with a handful of large triangles. Over complex ground the situation reverses: a TIN needs many small triangles and the vertex list grows quickly.

Computation. Raster grids are simple to compute on — slope, hydrology and map algebra are all cell operations. TIN computation is geometric, which is why analysis workflows usually rasterize a TIN first, and why design surfaces are usually kept as TINs.

Neither is more accurate in the abstract. Accuracy comes from the survey; the representation decides how much of that survey survives.

Where each one is used

Design surfaces — a graded platform, a road corridor, a bench template — are naturally TINs. They are defined by edges and breaklines, and the vertices are exactly the design points.

Existing ground from drone photogrammetry or LiDAR is usually delivered as a raster DEM, because the source is a dense point cloud and a regular grid is the compact way to hold it.

Volume between a design and existing ground is where the two meet. Whether the comparison is done TIN-to-TIN, TIN-to-grid or grid-to-grid changes the result slightly, and the honest way to report a volume is to state which surfaces were compared and how.

The failure mode to watch for

The most common TIN problem is triangulation across a feature that should have been a breakline. It is easy to miss because the surface still looks smooth and plausible — the crest is simply a little lower and a little rounder than it is on the ground.

The second is extrapolation past the data. A Delaunay triangulation fills the convex hull of the points, which can produce triangles spanning areas nobody surveyed. Those triangles carry a surface, and a volume computed over them is fiction. Clipping the TIN to the surveyed boundary is not optional.

Frequently asked questions

Is a TIN more accurate than a DEM?

Neither is inherently more accurate — accuracy comes from the survey behind them. A TIN preserves breaklines and abrupt features better; a regular grid is more uniform and easier to compute on. The representation decides how much of the survey's accuracy survives.

What is a breakline and why does it matter for a TIN?

A breakline is a line along which the terrain changes slope abruptly — a crest, a toe, a road edge. If the triangulation is not constrained to follow it, triangles will span across the feature and round it off, which is exactly the detail that was surveyed most carefully.

Can a TIN be converted to a raster DEM?

Yes, by sampling the TIN surface on a regular grid. This is common before analysis, because slope, hydrology and similar operations are simpler on cells. The cell size you choose sets how much of the TIN's sharp detail is retained.

Why do triangles appear outside my survey area?

A Delaunay triangulation fills the convex hull of the input points, which can extend beyond where anyone actually measured. Those triangles are interpolation over nothing, so the TIN should be clipped to the surveyed boundary before any volume is computed.

STREAM opens raster DEMs and rasterizes point clouds to a surface you can measure and design on.

Native Windows · fully offline · free beta

DEM Software