C# 클래스 RdToLatLong.ConvertRdCoordinates

Conversion between Dutch Rijksdriehoeksmeting and GPS coordinates. Berend Engelbrecht, Decos Software Engineering BV, February 2012.
파일 보기 프로젝트 열기: TNOCS/csTouch

공개 메소드들

메소드 설명
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.

비공개 메소드들

메소드 설명
pow ( double d, int p ) : double

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

메소드 상세

LatLongToRD() 공개 정적인 메소드

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
리턴 void

RDToLatLong() 공개 정적인 메소드

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
리턴 void