geojson2h3
geojson2h3 copied to clipboard
Conversion utilities between H3 indexes and GeoJSON
I am trying to execute Geojson2h3 on the client browser without Nodejs. I have imported the 'geojson2h3.js' javascript file However, I am getting an error with the following code. I...
Hi, I am doing a small prototype app for a research project of mine. I am running into an issue with **h3SetToFeatureCollection** where upon further inspection the coordinates are not...
Is it possible to add example how to set “properties” in this method correctly: geojson2h3.h3SetToFeature(hexagons, [properties]) ?
```js const polygon = { type: 'Feature', geometry: { type: 'Polygon', coordinates: [[ [-180.00, -90.00], [-180.00, 90.00], [ 180.00, 90.00], [ 180.00, -90.00], [-180.00, -90.00] ]] } }; const hexagons...
The README mentions that the feature types must be Polygon or MultiPolygon. Could Point also be a supported feature type? This would give a single "make H3 indexes out of...