Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

calculate acreage

Status
Not open for further replies.

Erin

Civil/Environmental
Joined
Nov 12, 2001
Messages
1
Location
US
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.
 
You can use the area command to get the square footage then just divide i.e.

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....
 
Striker's routine appears to assume drawing is in 'inch' units. Drawings where acres are of interest may well be in 'feet' units. If so, edit the routine to use "square feet" instead of "square inches". Hopefully Striker will jump in if I'm in error...or try it out and verify it's working properly.

Carl
 
Thank you both for your help. I just used the area approach, but have printed out the other way to try again. I couldn't "translate" what it all meant.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top