Rev | Line | |
---|
[419] | 1 | // temporaire, positionnement en utilisant la galaxie...
|
---|
| 2 |
|
---|
| 3 | #ifndef TEMPLOCATOR_H
|
---|
| 4 | #define TEMPLOCATOR_H
|
---|
| 5 |
|
---|
| 6 | class TempLocator {
|
---|
| 7 | public:
|
---|
| 8 | TempLocator();
|
---|
| 9 |
|
---|
| 10 | void setEarthPos(double lon, double lat);
|
---|
| 11 | void setTSid(double ts);
|
---|
| 12 |
|
---|
| 13 | double getAlphaZenith();
|
---|
| 14 | double getDeltaZenith();
|
---|
| 15 |
|
---|
| 16 |
|
---|
| 17 |
|
---|
| 18 | protected:
|
---|
| 19 | double lon; // degrees +=EST
|
---|
| 20 | double lat; // degrees +=NORD
|
---|
| 21 | double ts; // secondes
|
---|
| 22 | };
|
---|
| 23 |
|
---|
| 24 | extern TempLocator tempLocator;
|
---|
| 25 |
|
---|
| 26 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.