25.1.22. Vector Tiles

25.1.22.1. Write vector tiles (MBTiles)

Exports one or more vector layers to vector tiles, a data format optimized for fast map rendering and small data size.

MBTiles is a specification for storing tiled map data in SQLite databases for immediate usage and for transfer. MBTiles files are known as tilesets.

Parâmetros

Rótulo

Nome

Tipo

Descrição

Camadas de entrada

ENTRADA

[vetor: qualquer][lista]

Uma lista de camadas a serem combinadas para gerar os blocos vetoriais

Nível mínimo de zoom

MIN_ZOOM

[número]

Padrão: 0

The lowest zoom level for which the tileset provides data. Set between 0 and 24.

Nível máximo de zoom

MAX_ZOOM

[número]

Padrão: 3

The highest zoom level for which the tileset provides data. Set between 0 and 24.

Extensão

Opcional

`` EXTENSÃO``

[extensão]

Padrão: Não definido

The maximum extent of the rendered map area. Bounds must define an area covered by all zoom levels.

Metadado: Nome

Opcional

META_NAME

[string]

Name of the tileset

Metadados: Descrição

Opcional

META_DESCRIPTION

[string]

A description of the tileset’s contents

Metadados: Atribuição

Opcional

META_ATTRIBUTION

[string]

Uma string de atribuição, que explica as fontes de dados e/ou estilo do mapa.

Metadados: Versão

Opcional

META_VERSION

[string]

The version of the tileset. This refers to a revision of the tileset itself, not of the MBTiles specification.

Metadados: Tipo

Opcional

META_TYPE

[string]

Type of tileset. Possible values are overlay or baselayer.

Metadados: Centro

Opcional

META_CENTER

[string]

The center (string of comma-separated numbers: the longitude, latitude, and zoom level) of the default view of the map. Example: -122.1906,37.7599,11

Destination MBTiles

SAÍDA

[vector tiles]

Padrão: [Salvar em arquivo temporário]

Specification of the output MBTiles file. One of:

  • Salvar em Arquivo Temporário

  • Salvar em Arquivo…

Saídas

Rótulo

Nome

Tipo

Descrição

Destination MBTiles

SAÍDA

[arquivo]

Output vector tiles .mbtiles file.

Código Python

Algorithm ID: native:writevectortiles_mbtiles

import processing
processing.run("algorithm_id", {parameter_dictionary})

The algorithm id is displayed when you hover over the algorithm in the Processing Toolbox. The parameter dictionary provides the parameter NAMEs and values. See Usando os algoritmos do processamento a partir do Terminal Python. for details on how to run processing algorithms from the Python console.

25.1.22.2. Write vector tiles (XYZ)

Exports one or more vector layers to vector tiles, a data format optimized for fast map rendering and small data size.

Parâmetros

Rótulo

Nome

Tipo

Descrição

Modelo de arquivo

XYZ_MODELO

[string]

Padrão: ‘{z}/{x}/{y}.pbf’

Template to generate the vector tiles url

Camadas de entrada

ENTRADA

[vetor: qualquer][lista]

Uma lista de camadas a serem combinadas para gerar os blocos vetoriais

Nível mínimo de zoom

MIN_ZOOM

[número]

Padrão: 0

The lowest zoom level for which the tileset provides data. Set between 0 and 24.

Nível máximo de zoom

MAX_ZOOM

[número]

Padrão: 3

The highest zoom level for which the tileset provides data. Set between 0 and 24.

Extensão

Opcional

`` EXTENSÃO``

[extensão]

Padrão: Não definido

The maximum extent of the rendered map area. Bounds must define an area covered by all zoom levels.

Diretório de saída

OUTPUT_DIRECTORY

[pasta]

Padrão: [Salvar em pasta temporária]

Specification of the output vector tiles folder. One of:

  • Salvar em um Diretório Temporário

  • Salvar no Diretório

Saídas

Rótulo

Nome

Tipo

Descrição

Diretório de saída

OUTPUT_DIRECTORY

[pasta]

A folder containing different subsets of the vector tiles files (.pbf) stored in subfolders corresponding to the zoom levels.

Código Python

Algorithm ID: native:writevectortiles_xyz

import processing
processing.run("algorithm_id", {parameter_dictionary})

The algorithm id is displayed when you hover over the algorithm in the Processing Toolbox. The parameter dictionary provides the parameter NAMEs and values. See Usando os algoritmos do processamento a partir do Terminal Python. for details on how to run processing algorithms from the Python console.