SymbolixAU / h3r

R-interface to {h3lib}
https://symbolixau.github.io/h3r/
Other
5 stars 0 forks source link

replace `h3ToString` #27

Closed dcooley closed 1 year ago

dcooley commented 1 year ago

to solve - https://github.com/SymbolixAU/h3lib/issues/6

Remove call to h3ToString() and write our own version

SEXP h3ToSexpString(H3Index h3) {
  char str[17];
  //h3ToString(h3, str, sizeof(str));
  int res = snprintf(str, sizeof(str), "%" PRIx64, h3);
  return Rf_mkChar(str);
}