• This forum is the machine-generated translation of www.cad3d.it/forum1 - the Italian design community. Several terms are not translated correctly.

import file lisp with geographical coordinates

  • Thread starter Thread starter roberto pierdomenico
  • Start date Start date

roberto pierdomenico

Guest
Good morning
are new in the forum
My name is roberto and I live in riyadh, I am a project manager and I find myself with a little, surely for you, problem.
I have to get the coordiantion points to give to the surveyor! The problem is, my tech dept. He doesn't know how to do it, and I do.

I basically have an idr file given to me by the contractor with the site coordinates. So I think it means with a pre-established ucs.
I should somehow import this ucs into my design to find the geographies.

I've been looking everywhere. I haven't found anything.

thanks for the help
 
but the idr file what does it contain? I never happened. Is it just a text file? in this case opening what you find written?
 
a file lisp containing coordinates to which rasters refer? :confused:
try to open it with a text reader and see what it says.
If you can attach it here we understand better.. .
 
onestamente non so se siano raster. ma non credo
quello che contiene il file te lo allego sotto:

grazie ancora



;cord-ldr.lsp
; x,y coordinates on leader lines

(defun c:cr (/ pnt1 p1x p1y stdy dy ptxt )
(setq pnt1 (getpoint "\npick coordinate point: "))
(setq p1x (car pnt1)) ;x coord
(setq p1y (cadr pnt1)) ;y coord
(setq stdx (rtos p1x 2 3))
(setq stdy (rtos p1y 2 3))
;(setq coord (strcat "e=" stdx "\nn=" stdy))
(setq ptxt (getpoint "\npick text location: "))
(command "leader" pnt1 ptxt "" (strcat "e=" stdx)
(strcat "n=" stdy) "")
(princ)) ; end
 
I'm trying to send you cad files but it makes me mistake when it reaches 100%. I did an archive, but nothing!
 

Forum statistics

Threads
44,997
Messages
339,767
Members
4
Latest member
ibt

Members online

No members online now.
Back
Top