-
Notifications
You must be signed in to change notification settings - Fork 40
/
transform1.py
93 lines (83 loc) · 2.49 KB
/
transform1.py
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
"""
A Python program for the Robinson projection.
Contact
Ningchuan Xiao
The Ohio State University
Columbus, OH
"""
__author__ = "Ningchuan Xiao <[email protected]>"
import sys
sys.path.append('..')
from geom.neville import *
import bisect
latitudes=[0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60,
65, 70, 75, 80, 85, 90]
# length of parallels at each latitude in latitudes
A=[1.0000, 0.9986, 0.9954, 0.9900, 0.9822, 0.9730, 0.9600,
0.9427, 0.9216, 0.8962, 0.8679, 0.8350, 0.7986, 0.7597,
0.7186, 0.6732, 0.6213, 0.5722, 0.5322]
# length from each parallel to the equator
# these values must be multiplied by 0.5072
B=[0.0000, 0.0620, 0.1240, 0.1860, 0.2480, 0.3100, 0.3720,
0.4340, 0.4958, 0.5571, 0.6176, 0.6769, 0.7346, 0.7903,
0.8435, 0.8936, 0.9394, 0.9761, 1.0000]
def find_le(a, x):
"""Finds rightmost value less than or equal to x"""
i = bisect.bisect_right(a, x)
if i:
return i-1
raise ValueError
def get_interpolation_range(sidelen, n, i):
"""
Finds the range of indices for interpolation
in Robinson Projection
Input
sidelen: the number of items on both sides of i,
including i in the left
n: the total number of items
i: the index of the largest item smaller than the value
Output
ileft: the left index of the value (inclusive)
iright: the right index of the value (noninclusive)
"""
if i<sidelen:
ileft = max([0, i-sidelen+1])
else:
ileft = i-sidelen+1
if i>=n-sidelen:
iright = min(n, i+sidelen+1)
else:
iright = i+sidelen+1
return ileft, iright
def transform1(lon, lat):
"""
Returns the transformation of lon and lat
on the Robinson projection.
Input
lon: longitude
lat: latitude
Output
x: x coordinate (origin at 0,0)
y: y coordinate (origin at 0,0)
"""
n = len(latitudes)
south = False
if lat<0:
south = True
lat = abs(lat)
if lat>90:
return
i = find_le(latitudes, lat)
ileft, iright = get_interpolation_range(2, n, i)
y = neville(latitudes[ileft:iright],
B[ileft:iright], lat)
if lat<=38:
ileft, iright = get_interpolation_range(1, n, i)
x = neville(latitudes[ileft:iright],
A[ileft:iright], lat)
y = 0.5072*y/2.0
dx = x/360.0
x = dx*lon
if south:
y = -1.0 * y
return x, y