#include <math.h>
#include <drain/image/CoordinateHandler.h>
Go to the source code of this file.
|  | 
| #define | RADAR__CONSTANTS   "radar__constants 1.0, May 27 2006 Markus.Peura@fmi.fi" | 
|  | 
|  | 
| template<class T > | 
| double | dbzToZ (const T &dBZ) | 
|  | 
| template<class T > | 
| double | zToDbz (const T &Z) | 
|  | 
|  | 
| const int | EARTH_RADIUSi = 6371000 | 
|  | Approximated radius of Earth, integer. 
 | 
|  | 
| const double | EARTH_RADIUS = static_cast<double>(EARTH_RADIUSi) | 
|  | Approximated radius of Earth, integer. 
 | 
|  | 
| const double | EARTH_RADIUS_43 = EARTH_RADIUS * 4.0 / 3.0 | 
|  | The standard 4/3 radius applied in radar to compensate the decreasing density of the atmosphere. 
 | 
|  | 
| const int | earthRadiusMI = 6371000 | 
|  | 
| const int | earthRadius43MI = (earthRadiusMI * 4) / 3 | 
|  | 
| const float | earthRadius43MF = static_cast<float>(earthRadiusMI) * 4.0 / 3.0 | 
|  | 
This file contains radar constants...