Skip to content

Commit 01ea754

Browse files
authored
Merge pull request #21 from Roborob1234/Rob's-tinkering
Stratis and Tanoa coordinate update
2 parents 1242b1f + fd8a257 commit 01ea754

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

addons/main/functions/map/fn_convert_to_stratis.sqf

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
params ["_longitudeInGame", "_latitudeInGame", "_altitude"];
22

3-
private _mapWidth = 30720;
4-
private _mapHeight = 30720;
3+
private _mapWidth = 8192;
4+
private _mapHeight = 8192;
55

66
// SW corner (used as origin)
7-
private _SW_lat = 39.456910;
8-
private _SW_lon = 24.940792;
7+
private _SW_lat = 39.458019;
8+
private _SW_lon = 24.939314;
99

1010
// SE corner
11-
private _SE_lat = 39.459151;
12-
private _SE_lon = 25.083440;
11+
private _SE_lat = 39.458019;
12+
private _SE_lon = 25.081992;
1313

1414
// NW corner
15-
private _NW_lat = 39.567714;
16-
private _NW_lon = 24.937866;
15+
private _NW_lat = 39.458019;
16+
private _NW_lon = 24.939314;
1717

1818
private _edgeSE_lat = _SE_lat - _SW_lat;
1919
private _edgeSE_lon = _SE_lon - _SW_lon;

addons/main/functions/map/fn_convert_to_tanoa.sqf

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
params ["_longitudeInGame", "_latitudeInGame", "_altitude"];
22

3-
private _mapWidth = 30720;
4-
private _mapHeight = 30720;
3+
private _mapWidth = 15360;
4+
private _mapHeight = 15360;
55

66
// SW corner (used as origin)
7-
private _SW_lat = -19.086825;
8-
private _SW_lon = 176.812772;
7+
private _SW_lat = -19.086803;
8+
private _SW_lon = 176.812619;
99

1010
// SE corner
11-
private _SE_lat = -19.086825;
12-
private _SE_lon = 178.687920;
11+
private _SE_lat = -19.086803;
12+
private _SE_lon = 178.704583;
1313

1414
// NW corner
15-
private _NW_lat = -17.196898;
16-
private _NW_lon = 176.812622;
15+
private _NW_lat = -17.196900;
16+
private _NW_lon = 176.812619;
1717

1818
private _edgeSE_lat = _SE_lat - _SW_lat;
1919
private _edgeSE_lon = _SE_lon - _SW_lon;

0 commit comments

Comments
 (0)