Method | Description | |
---|---|---|
LatLongToRD ( double dblLatitude, double dblLongitude, int &iX, int &iY ) : void |
Converts latitude, longitude to RD x,y coordinates in meters.
|
|
RDToLatLong ( int iX, int iY, double &dblLatitude, double &dblLongitude ) : void |
Converts Rijksdriehoeksmeting coordinates in meters to GPS coordinates in Lat/Long.
|
Method | Description | |
---|---|---|
pow ( double d, int p ) : double |
Calculates d^p for integer values of p >= 0
|
public static LatLongToRD ( double dblLatitude, double dblLongitude, int &iX, int &iY ) : void | ||
dblLatitude | double | Latitude |
dblLongitude | double | Longitude |
iX | int | RD x coordinate |
iY | int | RD y coordinate |
return | void |
public static RDToLatLong ( int iX, int iY, double &dblLatitude, double &dblLongitude ) : void | ||
iX | int | RD x coordinate |
iY | int | RD y coordinate |
dblLatitude | double | Latitude |
dblLongitude | double | Longitude |
return | void |