The project involves developing an Object-Oriented solution to automate the updating and cleaning of the Montreal Buildings dataset. This project is a continuation of https://nextgenerations-cities.encs.concordia.ca/gitea/a_adli/hydroquebec_archetype_gispy project.
Go to file
2024-11-04 10:26:16 -05:00
__init__.py Clean the project folder 2024-08-05 18:07:16 -04:00
.gitignore Update gitignore 2024-08-05 18:11:06 -04:00
basic_functions.py Add find lass file 2024-08-05 17:55:32 -04:00
building_cleanup_workflow.py Rename modules based on the pull request instructions 2024-11-04 10:26:16 -05:00
config.py Rename modules based on the pull request instructions 2024-11-04 10:26:16 -05:00
handle_mtl_ds_workflow.py Add description 2024-08-05 18:00:06 -04:00
helpers.py Rename modules based on the pull request instructions 2024-11-04 10:26:16 -05:00
input_paths_and_layers.py Add description 2024-08-05 18:01:09 -04:00
README.md Edit readme 2024-11-04 10:20:32 -05:00
scrub_layer_class.py Convert features to shape layers 2024-10-21 13:03:17 -04:00
scrub_layer.py Rename modules based on the pull request instructions 2024-11-04 10:26:16 -05:00
scrub_mtl_class.py Add description 2024-08-05 18:00:06 -04:00
scrub_mtl.py Rename modules based on the pull request instructions 2024-11-04 10:26:16 -05:00

Project Developer: Alireza Adli alireza.adli@mail.concordia.ca

Table of Contents

About mtl_gis_oo
Building Cleanup Workflow ScrubLayer
Helpers Configuration ScrubMTL Setting up an environment to use standalone PyQGIS How to import qgis.core

About mtl_gis_oo

This project automates the process of integrating and cleaning datasets related to Montreal buildings. It is the continuation of hydroquebec_archetype_gispy. The project involves the following datasets:

  1. NRCAN Building Footprints
  2. Shared platform of geospatial data and aerial photographs (GeoIndex)
  3. Montreal Property Assesment Units
  4. Administrative boundaries of the agglomeration of Montréal (boroughs and related cities)

The original workflow was developed in ArcGIS by Kartikay Sharma (kartikay.sharma@concordia.ca). This workflow (link) involves steps such as fixing and clipping geometries, removing features from unnecessary parts of the map, splitting sections based on single building footprints, spatially joining datasets, and cleaning the data through processes such as removing duplicates, among others.

GISPy integrates these processes and automates them so that users can update the dataset by running the workflow module (building_cleanup_workflow.py) after acquiring and defining the paths to the mentioned datasets.

GISPy has been written using QGIS Python standalone libraries (PyQGIS). This set of libraries leverages the functionality of QGIS without needing to run the full QGIS desktop application. To use the environment, QGIS needs to be installed, and the environment must be set up (Setting up an environment to use standalone PyQGIS How to import qgis.core).

ScrubLayer

This module is the essence of the mtl_gis_oo project. It encompasses required functionalities of PyQGIS as methods. Some other methods also have been added to use the functionalities in a specific way. For example, clip_by_multiply carry outs PyQGIS clipping using multiple overlay layers.

Building Cleanup Workflow

This is the process of cleaning and aggregating Montreal buildings datasets. This workflow is backed up by ScrubLayer. After defining the paths, running the module outputs the updated and integrated dataset (map layer).

Helpers

The module contains several functions that cannot be defines as a method of ScrubLayer class but are useful and sometimes necessary for a method or a part of the workflow (building_cleanup_workflow.py). Creating folders, finding a type of files and merging layers are examples of the module's functionalities.

Configuration

This module contains the QGIS installation path, and two dictionaries for holding input and output layers paths. The module will be modified completely to address paths in a general way instead of locally.

## ScrubMTL

This module is not being used or developed right now.

Setting up an environment to use standalone PyQGIS How to import qgis.core

To use PyQGIS without having the QGIS application run in the background, one needs to add the python path to the environment variables. Here is how to do it on Windows:

  1. Install QGIS

  2. Assign a specific name to the QGIS Python executable: This is being done in order to access the QGIS Python from the command prompt without mixing with the systems original Python installation(s).

    a. Go to the QGIS installation directorys Python folder. e.g. C:\Program Files\QGIS 3.34.1\apps\Python39
    b. Rename the Python executable (python.exe) to a specific-desired name, e.g. pythonqgis.exe

  3. Updating the Path variables

    a. Go to Environmental Variables (from Windows start)
    b. Click on Path and then click on Edit. Add the following paths:

    C:\Program Files\QGIS 3.34.1\apps\Python39

    c. Go back to the Environmental variables this time click on New and in New Variable box enter PYTHONPATH and in the Variable Value add the following paths (separate them with a colon). Some paths might be different. For example, apps\qgis can be apps\qgis-ltr.

    i. C:\Program Files\QGIS 3.34.1\apps\qgis\python
    ii. C:\Program Files\QGIS 3.34.1\apps\qgis\python\plugins
    iii. C:\Program Files\QGIS 3.34.1\apps\Qt5\plugins
    iv. C:\Program Files\QGIS 3.34.1\apps\gdal\share\gdal
    v. Or altogether: C:\Program Files\QGIS 3.34.1\apps\qgis\python;C:\Program Files\QGIS 3.34.1\apps\qgis\python\plugins;C:\Program Files\QGIS 3.34.1\apps\Qt5\plugins;C:\Program Files\QGIS 3.34.1\apps\gdal\share\gdal

  4. Validate importing qgis.core

    a. Open a command prompt window b. Enter pythonqgis
    c. If the process has been done correctly, you wont face any error.
    d. In the Python environment, import the package by:

    import qgis.core