Tagged Questions
1
vote
0answers
308 views
Calculate polygon area inside extent
We're using ArcMap 10.0 sp5, creating a tool in c# using the ArcObjects sdk.
Is there a built in function or simple set of steps that calculates the area of each feature of a polygon layer within a ...
2
votes
2answers
308 views
Problem creating polygon features using ArcObjects / ArcGIS 10
I need to create a grid of polygons. Each polygon is rectangle, thus has 4 corners (vertices). When I create polygon features using ArcObjects they seem to have wrong geometry, which results in wrong ...
2
votes
3answers
381 views
Split polygon with holes to get several hole-less polygons
Unlike this thread I actually need to split the polygons into several hole-less polygons. I'm not sure on how to approach to this problem.
I have polygons with holes of many diferent shapes, like ...
5
votes
1answer
686 views
How to persist a polygon to SQL Server database and vice versa?
How do I extract all the points from a Polygon drawn in ArcMAP and then persist that data into a SQLServer database table containing a geometry column and then when I've got the data persisted read ...
2
votes
2answers
2k views
ArcObjects - Finding the intersection of a polyline and polygon?
I have a polyline and polygon. The polyline will intersect the polygon at two or fewer points. I would like to get these intersection points as X and Y values.
EDIT: Here is a quick code sample using ...
3
votes
3answers
1k views
How to select the vertices from a polygon?
I am writing some VBA code to extract vertices from a polygon.
I would like to ask, how to select the vertices from a polygon ?
Regards
Gary
1
vote
0answers
237 views
export topology tables to txt files using arcobjects, generating directed graph , finding intersections
I want to export topology tables to text files:
for points:
1 id x y
for lines:
line id fompoint.x from point.y topoint.x topoint.y
for polygons:
id line id 1, line id 2...
2 arc ...