Jump to content

Recommended Posts

Posted

Hi...I am using AutoCAD 2010. I inserted an external reference of topography lines into my drawing and I am trying to explode the layers whilst in my drawing but everything appears to be in one block. what am I missing? Thanks.

Posted

If I am reading this correctly, you have inserted a dwg as an External Reference in your drawing and now you want that drawing as individual lines?

 

If that is the case, while in the Xref-manager, righ-click on the x-ref and select Bind. That changes the X-ref to a Block. Now you can explode (command EXPLODE) and get the lines as individual lines.

Posted

Hi Tiger...I tried what you suggested however everything it still in one block. I need to be able to click on a line in my drawing and know what elevation it is. Therefore all the lines need to be separate entities, just like they are in the x-referenced dwg. I just don't get.

Posted

I work in Civil too, so I can understand your goal of simply clicking on a line to see it's z. Have you tried exploding it twice?

Posted
I work in Civil too, so I can understand your goal of simply clicking on a line to see it's z.

Try this

;;;returns elevation of (nested) contour 
(defun c:ev (/ elev)
 (setq elev (cdr (assoc 38 (entget (car (nentsel))))))
 (princ (strcat "\nElevation= " (rtos elev 2 2)))
 (princ)
 )

Posted
Hi Tiger...I tried what you suggested however everything it still in one block. I need to be able to click on a line in my drawing and know what elevation it is. Therefore all the lines need to be separate entities, just like they are in the x-referenced dwg. I just don't get.

 

Rather than explode use the ID command.

Posted

Yeah, I don't like the idea of exploding a block or reference just bc it makes the dwg dirty.... forcing more layers, either way, it's dirty. We use Carlson software w/ ACAD and have an INVERSE command that I use... just inverse to the endpt, nearest, whatever & the z is displayed.

Posted

If you just want to know the elevation, do what Rkent suggested, use the ID command - that works even if it's a x-ref.

 

to be clear, the program is not doing anything wrong, when you insert a dwg as an external reference it is displayed as a block and you can't do anything with it. To make changes to it you need to open the dwg itself and then reload it in your drawing.

 

If you want to have the dwg directly in your dwg, as just lines and no block, you can use a normal Copy -> Paste from one drawing to the next. Use 0,0,0 as basepoint and insertpoint to get it at the same location.

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