티스토리 뷰
public static double Calc(double Lat1,
double Long1, double Lat2, double Long2)
{
double dDistance = 0;
double dLat1InRad = Lat1 * (Math.PI / 180.0);
double dLong1InRad = Long1 * (Math.PI / 180.0);
double dLat2InRad = Lat2 * (Math.PI / 180.0);
double dLong2InRad = Long2 * (Math.PI / 180.0);
double dLongitude = dLong2InRad - dLong1InRad;
double dLatitude = dLat2InRad - dLat1InRad;
double a = Math.pow(Math.sin(dLatitude / 2.0), 2.0) +
Math.cos(dLat1InRad) * Math.cos(dLat2InRad) *
Math.pow(Math.sin(dLongitude / 2.0), 2.0);
double c = 2.0 * Math.atan2(Math.sqrt(a), Math.sqrt(1.0 - a));
double kEarthRadiusKms = 6376.5;
dDistance = kEarthRadiusKms * c;
return dDistance;
}
인터넷을 찾다가 어느분 블로그에서 본 소슨데 안드로이드에 적용했당~
-_-출처를 적을려고했떠니...그사이트가 어딘지 기억이 안나네요 ㅠ 무튼 감사합니당!
- Total
- Today
- Yesterday
- 듀랑고 자동
- 듀랑고
- 비활성화 화면 캡쳐
- C# 매크로 강의
- 메이저골프
- MSPproject
- 골프 게임
- MSP 프로젝트P
- XNA 퍼즐게임
- 메이저골프게임
- xna 2D
- 리니지m 매크로
- XNA 2D tutorial
- 안드로이드
- 모모앱플레이어 매크로
- C# 매크로
- 매크로 강좌
- 매크로 강의
- 모바일게임 매크로
- 안드로이드 개발
- XNA 3D tutorial
- 매크로
- C# 듀랑고 매크로
- 이미지 찾기 매크로
- XNA
- 듀랑고 매크로
- 포토샵 에러
- 플래시
- C# 이미지매크로
- 안드로이드 게임
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |