Fix & clip geoindex for Varennes
This commit is contained in:
parent
d80ac61882
commit
80596d33fb
|
@ -8,3 +8,24 @@ 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')
|
||||||
|
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user