1.0.2 • Published 11 years ago
turf-hex v1.0.2
turf-hex
turf hex module
turf.hex(bbox, size)
Takes a bounding box and a cell size in degrees and returns a FeatureCollection of flat-topped hexagons (Polygon features) aligned in an "odd-q" vertical grid as described in Hexagonal Grids
Parameters
| parameter | type | description |
|---|---|---|
bbox | Array. | bounding box in minX, minY, maxX, maxY order |
size | Number | size of cells in degrees |
Example
var bbox = [7.2669410, 43.695307, 7.2862529, 43.706476];
var size = 0.001;
var hexgrid = turf.hex(bbox, size);
//=hexgridInstallation
Requires nodejs.
$ npm install turf-hexTests
$ npm test