Feições¶
QGIS offers many common GIS functions provided by core features and plugins. A short summary of six general categories of features and plugins is presented below, followed by first insights into the integrated Python console.
Visualização de dados¶
You can view combinations of vector and raster data (in 2D or 3D) in different formats and projections without conversion to an internal or common format. Supported formats include:
Spatially-enabled tables and views using PostGIS, SpatiaLite and MS SQL Spatial, Oracle Spatial, vector formats supported by the installed OGR library, including GeoPackage, ESRI Shapefile, MapInfo, SDTS, GML and many more. See section Trabalhando com Dados Vetoriais.
Formatos de imagens e Raster suportados pela biblioteca GDAL instalada (Geospatial Data Abstraction Library), como GeoTIFF, ERDAS IMG, ArcInfo ASCII GRID, JPEG, PNG e muitos mais. Consulte a seção Trabalhando com Dados Raster.
Dados vetoriais e raster GRASS para base de dados GRASS (location.mapset). Ver seção Integração com SIG GRASS.
Servidores de dados espaciais online como Serviços Web OGC, incluem WMS, WMTS, WCS, WFS, e WFS-T. Ver seção Trabalhando com dados OGC.
Exploração de dados e compositores de mapas¶
Você pode compor mapas e interativamente explorar dados espaciais com uma interface gráfica amigável. As muitas ferramentas úteis disponíveis na GUI incluem:
QGIS browser
Reprojeção On-the-fly
Gerenciador BD
Print layout
Painel de Vista Global
Marcadores espaciais
Ferramentas de anotação
Identificar/selecionar feições
Editar/ver/procurar atributos
Data-defined feature labeling
Ferramentas de simbologia raster e vetorial dado definido
Compositor de Atlas com camada grade
North arrow, scale bar and copyright label for maps
Suporte para salvamento e restauração de projetos
Criar, editar, gerir e exportar dados¶
You can create, edit, manage and export vector and raster layers in several formats. QGIS offers the following:
Ferramentas de digitalização para formatos suportados OGR e camadas vetoriais GRASS
Ability to create and edit multiple file formats and GRASS vector layers
Complemento Georreferenciador para geocodificar imagens
GPS tools to import and export GPX format, and convert other GPS formats to GPX or down/upload directly to a GPS unit (on Linux, usb: has been added to list of GPS devices)
Suporte para visualização e edição de dados OpenStreetMap
Ability to create spatial database tables from files with the DB Manager plugin
Tratamento melhorado de tabelas de bases de dados espaciais
Ferramentas para gerenciamento de tabelas de atributos vetoriais
Opção para salvar as imagens como imagens georreferenciadas
ferramenta de exportação DXF com recursos aprimorados para exportar estilos e complementos para executar funções CAD-like
Analyze data¶
You can perform spatial data analysis on spatial databases and other OGR-supported formats. QGIS currently offers vector analysis, sampling, geoprocessing, geometry and database management tools. You can also use the integrated GRASS tools, which include the complete GRASS functionality of more than 400 modules. (See section Integração com SIG GRASS.) Or, you can work with the Processing Plugin, which provides a powerful geospatial analysis framework to call native and third-party algorithms from QGIS, such as GDAL, SAGA, GRASS and more. (See section Introdução.)
Publicação de mapas na internet¶
QGIS can be used as a WMS, WMTS, WMS-C or WFS and WFS-T client, and as a WMS, WCS or WFS server (see section Trabalhando com dados OGC). Additionally, you can publish your data on the Internet using a webserver with UMN MapServer or GeoServer installed.
Extend QGIS functionality through plugins¶
QGIS can be adapted to your special needs with the extensible plugin architecture and libraries that can be used to create plugins. You can even create new applications with C++ or Python!
Complementos Core¶
Complementos incluídos no programa
Coordinate Capture (capture mouse coordinates in different CRSs)
DB Manager (exchange, edit and view layers and tables from/to databases; execute SQL queries)
eVIS (visualize events)
Geometry Checker (check geometries for errors)
Georeferencer GDAL (add projection information to rasters using GDAL)
GPS Tools (load and import GPS data)
GRASS 7 (integrate GRASS GIS)
MetaSearch Catalogue Client (interacting with metadata catalog services supporting the OGC Catalog Service for the Web (CSW) standard)
Offline Editing (allow offline editing and synchronizing with databases)
Processing (the spatial data processing framework for QGIS)
Topology Checker (find topological errors in vector layers)
Complementos Externos Python¶
QGIS offers a growing number of external Python plugins that are provided by the community. These plugins reside in the official Plugins Repository and can be easily installed using the Python Plugin Installer. See Section Diálogo de Complementos.
Console Python¶
For scripting, it is possible to take advantage of an integrated
Python console, which can be opened with: qgis.utils.iface
variable, which is an instance of
QgisInterface
. This interface provides access to the map canvas,
menus, toolbars and other parts of the QGIS application. You can create
a script, then drag and drop it into the QGIS window and it will be
executed automatically.
For further information about working with the Python console and programming QGIS plugins and applications, please refer to Terminal Python QGIS and Passo-a-passo para desenvolvedor PyQGIS.
Problemas conhecidos¶
Limitação no número de arquivos abertos¶
Se você está abrindo um grande projeto QGIS e você tem certeza de que todas as camadas são válidas, mas algumas camadas são sinalizadas como ruim, você provavelmente irá se confrontar com esta questão. O Linux (e outros sistemas operacionais, da mesma forma) tem um limite de arquivos abertos por processo. Limites de recursos por processo e hereditária. O comando ulimit
, que é um shell integrado, muda os limites apenas para o processo de shell atual; o novo limite será herdado por quaisquer processos filhos.
You can see all current ulimit info by typing:
$ ulimit -aS
You can see the current allowed number of opened files per process with the following command on a console:
$ ulimit -Sn
To change the limits for an existing session, you may be able to use something like:
$ ulimit -Sn #number_of_allowed_open_files
$ ulimit -Sn
$ qgis
Para fixar isso sempre
Na maioria dos sistemas Linux, limites de recursos são definidos no login pelo módulo pam_limits
de acordo com as definições contidas no /etc/security/limits.conf
ou /etc/security/limits.d/*.conf
. Você será capaz de editar os arquivos, se você tem privilégios de root (também via sudo), mas você vai precisar fazer login novamente para que as alterações tenham efeito.
Mais informações:
https://www.cyberciti.biz/faq/linux-increase-the-maximum-number-of-open-files/ https://linuxaria.com/article/open-files-in-linux