-
-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Option to merge geoms for AOI splitting during project creation #1282
Comments
Related to #1263 We should probably have a configuration section in place on the frontend if the user selects the splitting algorithm. |
I think I did this long ago using an approach to splitting each individual polygon from a multipolygon by passing a polygon at a time to the algorithm, which splits it and appending the results of every polygon. |
Yes I think the code is there to loop through geoms and return a list of FeatureCollections 👍 The issue is that often by processing separately the geom does not have enough polyline data within it to split correctly. The best solution is improving the splitting algorithm so it doesn't need polylines. If none are present then the features are simply divided up using the 'num buildings' param. We should probably also provide a configuration to merge the geoms before splitting, if the user wishes. |
Does this already exist? Nice if so, we can close the issue! |
yes, it does allow splitting but there is still an issue while creating the project with this type of AOI, since we don't accept multipolygon as a project AOI. |
There is slight issue while merging polygons; we perform |
Or we can split like the 1st case , but make project aoi like the 2nd case by using separate merging process. |
Is your feature request related to a problem? Please describe.
Describe the solution you'd like
Describe alternatives you've considered
Additional context
Requirement from an actual mapping campaign in Liberia.
The text was updated successfully, but these errors were encountered: