mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-23 18:57:12 +00:00
14 lines
222 B
PHP
14 lines
222 B
PHP
<?php
|
|
|
|
/**
|
|
* Geodetic position data structure.
|
|
*
|
|
*/
|
|
class Predict_Geodetic
|
|
{
|
|
public $lat; /*!< Lattitude [rad] */
|
|
public $lon; /*!< Longitude [rad] */
|
|
public $alt; /*!< Altitude [km] */
|
|
public $theta;
|
|
}
|