I am trying to map the attached h3index dataset in kepler.gl. I've used the following scala function to generate these at a resolution index of 8.
val geoToH3 = udf{ (latitude: Double, longitude: Double, resolution: Int) =>
H3.instance.geoToH3(latitude, longitude, resolution)
https://drive.google.com/file/d/1Wffsi1GoRGox8r3s_HYWRqFTtKKP_s8B/view?usp=sharing
When I use h3 in the terminal for the same latitude-longitude values, it gives me a different hex_index:
Example:
./bin/geoToH3 --resolution 8 --latitude 46.81355 --longitude -71.22968
which return 882bac516bfffff
Are both of these hex_indexes correct?
Also, when I try to map either in kepler.gl, I'm not able to see anything.