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 numericcUFcode. - [
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.