Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases now! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Mastering Geospatial Development with QGIS 3.x

You're reading from   Mastering Geospatial Development with QGIS 3.x An in-depth guide to becoming proficient in spatial data analysis using QGIS 3.4 and 3.6 with Python

Arrow left icon
Product type Paperback
Published in Mar 2019
Publisher Packt
ISBN-13 9781788999892
Length 466 pages
Edition 3rd Edition
Languages
Tools
Arrow right icon
Authors (6):
Arrow left icon
Luigi Pirelli Luigi Pirelli
Author Profile Icon Luigi Pirelli
Luigi Pirelli
Richard Smith Jr., GISP Richard Smith Jr., GISP
Author Profile Icon Richard Smith Jr., GISP
Richard Smith Jr., GISP
Kurt Menke, GISP Kurt Menke, GISP
Author Profile Icon Kurt Menke, GISP
Kurt Menke, GISP
Shammunul Islam Shammunul Islam
Author Profile Icon Shammunul Islam
Shammunul Islam
John Van Hoesen, GISP John Van Hoesen, GISP
Author Profile Icon John Van Hoesen, GISP
John Van Hoesen, GISP
Simon Miles Simon Miles
Author Profile Icon Simon Miles
Simon Miles
+2 more Show less
Arrow right icon
View More author details
Toc

Table of Contents (17) Chapters Close

Preface 1. Section 1: Introduction FREE CHAPTER
2. A Refreshing Look at QGIS 3. Section 2: Getting Started
4. Styling Raster and Vector Data 5. Creating Spatial Databases 6. Preparing Vector Data for Processing 7. Preparing Raster Data for Processing 8. Section 3: Diving Deeper
9. Advanced Data Creation and Editing 10. Advanced Data Visualization 11. Section 4: Becoming a Master
12. The Processing Toolbox 13. Automating Workflows with the Graphical Modeler 14. Creating QGIS Plugins with PyQGIS and Problem Solving 15. PyQGIS Scripting 16. Other Books You May Enjoy

Exploring iface and QGis

The iface class used in the preceding snippets is important in every PyQGIS code; it is used to access most graphical QGIS components, from displayed layers to the toolbar buttons.

The iface class is a Python wrapper for the C++ class, QgisInterface, which is documented at http://qgis.org/api/classQgisInterface.html. Most QGIS classes have a Qgs prefix. Some special classes can have the Qgis or QGis prefixes. The Qgs is the Qt namespace registered by Gary Sherman, the QGIS creator, so Qt (Q) and Gary Sherman (gs).

The most common use of the iface class is to get a reference of the canvas where maps are displayed:

canvas = iface.mapCanvas()

The class can also be used as a shortcut to load raster or vector layers; for example, loading the raster, path/to/my/raster.tif, and naming it myraster in the legend panel. This can be done by typing the following command...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime