Difference between revisions of "Creating a QGIS Plugin"

From CUOSGwiki
Jump to navigationJump to search
Line 8: Line 8:
 
== Data ==
 
== Data ==
   
As most of this tutorial is software based, the only data required is a shape file layer for testing purposes at the end. One can find the shape file used for testing [https://www12.statcan.gc.ca/census-recensement/2011/geo/bound-limit/bound-limit-2016-eng.cfm here.]
+
As most of this tutorial is software based, the only data required is a shapefile layer for testing purposes at the end. One can find the shapefile used for testing [https://www12.statcan.gc.ca/census-recensement/2011/geo/bound-limit/bound-limit-2016-eng.cfm here.]
   
It is important to place all of the data files in one project folder on the hard drive. Keep the folder pathname simple and as short as possible, this pathname will be used by MapServer to access data to display a map.
+
Be sure to keep all the downloaded files together,in the same project folder. Keep the folder pathway and filenames simple and clear.
   
• Ex.Py.A
+
• Ex.C:\Users\Larry\Pictures\Screenshots
   
 
== Methods ==
 
== Methods ==

Revision as of 18:22, 4 December 2019

Disclaimer

This tutorial was created for Microsoft Windows platforms. It assumes a basic knowledge of GIS Environments and Python syntax.

Introduction

This tutorial contains instructions to aid you in the creation of your own QGIS plugins.

Data

As most of this tutorial is software based, the only data required is a shapefile layer for testing purposes at the end. One can find the shapefile used for testing here.

Be sure to keep all the downloaded files together,in the same project folder. Keep the folder pathway and filenames simple and clear.

      •	Ex.C:\Users\Larry\Pictures\Screenshots

Methods

Software Installation

Installing QGIS

Installing VS Code