Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: Export/View Clash locations to dwg

  1. #1
    Member
    Join Date
    2008-08
    Posts
    10
    Login to Give a bone
    0

    Default Export/View Clash locations to dwg

    I have a dwg file exported to nwd & performed a clash control there are say n number of clashes. There is a report generated showing the X, Y, Z location of the clash with a snapshot of the clash.
    The problem I am facing is the elements which are clashing are similar and many of them at various location in the drawing it is very hard to locate the position in DWG in which area the clash has occurred just by seeing the snap shot.
    Using layers it’s not possible as all are in same layers.
    To locate every clash by entering coordinates is also not practical as there will be 1000's of clashes

    Is there a way to locate these positions of clashes directly in DWG?
    ----------
    I just thought of exporting only the elements which are clashing by hiding others to DWF & then xref them in DWG file but i have not done such kind of activity earlier can any one suggest if this is possible.
    ----------

    Regards,
    Raghavendra Bhat

  2. #2
    100 Club
    Join Date
    2006-05
    Location
    Portland, ME
    Posts
    198
    Login to Give a bone
    0

    Default Re: Export/View Clash locations to dwg

    Try using the switchback feature. It will recreate the view of the clashed item in AutoCAD. You need to enable this in AutoCAD by typing NWLOAD in the command line. In Navisworks, at the bottom of the clash results tab is a button to "switch" to CAD. Saves tons of time.

    Cheers

  3. #3
    The Silent Type RobertB's Avatar
    Join Date
    2000-01
    Location
    Seattle WA USA
    Posts
    5,859
    Login to Give a bone
    0

    Default Re: Export/View Clash locations to dwg

    And if you cannot use the switchback feature, the clash report lists the AutoCAD object handle. So you can zoom to the object using AutoCAD's Zoom, Object command. You just need to convert the handle to an object ID, e.g.:

    Command: ._Zoom
    Specify corner of window, enter a scale factor (nX or nXP), or
    [All/Center/Dynamic/Extents/Previous/Scale/Window/Object] <real time>: _Object
    Select objects: (handent "11d")
    <Entity name: -40157d58>
    1 found
    Select objects: <Enter>
    R. Robert Bell
    Design Technology Manager
    Stantec
    Opinions expressed are mine alone and do not reflect the views of Stantec.

  4. #4
    100 Club
    Join Date
    2008-04
    Posts
    163
    Login to Give a bone
    0

    Default Re: Export/View Clash locations to dwg

    I know for a fact that you can insert a block at the clash location. There are already lisps that will do this based on an X,Y,Z text file. I started to do my own thing, but haven't figured out how to parse the clash report down enough.

    I was hoping it would be published some where by now, but "somebody" is sitting on it.

  5. #5
    AUGI Addict
    Join Date
    2015-12
    Posts
    2,095
    Login to Give a bone
    0

    Default Re: Export/View Clash locations to dwg

    Quote Originally Posted by cjehly View Post
    I know for a fact that you can insert a block at the clash location. There are already lisps that will do this based on an X,Y,Z text file. I started to do my own thing, but haven't figured out how to parse the clash report down enough.

    I was hoping it would be published some where by now, but "somebody" is sitting on it.
    You could export the clash report as XML and use MSXML DOM to parse it. Not sure if that could be applicable to the HTML report as well.

  6. #6
    The Silent Type RobertB's Avatar
    Join Date
    2000-01
    Location
    Seattle WA USA
    Posts
    5,859
    Login to Give a bone
    0

    Default Re: Export/View Clash locations to dwg

    Quote Originally Posted by cjehly View Post
    I know for a fact that you can insert a block at the clash location. There are already lisps that will do this based on an X,Y,Z text file. I started to do my own thing, but haven't figured out how to parse the clash report down enough.

    I was hoping it would be published some where by now, but "somebody" is sitting on it.
    I'm not sure that inserting something at the clash point is any better than simply zooming to the object. With a bit of LISP code you can even highlight the object to which you zoomed based on the object's handle.
    R. Robert Bell
    Design Technology Manager
    Stantec
    Opinions expressed are mine alone and do not reflect the views of Stantec.

  7. #7
    NavisWorks Moderator david.kingham's Avatar
    Join Date
    2004-07
    Location
    Fort Collins, CO
    Posts
    1,329
    Login to Give a bone
    0

    Default Re: Export/View Clash locations to dwg

    Avatech developed a nice tool that exports the clash locations to a cad file, I'm not sure if they continued development of this, you contact matt.mason at avat.com to find out

  8. #8
    Member
    Join Date
    2008-07
    Posts
    28
    Login to Give a bone
    0

    Default Re: Export/View Clash locations to dwg

    I started a lisp routine that will insert a block at the clashpoint location, and add the name of the clash or group. It's still kind of buggy but your welcome to try it. Here's how it works: export report to txt format. the lisp routine reads from top to bottom and does not cycle through, only repeats 3000 times. If you have a lot of clashes, like 1000, you might want to change 3000 to 10000. It looks for an identifier, such as group name or clash name or clashpoint, and then inserts a block using that information. It's a pretty rigid program right now, therefore the report must be written just so. Basically, when you export, the only contents that should be checked are summary, clashpoint, layer name, item path, description, comments, clash group.

    If you want to try it here's how. Insert the block into a blank drawing. It doesn't need to be anywhere, just in the block list, as the program will look for it in the drawing. Run the lisp routine, you will be prompted to locate the txt file you created, with only contents check as I said above. When you find it, your drawing will be populated with a bunch of X's and the clash or group name on a special layer I think I called it clashpoint. You can then save the drawing and xref it into your real drawing, at 0,0. Use the "find" command, make sure to include only xref information, and put the name of the clash or group, it will zoom right to it.

    As I said, the routine is still buggy. I don't have time to develop it more right now, But it gives a general idea of where the clash is and can be helpful for subs in different offices.

    For those autolispers out there, I tried and tried to entmod the "clashname" attribute in my block. Would not work - kept getting an exception error. Oddly, when I would remove that line of code, run the routine, then enter that line on the command line, worked just fine. Didn't have time to keep messing with it so I just inserted a line of text instead. Any ideas? Also, sorry for the crudeness of my code. No time to make things pretty.

    Heather
    Attached Files Attached Files

  9. #9
    Active Member
    Join Date
    2006-08
    Location
    Southern California
    Posts
    52
    Login to Give a bone
    0

    Question Re: Export/View Clash locations to dwg

    Quote Originally Posted by hkossila View Post
    As I said, the routine is still buggy. I don't have time to develop it more right now, But it gives a general idea of where the clash is and can be helpful for subs in different offices.

    Heather
    Heather,
    I know it's been quite some time since your post, however, I was wondering if you were able to further this LISP and possibly eliminate the errors and quirks? I've successfully used it and modified it slightly to insert another block with additional attributes, but it doesn't add the attribute according to the Clash Report.
    If you have anything to offer, I'd greatly appreciate it.

  10. #10
    AUGI Addict
    Join Date
    2015-12
    Posts
    2,095
    Login to Give a bone
    0

    Default Re: Export/View Clash locations to dwg

    Haven't looked at it, but instead of using a text file consider using the XML file. This can be read in LISP using MSXML and VLISP ActiveX functions. Using XPath you can search and select information with a great deal of precision.

Page 1 of 2 12 LastLast

Similar Threads

  1. 2013: Export text objects and their respective locations
    By Unbreakable in forum AutoCAD Civil 3D - General
    Replies: 2
    Last Post: 2015-05-19, 08:09 PM
  2. Export clash points or views to Autocad
    By Wish List System in forum NavisWorks - Wish List
    Replies: 1
    Last Post: 2013-12-19, 06:27 PM
  3. Clash detection Export Query
    By RollwithRevit in forum NavisWorks - General
    Replies: 3
    Last Post: 2011-03-04, 12:14 AM
  4. Clash Comments Export
    By crawfords in forum NavisWorks - General
    Replies: 3
    Last Post: 2009-12-11, 07:38 PM

Posting Permissions

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