Question

how to create polygon with given area and length?


i have CSV file with given shape_area and shape_length. How can I convert it into closed polygon? thank you.


2 replies

Userlevel 2
Badge +16

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! :)

Reply