Hello,
I have a problem of optimization. I have a very large set of points with arguments that I can't combine before sorting it. The points are divided themsleves with an argument, and I have around 100-500 points for each group.
The problem being that I want to reduce that number to approximately fifty. The new coordinates for each of these fifty points is computed using the other 500, and an argument that each one has.
So is there a way we can we replace all the vertex in a feature at once, with lists of points ?
The lists would look like this going out of the Python Caller . This is for one coordinate only, the x.
[929437.0060424805, 929441.2712402344, 929441.2976074219, 929441.3193969727, 929442.5599975586, 929444.1078491211]
Any idea on how to proceed, or another approach possible ?
Thanks