Skip to main content

Module state_codes

Module state_codes 

Source
Expand description

Brazilian state IBGE code lookup tables and helpers. Brazilian state IBGE code lookup tables and helper functions.

Two static maps are provided:

  • [STATE_IBGE_CODES] — two-letter UF abbreviation → IBGE numeric cUF code.
  • [IBGE_TO_UF] — IBGE numeric code → two-letter UF abbreviation (reverse).

Use [get_state_code] and [get_state_by_code] for ergonomic access with proper error handling.

Statics§

IBGE_TO_UF
Lazy-initialised reverse map from IBGE numeric state code to two-letter UF abbreviation.
STATE_IBGE_CODES
Lazy-initialised map from two-letter UF abbreviation to IBGE numeric state code (cUF).

Functions§

get_state_by_code
Get the UF abbreviation for an IBGE numeric code.
get_state_code
Get the IBGE numeric code for a state abbreviation.