Jump to content

How to find two fixed coordinates


krishnakumaryadav

Recommended Posts

Sir,

 

Pl.tell me that How can we fixed two points coordinates (simultanious) in an

image of sajra map.

 

Thanks

 

K.K.Yadav

Link to comment
Share on other sites

I have moved your question to it's own thread, please start a new thread for each new question you have.

 

Second, could you tell us why you need this? What is the goal? I mean, you can easily find the coordinates of one point with LIST or ID - why do you need to get two simultaneously?

Link to comment
Share on other sites

Guessing..

 

If you want to scale and rotate an image to fit 2 known coordinates, the ALIGN command would be helpful-much quicker than trial and error.

 

Please ignore this if this was not the question :)

Link to comment
Share on other sites

I suppose this has a simultaneous output... :P

 

(defun c:id2 (/ i mStr pt ptstr)
 (setq i 1 mStr "")
 (while (setq pt (getpoint "\nSelect Point or <exit>: "))
   (setq ptstr (strcat "Pt " (itoa i) (chr 32)
   (rtos (car pt) 2 2) (chr 44) (rtos (cadr pt) 2 2)
      (chr 44) (rtos (caddr pt) 2 2)))
   (setq mStr (strcat mStr ptstr "\n") i (1+ i)))
 (alert mStr)
 (princ))
   

Link to comment
Share on other sites

sir,

 

I would like to inform to you,that it's required for highway project for land Equaisition purpose,

1. scan sajra & How to fix two points on sajra as per site Chanages?Pl. tell me.

this is my goal for Land Acquiasition purpose.

 

Thanks,

 

K.K.Yadav

Link to comment
Share on other sites

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