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

Annotation of /yodaUtility/sgp4/coord.h

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
File MIME type: text/plain
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.h
3     //
4     // Copyright 2002-2003 Michael F. Henry
5     //
6     #pragma once
7    
8     //////////////////////////////////////////////////////////////////////
9     // Geocentric coordinates.
10     class cCoordGeo
11     {
12     public:
13     cCoordGeo();
14     cCoordGeo(double lat, double lon, double alt) :
15     m_Lat(lat), m_Lon(lon), m_Alt(alt) {}
16     virtual ~cCoordGeo() {};
17    
18     double m_Lat; // Latitude, radians (negative south)
19     double m_Lon; // Longitude, radians (negative west)
20     double m_Alt; // Altitude, km (above mean sea level)
21     };
22    
23     //////////////////////////////////////////////////////////////////////
24     // Topocentric-Horizon coordinates.
25     class cCoordTopo
26     {
27     public:
28     cCoordTopo();
29     cCoordTopo(double az, double el, double rng, double rate) :
30     m_Az(az), m_El(el), m_Range(rng), m_RangeRate(rate) {}
31     virtual ~cCoordTopo() {};
32    
33     double m_Az; // Azimuth, radians
34     double m_El; // Elevation, radians
35     double m_Range; // Range, kilometers
36     double m_RangeRate; // Range rate of change, km/sec
37     // Negative value means "towards observer"
38     };
39    

  ViewVC Help
Powered by ViewVC 1.1.23