latLngToCell method

int latLngToCell(
  1. Pointer<LatLng> g,
  2. int res,
  3. Pointer<H3Index> out
)

@defgroup latLngToCell latLngToCell Functions for latLngToCell @{ / /** @brief find the H3 index of the resolution res cell containing the lat/lng

Implementation

int latLngToCell(
  ffi.Pointer<LatLng> g,
  int res,
  ffi.Pointer<H3Index> out,
) {
  return _latLngToCell(
    g,
    res,
    out,
  );
}