-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathprojection_test.py
More file actions
142 lines (118 loc) · 5.33 KB
/
projection_test.py
File metadata and controls
142 lines (118 loc) · 5.33 KB
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
import math
import sys
import mapnik
import pytest
from .utilities import assert_box2d_almost_equal
# Tests that exercise map projections.
def test_projection_description():
p = mapnik.Projection('epsg:4326')
assert 'WGS 84' == p.description()
# Trac Ticket #128
def test_wgs84_inverse_forward():
p1 = mapnik.Projection('epsg:4326')
p2 = mapnik.Projection('epsg:4326')
tr = mapnik.ProjTransform(p1, p2)
c = mapnik.Coord(3.01331418311, 43.3333092669)
e = mapnik.Box2d(-122.54345245, 45.12312553, 68.2335581353, 48.231231233)
# It appears that the y component changes very slightly, is this OK?
# so we test for 'almost equal float values'
assert tr.backward(c).y == pytest.approx(c.y)
assert tr.backward(c).x == pytest.approx(c.x)
assert tr.forward(c).y == pytest.approx(c.y)
assert tr.forward(c).x == pytest.approx(c.x)
assert tr.backward(e).center().y == pytest.approx(e.center().y)
assert tr.backward(e).center().x == pytest.approx(e.center().x)
assert tr.forward(e).center().y == pytest.approx(e.center().y)
assert tr.forward(e).center().x == pytest.approx(e.center().x)
def wgs2merc(lon, lat):
x = lon * 20037508.34 / 180
y = math.log(math.tan((90 + lat) * math.pi / 360)) / (math.pi / 180)
y = y * 20037508.34 / 180
return [x, y]
def merc2wgs(x, y):
x = (x / 20037508.34) * 180
y = (y / 20037508.34) * 180
y = 180 / math.pi * \
(2 * math.atan(math.exp(y * math.pi / 180)) - math.pi / 2)
if x > 180:
x = 180
if x < -180:
x = -180
if y > 85.0511:
y = 85.0511
if y < -85.0511:
y = -85.0511
return [x, y]
# echo -109 37 | cs2cs -f "%.10f" epsg:4326 +to epsg:3857
#-12133824.4964668211 4439106.7872505859 0.0000000000
# todo
# benchmarks
# better well known detection
# better srs matching with strip/trim
# python copy to avoid crash
def test_proj_transform_between_init_and_literal():
one = mapnik.Projection('epsg:4326')
two = mapnik.Projection('epsg:3857')
tr1 = mapnik.ProjTransform(one, two)
tr1b = mapnik.ProjTransform(two, one)
wgs84 = 'epsg:4326'
merc = 'epsg:3857'
src = mapnik.Projection(wgs84)
dest = mapnik.Projection(merc)
tr2 = mapnik.ProjTransform(src, dest)
tr2b = mapnik.ProjTransform(dest, src)
for x in range(-180, 180, 10):
for y in range(-60, 60, 10):
coord = mapnik.Coord(x, y)
merc_coord1 = tr1.forward(coord)
merc_coord2 = tr1b.backward(coord)
merc_coord3 = tr2.forward(coord)
merc_coord4 = tr2b.backward(coord)
assert math.fabs(merc_coord1.x - merc_coord1.x) < 1
assert math.fabs(merc_coord1.x - merc_coord2.x) < 1
assert math.fabs(merc_coord1.x - merc_coord3.x) < 1
assert math.fabs(merc_coord1.x - merc_coord4.x) < 1
assert math.fabs(merc_coord1.y - merc_coord1.y) < 1
assert math.fabs(merc_coord1.y - merc_coord2.y) < 1
assert math.fabs(merc_coord1.y - merc_coord3.y) < 1
assert math.fabs(merc_coord1.y - merc_coord4.y) < 1
lon_lat_coord1 = tr1.backward(merc_coord1)
lon_lat_coord2 = tr1b.forward(merc_coord2)
lon_lat_coord3 = tr2.backward(merc_coord3)
lon_lat_coord4 = tr2b.forward(merc_coord4)
assert math.fabs(coord.x - lon_lat_coord1.x) < 1
assert math.fabs(coord.x - lon_lat_coord2.x) < 1
assert math.fabs(coord.x - lon_lat_coord3.x) < 1
assert math.fabs(coord.x - lon_lat_coord4.x) < 1
assert math.fabs(coord.y - lon_lat_coord1.y) < 1
assert math.fabs(coord.y - lon_lat_coord2.y) < 1
assert math.fabs(coord.y - lon_lat_coord3.y) < 1
assert math.fabs(coord.y - lon_lat_coord4.y) < 1
# Github Issue #2648
def test_proj_antimeridian_bbox():
# this is logic from feature_style_processor::prepare_layer()
PROJ_ENVELOPE_POINTS = 20 # include/mapnik/config.hpp
prjGeog = mapnik.Projection('epsg:4326')
prjProj = mapnik.Projection('epsg:2193')
prj_trans_fwd = mapnik.ProjTransform(prjProj, prjGeog)
prj_trans_rev = mapnik.ProjTransform(prjGeog, prjProj)
# bad = mapnik.Box2d(-177.31453250437079, -62.33374815225163, 178.02778363316355, -24.584597490955804)
better = mapnik.Box2d(-180.0, -62.33374815225163,
180.0, -24.584597490955804)
buffered_query_ext = mapnik.Box2d(274000, 3087000, 3327000, 7173000)
fwd_ext = prj_trans_fwd.forward(buffered_query_ext, PROJ_ENVELOPE_POINTS)
assert_box2d_almost_equal(fwd_ext, better)
# check the same logic works for .backward()
ext = mapnik.Box2d(274000, 3087000, 3327000, 7173000)
rev_ext = prj_trans_rev.backward(ext, PROJ_ENVELOPE_POINTS)
assert_box2d_almost_equal(rev_ext, better)
# checks for not being snapped (ie. not antimeridian)
normal = mapnik.Box2d(148.766759749, -60.1222810238,
159.95484893, -24.9771195151)
buffered_query_ext = mapnik.Box2d(274000, 3087000, 276000, 7173000)
fwd_ext = prj_trans_fwd.forward(buffered_query_ext, PROJ_ENVELOPE_POINTS)
assert_box2d_almost_equal(fwd_ext, normal)
# check the same logic works for .backward()
ext = mapnik.Box2d(274000, 3087000, 276000, 7173000)
rev_ext = prj_trans_rev.backward(ext, PROJ_ENVELOPE_POINTS)
assert_box2d_almost_equal(rev_ext, normal)