I have a table (csv file) with three columns:
Wood [m2] Polygon Area [m2]
15 A 50
10 A 50
12 B 30
10 C 30
05 D 50
10 D 50
My aim is to calculate the percentage of wood for each Polygon. I want to print this result into a new csv table:
Polygon Percentage of Wood (%)
A 0.5 (=25/50)
B
C
D
I usually use Python through ArcGIS (arcpy module) but the modules are very slow for certain things. This is why I want to try to solve the question without this module. But I cannot figure out how to do this. Any help is greatly appreciated.
Wood [m2] Polygon Area [m2]
15 A 50
10 A 50
12 B 30
10 C 30
05 D 50
10 D 50
My aim is to calculate the percentage of wood for each Polygon. I want to print this result into a new csv table:
Polygon Percentage of Wood (%)
A 0.5 (=25/50)
B
C
D
I usually use Python through ArcGIS (arcpy module) but the modules are very slow for certain things. This is why I want to try to solve the question without this module. But I cannot figure out how to do this. Any help is greatly appreciated.
Comment