32 lines
953 B
Python
32 lines
953 B
Python
"""
|
|
varennes_io_paths module
|
|
The path to the QGIS installation is being put here.
|
|
Two dictionaries are being defined to accomodate the input and output paths
|
|
for the handle_varennes_ds_workflow.
|
|
Project Developer: Alireza Adli alireza.adli@concordia.ca
|
|
"""
|
|
|
|
# Application's path
|
|
qgis_path = 'C:/Program Files/QGIS 3.34.1/apps/qgis'
|
|
|
|
# Gathering input data layers paths
|
|
input_paths = {
|
|
'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
|
|
output_paths_dir = \
|
|
'C:/Users/a_adli/PycharmProjects/varennes_gis_oo/' \
|
|
'data/varennes_output'
|
|
|
|
# Preparing a bedding for output data layers paths
|
|
output_paths = {
|
|
'Fixed GeoIndex': '',
|
|
'Clipped Fixed GeoIndex': ''
|
|
}
|