I need to develop a web-based application to manage areas inside a bigger area.
I already have the initial perimeter, and it has irregular borders like that:
.
I will need to tell the app to create a perimeter based only in a given area.
createPerimeter(1000); // create perimeter with 1000m2
That should create a perimeter with 1000m2 adjacent to the border and to any other existing area.
.
And so on. The above method should create adjacent areas until the end of the container area
.
I'm looking for a solution regardless the language or platform, directions to how to start it. I believe POSTGIS has many functions that could help me, but I have not found a solution so far.
Regards.