` `
QGIS offers many common GIS functionalities 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.
You can view and overlay vector and raster data in different formats and projections without conversion to an internal or common format. Supported formats include:
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.
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:
Reprojeção On-the-fly
Gerenciador BD
Painel de Vista Global
Marcadores espaciais
Ferramentas de anotação
Identificar/selecionar feições
Editar/ver/procurar atributos
Ferramentas de simbologia raster e vetorial dado definido
Compositor de Atlas com camada grade
Suporte para salvamento e restauração de projetos
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
Complemento Georreferenciador para geocodificar imagens
Suporte para visualização e edição de dados OpenStreetMap
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
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.)
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.
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 incluídos no programa
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.
For scripting, it is possible to take advantage of an integrated Python console, which can be opened from menu: Plugins ‣ Python Console. The console opens as a non-modal utility window. For interaction with the QGIS environment, there is the qgis.utils.iface variable, which is an instance of QgsInterface. This interface allows 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 Passo-a-passo para desenvolvedor PyQGIS.
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:
http://www.cyberciti.biz/faq/linux-increase-the-maximum-number-of-open-files/ http://linuxaria.com/article/open-files-in-linux?lang=en