]> git.street.me.uk Git - andy/viking.git/blame_incremental - src/datasource_osm.c
Fix right click on a selected waypoint image starts to move it.
[andy/viking.git] / src / datasource_osm.c
... / ...
CommitLineData
1/*
2 * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
3 *
4 * Copyright (C) 2011, Guilhem Bonnefille <guilhem.bonnefille@gmail.com>
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#ifdef HAVE_CONFIG_H
22#include "config.h"
23#endif
24#include <string.h>
25
26#include <glib/gprintf.h>
27#include <glib/gi18n.h>
28
29#include "viking.h"
30#include "babel.h"
31#include "gpx.h"
32#include "acquire.h"
33
34/**
35 * See http://wiki.openstreetmap.org/wiki/API_v0.6#GPS_Traces
36 */
37#define DOWNLOAD_URL_FMT "api.openstreetmap.org/api/0.6/trackpoints?bbox=%s,%s,%s,%s&page=%d"
38
39typedef struct {
40 GtkWidget *page_number;
41 VikViewport *vvp;
42} datasource_osm_widgets_t;
43
44static gdouble last_page_number = 0;
45
46static gpointer datasource_osm_init ( acq_vik_t *avt );
47static void datasource_osm_add_setup_widgets ( GtkWidget *dialog, VikViewport *vvp, gpointer user_data );
48static void datasource_osm_get_cmd_string ( datasource_osm_widgets_t *widgets, gchar **cmd, gchar **input_file_type, DownloadMapOptions *options );
49static void datasource_osm_cleanup ( gpointer data );
50
51VikDataSourceInterface vik_datasource_osm_interface = {
52 N_("OSM traces"),
53 N_("OSM traces"),
54 VIK_DATASOURCE_ADDTOLAYER,
55 VIK_DATASOURCE_INPUTTYPE_NONE,
56 TRUE,
57 TRUE,
58 TRUE,
59 (VikDataSourceInitFunc) datasource_osm_init,
60 (VikDataSourceCheckExistenceFunc) NULL,
61 (VikDataSourceAddSetupWidgetsFunc) datasource_osm_add_setup_widgets,
62 (VikDataSourceGetCmdStringFunc) datasource_osm_get_cmd_string,
63 (VikDataSourceProcessFunc) a_babel_convert_from_url,
64 (VikDataSourceProgressFunc) NULL,
65 (VikDataSourceAddProgressWidgetsFunc) NULL,
66 (VikDataSourceCleanupFunc) datasource_osm_cleanup,
67 (VikDataSourceOffFunc) NULL,
68};
69
70static gpointer datasource_osm_init ( acq_vik_t *avt )
71{
72 datasource_osm_widgets_t *widgets = g_malloc(sizeof(*widgets));
73 /* Keep reference to viewport */
74 widgets->vvp = avt->vvp;
75 return widgets;
76}
77
78static void datasource_osm_add_setup_widgets ( GtkWidget *dialog, VikViewport *vvp, gpointer user_data )
79{
80 datasource_osm_widgets_t *widgets = (datasource_osm_widgets_t *)user_data;
81 GtkWidget *page_number_label;
82 page_number_label = gtk_label_new (_("Page number:"));
83 widgets->page_number = gtk_spin_button_new_with_range(0, 100, 1);
84 gtk_spin_button_set_value(GTK_SPIN_BUTTON(widgets->page_number), last_page_number);
85
86 /* Packing all widgets */
87 GtkBox *box = GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dialog)));
88 gtk_box_pack_start ( box, page_number_label, FALSE, FALSE, 5 );
89 gtk_box_pack_start ( box, widgets->page_number, FALSE, FALSE, 5 );
90 gtk_widget_show_all(dialog);
91}
92
93static void datasource_osm_get_cmd_string ( datasource_osm_widgets_t *widgets, gchar **cmd, gchar **input_file_type, DownloadMapOptions *options )
94{
95 int page = 0;
96 gdouble min_lat, max_lat, min_lon, max_lon;
97 gchar sminlon[G_ASCII_DTOSTR_BUF_SIZE];
98 gchar smaxlon[G_ASCII_DTOSTR_BUF_SIZE];
99 gchar sminlat[G_ASCII_DTOSTR_BUF_SIZE];
100 gchar smaxlat[G_ASCII_DTOSTR_BUF_SIZE];
101
102 /* get Viewport bounding box */
103 vik_viewport_get_min_max_lat_lon ( widgets->vvp, &min_lat, &max_lat, &min_lon, &max_lon );
104
105 /* Convert as LANG=C double representation */
106 g_ascii_dtostr (sminlon, G_ASCII_DTOSTR_BUF_SIZE, min_lon);
107 g_ascii_dtostr (smaxlon, G_ASCII_DTOSTR_BUF_SIZE, max_lon);
108 g_ascii_dtostr (sminlat, G_ASCII_DTOSTR_BUF_SIZE, min_lat);
109 g_ascii_dtostr (smaxlat, G_ASCII_DTOSTR_BUF_SIZE, max_lat);
110
111 /* Retrieve the specified page number */
112 last_page_number = gtk_spin_button_get_value(GTK_SPIN_BUTTON(widgets->page_number));
113 page = last_page_number;
114
115 *cmd = g_strdup_printf( DOWNLOAD_URL_FMT, sminlon, sminlat, smaxlon, smaxlat, page );
116 *input_file_type = NULL;
117 options = NULL;
118}
119
120static void datasource_osm_cleanup ( gpointer data )
121{
122 g_free ( data );
123}
124