MISR Toolkit  1.5.1
MtkDmsToRad.c
Go to the documentation of this file.
1 /*===========================================================================
2 = =
3 = MtkDmsToRad =
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 dms,
40  double *rad )
41 {
42  MTKt_status status_code; /* Return status of this function */
43  MTKt_status status; /* Return status */
44  double dd; /* Decimal degrees */
45 
46  if (rad == NULL)
48 
49  status = MtkDmsToDd( dms, &dd );
50  MTK_ERR_COND_JUMP(status);
51 
52  *rad = dd * (M_PI / 180.0);
53 
54  return MTK_SUCCESS;
55 
56 ERROR_HANDLE:
57  return status_code;
58 }
#define MTK_ERR_CODE_JUMP(code)
Definition: MisrError.h:175
MTKt_status MtkDmsToDd(double dms, double *dd)
Convert packed degrees, minutes, seconds to decimal degrees.
Definition: MtkDmsToDd.c:33
MTKt_status MtkDmsToRad(double dms, double *rad)
Convert packed degrees, minutes, seconds to Radians.
Definition: MtkDmsToRad.c:38
#define MTK_ERR_COND_JUMP(code)
Definition: MisrError.h:188
MTKt_status
Definition: MisrError.h:11

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