Compare commits

...

2 Commits

Author SHA1 Message Date
Alireza Adli
88175cadd6 Add description 2024-08-05 17:58:27 -04:00
Alireza Adli
2823148f62 Add description 2024-08-05 17:55:55 -04:00
2 changed files with 9 additions and 9 deletions

View File

@ -1,8 +1,8 @@
"""
ScrubLayer module
SPDX - License - Identifier: LGPL - 3.0
Copyright © 2022 Concordia CERC group
Project Developer: alireza.adli@concordia.ca
scrub_layer_class module
PyQGIS functionalities that are needed in the cleaning and updating
Montreal Buildings dataset project, gathered in one class.
Project Developer: Alireza Adli alireza.adli@concordia.ca
"""
from qgis.core import QgsApplication, QgsField, QgsProject, \
@ -18,7 +18,6 @@ class ScrubLayer:
def __init__(self, qgis_path, layer_path, layer_name):
self.qgis_path = qgis_path
# Set the path to QGIS installation
QgsApplication.setPrefixPath(self.qgis_path, True)

View File

@ -1,8 +1,9 @@
"""
ScrubMTL module
SPDX - License - Identifier: LGPL - 3.0
Copyright © 2022 Concordia CERC group
Project Developer: alireza.adli@concordia.ca
scrub_layer_class module
The workflow of cleaning and updating the Montreal Buildings dataset.
The development of this class has been stopped but the whole workflow
can be found in a module namely handle_mtl_ds_workflow, in the same project.
Project Developer: Alireza Adli alireza.adli@concordia.ca
"""
from scrub_layer_class import *