List of Routines By Functionality |  MISR Toolkit: Main Page

-Abstract

   MTK_RAD_TO_DD converts radians to decimal degrees.

-Copyright

   Copyright (2005), California Institute of Technology.
   U.S. Government sponsorship acknowledged.

-I/O
   
   Given:
   
      rad            radians

   the call:
   
      status = MTK_RAD_TO_DD( dd, rad )
   
   returns:
   
      status         0 on success; otherwise failure
      dd             decimal degrees

-Examples

      ;;
      ;; Set up input parameters
      ;;
      rad         = 1.1440634
      status      = MTK_RAD_TO_DD( rad, dd )
      
      ;;
      ;; Output...
      ;;
      print, 'radians               : ', rad
      print, '================================================='
      print, 'DECIMAL DEGREES       : ', dd

   IDL outputs:
   
      radians               : 1.14406
    =================================================
      DECIMAL DEGREES       :        65.550002

-Particulars
   None.

-Required Reading
   For important details concerning this module's function, please refer to
   the MTK routine MtkRadToDd.c.

-Version
   -IDL-MTK Version 1.2.0