IBGE: Brazil Municipality Boundaries 2025

IBGE/MUNICIPIOS/V2025
Dataset Availability
2025-01-01T00:00:00Z–2026-01-01T00:00:00Z
Dataset Producer
Earth Engine Snippet
FeatureCollection
ee.FeatureCollection("IBGE/MUNICIPIOS/V2025")
FeatureView
ui.Map.FeatureViewLayer("IBGE/MUNICIPIOS/V2025_FeatureView")
Tags
borders boundaries brazil ibge infrastructure-boundaries table

Description

The Instituto Brasileiro de Geografia e Estatística (IBGE) provides official cartographic representations of the Brazilian territorial structure. This dataset contains 5,573 spatial units representing the municipal mesh of Brazil for the reference year 2025 (Malha Territorial 2025).

These 5,573 units comprise: - 5,569 municipalities (including Boa Esperança do Norte, MT, installed in 2025) - 1 Federal District (Brasília) - 1 State District (Fernando de Noronha) - 2 state operational water bodies (Lagoa dos Patos and Lagoa Mirim)

Municipalities (municípios) are the smallest autonomous administrative units in Brazil, each governed by a municipal administration (prefeitura and câmara municipal).

For more information on the methodology and technical specifications, visit the IBGE Municipal Mesh Documentation.

Table Schema

Table Schema

Name Type Description
CD_MUN STRING

7-digit Municipality Code

NM_MUN STRING

Municipality Name

CD_RGI STRING

6-digit Immediate Geographic Region Code

NM_RGI STRING

Immediate Geographic Region Name

CD_RGINT STRING

4-digit Intermediate Geographic Region Code

NM_RGINT STRING

Intermediate Geographic Region Name

CD_UF STRING

2-digit State Code

NM_UF STRING

State Name

SIGLA_UF STRING

2-letter State Abbreviation

CD_REGIAO STRING

1-digit Macro Region Code (1=Norte, 2=Nordeste, 3=Sudeste, 4=Sul, 5=Centro-Oeste)

NM_REGIAO STRING

Macro Region Name

SIGLA_RG STRING

Macro Region Abbreviation (N, NE, SE, S, CO)

CD_CONCURB STRING

Conurbation Code

NM_CONCURB STRING

Conurbation Name

AREA_KM2 DOUBLE

Area in square kilometers

Terms of Use

Terms of Use

This dataset is made available by the Instituto Brasileiro de Geografia e Estatística (IBGE) as open public data in accordance with Brazilian Federal Law No. 12.527/2011 (Access to Information Law). Users are free to use, modify, and distribute the data for personal, educational, research, and commercial applications, with appropriate attribution to IBGE.

Explore with Earth Engine

Code Editor (JavaScript)

var dataset = ee.FeatureCollection('IBGE/MUNICIPIOS/V2025');

Map.setCenter(-51.9253, -14.235, 4);

var styleParams = {
  fillColor: '1b9e7722',
  color: '1b9e77',
  width: 0.5,
};

dataset = dataset.style(styleParams);

Map.addLayer(dataset, {}, 'IBGE Brazil Municipalities 2025');
Open in Code Editor

Visualize as a FeatureView

A FeatureView is a view-only, accelerated representation of a FeatureCollection. For more details, visit the FeatureView documentation.

Code Editor (JavaScript)

var fvLayer = ui.Map.FeatureViewLayer('IBGE/MUNICIPIOS/V2025_FeatureView');

var visParams = {
  color: '1b9e77',
  fillColor: 'b5ffb4',
  opacity: 0.8,
  width: 0.5,
};

fvLayer.setVisParams(visParams);
fvLayer.setName('IBGE Brazil Municipalities 2025');

Map.setCenter(-51.9253, -14.235, 4);
Map.add(fvLayer);
Open in Code Editor