IBGE: Brazil Country Boundary 2025

IBGE/PAIS/V2025
Dataset Availability
2025-01-01T00:00:00Z–2026-01-01T00:00:00Z
Dataset Producer
Earth Engine Snippet
FeatureCollection
ee.FeatureCollection("IBGE/PAIS/V2025")
FeatureView
ui.Map.FeatureViewLayer("IBGE/PAIS/V2025_FeatureView")
Tags
borders boundaries brazil countries 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 represents the official national country boundary of the Federative Republic of Brazil for the reference year 2025 (Malha Territorial 2025).

The dataset includes the whole territory of Brazil along with the official calculated land area.

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

Table Schema

Table Schema

Name Type Description
Pais STRING

Country 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/PAIS/V2025');

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

var styleParams = {
  fillColor: '2ca02c22',
  color: '2ca02c',
  width: 2.0,
};

dataset = dataset.style(styleParams);

Map.addLayer(dataset, {}, 'IBGE Brazil Country Boundary 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/PAIS/V2025_FeatureView');

var visParams = {
  color: '004d40',
  fillColor: '00796b',
  opacity: 0.8,
  width: 2,
};

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

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