]> git.street.me.uk Git - andy/viking.git/blob - src/osm.c
Remove as OSRM routing option as it no longer supports GPX output.
[andy/viking.git] / src / osm.c
1 /*
2  * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
3  *
4  * Copyright (C) 2003-2005, Evan Battaglia <gtoevan@gmx.net>
5  * Copyright (C) 2007,2013, Guilhem Bonnefille <guilhem.bonnefille@gmail.com>
6  * Copyright (c) 2012-2014, Rob Norris <rw_norris@hotmail.com>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  *
22  */
23 #ifdef HAVE_CONFIG_H
24 #include "config.h"
25 #endif
26
27 #include <glib/gi18n.h>
28
29 #include "osm.h"
30 #include "map_ids.h"
31 #include "vikmapslayer.h"
32 #include "vikslippymapsource.h"
33 #include "vikwmscmapsource.h"
34 #include "vikwebtoolcenter.h"
35 #include "vikwebtoolbounds.h"
36 #include "vikwebtoolformat.h"
37 #include "vikwebtool_datasource.h"
38 #include "vikexttools.h"
39 #include "vikexttool_datasources.h"
40 #include "vikgotoxmltool.h"
41 #include "vikgoto.h"
42 #include "vikrouting.h"
43 #include "vikroutingwebengine.h"
44
45 /* initialisation */
46 void osm_init () {
47   VikMapSource *mapnik_type =
48     VIK_MAP_SOURCE(g_object_new(VIK_TYPE_SLIPPY_MAP_SOURCE,
49                                 "id", MAP_ID_OSM_MAPNIK,
50                                 "label", "OpenStreetMap (Mapnik)",
51                                 "name", "OSM-Mapnik",
52                                 "hostname", "tile.openstreetmap.org",
53                                 "url", "/%d/%d/%d.png",
54                                 "check-file-server-time", FALSE,
55                                 "use-etag", TRUE,
56                                 "zoom-min", 0,
57                                 "zoom-max", 19,
58                                 "copyright", "© OpenStreetMap contributors",
59                                 "license", "CC-BY-SA",
60                                 "license-url", "http://www.openstreetmap.org/copyright",
61                                 NULL));
62   VikMapSource *cycle_type =
63     VIK_MAP_SOURCE(g_object_new(VIK_TYPE_SLIPPY_MAP_SOURCE,
64                                 "id", MAP_ID_OSM_CYCLE,
65                                 "label", "OpenStreetMap (Cycle)",
66                                 "name", "OSM-Cycle",
67                                 "hostname", "tile.opencyclemap.org",
68                                 "url", "/cycle/%d/%d/%d.png",
69                                 "check-file-server-time", TRUE,
70                                 "use-etag", FALSE,
71                                 "zoom-min", 0,
72                                 "zoom-max", 18,
73                                 "copyright", "Tiles courtesy of Andy Allan © OpenStreetMap contributors",
74                                 "license", "CC-BY-SA",
75                                 "license-url", "http://www.openstreetmap.org/copyright",
76                                 NULL));
77   VikMapSource *transport_type =
78     VIK_MAP_SOURCE(g_object_new(VIK_TYPE_SLIPPY_MAP_SOURCE,
79                                 "id", MAP_ID_OSM_TRANSPORT,
80                                 "label", "OpenStreetMap (Transport)",
81                                 "name", "OSM-Transport",
82                                 "hostname", "tile2.opencyclemap.org",
83                                 "url", "/transport/%d/%d/%d.png",
84                                 "check-file-server-time", TRUE,
85                                 "use-etag", FALSE,
86                                 "zoom-min", 0,
87                                 "zoom-max", 18,
88                                 "copyright", "Tiles courtesy of Andy Allan © OpenStreetMap contributors",
89                                 "license", "CC-BY-SA",
90                                 "license-url", "http://www.openstreetmap.org/copyright",
91                                 NULL));
92   VikMapSource *hot_type =
93     VIK_MAP_SOURCE(g_object_new(VIK_TYPE_SLIPPY_MAP_SOURCE,
94                                 "id", MAP_ID_OSM_HUMANITARIAN,
95                                 "name", "OSM-Humanitarian",
96                                 "label", "OpenStreetMap (Humanitarian)",
97                                 "hostname", "c.tile.openstreetmap.fr",
98                                 "url", "/hot/%d/%d/%d.png",
99                                 "check-file-server-time", TRUE,
100                                 "use-etag", FALSE,
101                                 "zoom-min", 0,
102                                 "zoom-max", 20, // Super detail!!
103                                 "copyright", "© OpenStreetMap contributors. Tiles courtesy of Humanitarian OpenStreetMap Team",
104                                 "license", "CC-BY-SA",
105                                 "license-url", "http://www.openstreetmap.org/copyright",
106                                 NULL));
107
108   // NB no cache needed for this type!!
109   VikMapSource *direct_type =
110     VIK_MAP_SOURCE(g_object_new(VIK_TYPE_SLIPPY_MAP_SOURCE,
111                                 "id", MAP_ID_OSM_ON_DISK,
112                                 "label", _("On Disk OSM Tile Format"),
113                                 // For using your own generated data assumed you know the license already!
114                                 "copyright", "© OpenStreetMap contributors", // probably
115                                 "use-direct-file-access", TRUE,
116                                 NULL));
117
118   // NB no cache needed for this type!!
119   VikMapSource *mbtiles_type =
120     VIK_MAP_SOURCE(g_object_new(VIK_TYPE_SLIPPY_MAP_SOURCE,
121                                 "id", MAP_ID_MBTILES,
122                                 "label", _("MBTiles File"),
123                                 // For using your own generated data assumed you know the license already!
124                                 "copyright", "© OpenStreetMap contributors", // probably
125                                 "use-direct-file-access", TRUE,
126                                 "is-mbtiles", TRUE,
127                                 NULL));
128
129   // NB no cache needed for this type!!
130   VikMapSource *metatiles_type =
131     VIK_MAP_SOURCE(g_object_new(VIK_TYPE_SLIPPY_MAP_SOURCE,
132                                 "id", MAP_ID_OSM_METATILES,
133                                 "label", _("OSM Metatiles"),
134                                 // For using your own generated data assumed you know the license already!
135                                 "copyright", "© OpenStreetMap contributors", // probably
136                                 "use-direct-file-access", TRUE,
137                                 "is-osm-meta-tiles", TRUE,
138                                 NULL));
139
140   // Note using a single global Viking registered key for the Mapbox Tileservice
141   //  which is not secret since it's right here!
142   // Thus not only will the (free) service allocation limit be reached by normal users
143   //  but by anymore who cares to read this source and use it themselves.
144   VikMapSource *mapbox_type =
145     VIK_MAP_SOURCE(g_object_new(VIK_TYPE_SLIPPY_MAP_SOURCE,
146                                 "id", MAP_ID_MAPBOX_OUTDOORS,
147                                 "name", "Mapbox-Outdoors",
148                                 "label", "Mapbox Outdoors",
149                                 "url", "https://api.tiles.mapbox.com/styles/v1/mapbox/outdoors-v9/tiles/256/%d/%d/%d?access_token=pk.eyJ1Ijoicndub3JyaXMiLCJhIjoiY2lxc294anN2MDA5bWhzbWFseWsxMW1ydiJ9.HcybKtZsiG6RVuOHg481Kg",
150                                 "check-file-server-time", TRUE,
151                                 "use-etag", FALSE,
152                                 "zoom-min", 0,
153                                 "zoom-max", 19,
154                                 "copyright", "© Mapbox © OpenStreetMap",
155                                 "license", "Mapbox Specific",
156                                 "license-url", "https://www.mapbox.com/tos",
157                                 NULL));
158
159   // NB The first registered map source is the default
160   //  (unless the user has specified Map Layer defaults)
161   maps_layer_register_map_source (mapbox_type);
162   maps_layer_register_map_source (mapnik_type);
163   maps_layer_register_map_source (cycle_type);
164   maps_layer_register_map_source (transport_type);
165   maps_layer_register_map_source (hot_type);
166   maps_layer_register_map_source (direct_type);
167   maps_layer_register_map_source (mbtiles_type);
168   maps_layer_register_map_source (metatiles_type);
169
170   // Webtools
171   VikWebtoolCenter *webtool = NULL;
172   webtool = vik_webtool_center_new_with_members ( _("OSM (view)"), "http://www.openstreetmap.org/?lat=%s&lon=%s&zoom=%d" );
173   vik_ext_tools_register ( VIK_EXT_TOOL ( webtool ) );
174   g_object_unref ( webtool );
175
176   webtool = vik_webtool_center_new_with_members ( _("OSM (edit)"), "http://www.openstreetmap.org/edit?lat=%s&lon=%s&zoom=%d" );
177   vik_ext_tools_register ( VIK_EXT_TOOL ( webtool ) );
178   g_object_unref ( webtool );
179
180   // Note the use of positional parameters
181   webtool = vik_webtool_center_new_with_members ( _("OSM (query)"), "http://www.openstreetmap.org/query?lat=%1$s&lon=%2$s#map=%3$d/%1$s/%2$s" );
182   vik_ext_tools_register ( VIK_EXT_TOOL ( webtool ) );
183   g_object_unref ( webtool );
184
185   webtool = vik_webtool_center_new_with_members ( _("OSM (render)"), "http://www.informationfreeway.org/?lat=%s&lon=%s&zoom=%d&layers=B0000F000F" );
186   vik_ext_tools_register ( VIK_EXT_TOOL ( webtool ) );
187   g_object_unref ( webtool );
188
189   VikWebtoolBounds *webtoolbounds = NULL;
190   // Example: http://127.0.0.1:8111/load_and_zoom?left=8.19&right=8.20&top=48.605&bottom=48.590&select=node413602999
191   // JOSM or merkaartor must already be running with remote interface enabled
192   webtoolbounds = vik_webtool_bounds_new_with_members ( _("Local port 8111 (eg JOSM)"), "http://localhost:8111/load_and_zoom?left=%s&right=%s&bottom=%s&top=%s" );
193   vik_ext_tools_register ( VIK_EXT_TOOL ( webtoolbounds ) );
194   g_object_unref ( webtoolbounds );
195
196   VikWebtoolFormat *vwtf = NULL;
197   vwtf = vik_webtool_format_new_with_members ( _("Geofabrik Map Compare"),
198                                                "http://tools.geofabrik.de/mc/#%s/%s/%s",
199                                                "ZAO" );
200   vik_ext_tools_register ( VIK_EXT_TOOL ( vwtf ) );
201   g_object_unref ( vwtf );
202
203   // Datasource
204   VikWebtoolDatasource *vwtds = NULL;
205   vwtds = vik_webtool_datasource_new_with_members ( _("OpenStreetMap Notes"), "http://api.openstreetmap.org/api/0.6/notes.gpx?bbox=%s,%s,%s,%s&amp;closed=0", "LBRT", NULL, NULL, NULL );
206   vik_ext_tool_datasources_register ( VIK_EXT_TOOL ( vwtds ) );
207   g_object_unref ( vwtds );
208
209   // Goto
210   VikGotoXmlTool *nominatim = VIK_GOTO_XML_TOOL ( g_object_new ( VIK_GOTO_XML_TOOL_TYPE, "label", "OSM Nominatim",
211     "url-format", "http://nominatim.openstreetmap.org/search?q=%s&format=xml",
212     "lat-path", "/searchresults/place",
213     "lat-attr", "lat",
214     "lon-path", "/searchresults/place",
215     "lon-attr", "lon",
216     NULL ) );
217     vik_goto_register ( VIK_GOTO_TOOL ( nominatim ) );
218     g_object_unref ( nominatim );
219
220   VikGotoXmlTool *namefinder = VIK_GOTO_XML_TOOL ( g_object_new ( VIK_GOTO_XML_TOOL_TYPE, "label", "OSM Name finder",
221     "url-format", "http://gazetteer.openstreetmap.org/namefinder/search.xml?find=%s&max=1",
222     "lat-path", "/searchresults/named",
223     "lat-attr", "lat",
224     "lon-path", "/searchresults/named",
225     "lon-attr", "lon",
226     NULL ) );
227     vik_goto_register ( VIK_GOTO_TOOL ( namefinder ) );
228     g_object_unref ( namefinder );
229
230   // Not really OSM but can't be bothered to create somewhere else to put it...
231   webtool = vik_webtool_center_new_with_members ( _("Wikimedia Toolserver GeoHack"), "http://tools.wmflabs.org/geohack/geohack.php?params=%s;%s" );
232   vik_ext_tools_register ( VIK_EXT_TOOL ( webtool ) );
233   g_object_unref ( webtool );
234 }
235