Importante

Translation is a community effort you can join. This page is currently translated at 56.10%.

17.29. Outros programas

Módulo foi contribuição de Paolo Cavallini - Faunalia

Nota

Este capítulo mostra como usar programas adicionais de dentro do Processing. Para completá-lo, você deve ter instalado, com as ferramentas de seu sistema operacional, os pacotes relevantes.

17.29.1. GRASS

GRASS é um pacote de software GIS gratuito e de código aberto para gerenciamento e análise de dados geoespaciais, processamento de imagens, produção de gráficos e mapas, modelagem espacial e visualização.

It is installed by default on Windows through the OSGeo4W standalone installer (32 and 64 bit), and it is packaged for all major Linux distributions.

17.29.2. R

R é um ambiente de software livre e de código aberto para computação estatística e gráficos.

It has to be installed separately, together with a few necessary libraries (LIST). To enable the use of R in QGIS, the Processing R Provider plugin must also be installed.

The beauty of Processing implementation is that you can add your own scripts, simple or complex ones, and they may then be used as any other module, piped into more complex workflows, etc.

Teste algum dos exemplos pré instalados, se você já possui R instalado (lembre-se de ativar os módulos R das configurações gerais de processamento)

17.29.3. Outros

LASTools is a set of mixed, free and proprietary commands to process and analyze LiDAR data. Availability in various operating system varies.

Mais ferramentas estão disponíveis através de plugins adicionais, e.g.:

  • LecoS: um conjunto para estatísticas de cobertura do solo e ecologia da paisagem

  • lwgeom: antigamente parte do PostGIS, esta biblioteca traz algumas ferramentas úteis para a limpeza da geometria

  • Animove: ferramentas para analisar a gama de animais domésticos.

Mais virá a seguir.

17.29.4. Comparação entre os fundos

Buffers e distâncias

Let’s load points.shp and type buf in the filter of the Toolbox, then double click on:

  • Fixed distance buffer: Distance 10000

  • Variable distance buffer: Distance field SIZE

  • v.buffer.distance: distância 10000

  • v.buffer.column: bufcolumn SIZE

  • Shapes Buffer: fixed value 10000 (dissolve and not), attribute field (with scaling)

Veja como a velocidade é muito diferente e diferentes opções estão disponíveis.

Exercício para o leitor: encontrar as diferenças de geometria de saída entre os diferentes métodos.

Now, raster buffers and distances:

  • first, load and rasterize the vector rivers.shp with GRASS ► v.to.rast.value; beware: cell size must be set to 100 m, otherwise the computation time will be enormous; resulting map will have 1 and NULLs

  • same, with SAGA ► Shapes to Grid ► COUNT (resulting map: 6 to 60)

  • then, proximity (value= 1 for GRASS, a list of rivers ID for SAGA), r.buffer with parameters 1000,2000,3000, r.grow.distance (the first of the two maps; the second will show the areas pertaining to each river, if done on the SAGA raster).

Dissolver

Dissolve feições baseado em atributos comuns:

  • GRASS ► v.dissolve municipalities.shp on PROVINCIA

  • QGIS ► Dissolve municipalities.shp on PROVINCIA

  • OGR ► Dissolve municipalities.shp on PROVINCIA

  • SAGA ► Polygon Dissolve municipalities.shp on PROVINCIA (NB: Keep inner boundaries must be unselected)

Nota

O último é quebrado no SAGA <=2.10

Exercício para o leitor: encontrar as diferenças (geometria e atributos) entre os diferentes métodos.