I would like to cluster geodata (coordinates, height at least) using density-based algorithm. I discovered DBSCAN should work pretty good for my purpose. I want to have even small separate clusters with minpts 1 or 2. It does the job, but leaves other points as one huge cluster or noise and I want those to be clustered into smaller groups also.
For example, if I have two groups of high points (like mountains) located in different places on the map, I want them to be in two separate clusters. How to achieve this? Maybe somehow to set max points value in the algorithm? I appreciate any advice.
P.S. I used R for this purpose, but the question is more about the approach.