UNCLASSIFIED
GeographicTranslator
|
#include <stdio.h>
#include <math.h>
#include "Mercator.h"
#include "MercatorStandardParallelParameters.h"
#include "MercatorScaleFactorParameters.h"
#include "MapProjectionCoordinates.h"
#include "GeodeticCoordinates.h"
#include "CoordinateConversionException.h"
#include "ErrorMessages.h"
Go to the source code of this file.
Variables | |
const double | PI = 3.14159265358979323e0 |
const double | PI_OVER_2 = ( PI / 2.0e0) |
const double | TWO_PI = (2.0 * PI) |
const double | MAX_LAT = ( (PI * 89.5) / 180.0 ) |
const double | MIN_SCALE_FACTOR = 0.3 |
const double | MAX_SCALE_FACTOR = 3.0 |
const double MAX_LAT = ( (PI * 89.5) / 180.0 ) |
Definition at line 115 of file Mercator.cpp.
const double MAX_SCALE_FACTOR = 3.0 |
Definition at line 117 of file Mercator.cpp.
const double MIN_SCALE_FACTOR = 0.3 |
Definition at line 116 of file Mercator.cpp.
const double PI = 3.14159265358979323e0 |
Definition at line 112 of file Mercator.cpp.
const double PI_OVER_2 = ( PI / 2.0e0) |
Definition at line 113 of file Mercator.cpp.
const double TWO_PI = (2.0 * PI) |
Definition at line 114 of file Mercator.cpp.