+ Reply to Thread
Page 2 of 2 FirstFirst 1 2
Results 11 to 15 of 15
  1. #11
    Forum Deity BlackBox's Avatar
    Using
    Civil 3D 2011
    Join Date
    Nov 2009
    Posts
    3,932

    Default

    Registered forum members do not see this ad.

    Quote Originally Posted by Squirltech View Post
    It would be really handy for creating a legend Tyke! I hadn't thought of that but it's a great idea.
    I don't know about your work environment, but we'd get in trouble if we'd perform this task for each, and every project... I'm still trying to get them to understand that we need more than 5 styles in Civil 3D!

    We have one legend that while updated periodically, relatively remains the same, and is added to each project's General Notes, etc. as a block. Set it up once, and done.
    "Potential has a shelf life." - Margaret Atwood

  2. #12
    Senior Member Squirltech's Avatar
    Computer Details
    Squirltech's Computer Details
    Operating System:
    Windows 7 Enterprise, Service Pack 1
    Computer:
    @xi
    RAM:
    32.0 GB
    Primary Storage:
    230 GB
    Monitor:
    Dual Dell 21"
    Discipline
    Surveying
    Squirltech's Discipline Details
    Occupation
    Senior Survey Technician
    Discipline
    Surveying
    Using
    Civil 3D 2009
    Join Date
    Oct 2010
    Location
    30 15' N, 97 44' W
    Posts
    162

    Default

    Quote Originally Posted by RenderMan View Post
    I don't know about your work environment, but we'd get in trouble if we'd perform this task for each, and every project... I'm still trying to get them to understand that we need more than 5 styles in Civil 3D!

    We have one legend that while updated periodically, relatively remains the same, and is added to each project's General Notes, etc. as a block. Set it up once, and done.
    I am in the field of Land Surveying and currently using ACAD 09 with LDC and we don't have any "real" standards to speak of. This is going to change when we convert over to C3D. So at this point, legends are project specific and are being created for almost every project. Like I said though, this will change in the coming months. (can't wait)
    T. Nelson
    Sr. Survey Technician
    http://www.saminc.biz

    "The only thing left to do is EVERYTHING!" - Jesse James

  3. #13
    Forum Deity BlackBox's Avatar
    Using
    Civil 3D 2011
    Join Date
    Nov 2009
    Posts
    3,932

    Default

    I'm in a similar position... We are transitioning from Land Desktop 2009 to Civil 3D 2011 (our next update is to Civil 3D 2014), and I just transferred from a Transportation group, into a Utility group.

    My new group has title blocks, details, legends, etc. but nothing is/was standardized (not fonts, text height, etc.), nor automated where possible. This is probably a Civil 3D faux pas, but we're still manually drawing in the pressure mains in the Profile View, because Civil 3D doesn't offer the level of details we need from the Dynamic options (Alignment, Profile, Linked Assembly, etc.). We just use Civil 3D (so far) to speed up our alignments, surfaces, gravity pipe networks, and Profile View creation... we're still 'more' efficient than we were with Land Desktop. LoL

    2013 (or 2014 in our case) offers pressure pipe networks, so we'll see how that goes when we get there.

    You're not alone (CAD Standards-wise), and if you ever need help, let us know.
    "Potential has a shelf life." - Margaret Atwood

  4. #14
    Super Member Tyke's Avatar
    Computer Details
    Tyke's Computer Details
    Operating System:
    Windows 7 - 64 bit, Vista and XP Pro
    Computer:
    HP Z400 Workstation
    CPU:
    Intel(R) Xeon(R) CPU W3530 @ 2.80GHz
    RAM:
    8 GB
    Graphics:
    Nvidia Quadro 600 1GB DDR3
    Primary Storage:
    2x 500GB HDD RAID 1 and Western Digital 2TB NAS RAID 1
    Secondary Storage:
    Lacie external HDD 2TB Raid Level 1
    Monitor:
    Samsung SyncMaster P2770HD, 2443 and 193T
    Discipline
    Multi-disciplinary
    Tyke's Discipline Details
    Occupation
    Surveyor, programmer, civil engineer
    Discipline
    Multi-disciplinary
    Details
    Surveying and civil engineering. As built utilities surveys and data maintenance in GIS systems. Building surveys, measured and laser scanning. Setting out of all civil works. Control and settlement surveys. Programming in AutoCAD, MicroStation, Geograf and stand alone applications for all uses.
    Using
    Civil 3D 2013
    Join Date
    Jun 2006
    Location
    Saxony, Germany
    Posts
    852

    Default

    Quote Originally Posted by Squirltech View Post
    It would be really handy for creating a legend Tyke! I hadn't thought of that but it's a great idea.
    We are also a surveying company and use both vanilla AutoCAD and Civil 3D (2007 to 2013) and Map 6 and AutoCAD 2002 from way back and like RenderMan we have our own standard legends depending on the job and the client. But that said there are some things that are only occasionally required in a legend and following up on another recent thread, its not always a good thing to overload a drawing with information, so why should a legend be overloaded with lots of symbols and linetypes that are not used in the drawing. Perhaps a routine that automatically creates the legend of just the items in the drawing together with a couple of basic legend items that are always there.
    Engage brain before mouth

    "The German who types with a Yorkshire accent" - Dave Broada 2o1o

  5. #15
    Forum Deity MSasu's Avatar
    Discipline
    Construction
    MSasu's Discipline Details
    Occupation
    engineer
    Discipline
    Construction
    Details
    AutoLISP programmer
    Using
    AutoCAD 2013
    Join Date
    Mar 2009
    Location
    Brasov, Romania
    Posts
    2,986

    Default

    Registered forum members do not see this ad.

    Something like this?
    Code:
    ; Create Legend County Line routine (08-VIII-2012)
    (defun c:CLCL( / ssetLabels assocList heightLabel widthLabel pointStart )
     (if (not (tblsearch "LTYPE" "PHANTOM"))
      (command "_.LINETYPE" "_L" "PHANTOM" "acad.lin" "")
     )
     (if (setq ssetLabels (ssget "_X" '((0 . "TEXT") (1 . "COUNTY LINE"))))
      (while (> (sslength ssetLabels) 0)
       (setq theLabel    (ssname ssetLabels 0)
             assocList   (entget theLabel)
             heightLabel (cdr (assoc 40 assocList))
             pointStart  (cdr (assoc 10 assocList)))
       (entmod (setq assocList (subst '(1 . "COUNTY LINE = ")
                                      (assoc 1 assocList)
                                      assocList)))
       (setq widthLabel (textbox assocList)
             widthLabel (- (car (cadr widthLabel))
                           (car (car  widthLabel))))
       (entmakex (list '(0 . "LINE")
                       (cons 10 (setq pointStart (list (+ (car pointStart)
                                                          widthLabel
                                                          heightLabel)
                                                       (+ (cadr pointStart)
                                                          (* 0.5 heightLabel)))))
                       (cons 11 (polar pointStart 0.0 (* 15.0 heightLabel)))
                       (assoc 8 assocList)
                       (if (assoc 62 assocList)   ;tanks to Lee Mac
                        (assoc 62 assocList)
                        (cons 62 0)
                       )  
                       (cons 6 "PHANTOM")))
       (ssdel theLabel ssetLabels)
      )
     )
     (princ)
    )
    PS. Case sensitive.
    Regards,
    Mircea

    AutoCAD's happy user equation: FILEDIA + PICKADD² + PICKFIRST = 3

Similar Threads

  1. Export properties ("measurement") of "Aligned Dimension" to Excel
    By nhatquyelec in forum AutoLISP, Visual LISP & DCL
    Replies: 8
    Last Post: 1st Feb 2013, 07:58 am
  2. Replies: 17
    Last Post: 24th Jan 2013, 05:34 pm
  3. Replies: 0
    Last Post: 21st Jan 2011, 05:20 pm
  4. Replies: 1
    Last Post: 25th Nov 2009, 06:35 pm
  5. Replies: 4
    Last Post: 3rd Sep 2008, 01:11 pm

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts