Seeking shapefile of hexagons that covers world?

It's probably easiest for you to create your own hexagonal grid shapefile. Many GIS have built-in tools for creating hexagonal grids of any desired resolution and orientation. For example, in the cross-platform and open-source GIS Whitebox GAT, for which I am a developer, you can use the Create Hexagonal Vector Grid tool to create a hex-grid shapefile for the world using a countries shapefile as the base.

enter image description here

You can specify any desired resolution and whether the grid should be vertical or horizontal (a consideration when working with hex-tessellation). In fact, I enjoy working with hexagonal grids so much that I also wrote a tool for Whitebox GAT that performs hexagonal binning (like a hex heatmap). The following is an example for density of world cities:

enter image description here


Uber has recently developed H3, which is a geospatial indexing system using multiple hexagonal grids of different sizes organized hierarchically.

There is an R package called h3r that makes it easy to work with Uber's h3 in R. There are also Java and Java-script bindings of H3.

enter image description here


Note that it is impossible to partition a sphere into hexagons only; such a partition must contain some non-hexagonal cells. For example, every resolution of Uber's H3 contains exactly 12 pentagons amongst the hexagons.

You can generate .shp files of hexagonal global grids for all or part of the globe using the free software DGGRID ( http://www.discreteglobalgrids.org/software/ ). If you're an R user you can use dggridR ( https://github.com/r-barnes/dggridR ).