calculate acreage
calculate acreage
(OP)
Hope this question isn't too basic for this forum. This is my first try here.
How do you calculate acreage with Softdesk/AutoCAD?
Thank you.
How do you calculate acreage with Softdesk/AutoCAD?
Thank you.





RE: calculate acreage
sq_ft / sq_ft_per_acre
Or try this....
draw a closed polyline around the area you want calculated then use this command to calculate acreage....
;;; begin cut here
(defun C:acreage( / acres oce )
(setq oce (getvar "cmdecho"))
(setvar "cmdecho" 0)
(princ "\nSelect closed polygon: ")
(command "area" "E" pause)
(setq acres (cvunit (getvar "area") "square inches" "acres"))
(princ "\n")
(princ acres)
(princ " acres")
(setvar "cmdecho" oce)
(princ)
)
;;; end cut here
Thats all folks....
RE: calculate acreage
Carl
RE: calculate acreage