Compare commits
5 Commits
2149217b80
...
6f1798727b
Author | SHA1 | Date | |
---|---|---|---|
|
6f1798727b | ||
|
4959fac966 | ||
|
0cf3aaf2fe | ||
|
98d37c672d | ||
|
ffb4d87e57 |
|
@ -2,11 +2,13 @@
|
||||||
handle_mtl_ds_workflow module
|
handle_mtl_ds_workflow module
|
||||||
The workflow of cleaning and updating the Montreal Buildings dataset.
|
The workflow of cleaning and updating the Montreal Buildings dataset.
|
||||||
Project Developer: Alireza Adli alireza.adli@concordia.ca
|
Project Developer: Alireza Adli alireza.adli@concordia.ca
|
||||||
|
The original workflow was developed in ArcGIS by
|
||||||
|
Kartikay Sharma (kartikay.sharma@concordia.ca).
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from scrub_layer_class import *
|
from scrub_layer import ScrubLayer
|
||||||
from input_paths_and_layers import *
|
from config import qgis_path, input_paths, output_paths, output_paths_dir
|
||||||
|
from helpers import create_output_folders
|
||||||
# Making folders for the output data layers
|
# Making folders for the output data layers
|
||||||
create_output_folders(output_paths, output_paths_dir)
|
create_output_folders(output_paths, output_paths_dir)
|
||||||
|
|
|
@ -4,6 +4,8 @@ PyQGIS functionalities that are needed in the cleaning and updating
|
||||||
Montreal Buildings dataset project, gathered in one class.
|
Montreal Buildings dataset project, gathered in one class.
|
||||||
Project Developer: Alireza Adli alireza.adli@concordia.ca
|
Project Developer: Alireza Adli alireza.adli@concordia.ca
|
||||||
"""
|
"""
|
||||||
|
import os
|
||||||
|
import processing
|
||||||
|
|
||||||
from qgis.core import QgsApplication, QgsField, QgsProject, \
|
from qgis.core import QgsApplication, QgsField, QgsProject, \
|
||||||
QgsProcessingFeedback, QgsVectorLayer, QgsVectorDataProvider, \
|
QgsProcessingFeedback, QgsVectorLayer, QgsVectorDataProvider, \
|
||||||
|
@ -11,8 +13,7 @@ from qgis.core import QgsApplication, QgsField, QgsProject, \
|
||||||
QgsExpression, QgsVectorFileWriter, QgsCoordinateReferenceSystem
|
QgsExpression, QgsVectorFileWriter, QgsCoordinateReferenceSystem
|
||||||
from qgis.PyQt.QtCore import QVariant
|
from qgis.PyQt.QtCore import QVariant
|
||||||
from qgis.analysis import QgsNativeAlgorithms
|
from qgis.analysis import QgsNativeAlgorithms
|
||||||
from basic_functions import *
|
from helpers import create_folders, find_shp_files
|
||||||
import processing
|
|
||||||
|
|
||||||
|
|
||||||
class ScrubLayer:
|
class ScrubLayer:
|
|
@ -5,9 +5,10 @@ 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.
|
can be found in a module namely handle_mtl_ds_workflow, in the same project.
|
||||||
Project Developer: Alireza Adli alireza.adli@concordia.ca
|
Project Developer: Alireza Adli alireza.adli@concordia.ca
|
||||||
"""
|
"""
|
||||||
|
import os
|
||||||
|
|
||||||
from scrub_layer_class import *
|
from scrub_layer import *
|
||||||
from basic_functions import *
|
from helpers import find_shp_files
|
||||||
|
|
||||||
|
|
||||||
class ScrubMTL:
|
class ScrubMTL:
|
Loading…
Reference in New Issue
Block a user