Jump to content

Recommended Posts

Posted

AutoCAD 2010

Wondering if there's a way to enter imperial units in command line of a metric drawin and have it convert imperial to metric.

 

IE. I'm constantly taking field site dimensions in imperial and it'd be helpful if i didn't have to do conversion every time. Any ideas? Thanks in advance

Posted

Couldn't you put the conversion in you secondary units with a multiplication factor?

Posted
I'm constantly taking field site dimensions in imperial

 

Can you not get a tape measure with metric graduations :o

Posted
Can you not get a tape measure with metric graduations :o

 

Good question, eldon.

 

 

You can use QuickCalc and just hit apply and the value will go to the command line. You could use excel to convert all the data to metric and then into the drawing with a script.

Posted

It would be helpful if you were in a metric dwg and could enter imperial site measurements in command line and have them draw in metric!

Posted

nestly, is there a free lisp site where those metric/imperial conversions could be downloaded? thanks

Posted

They may be available as a lisp somewhere, however you can just copy the lisp code and paste it into notepad, then save them as whatever.lsp

 

Metric to Imperial

(defun m2i (len ang /)

(strcat "@" (rtos (* len (/ 0.03937 1))) "

)

 

Imperial to Metric

(defun i2m (len ang /)

(strcat "@" (rtos (* len (/ 25.4 1))) "

)

Posted
It would be helpful if you were in a metric dwg and could enter imperial site measurements in command line and have them draw in metric!

 

I am not quite sure why you need to ask the same question that started the thread, but the solution is simple. Scale the whole drawing, so that you can enter imperial site measurements. The scaling does not take long, and is even quicker than buying a tape measure with metric and imperial graduations.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...