반응형
GPS좌표간 거리계산
특정 매장근처에 가면 노티가 뜨는 시나리오를 구현하였다.
구글맵을 이용하면 경위도 좌표를 쉽게 구할 수 있고
Unity 안드로이드의 현재 위치값을 가져오는 Input.Location을 사용하였다.
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
|
using UnityEngine;
using UnityEngine.UI;
using System.Collections;
using System;
public class UpdateGPSLocation : MonoBehaviour {
public ViewHandler v;
public Text debugText;
LocationInfo myGPSLocation;
float fiveSecondCounter = 0.0f;
public string LocationName;
double MyLatitude, MyLongtitude;
DistUnit unit;
/**
* Latitude - 경도, Longtitude - 위도
*/
public double TargetLatitude, TargetLongtitude; // 37.507839, 127.039864
IEnumerator Start () {
debugText.text += "Starting the GPS Script\n";
#if UNITY_ANROID
Input.compass.enabled = true;
#endif
return InitializeGPSServices ();
}
IEnumerator InitializeGPSServices () {
// First, check if user has location service enabled
if (!Input.location.isEnabledByUser) {
debugText.text += "GPS disabled by user\n";
yield break;
}
// Start service before querying location
Input.location.Start (0.1f, 0.1f);
// Wait until service initializes
int maxWait = 20;
while (Input.location.status == LocationServiceStatus.Initializing && maxWait > 0) {
yield return new WaitForSeconds (1);
maxWait--;
}
// Service didn't initialize in 20 seconds
if (maxWait < 1) {
debugText.text += "Timed out\n";
yield break;
}
}
void Update () {
fiveSecondCounter += Time.deltaTime;
if (fiveSecondCounter > 1.0) {
UpdateGPS ();
fiveSecondCounter = 0.0f;
}
}
int updateCnt = 0;
void UpdateGPS () {
// Connection has failed
if (Input.location.status == LocationServiceStatus.Failed) {
debugText.text += "Unable to determine device location\n";
Input.location.Stop ();
Start ();
}
else {
updateCnt++;
debugText.text = "update count : " + updateCnt + "\n" + getUpdatedGPSstring ();
}
}
string getUpdatedGPSstring () {
myGPSLocation = Input.location.lastData;
MyLongtitude = Math.Round (myGPSLocation.longitude, 6);
MyLatitude = Math.Round (myGPSLocation.latitude, 6);
double DistanceToMeter;
string storeRange;
//두 점간의 거리
DistanceToMeter = distance (MyLatitude, MyLongtitude, TargetLatitude, TargetLongtitude, DistUnit.meter);
//DistanceToMeter = distance (37.507775, 127.039675, 37.507660, 127.039530, "meter"); // 20미터 이내 거리체크
if (DistanceToMeter < 20) {// 건물의 높낮이 등 환경적인 요소로 인해 오차가 발생 할 수 있음.
storeRange = "근처매장 O";
if (!v.flowAHandler.NotiOpenChk)
v.flowAHandler.OpenNoti ();
}
else {
storeRange = "근처매장 X";
}
return "\n현재위치 :\n" +
"경도 - " + Math.Round (MyLatitude, 6) + "\n" +
"위도 - " + Math.Round (MyLongtitude, 6) +
"\n\n" + "목표위치 : " + LocationName + "\n" +
"경도 - " + TargetLatitude + "\n" +
"위도 - " + TargetLongtitude +
"\n\n목표와의거리 : 약 " + DistanceToMeter + "M" + "\n" +
"-------------------------------\n\n" +
storeRange;
}
/**
* 두 지점간의 거리 계산
*
* @param lat1 지점 1 위도
* @param lon1 지점 1 경도
* @param lat2 지점 2 위도
* @param lon2 지점 2 경도
* @param unit 거리 표출단위
* @return
*/
static double distance (double lat1, double lon1, double lat2, double lon2, DistUnit unit) {
double theta = lon1 - lon2;
double dist = Math.Sin (deg2rad (lat1)) * Math.Sin (deg2rad (lat2)) + Math.Cos (deg2rad (lat1)) * Math.Cos (deg2rad (lat2)) * Math.Cos (deg2rad (theta));
dist = Math.Acos (dist);
dist = rad2deg (dist);
dist = dist * 60 * 1.1515;
if (unit == DistUnit.kilometer) {
dist = dist * 1.609344;
}
else if (unit == DistUnit.meter) {
dist = dist * 1609.344;
}
return (dist);
}
// This function converts decimal degrees to radians
static double deg2rad (double deg) {
return (deg * Math.PI / 180.0);
}
// This function converts radians to decimal degrees
static double rad2deg (double rad) {
return (rad * 180 / Math.PI);
}
}
enum DistUnit{
kilometer,
meter
}
|
출처 : http://fruitdev.tistory.com/189
반응형
'unity C#' 카테고리의 다른 글
[Unity] 스크린 캡쳐(RenderTexture) 해서 여백잘라 Sprite로 가져오기 (0) | 2019.05.03 |
---|---|
[Unity] unity callback 함수 호출하기 (0) | 2017.11.10 |
[Unity] 스프라이트 시퀀스 애니메이션 손쉽게 사용하기 (0) | 2017.11.06 |
[Unity] 메모리 관리 불필요한 메모리 누수 막기 (0) | 2017.11.06 |
[Unity] 상속받아온 클래스의 Inspector 수정하기. (1) | 2017.11.06 |