ThinkGeo.com    |     Documentation    |     Premium Support

Splitting A Multi Polygon Feature

Hi,


I was wondering if it's possible to take a Multi Polygon feature that contains several closed polygons and split them out into their own feature.  So for example if I have one feature record in my MultiPolygon shape file that contains 4 polygons, can I easily split them out into 4 separate features?


Thanks!



Clint, 
  
 There is a property for multiPolygonShape is “Polygons”, you can easily get the sub-polygons within that multiPolygonShape Feature. 
  
 Collection<PolygonShape> polygons = multiPolygonShape.Polygons; 
  
 Ben.