/[PAMELA software]/yodaUtility/sgp4/coord.cpp
ViewVC logotype

Annotation of /yodaUtility/sgp4/coord.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1.1.1 - (hide annotations) (download) (vendor branch)
Sun Apr 30 11:08:15 2006 UTC (18 years, 7 months ago) by kusanagi
Branch: MAIN
CVS Tags: yodaUtility2_0/00, yodaUtility1_0/00, yodaUtility2_2/00, yodaUtility2_1/00, HEAD
Changes since 1.1: +0 -0 lines
Various utilities for the yoda environment and its related softwares.
YFile 	   	- Inheriths from TFile     - Add custom features to a TFile object.
YException 	- Inheriths from exception - YODA specific Exceptions.
YMcmd	   	- Decoder for the Mcmd packets.
YSQLConnection 	- Singletn class for DB connections.
yodaUtility     - Various functions.
sgp4		- C++ NORAD SGP4/SDP4 Implementation - Developed by Michael F. Henry.

1 kusanagi 1.1 //
2     // coord.cpp
3     //
4     // Copyright (c) 2003 Michael F. Henry
5     //
6     #include "stdafx.h"
7     #include "coord.h"
8     #include "globals.h"
9    
10     //////////////////////////////////////////////////////////////////////
11     // cCoordGeo Class
12     //////////////////////////////////////////////////////////////////////
13    
14     cCoordGeo::cCoordGeo()
15     {
16     m_Lat = 0.0;
17     m_Lon = 0.0;
18     m_Alt = 0.0;
19     }
20    
21     //////////////////////////////////////////////////////////////////////
22     // cCoordTopo Class
23     //////////////////////////////////////////////////////////////////////
24    
25     cCoordTopo::cCoordTopo()
26     {
27     m_Az = 0.0;
28     m_El = 0.0;
29     m_Range = 0.0;
30     m_RangeRate = 0.0;
31    
32     }
33    
34    
35    

  ViewVC Help
Powered by ViewVC 1.1.23