]> git.street.me.uk Git - andy/viking.git/blame - src/google.c
Now when we refresh tiles it will remove them from the memory cache like it was suppo...
[andy/viking.git] / src / google.c
CommitLineData
50a14534
EB
1/*
2 * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
3 *
4 * Copyright (C) 2003-2005, Evan Battaglia <gtoevan@gmx.net>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
21
22#include <gtk/gtk.h>
23#include <math.h>
24#include <string.h>
25#include "coords.h"
26#include "vikcoord.h"
27#include "mapcoord.h"
85611cd9 28#include "download.h"
50a14534
EB
29#include "globals.h"
30#include "google.h"
cdcaf41c
QT
31#include "vikmapslayer.h"
32
056e8bd1
QT
33#define GOOGLE_VERSION "w2.46"
34#define GOOGLE_TRANS_VERSION "w2t.47"
6aece9a8 35#define GOOGLE_KH_VERSION "17"
dad2c114 36
cdcaf41c
QT
37void google_init () {
38 VikMapsLayer_MapType google_1 = { 7, 256, 256, VIK_VIEWPORT_DRAWMODE_MERCATOR, google_coord_to_mapcoord, google_mapcoord_to_center_coord, google_download };
39 VikMapsLayer_MapType google_2 = { 10, 256, 256, VIK_VIEWPORT_DRAWMODE_MERCATOR, google_coord_to_mapcoord, google_mapcoord_to_center_coord, google_trans_download };
40 VikMapsLayer_MapType google_3 = { 11, 256, 256, VIK_VIEWPORT_DRAWMODE_MERCATOR, google_coord_to_mapcoord, google_mapcoord_to_center_coord, google_kh_download };
41
42 maps_layer_register_type("Google Maps", 7, &google_1);
43 maps_layer_register_type("Transparent Google Maps", 10, &google_2);
44 maps_layer_register_type("Google Satellite Images", 11, &google_3);
45}
50a14534
EB
46
47/* 1 << (x) is like a 2**(x) */
48#define GZ(x) ((1<<x))
49
50static const gdouble scale_mpps[] = { GZ(0), GZ(1), GZ(2), GZ(3), GZ(4), GZ(5), GZ(6), GZ(7), GZ(8), GZ(9),
51 GZ(10), GZ(11), GZ(12), GZ(13), GZ(14), GZ(15), GZ(16), GZ(17) };
52
53static const gint num_scales = (sizeof(scale_mpps) / sizeof(scale_mpps[0]));
54
55#define ERROR_MARGIN 0.01
56guint8 google_zoom ( gdouble mpp ) {
57 gint i;
58 for ( i = 0; i < num_scales; i++ ) {
59 if ( ABS(scale_mpps[i] - mpp) < ERROR_MARGIN )
60 return i;
61 }
62 return 255;
63}
64
65gboolean google_coord_to_mapcoord ( const VikCoord *src, gdouble xzoom, gdouble yzoom, MapCoord *dest )
66{
67 g_assert ( src->mode == VIK_COORD_LATLON );
68
69 if ( xzoom != yzoom )
70 return FALSE;
71
72 dest->scale = google_zoom ( xzoom );
73 if ( dest->scale == 255 )
74 return FALSE;
75
76 dest->x = (src->east_west + 180) / 360 * GZ(17) / xzoom;
77 dest->y = (180 - MERCLAT(src->north_south)) / 360 * GZ(17) / xzoom;
78 dest->z = 0;
79
80 return TRUE;
81}
82
83void google_mapcoord_to_center_coord ( MapCoord *src, VikCoord *dest )
84{
85 gdouble socalled_mpp = GZ(src->scale);
86 dest->mode = VIK_COORD_LATLON;
87 dest->east_west = ((src->x+0.5) / GZ(17) * socalled_mpp * 360) - 180;
88 dest->north_south = DEMERCLAT(180 - ((src->y+0.5) / GZ(17) * socalled_mpp * 360));
89}
90
91static void real_google_download ( MapCoord *src, const gchar *dest_fn, const char *verstr )
92{
93 gchar *uri = g_strdup_printf ( "/mt?v=%s&x=%d&y=%d&zoom=%d", verstr, src->x, src->y, src->scale );
94 a_http_download_get_url ( "mt.google.com", uri, dest_fn );
95 g_free ( uri );
96}
97
98void google_download ( MapCoord *src, const gchar *dest_fn )
99{
dad2c114 100 real_google_download ( src, dest_fn, GOOGLE_VERSION );
50a14534
EB
101}
102
103void google_trans_download ( MapCoord *src, const gchar *dest_fn )
104{
dad2c114 105 real_google_download ( src, dest_fn, GOOGLE_TRANS_VERSION );
50a14534
EB
106}
107
108static char *kh_encode(guint32 x, guint32 y, guint8 scale)
109{
110 gchar *buf = g_malloc ( (20-scale)*sizeof(gchar) );
111 guint32 ya = 1 << (17 - scale);
112 gint8 i, j;
113
114 if (y < 0 || (ya-1 < y)) {
115 strcpy(buf,"tqq"); /* BAD */
116 return buf;
117 }
118 if (x < 0 || ya-1 < x) {
119 x %= ya;
120 if (x < 0)
121 x += ya;
122 }
123
124 buf[0] = 't';
125 for (j = 1, i = 16; i >= scale; i--, j++) {
126 ya /= 2;
127 if (y < ya) {
128 if (x < ya)
129 buf[j]='q';
130 else {
131 buf[j]='r';
132 x -= ya;
133 }
134 } else {
135 if (x < ya) {
136 buf[j] = 't';
137 y -= ya;
138 } else {
139 buf[j] = 's';
140 x -= ya;
141 y -= ya;
142 }
143 }
144 }
145 buf[j] = '\0';
146 return buf;
147}
148
149void google_kh_download ( MapCoord *src, const gchar *dest_fn )
150{
151 gchar *khenc = kh_encode( src->x, src->y, src->scale );
dad2c114 152 gchar *uri = g_strdup_printf ( "/kh?v=%s&t=%s", GOOGLE_KH_VERSION, khenc );
50a14534
EB
153 g_free ( khenc );
154 a_http_download_get_url ( "kh.google.com", uri, dest_fn );
155 g_free ( uri );
156}