39 lines
1.2 KiB
Python
39 lines
1.2 KiB
Python
"""
|
|
handle_varennes_ds_workflow module
|
|
The workflow of cleaning and updating the buildings around
|
|
Varennes Public Library dataset.
|
|
Project Developer: Alireza Adli alireza.adli@concordia.ca
|
|
"""
|
|
|
|
from scrub_layer_class import *
|
|
from varennes_io_paths import *
|
|
|
|
# Making folders for the output data layers
|
|
create_output_folders(output_paths, output_paths_dir)
|
|
|
|
# Initialize the input data layers
|
|
geo_index = ScrubLayer(qgis_path, input_paths['GeoIndex'], 'GeoIndex')
|
|
varennes_boundary = \
|
|
ScrubLayer(qgis_path, input_paths['Varennes Boundary'], 'Varennes Boundary')
|
|
|
|
|
|
print('Processing the GeoIndex layer')
|
|
print(geo_index)
|
|
geo_index.create_spatial_index()
|
|
|
|
geo_index.fix_geometries(output_paths['Fixed GeoIndex'])
|
|
|
|
# Defining a new layer for the fixed GeoIndex
|
|
geo_index_fixed = ScrubLayer(qgis_path, output_paths['Fixed GeoIndex'],
|
|
'Fixed GeoIndex')
|
|
geo_index_fixed.create_spatial_index()
|
|
print(geo_index_fixed)
|
|
geo_index_fixed.clip_layer(varennes_boundary.layer_path,
|
|
output_paths['Clipped Fixed GeoIndex'])
|
|
|
|
geo_index_clipped = \
|
|
ScrubLayer(qgis_path,
|
|
output_paths['Clipped Fixed GeoIndex'], 'Clipped Fixed GeoIndex')
|
|
geo_index_clipped.create_spatial_index()
|
|
print(geo_index_clipped)
|