Jump to content

Recommended Posts

Posted

Are you asking about labeling each contour line with its perceived elevation?

Posted
Are you asking about labeling each contour line with its perceived elevation?

Yep! Is there a way I can do it in AutoCAD or do I need Civil? I downloaded Civil just in case.

Posted

There is no command native to AutoCAD that could do it although there could be a custom lisp routine that is capable. I don't know as I don't work with contour maps in my line of work. A search would be required.

Posted

The post above is a good idea a simple lisp would get the z value and write as text.

 

(while (setq obj(vlax-ename->vla-object (car (entsel "\nPick contour nothing to exit"))))
(setq z (vla-get-elevation obj))
(command "Text" (getpoint) 1 0 (rtos z 2 3)) ; note text style height = 0
;(command "Text" (getpoint) 1  (rtos z 2 3)) ; note text style height is set
)

  • 2 weeks later...
Posted

where are you located with elevations like that? In my area the highest usually is around the 500s. I assume you would like to avoid clicking each polyline and inputting the elevation into the properties?

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...