i have CSV file with given shape_area and shape_length. How can I convert it into closed polygon? thank you.
Page 1 / 1
With just the shape_length and the shape_area, multiple closed polygons are possible.
You will need more information than just these two attributes to define a polygon.
This example shows how to create a square based on the shape_length:
Thank you sir! :)