[GIS] Building effective heat-maps

arcgis-desktopgrassgvsigheat mapqgis

Using ArcGIS, QGIS, Grass, and/or GVSIG:

  • What are some of the tools and processes involved in building effective heat maps?
  • What are the plugins involved?
  • What are the major data requirements?
  • What are some of the flaws with existing heat maps?
  • What are some of the issues that heat maps cannot cover effectively?
  • How not to do a heat map?
  • Are there better alternatives (in the same context) than heat map for data representation?

Best Answer

This question has been converted to Community Wiki and wiki locked because it is an example of a question that seeks a list of answers and appears to be popular enough to protect it from closure. It should be treated as a special case and should not be viewed as the type of question that is encouraged on this, or any Stack Exchange site, but if you wish to contribute more content to it then feel free to do so by editing this answer.


There are at least two different kinds of heat maps:

  1. Heatmaps representing concentration of points, and
  2. Heatmaps representing distributions of attribute values

Every method has advantages and problems, I'm afraid going into detail is far beyond this Q&A.

I'll try to list some methods and functions for QGIS and GRASS.

Concentration of points

If you are tracking movement of wildlife, vehicles, etc. it can be useful to assess regions with high concentration of location messages.

Tools: e.g. QGIS Heatmap plugin (available in versions > 1.7.x) or GRASS v.neighbors or v.kernel

Distributions of attribute values

Here, we're basically talking more or less about interpolation methods. Methods include:

  1. IDW

    Depending on the implementation this can be global (using all available points in the set) or local (limited by number of points or maximum distance between points and interpolated position).

    Tools: QGIS interpolation plugin (global), GRASS v.surf.idw or r.surf.idw (local)

  2. Splines

    Again, huge number of possible implementations. B-Splines are popular.

    Tools: GRASS v.surf.bspline

  3. Kriging

    Statistical method with various sub-types.

    Tools: GRASS v.krige (thanks to om_henners for the tip) or using R.

Related Question