diff --git a/input_paths_and_layers.py b/input_paths_and_layers.py index e69de29..26acb6f 100644 --- a/input_paths_and_layers.py +++ b/input_paths_and_layers.py @@ -0,0 +1,38 @@ +from scrub_layer_class import * + +qgis_path = 'C:/Program Files/QGIS 3.34.1/apps/qgis' + +# Gathering input data layers paths +input_paths = { + 'NRCan': + 'C:/Users/a_adli/PycharmProjects/hydroquebec_archetype_gispy/' + 'data/input_data/nrcan/Autobuilding_QC_VILLE_MONTREAL.shp', + 'GeoIndex': + 'C:/Users/a_adli/PycharmProjects/hydroquebec_archetype_gispy/' + 'data/input_data/Geoindex_81670/mamh_usage_predo_2022_s_poly.shp', + 'Property Assessment': + 'C:/Users/a_adli/PycharmProjects/hydroquebec_archetype_gispy/' + 'data/input_data/property_assessment/uniteevaluationfonciere.shp', + 'Montreal Boundary': + 'C:/Users/a_adli/PycharmProjects/hydroquebec_archetype_gispy/' + 'data/input_data/montreal_boundary/Montreal_boundary.shp' +} + +# Defining a directory for all the output data layers +output_paths_dir = \ + 'C:/Users/a_adli/PycharmProjects/hydroquebec_archetype_gispy/' \ + 'data/gisoo_workflow_output' + +# Preparing a bedding for output data layers paths +output_paths = { + 'Fixed NRCan': '', + 'Fixed GeoIndex': '', + 'Clipped Fixed GeoIndex': '', + 'Splitted NRCans': '', + 'Pairwise Clipped Property Assessment Partitions': '', + 'Pairwise Clipped Merged Property Assessment': '', + 'Property Assessment and NRCan': '', + 'Property Assessment and NRCan and GeoIndex': '', + 'Deleted Duplicates Layer': '', + 'Single Parts Layer': '' +}