Jump to content

COGO Points Add Description App Free


Recommended Posts

Posted

I have a number of CIV3D enhancements.

 

Rotate point

Label single cogo point

Change point style

Change text style in labels

Create a point

 

Surface control done via a Toolbar rather than Toolspace. On/off, Cont interval, water drop, TIN etc. Something that should be there.

AlansContours.png.d93822c840ae83075c1941eb0fee256c.png

 

Import description keys, you can export Description keys to Excel but in CIV3D there is no import so wrote one. 

 

(vl-load-com)
;; Change ProgID per Target Civil 3D version
;; This code sample is meant for Civil 3D 2013
; BY AlanH 2013

(if (not AH:vercheck)(load "vercheck")) ; opens the aecc database
(AH:vercheck)
(setq *aeccDoc* (vlax-get-property *aeccdoc* "ActiveDocument"))

(defun ptdesc ( / ptnum ptnumm ans)
(while (setq ptnumm (getint "\Enter pt number enter to exit"))
(vlax-for Point (vlax-get-property *aeccDoc* "Points")
(setq ptnum (vlax-get point 'number)) ;a pt number

(if (= ptnum ptnumm)
  (progn
    (setq ans (getstring "\nEnter desciption"))
    (vlax-put point 'descriptionformat ans)
    (if (= (vlax-get point 'rawdescription) "")
    (vlax-put point 'rawdescription "xx")
    )
  ) ; progn
) ;if
)
) ; end while
(princ)
) ; end defun

(ptdesc)

 

One of the other things I did was to make a custom mnu with a lot of the day to day commands from civ3D but used in the Drafting workspace. Saving having to change work spaces.

 

Happy to provide the contour stuff for you to try out. Yes needs a little bit of coding contour names etc. "0.1m" If imperial need some new icons.

 

vercheck.lsp

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