Visual LISP, AutoLISP and General Customization
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Re: Help with exporting point locations to text file
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hello,
Two solutions::
Solution 1: If you are a Lisp programmer and need help, look at our FREE resources on TechCenter:
This is the link: http:///www.4d-technologies.com/techcenter
There are a bunch of routines there under various library headings which you can use to export XYZ data into a text file, manage objects, retrieve information like coordinates etc etc.
Look at the LSP and if you need help, send me a message.
Solution 2: Alternatively, if you are looking at a ready-made solution, you may try our CADPower CP_IMPEX command
http://www.4d-technologies.com/cadpower/manual/exp
You can try it fully functional for 30 days.
Regards
Rakesh
http://rakeshrao.typepad.com
http://www.coordsys.com
http://www.4d-technologies.com
- www.4d-technologies.com / www.coordsys.com
- Blog:EN: http://rakeshrao.typepad.com
- Blog: ES: http://kiranabhat.typepad.com
Re: Help with exporting point locations to text file
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
File has loaded and is exporting point locations, however, when i open the text file the locations are not the same as then ones in the cad file. Would moving my origin effect this??? Normally what I do is move my origin to the zero corner and then place the points in the drawing??? Also, how do I change the precision of the numbers it exports. Thanks again
Re: Help with exporting point locations to text file
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Cadastrophe1911 wrote:File has loaded and is exporting point locations, however, when i open the text file the locations are not the same as then ones in the cad file. Would moving my origin effect this??? Normally what I do is move my origin to the zero corner and then place the points in the drawing??? Also, how do I change the precision of the numbers it exports. Thanks again
If you're talking about my suggested routine, I would guess that you're in some non-World Coordinate System. The coordinates in the entity data for each Point (which is what the routine uses) will be in WCS terms, no matter what your current UCS. But what you'll see as locations if you pick something is displayed in the current UCS. So yes, you should set the Coordinate System to World, and if necessary, move everything from whatever you want the origin to be in relation to the points, to 0,0. Alternatively, you can use (trans) to convert them -- write back if you'd rather do that and not change the UCS.
The precision of the numbers is controlled by the last number in the (rtos) functions [2 in both of them as I posted it, = 2 decimal places] -- see (rtos) in the AutoLISP Reference [you can also change the type of units to something other than decimal, if you want]. If you want whole numbers only, you can replace those last 2's with 0's [it will round things to the nearest integer value]. It turns out you can't use (itoa) for that -- it won't accept real numbers as input, but all Point location coordinates will be real numbers.
Re: Help with exporting point locations to text file
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Is there anyway I can make it work off of the UCS location???
Re: Help with exporting point locations to text file
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Cadastrophe1911 wrote:Is there anyway I can make it work off of the UCS location???
Yes. Replace this:
(rtos (car x) 2 2) "\t" ; X coordinate <--- edit precision
(rtos (cadr x) 2 2); Y coordinate <--- edit precision
with this:
(trans (rtos (car x) 2 2) 0 1) "\t" ; X coordinate <--- edit precision
(trans (rtos (cadr x) 2 2) 0 1); Y coordinate <--- edit precision
The 0 means to translate from World Coordinates; the 1 means to current coordinates.
Re: Help with exporting point locations to text file
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Command:
Command: _appload drill20.LSP successfully loaded.
Command:
Command:
Command: drill20
; error: bad argument type: 2D/3D point: "29.31"
Re: Help with exporting point locations to text file
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
I am using the move origin command with points set at 0,0 .5000, 2.1875 and 2.1875, .5000
Re: Help with exporting point locations to text file
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
defun C:drill20 (/ ptfile inc ptlist);
(setq
ptfile (open "C:/TEMP/PTFILE.TXT" "w"); <---- edit file path & name
inc 0
ptlist
(mapcar
'(lambda (x) (cdr (assoc 10 (entget x)))); Point locations
(mapcar 'cadr (ssnamex (ssget "_X" '((0 . "POINT"))))); all Point entities in drawing
); mapcar & ptlist
); setq
(write-line "Units\tInch" ptfile)
(foreach x ptlist
(write-line
(strcat
"WPT\t"
(itoa (setq inc (1+ inc))) "\t"
(trans (rtos (car x) 2 4) 0 1) "\t" ; X coordinate <--- edit precision
(trans (rtos (cadr x) 2 4) 0 1); Y coordinate <--- edit precision
); strcat
ptfile
)
)
(close ptfile)
); end defun
Re: Help with exporting point locations to text file
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Cadastrophe1911 wrote:defun C:drill20 (/ ptfile inc ptlist);
....
I take it that's the format that does what you want [with, of course, the missing-here but requisite opening left parenthesis at the very beginning...]. If so, you could now remove all the " <---- edit ..." commentaries. And there are other things you could do if you choose, such as have it alert the User if there are no Points in the drawing, and/or exit quietly with a (princ) just before the final closing right parenthesis so it doesn't put 'nil' on the Command: prompt line for inexperienced Users to be confused by.
Re: Help with exporting point locations to text file
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Why am i getting this error
Command:
Command: _appload drill20.LSP successfully loaded.
Command:
Command:
Command: drill20
; error: bad argument type: 2D/3D point: "29.31"



