2019-08-09 12:19 PM
2019-08-09 01:41 PM
if GLOB_MODPAR_NAME = "iCoorSystem" or GLOB_MODPAR_NAME = "strCoorSystem" then if iCoorSystem = WORLD_COOR_PROJ or strCoorSystem = strCoorSystem_strings[2] then iLatitudeDegree = int(GLOB_PROJECT_LATITUDE) iLatitudeMinute = int(fra(GLOB_PROJECT_LATITUDE)*60) rLatitudeSecond = (GLOB_PROJECT_LATITUDE - iLatitudeDegree - iLatitudeMinute/60)*60*60 iLongitudeDegree = int(GLOB_PROJECT_LONGITUDE) iLongitudeMinute = int(fra(GLOB_PROJECT_LONGITUDE)*60) rLongitudeSecond = (GLOB_PROJECT_LONGITUDE - iLongitudeDegree - iLongitudeMinute/60)*60*60 elevWorldCoor = GLOB_PROJECT_ALTITUDE parameters iLatitudeDegree = iLatitudeDegree, iLatitudeMinute = iLatitudeMinute, rLatitudeSecond = rLatitudeSecond, iLongitudeDegree = iLongitudeDegree, iLongitudeMinute = iLongitudeMinute, rLongitudeSecond = rLongitudeSecond, elevWorldCoor = elevWorldCoorGLOB_PROJECT_LATITUDE is a GDL global (one for longitude too).
2019-08-09 02:29 PM