diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..01ea3f7 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,24 @@ + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..91e0fd6 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/handle_varennes_ds_workflow.py b/handle_varennes_ds_workflow.py index c93e27d..f078407 100644 --- a/handle_varennes_ds_workflow.py +++ b/handle_varennes_ds_workflow.py @@ -5,4 +5,6 @@ from varennes_io_paths import * create_output_folders(output_paths, output_paths_dir) # Initialize the input data layers -nrcan = ScrubLayer(qgis_path, input_paths['NRCan'], 'NRCan') +geo_index = ScrubLayer(qgis_path, input_paths['GeoIndex'], 'GeoIndex') +varennes_boundary = \ + ScrubLayer(qgis_path, input_paths['Varennes Boundary'], 'Varennes Boundary') diff --git a/varennes_io_paths.py b/varennes_io_paths.py index 301547b..3b1dd36 100644 --- a/varennes_io_paths.py +++ b/varennes_io_paths.py @@ -3,8 +3,12 @@ qgis_path = 'C:/Program Files/QGIS 3.34.1/apps/qgis' # Gathering input data layers paths input_paths = { - 'first': - 'C:/Users/a_adli/PycharmProjects/varennes_gis_oo/data/input_data/', + 'GeoIndex': + 'C:/Users/a_adli/PycharmProjects/hydroquebec_archetype_gispy/' + 'data/input_data/Geoindex_81670/mamh_usage_predo_2022_s_poly.shp', + 'Varennes Boundary': + 'C:/Users/a_adli/PycharmProjects/varennes_gis_oo/' + 'data/input_data/varennes_boundary/varennes_boundary.shp' } # Defining a directory for all the output data layers @@ -14,14 +18,6 @@ output_paths_dir = \ # 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': '' + 'Clipped Fixed GeoIndex': '' }