Hi,
I am currently faced with the following challenge:
- My data (attached) contains hexagonal grids within a country (based on Uber's H3 system)
- Each of these hexagons has been allocated a number of premises (i.e., the estimated number of premises within the hexagonal polygon) as well as area and premises density data (calculated using spatial info)
- What I need to be able to do is form contiguous clusters of these hexagons with constraints on the total premises able to be contained within a cluster and the maximum distance of any hexagon's centroid from that of the cluster 'core' which should be the mostpremises-dense hex in a given cluster.
I have written a clustering algorithm which should yield appropriate results however it is extremely computationally expensive and will take days to run. Does anyone have experience with this type of problem as I have struggled to find solutions elsewhere