isValidCell method

int isValidCell(
  1. int h
)

@defgroup isValidCell isValidCell Functions for isValidCell @{ / /** @brief confirms if an H3Index is a valid cell (hexagon or pentagon) In particular, returns 0 (False) for H3 directed edges or invalid data

Implementation

int isValidCell(
  int h,
) {
  return _isValidCell(
    h,
  );
}