Remove the clipping of property assessment from the main workflow
This commit is contained in:
parent
bbea4a70b0
commit
9b9218e1e4
|
@ -8,8 +8,6 @@ create_output_folders(output_paths, output_paths_dir)
|
||||||
geo_index = ScrubLayer(qgis_path, input_paths['GeoIndex'], 'GeoIndex')
|
geo_index = ScrubLayer(qgis_path, input_paths['GeoIndex'], 'GeoIndex')
|
||||||
varennes_boundary = \
|
varennes_boundary = \
|
||||||
ScrubLayer(qgis_path, input_paths['Varennes Boundary'], 'Varennes Boundary')
|
ScrubLayer(qgis_path, input_paths['Varennes Boundary'], 'Varennes Boundary')
|
||||||
property_assessment_2022 = ScrubLayer(
|
|
||||||
qgis_path, input_paths['Property Assessment 2022'], 'Property Assessment 2022')
|
|
||||||
|
|
||||||
|
|
||||||
print('Processing the GeoIndex layer')
|
print('Processing the GeoIndex layer')
|
||||||
|
@ -32,15 +30,3 @@ geo_index_clipped = \
|
||||||
geo_index_clipped.create_spatial_index()
|
geo_index_clipped.create_spatial_index()
|
||||||
print(geo_index_clipped)
|
print(geo_index_clipped)
|
||||||
|
|
||||||
print('Processing the Property Assessment 2022 layer')
|
|
||||||
print(property_assessment_2022)
|
|
||||||
property_assessment_2022.create_spatial_index()
|
|
||||||
|
|
||||||
property_assessment_2022.clip_layer(
|
|
||||||
varennes_boundary.layer_path,
|
|
||||||
output_paths['Varennes Clipped Property Assessment'])
|
|
||||||
varennes_clipped_property_assessment = ScrubLayer(
|
|
||||||
qgis_path, output_paths['Varennes Clipped Property Assessment'],
|
|
||||||
'Varennes Clipped Property Assessment')
|
|
||||||
varennes_clipped_property_assessment.create_spatial_index()
|
|
||||||
print(varennes_clipped_property_assessment)
|
|
||||||
|
|
|
@ -4,13 +4,32 @@ Project coder: Alireza Adli alireza.adli@concordia.ca
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from scrub_layer_class import *
|
from scrub_layer_class import *
|
||||||
|
from varennes_io_paths import *
|
||||||
|
|
||||||
input_path = \
|
input_path = \
|
||||||
'C:/Users/a_adli/PycharmProjects/hydroquebec_archetype_gispy/' \
|
'C:/Users/a_adli/PycharmProjects/varennes_gis_oo/' \
|
||||||
'data/input_data/Geoindex_81670/mamh_usage_predo_2022_s_poly.shp'
|
'data/initial_data/ROLE2022_SHP/rol_unite_p.shp'
|
||||||
|
|
||||||
|
|
||||||
output_path = \
|
output_path = \
|
||||||
'C:/Users/a_adli/PycharmProjects/varennes_gis_oo/' \
|
'C:/Users/a_adli/PycharmProjects/varennes_gis_oo/data/' \
|
||||||
'data/varennes_output'
|
'varennes_output/varennes_clipped_property_assessment'
|
||||||
|
|
||||||
|
varennes_boundary = \
|
||||||
|
ScrubLayer(qgis_path, input_paths['Varennes Boundary'], 'Varennes Boundary')
|
||||||
|
|
||||||
|
property_assessment_2022 = ScrubLayer(
|
||||||
|
qgis_path, input_path, 'Property Assessment 2022')
|
||||||
|
|
||||||
|
print('Processing the Property Assessment 2022 layer')
|
||||||
|
print(property_assessment_2022)
|
||||||
|
property_assessment_2022.create_spatial_index()
|
||||||
|
|
||||||
|
property_assessment_2022.clip_layer(
|
||||||
|
varennes_boundary.layer_path,
|
||||||
|
output_paths)
|
||||||
|
varennes_clipped_property_assessment = ScrubLayer(
|
||||||
|
qgis_path, output_paths['Varennes Clipped Property Assessment'],
|
||||||
|
'Varennes Clipped Property Assessment')
|
||||||
|
varennes_clipped_property_assessment.create_spatial_index()
|
||||||
|
print(varennes_clipped_property_assessment)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user