forked from JavierLopatin/Python-Remote-Sensing-Scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dissolve.py
executable file
·49 lines (41 loc) · 1.6 KB
/
Dissolve.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Dissolve vector by attribute and optionally delete small objects
parameters:
-i: input vector [str; require]
-a: attribute to use for the dissove [str; require]
-e: size (square meters) of the small objects to eliminate [int; optional]
Example: python Dissolve.py -i vector.shp -a ID -e 2500
@author: Javier Lopatin | [email protected]
"""
import argparse
import geopandas as gpd
# create the arguments for the algorithm
parser = argparse.ArgumentParser()
# set arguments
parser.add_argument('-i', '--inputShapefile', help='Input shapefile', type=str, required=True)
parser.add_argument('-a', '--Attribute', help='Attribute to use for dissolve',
type=str, required=True)
parser.add_argument('-e', '--Eliminate',
help='Eliminate objects bellow size (square meters)', type=int, required=False)
parser.add_argument('--version', action='version', version='%(prog)s 1.0')
args = vars(parser.parse_args())
# set argument
shp = args["inputShapefile"]
attribute = args["Attribute"]
eliminate = args["Eliminate"]
# read vector file
vector = gpd.read_file(shp)
# if elimination of small attributes is True:
if (eliminate == True):
print('Eliminating small objects...')
mask = vector.area > eliminate
vector = vector.loc[mask]
# perform dissolve
print("Dissolving vector file...")
diss = vector[[attribute, 'geometry']]
diss = diss.dissolve(by=attribute)
# save new vector; reset_index is needed to save the names of the 'attribite' column
diss.reset_index().to_file(shp[:-4] + "_" + attribute + ".shp")
print("Done!")