-
Notifications
You must be signed in to change notification settings - Fork 1
/
HSlippyMap.hs
58 lines (48 loc) · 1.65 KB
/
HSlippyMap.hs
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
module HSlippyMap (
Tile (..),
Lat, Long,
X, Y, ZLevel,
tilesFromBBox,
tileFromLatLong,
tileFromXY
) where
type Lat = Float
type Long = Float
type X = Integer
type Y = Integer
type ZLevel = Integer
data Tile = Tile {
tlat :: Lat,
tlong :: Long,
tx :: X,
ty :: Y,
tz :: ZLevel }
instance Show Tile where
show (Tile lat long x y z) = "http://tile.openstreetmap.org/" ++ show z ++ "/" ++ show x ++ "/" ++ show y ++ ".png"
-- if not same z-level == Nothing
tilesFromBBox :: Tile -> Tile -> Maybe [Tile]
tilesFromBBox min max | (tz min) == (tz max) = Just $ concat $ map (\(x,y) -> map (\y'-> Tile (tlat min) (tlong min) x y' z) y)
[(x,[(minimum [tymin, tymax])..(maximum [tymin,tymax])]) | x <- [(minimum [txmin, txmax])..(maximum [txmin, txmax])]]
| otherwise = Nothing
where
txmax = tx max
txmin = tx min
tymax = ty max
tymin = ty min
z = tz min
tileFromLatLong :: Lat -> Long -> ZLevel -> Tile
tileFromLatLong lat lon z = Tile lat lon x y z
where
x = long2tilex lon z
y = lat2tiley lat z
tileFromXY :: X -> Y -> ZLevel -> Tile
tileFromXY x y z = Tile lat lon x y z
where
lat = tilex2long x z
lon = tiley2lat y z
long2tilex lon z = floor((lon + 180) / 360 * (2** fromInteger z::Long))
lat2tiley lat z = floor((1.0 - log( tan(lat * pi/180.0) + 1.0 / cos(lat * pi/180.0)) / pi) / 2.0 * (2 ** fromInteger z::Long))
tilex2long x z = (fromInteger x::Long) / (2.0 ** fromInteger z::Long) * 360.0 - 180
tiley2lat y z = 180.0 / pi * atan(0.5 * (exp n - exp(-n)))
where
n = pi - 2.0 * pi * (fromInteger y::Long) / (2.0 ** fromInteger z::Long)