` `
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:
Format raster dan citra yang didukung dengan terpasangnya GDAL (Geospatial Data Abstraction Library) perpustakaan, seperti GeoTiff, ERDAS IMG, ArcInfo ASCII GRID, JPEG, PNG dan banyak lagi, lihat bagian Pekerjaan dengan Data Raster.
Data raster dan vektor GRASS dari basis data GRASS (lokasi/mapset). Lihat bagian GRASS GIS Integration.
Data spasial dalam jaringan sebagai Layanan OGC Web, termasuk WMS, WMTS, WCS, WFS, dan WFS-T. Lihat bagian Pekerjaan dengan Data OGC.
Anda dapat membuat peta interaktif dan mengeksplorasi data spasial dengan GUI yang ramah. Banyak alat yang tersedia di GUI termasuk:
On-the-fly proyeksi ulang
Pengelola DB
Panel Peninjau
Bookmark spasial
Identifikasi/pilih fitur
Sunting/lihat/cari atribut
Alat simbologi vektor dan raster data-ditentukan
Peta komposisi atlas dengan lapisan graticule
Dukungan menyimpan dan mengembalikan proyek-proyek
You can create, edit, manage and export vector and raster layers in several formats. QGIS offers the following:
Alat Digitalisasi yang didukung format OGR dan lapisan vektor GRASS
Plugin Georeferencer ke geocode gambar
Dukungan memvisualisasikan dan mengedit data OpenStreetMap
Peningkatan penanganan tabel basis data spasial
Peralatan untuk mengelola tabel atribut vektor
Opsi menyimpan cuplikan layar sebagai gambar ber-georeferensi.
Alat DXF-Export dengan kemampuan ditingkatkan untuk mengekspor gaya dan plugin untuk melakukan fungsi 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 GRASS GIS Integration.) 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 Pengantar.)
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 Pekerjaan dengan Data 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!
Plugin inti termasuk:
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 Dialog.
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 Pengembangan Cookbook PyQGIS.
Jika Anda membuka sebuah proyek QGIS besar dan Anda yakin bahwa semua lapisan valid, tetapi beberapa lapisan ditandai sebagai lapisan buruk, Anda mungkin dihadapkan dengan masalah ini. Linux (dan OS lain juga) memiliki batas berkas yang dibuka. Batasan sumber daya per-proses dan diturunkan. Perintah ulimit merupakan termina built-in, mengubah batas hanya untuk proses terminal saat ini; batas baru akan diturunkan oleh setiap proses anak.
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
Untuk memperbaikinya selamanya
Pada kebanyakan sistem Linux, batasan sumber daya yang ditetapkan pada login dengan modul pam_limits sesuai dengan pengaturan yang terkandung dalam /etc/security/limits.conf atau /etc/security/limits.d/*.conf. Anda harus dapat mengedit berkas jika Anda memiliki hak istimewa root (juga via sudo), tetapi Anda akan perlu untuk login lagi sebelum perubahan berlaku.
Informasi tambahan:
http://www.cyberciti.biz/faq/linux-increase-the-maximum-number-of-open-files/ http://linuxaria.com/article/open-files-in-linux?lang=en