]> git.street.me.uk Git - andy/viking.git/blob - src/datasource_osm.c
Improve ordering of date/time output on time graphs.
[andy/viking.git] / src / datasource_osm.c
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
39 typedef struct {
40   GtkWidget *page_number;
41   VikViewport *vvp;
42 } datasource_osm_widgets_t;
43
44 static gdouble last_page_number = 0;
45
46 static gpointer datasource_osm_init ( acq_vik_t *avt );
47 static void datasource_osm_add_setup_widgets ( GtkWidget *dialog, VikViewport *vvp, gpointer user_data );
48 static void datasource_osm_get_cmd_string ( datasource_osm_widgets_t *widgets, gchar **cmd, gchar **input_file_type, DownloadMapOptions *options );
49 static void datasource_osm_cleanup ( gpointer data );
50
51 VikDataSourceInterface vik_datasource_osm_interface = {
52   N_("OSM traces"),
53   N_("OSM traces"),
54   VIK_DATASOURCE_AUTO_LAYER_MANAGEMENT,
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   NULL,
70   0,
71   NULL,
72   NULL,
73   0
74 };
75
76 static gpointer datasource_osm_init ( acq_vik_t *avt )
77 {
78   datasource_osm_widgets_t *widgets = g_malloc(sizeof(*widgets));
79   /* Keep reference to viewport */
80   widgets->vvp = avt->vvp;
81   return widgets;
82 }
83
84 static void datasource_osm_add_setup_widgets ( GtkWidget *dialog, VikViewport *vvp, gpointer user_data )
85 {
86   datasource_osm_widgets_t *widgets = (datasource_osm_widgets_t *)user_data;
87   GtkWidget *page_number_label;
88   page_number_label = gtk_label_new (_("Page number:"));
89   widgets->page_number = gtk_spin_button_new_with_range(0, 100, 1);
90   gtk_spin_button_set_value(GTK_SPIN_BUTTON(widgets->page_number), last_page_number);
91   
92   /* Packing all widgets */
93   GtkBox *box = GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dialog)));
94   gtk_box_pack_start ( box, page_number_label, FALSE, FALSE, 5 );
95   gtk_box_pack_start ( box, widgets->page_number, FALSE, FALSE, 5 );
96   gtk_widget_show_all(dialog);
97 }
98
99 static void datasource_osm_get_cmd_string ( datasource_osm_widgets_t *widgets, gchar **cmd, gchar **input_file_type, DownloadMapOptions *options )
100 {
101   int page = 0;
102   gdouble min_lat, max_lat, min_lon, max_lon;
103   gchar sminlon[G_ASCII_DTOSTR_BUF_SIZE];
104   gchar smaxlon[G_ASCII_DTOSTR_BUF_SIZE];
105   gchar sminlat[G_ASCII_DTOSTR_BUF_SIZE];
106   gchar smaxlat[G_ASCII_DTOSTR_BUF_SIZE];
107
108   /* get Viewport bounding box */
109   vik_viewport_get_min_max_lat_lon ( widgets->vvp, &min_lat, &max_lat, &min_lon, &max_lon );
110
111   /* Convert as LANG=C double representation */
112   g_ascii_dtostr (sminlon, G_ASCII_DTOSTR_BUF_SIZE, min_lon);
113   g_ascii_dtostr (smaxlon, G_ASCII_DTOSTR_BUF_SIZE, max_lon);
114   g_ascii_dtostr (sminlat, G_ASCII_DTOSTR_BUF_SIZE, min_lat);
115   g_ascii_dtostr (smaxlat, G_ASCII_DTOSTR_BUF_SIZE, max_lat);
116
117   /* Retrieve the specified page number */
118   last_page_number = gtk_spin_button_get_value(GTK_SPIN_BUTTON(widgets->page_number));
119   page = last_page_number;
120
121   *cmd = g_strdup_printf( DOWNLOAD_URL_FMT, sminlon, sminlat, smaxlon, smaxlat, page );
122   *input_file_type = NULL;
123   options = NULL;
124 }
125
126 static void datasource_osm_cleanup ( gpointer data )
127 {
128   g_free ( data );
129 }
130