:earth_africa: New release: h3-kmp — a Kotlin Mult...
# feed
a
🌍 New release: h3-kmp — a Kotlin Multiplatform library for working with Uber’s H3 geo-index! Convert H3 cells ↔️ geographic vertices (LatLng) right from your common code — works on Android and coming soon to iOS. 💬 I’d be grateful for any feedback or advice on improving iOS publishing! 👉 github.com/phansier/h3-kmp
🆒 1
today i learned 4
c
I see you're wrapping the existing libraries, is there a reason for this approach rather than reimplementing it in pure common code? How much do you trust that the two implementations give the same output?
a
I'm wrapping the original h3 on CLang. It gives the possibility to unify calculation logic with other platforms (like Go) if something will be changed in future. h3-java and abc-h3-kmm are only mentioned as a references I didn't catch about two implementations.