.
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.
Pode ver ou sobrepor dados vectoriais e matriciais em diferentes formatos e projecções sem conversão para um formato interno ou comum. Os formatos suportados incluídos são:
You can compose maps and interactively explore spatial data with a friendly GUI. The many helpful tools available in the GUI include:
Pesquisador QGIS
Reprojecção On-the-fly
Gestor BD
Compositor de Mapas
Painel de Vista Global
Marcadores espaciais
Ferramentas de anotação
Identificar/seleccionar elementos
Editar/ver/procurar atributos
You can create, edit, manage and export vector and raster layers in several formats. QGIS offers the following:
Tratamento melhorado de tabelas de bases de dados espaciais
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 GRASS SIG.) 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, fTools 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!
Core plugins include:
Gestor BD (Troca, edição, e visualizalização de camadas e tabelas; execução de consultas SQL)
GDALTools (Integração das Ferramentas GDAL no QGIS)
Oracle GeoRaster Espacial
Processamento (anteriomente designado de SEXTANTE)
Módulo de Consulta Espacial
Módulo SQL Anywhere (Armazena camadas vectoriais dentro de base de dados SQL Anywhere)
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 The Plugins Menus.
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.
For further information about working with the Python console and programming QGIS plugins and applications, please refer to http://www.qgis.org/html/en/docs/pyqgis_developer_cookbook/index.html.
If you are opening a large QGIS project and you are sure that all layers are valid, but some layers are flagged as bad, you are probably faced with this issue. Linux (and other OSs, likewise) has a limit of opened files by process. Resource limits are per-process and inherited. The ulimit command, which is a shell built-in, changes the limits only for the current shell process; the new limit will be inherited by any child processes.
You can see all current ulimit info by typing
user@host:~$ ulimit -aS
You can see the current allowed number of opened files per proccess with the following command on a console
user@host:~$ ulimit -Sn
To change the limits for an existing session, you may be able to use something like
user@host:~$ ulimit -Sn #number_of_allowed_open_files
user@host:~$ ulimit -Sn
user@host:~$ qgis
To fix it forever
On most Linux systems, resource limits are set on login by the pam_limits module according to the settings contained in /etc/security/limits.conf or /etc/security/limits.d/*.conf. You should be able to edit those files if you have root privilege (also via sudo), but you will need to log in again before any changes take effect.
More info:
http://www.cyberciti.biz/faq/linux-increase-the-maximum-number-of-open-files/ http://linuxaria.com/article/open-files-in-linux?lang=en