RE: Geodetic coordinate transformation

RE: Geodetic coordinate transformation

Anonymous
Not applicable
328 Views
1 Reply
Message 1 of 2

RE: Geodetic coordinate transformation

Anonymous
Not applicable
I need to transform coordinates from a local projection to WGS84
Latitude-Longitude. Land Desktop cheerfully does this from the menus, but I
can't find where that functionality is exposed in any of the programming
models. LDD calls from lisp "(cg:zone:pt:label)" but they haven't exactly
made the internal functions easy to find.
0 Likes
329 Views
1 Reply
Reply (1)
Message 2 of 2

Anonymous
Not applicable
I found it in the ADE_functions from Map. I'm sure I'll figure it out from
VBA...

(defun c:test ()
(ade_projsetsrc "FL83-WF")
(ade_projsetdest "LL84")
(ade_projptforward (getpoint "\nEnter point: ")))

"Autodesk Forums" wrote in message
news:5790706@discussion.autodesk.com...
I need to transform coordinates from a local projection to WGS84
Latitude-Longitude. Land Desktop cheerfully does this from the menus, but I
can't find where that functionality is exposed in any of the programming
models. LDD calls from lisp "(cg:zone:pt:label)" but they haven't exactly
made the internal functions easy to find.
0 Likes