Jump to content

Elevations over Corridor C3D


Isaac26a

Recommended Posts

Hello everyone, I have a big question about how to handle this.1459156224_01sample.thumb.png.c143514d768a3890684841a992709747.png

I was sent an ACAD only file with elevations made with C3D and this is a sample of how they are asking me to do it, the texts in cyan are from the EOP and the elevation of the sidewalk, I usually handle this by creating a corridor and then making the surface and then I can use a spot elevation point anywhere I decide, but as I saw this this was made by choosing the elevations @ every 2 m over the alignment.

 

Does anyone know how should I handle this?, please give me some advice. Thanks in advance for the help.

Link to comment
Share on other sites

Your stuck and you have even more issues, if you convert the text to a XYZ point to make a surface that is sort of ok, have a good look at the text on the edge of the road the text it is not lining up with the line work. You need to look at insertion point of text, and possibly move all of them so insertion point aligns  correctly as a first go.

 

Without some control I would send back your just asking for trouble in a street road job, this is what I have been doing for the last 17 years. Stuff up the levels guess who they will look at to blame.

 

Ask for 3dfaces would be better of design surface.

 

 

Edited by BIGAL
Link to comment
Share on other sites

8 hours ago, BIGAL said:

Your stuck and you have even more issues, if you convert the text to a XYZ point to make a surface that is sort of ok, have a good look at the text on the edge of the road the text it is not lining up with the line work. You need to look at insertion point of text, and possibly move all of them so insertion point aligns  correctly as a first go.

 

Without some control I would send back your just asking for trouble in a street road job, this is what I have been doing for the last 17 years. Stuff up the levels guess who they will look at to blame.

 

Ask for 3dfaces would be better of design surface.

 

 

Hi Al, I know the person who did this didn't took the time to fix the levels in the cul de sac, but beyond this error, which I should take care of, how can I get Civil 3D to give me the elevations over any alignment like the ones shown above?. Now the other solution of using 3dfaces also seems a good idea, what do you think about using break lines to do that, do you think it would be possible to put elevation points over the breaklines and get the elevations lets say @ 1 meter or @ 5 meters?

 

And your idea of converting the text to XYZ points sounds interesting, how can I do it, do you think that can be solved with a lisp?, give me a hint about it, maybe I can use it for something else or for some projects someone just send me the texts like this time, to recreate the surface.

 

Thanks for taking time to help me solve this issue.

Link to comment
Share on other sites

Try this, isolate the text layer before running. Can us add Autocad drawing objects to surface.

 

; converts text to a point with xyz 
; z value equal to text
; by Alan H Nov 99


(while (not (setq ss (ssget))))     

(command "layer" "new" "txthts" "")
(setvar "clayer" "txthts")
(setvar "pdsize" 3)
(setvar "pdmode" 35)

(while (setq en (ssname ss 0))
     ; Entity type
     (setq entyp (cdr (assoc 0 (entget en)))) 

    (if (= entyp "TEXT")
    (progn
    (setq xyz (cdr (assoc 10 (entget en))))
    (setq txtht (cdr (assoc 1 (entget en))))
    (setq txtz (atof txtht))

    (setq ptxyz (list (car xyz)(cadr xyz) txtz))
    (command "point" ptxyz)
    )                         
    )                              
    ; Delete each measured entity from set
    (ssdel en ss)
;end while
)

 

 

Link to comment
Share on other sites

2 hours ago, BIGAL said:

Try this, isolate the text layer before running. Can us add Autocad drawing objects to surface.

 


; converts text to a point with xyz 
; z value equal to text
; by Alan H Nov 99


(while (not (setq ss (ssget))))     

(command "layer" "new" "txthts" "")
(setvar "clayer" "txthts")
(setvar "pdsize" 3)
(setvar "pdmode" 35)

(while (setq en (ssname ss 0))
     ; Entity type
     (setq entyp (cdr (assoc 0 (entget en)))) 

    (if (= entyp "TEXT")
    (progn
    (setq xyz (cdr (assoc 10 (entget en))))
    (setq txtht (cdr (assoc 1 (entget en))))
    (setq txtz (atof txtht))

    (setq ptxyz (list (car xyz)(cadr xyz) txtz))
    (command "point" ptxyz)
    )                         
    )                              
    ; Delete each measured entity from set
    (ssdel en ss)
;end while
)

 

 

Thanks Al, an excelent solution for converting the text to XYZ points, as always you're quick with the answers. This will help me a lot. 

Link to comment
Share on other sites

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