-2

i have a multipolygon geometry like this: Gray area is the area where is no rivers, roads, villages and etc.

I need somehow to split this geometry to smaller polygons, to gray ones. So, i would like to ask if it is possible and how i could do that. Thanks.

Vaibhav Mule
  • 5,016
  • 4
  • 35
  • 52
Vytaus
  • 27
  • 1
  • 8

1 Answers1

2

Depending upon the implementation you are using, a multi-polygon is a collection of polygons. If you can obtain a list of the polygons comprising the multi-polygon via you implementation's API then you are a large way to doing what you need.

Brett Walker
  • 3,566
  • 1
  • 18
  • 36
  • Thanks, I have tried casting geometry to MultiPolygon type and then i was able to retrieve list of polygons. – Vytaus May 23 '15 at 10:04