MISR Toolkit  1.5.1
MtkRadToDd.c
Go to the documentation of this file.
1 /*===========================================================================
2 = =
3 = MtkRadToDd =
4 = =
5 =============================================================================
6 
7  Jet Propulsion Laboratory
8  MISR
9  MISR Toolkit
10 
11  Copyright 2005, California Institute of Technology.
12  ALL RIGHTS RESERVED.
13  U.S. Government Sponsorship acknowledged.
14 
15 ============================================================================*/
16 
17 #include "MisrUnitConv.h"
18 #include "MisrError.h"
19 /* M_PI is not defined in math.h in Linux unless __USE_BSD is defined */
20 /* and you can define it at the gcc command-line if -ansi is set */
21 #ifndef __USE_BSD
22 # define __USE_BSD
23 #endif
24 #include <math.h>
25 
39  double rad,
40  double *dd )
41 {
42  MTKt_status status_code; /* Return status of this function */
43 
44  if (dd == NULL)
46 
47  *dd = rad / (M_PI / 180.0);
48 
49  return MTK_SUCCESS;
50 
51 ERROR_HANDLE:
52  return status_code;
53 }
#define MTK_ERR_CODE_JUMP(code)
Definition: MisrError.h:175
MTKt_status MtkRadToDd(double rad, double *dd)
Convert radians to decimal degrees.
Definition: MtkRadToDd.c:38
MTKt_status
Definition: MisrError.h:11

MISR Toolkit - Copyright © 2005 - 2020 Jet Propulsion Laboratory
Generated on Fri Jun 19 2020 22:49:51