Hello
I am on the way to moving from Client Manged to Cloud a script with some GeoOperations.
I am struggling with some significant differences.
Example: I use a "closest" operation to find the closest point for a list of events. Therefore I have two datasets. In cloud, the closest operation has a limit of 400 rows for each dataset but, in my case, both datasets are above 400 rows.
So, I should split both datasets in chunks of 400 rows and call the geooperation inside TWO nested for..next cycles.
But, this way, I am not calculating the closest for each event, but many closest associations, one for each inner cycle.
Therefore, I should add a further step, to calculate the "closest of the closest" based on the minimum distance.
The result is a much more complex script and an higher reload time.
Did someone else faced this kind of issue?
Thank you
regards
Paolo