Compartilhar via


Classe de erro H3_INVALID_RESOLUTION_VALUE

SQLSTATE: 22023

A resolução H3 <r> deve estar entre <minR> e <maxR>, inclusivo

Parâmetros

  • h3Cell: um valor de entrada que era esperado para corresponder a uma ID de célula H3 válida.
  • r: o valor de resolução real (um INTEIRO), passado para a função SQL.
  • minR: a resolução mínima aceitável (um INTEIRO) no contexto da função SQL (geralmente 0).
  • maxR: a resolução máxima aceitável (um INTEIRO) no contexto da função SQL (geralmente 15).

Explicação

As funções que emitem esse erro esperam um valor de resolução H3 válido. Os valores de resolução H3 válidos estão entre 0 e 15. Algumas funções SQL podem restringir ainda mais o intervalo com base no contexto da função.

Exemplos

-- Invoking h3_longlatash3 with a resolution that is out of the valid range.
> SELECT h3_longlatash3(40, -120, 16);
  [H3_INVALID_RESOLUTION_VALUE] H3 resolution 16 must be between 0 and 15, inclusive

-- Invoking h3_toparent with a resolution that is larger than the input cell’s resolution.
> SELECT h3_toparent(599686042433355775, h3_resolution(599686042433355775) + 1);
  [H3_INVALID_RESOLUTION_VALUE] H3 resolution 6 must be between 0 and 5, inclusive

Funções que emitem essa classe de erro