I am working with a file that contains points representing a 5X5 km grid and I am stumped on converting the points to polygons. I know I've done in the past, I'm just drawing a blank on what I did. The image below is what the file currently looks like. Any help is appreciated!
Solved! Go to Solution.
If you're trying to take all of your points and turn them into 1 polygon, the convex hull option in the poly-build tool should hopefully work!
If you're trying to take each point and put a circle around it with a specified diameter, the trade area tool should do the trick!
Appreciate the advice. Do you know of a way to make a square around each polygon?
@robertcox Sure, I think you can use a trade area tool to create a circle and then the spatial info to get the bounding rectangle a as a polygon, which should be a square in this case. See attached for a random point, you should be able to do it for all of your points.
That should work! Thanks!