Closed benducke closed 2 months ago
Currently v.sort spends most of its time in the loop construct following this message:
g.message -i "Sorting and updating ${num_records} records:"
There is an outer (rows) and inner (colums/fields) loop.
The inner loop...
for field in ${FIELDS} ; do ... done
... holds almost all of the optimization potential:
Solved in commit https://github.com/benducke/Network-reconstruction-tools-for-GRASS-GIS/commit/ead5adc82b4ad3681b6639248237c467922af60
Currently v.sort spends most of its time in the loop construct following this message:
g.message -i "Sorting and updating ${num_records} records:"
There is an outer (rows) and inner (colums/fields) loop.
The inner loop...
... holds almost all of the optimization potential: