X
PrevPrev Go to previous topic
NextNext Go to next topic
Last Post 01 May 2003 07:40 AM by  anon
Lat-lon to UTM converter
 1 Replies
Sort:
You are not authorized to post a reply.
Author Messages

anon



New Member


Posts:
New Member


--
01 May 2003 07:40 AM
    Hi everybody! I'm looking for lat-lon-to-utm and utm-to-lat-lon converter that converts geograhic coordinates. Any information would be greatly appreciated. Regards, Nathan.

    Deleted User



    New Member


    Posts:
    New Member


    --
    01 May 2003 07:40 AM
    ENVI has a utility called the "Map Coordinate Converter" that can be used to accomplish this task. You can use this utility interactively using the GUI interface within ENVI or programmatically within IDL : IDL> ENVI,/RESTORE_BASE_SAVE_FILES IDL> ENVI_BATCH_INIT IDL> iProj=ENVI_PROJ_CREATE(/geographic) IDL> oProj=ENVI_PROJ_CREATE(/utm,zone=13) IDL> iXMap = -105 IDL> iYMap = 40 IDL> ENVI_CONVERT_PROJECTION_COORDINATES, iXMap, iYMap, iProj, oXMap, oYMap, oProj IDL> help, oXMap[0], oYMap[0] DOUBLE = 500049.12 DOUBLE = 4427548.5 Of course, you need to have ENVI installed with IDL for this to work.
    You are not authorized to post a reply.