Jump to content

i have a CAD file want to convert CSV-TXT file please help me


Recommended Posts

Posted

i have a CAD file want to convert CSV-TXT file please help me

please any one help me or convert this file and send me please urgent

OGL FOR CSV TXT.dwg

Posted

As there is a Point at each of the figured coordinates, you can use Data Extraction :D

Posted

i can'nt use can you please and send me txt or csv file thanks

Posted

I am afraid that the version of AutoCAD that I am using does not have the Data Extraction. But your version does, so you will have to do it yourself.

Posted

Just a simple lisp that finds "points" will do code below not tested.

 

(setq fout (open "c:\\yourdir\\yourfilename" "W"))
(setq ss (ssget "X" (list (cons o "point")(cons 8 "0"))))
(setq numb (sslength ss))
(setq x numb)
(repeat numb
(setq ans (cadr (nth (setq x (- x 1)) ss)))
(writeline ans fout)
)
(close fout)
(princ)

Posted

There is always Lee Mac's Point Manager, if you must go for lisp.

 

I was rather hoping that the OP would learn how to use AutoCAD fully, rather than falling back on lisps, which seems so easy to do nowadays. :shock:

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