Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
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 QGIS

You're reading from   Mastering QGIS Go beyond the basics and unleash the full power of QGIS with practical, step-by-step examples

Arrow left icon
Product type Paperback
Published in Mar 2015
Publisher
ISBN-13 9781784398682
Length 420 pages
Edition 1st Edition
Tools
Arrow right icon
Toc

Table of Contents (12) Chapters Close

Preface 1. A Refreshing Look at QGIS FREE CHAPTER 2. Creating Spatial Databases 3. Styling Raster and Vector Data 4. Preparing Vector Data for Processing 5. Preparing Raster Data for Processing 6. Advanced Data Creation and Editing 7. The Processing Toolbox 8. Automating Workflows with the Graphical Modeler 9. Creating QGIS Plugins with PyQGIS and Problem Solving 10. PyQGIS Scripting Index

Vector structure


The QgsVectorLayer class is more complex that its raster equivalent. To describe it, we will first approach basic layer parameters and then we will explore how the vector is organized. We will explore some classes that are involved in the vector structure that represent rows and headers.

The basic vector methods

We will explore the vector class working on a real vector; we will load alaska.shp in the myVector variable.

This variable is an instance of the QgsVectorLayer class. This means that all methods of the vector are documented at http://qgis.org/api/classQgsVectorLayer.html. As for rasters, this class is a specialization of the generic QgsMapLayer class.

To get the extent of the layer, it's necessary to use the extent() method of the QgsMapLayer class:

print myVector.extent().toString()

Executing the preceding code will generate the following result:

-7115212.9837922714650631,1368239.6063178631011397 : 4895579.8114661639556289,7805331.2230994049459696

This shows the corner...

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
Banner background image