If I made a buffer around points and I am uniting those buffers that are in contact with each other.
Now I want to make an attribute column in those united buffers that tells me what points are inside each buffer. Each point has an ID code.
If I made a buffer around points and I am uniting those buffers that are in contact with each other.
Now I want to make an attribute column in those united buffers that tells me what points are inside each buffer. Each point has an ID code.
First, buffer the points and dissolve the buffers. Then use the tool "Multiparts to singleparts" from the toolbox. Optional: add a new ID field using the field calculator and as value $id. This results in an attribute with an autoincrement ID for each new feature and it is easier to identify/use the buffer features in subsequent steps.
Second, in the buffer layer (with individual features) add a new field (data type: 'Text') using the field calculator and enter the following:
array_to_string(
overlay_intersects('pts', "id"),
', '
)
Here, 'pts' is the name of your point layer and "id" is the name of your ID field in said layer. Here are the results with my test data: