Does the ESRI .NET SDK offer the capability to read shapefiles and get the geometry points for each shape like ‘well known text’?
I can see the number of points per shape but need to get the geometry points for each shape as well. For example if a polygon has 5 points then this would be the well known text of those points:
geometry_points:
-80.505339156090372,27.417594229019894;-80.505352040199327,27.417590654561142;-80.505359681299055,27.417594482391202;-80.506549681299055,27.417594482391202;-80.50565478981299055,27.417594482391202;
Would like to be able to read the shapefile programmatically and get the well know text for each polygon in my shapefile.
Thanks in advance.