C# Class RdToLatLong.ConvertRdCoordinates

Conversion between Dutch Rijksdriehoeksmeting and GPS coordinates. Berend Engelbrecht, Decos Software Engineering BV, February 2012.
Afficher le fichier Open project: TNOCS/csTouch

Méthodes publiques

Méthode 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.

Private Methods

Méthode Description
pow ( double d, int p ) : double

Calculates d^p for integer values of p >= 0

Method Details

LatLongToRD() public static méthode

Converts latitude, longitude to RD x,y coordinates in meters.
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
Résultat void

RDToLatLong() public static méthode

Converts Rijksdriehoeksmeting coordinates in meters to GPS coordinates in Lat/Long.
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
Résultat void