You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, when converting a shapefile containing multiple subpolygons into a domain, only one subpolygon is retained, instead of the full set of polygons. It would be beneficial to further encapsulate shape and domain to support complete multi-polygon information.
The text was updated successfully, but these errors were encountered:
This issue can be reproduced when exporting data for Alex's data request. The problem arises because an additional step is required: creating a convex_hull before instantiating a domain. For example:
Users unfamiliar with the Shapely library may find this process confusing. To improve usability, we could implement a function where users simply pass in the Shapely instance, and the function handles the creation of required geometry instances. Additionally, it could automatically convert the Coordinate Reference System (CRS) if the original CRS is not EPSG:4326.
This would eliminate the need for users to manually manipulate Shapely instances, making the workflow more intuitive and efficient.
Currently, when converting a shapefile containing multiple subpolygons into a domain, only one subpolygon is retained, instead of the full set of polygons. It would be beneficial to further encapsulate shape and domain to support complete multi-polygon information.
The text was updated successfully, but these errors were encountered: