Fitur-fitur¶
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.
Lihat data¶
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 Pekerjaan dengan Data Vektor.
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.
Jelajahi data dan menyusun peta¶
Anda dapat membuat peta interaktif dan mengeksplorasi data spasial dengan GUI yang ramah. Banyak alat yang tersedia di GUI termasuk:
QGIS browser
On-the-fly proyeksi ulang
Pengelola DB
Print layout
Panel Peninjau
Bookmark spasial
Annotation tools
Identifikasi/pilih fitur
Sunting/lihat/cari atribut
Data-defined feature labeling
Alat simbologi vektor dan raster data-ditentukan
Peta komposisi atlas dengan lapisan graticule
North arrow, scale bar and copyright label for maps
Dukungan menyimpan dan mengembalikan proyek-proyek
Membuat, menyunting, mengelola dan ekspor data¶
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
Ability to create and edit multiple file formats and GRASS vector layers
Plugin Georeferencer ke geocode gambar
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)
Dukungan memvisualisasikan dan mengedit data OpenStreetMap
Ability to create spatial database tables from files with the DB Manager plugin
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
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 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.)
Terbitkan peta di 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 Pekerjaan dengan Data 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!
Inti Plugin¶
Plugin inti termasuk:
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)
Plugin Eksternal 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 The Plugins Dialog.
Python Console¶
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 QGIS Python console and Pengembangan Cookbook PyQGIS.
Isu yang Diketahui¶
Jumlah dari batas berkas yang dibuka¶
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:
https://www.cyberciti.biz/faq/linux-increase-the-maximum-number-of-open-files/ https://linuxaria.com/article/open-files-in-linux