From 97951bd5b3113a14fa32da843878294b303369bb Mon Sep 17 00:00:00 2001 From: "jk7744.park" Date: Sun, 1 Feb 2015 13:42:26 +0900 Subject: [PATCH] tizen 2.3 release --- AUTHORS | 2 +- Makefile.am | 3 +- configure.ac | 13 +- {replay-plugin => gps-plugin}/Makefile.am | 12 +- gps-plugin/include/gps_plugin_debug.h | 53 + .../include/nmea_parser.h | 2 +- {replay-plugin => gps-plugin}/include/setting.h | 18 +- .../src/gps_plugin_replay.c | 281 +- {replay-plugin => gps-plugin}/src/nmea_parser.c | 78 +- {replay-plugin => gps-plugin}/src/setting.c | 2 +- libslp-lbs-plugin-replay.manifest | 8 - libslp-lbsplugin-replay.manifest | 8 + libslp-xpsplugin-replay.manifest | 5 + nmea-log/nmea_replay.log | 4327 +------------------- ...in-replay.spec => libslp-lbsplugin-replay.spec} | 30 +- xps-plugin/Makefile.am | 15 + .../include/geoclue_plugin_debug.h | 16 +- xps-plugin/src/geoclue_xps_plugin_replay.c | 271 ++ xps-plugin/src/geoclue_xps_plugin_test.c | 271 ++ 19 files changed, 1128 insertions(+), 4287 deletions(-) rename {replay-plugin => gps-plugin}/Makefile.am (70%) create mode 100644 gps-plugin/include/gps_plugin_debug.h rename {replay-plugin => gps-plugin}/include/nmea_parser.h (95%) rename {replay-plugin => gps-plugin}/include/setting.h (81%) rename {replay-plugin => gps-plugin}/src/gps_plugin_replay.c (65%) rename {replay-plugin => gps-plugin}/src/nmea_parser.c (84%) rename {replay-plugin => gps-plugin}/src/setting.c (97%) delete mode 100644 libslp-lbs-plugin-replay.manifest create mode 100644 libslp-lbsplugin-replay.manifest create mode 100644 libslp-xpsplugin-replay.manifest rename packaging/{libslp-lbs-plugin-replay.spec => libslp-lbsplugin-replay.spec} (51%) create mode 100755 xps-plugin/Makefile.am rename replay-plugin/include/gps_plugin_debug.h => xps-plugin/include/geoclue_plugin_debug.h (73%) mode change 100644 => 100755 create mode 100755 xps-plugin/src/geoclue_xps_plugin_replay.c create mode 100755 xps-plugin/src/geoclue_xps_plugin_test.c diff --git a/AUTHORS b/AUTHORS index cc7be1c..a879250 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,3 +1,3 @@ Youngae Kang -Yunhan Kim +Minjune Kim Genie Kim diff --git a/Makefile.am b/Makefile.am index 67c6e73..9ca34b2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,3 +1,4 @@ ACLOCAL_AMFLAGS = -I m4 -SUBDIRS = . replay-plugin +SUBDIRS = . gps-plugin +#SUBDIRS = . gps-plugin xps-plugin diff --git a/configure.ac b/configure.ac index e6605ad..a1a4864 100644 --- a/configure.ac +++ b/configure.ac @@ -5,6 +5,7 @@ AC_PREREQ(2.61) AC_INIT([libslp-lbs-plugin-replay], [0.1], [daejins.kim@samsung.com]) AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([foreign -Wall -Werror]) +AC_CONFIG_HEADER([config.h]) AC_CONFIG_MACRO_DIR([m4]) ###### Checks for programs. @@ -19,10 +20,18 @@ AC_PROG_LN_S AC_PROG_RANLIB ###### Checks for libraries. -PKG_CHECK_MODULES(GPS_MANAGER_PLUGIN, gps-manager-plugin) +PKG_CHECK_MODULES(DEVICED, deviced) +AC_SUBST(DEVICED_CFLAGS) +AC_SUBST(DEVICED_LIBS) + +PKG_CHECK_MODULES(GPS_MANAGER_PLUGIN, lbs-server-plugin) AC_SUBST(GPS_MANAGER_PLUGIN_CFLAGS) AC_SUBST(GPS_MANAGER_PLUGIN_LIBS) +#PKG_CHECK_MODULES(GEOCLUE_XPS_PLUGIN, geoclue-xps-plugin) +#AC_SUBST(GEOCLUE_XPS_PLUGIN_CFLAGS) +#AC_SUBST(GEOCLUE_XPS_PLUGIN_LIBS) + PKG_CHECK_MODULES(VCONF, vconf) AC_SUBST(VCONF_CFLAGS) AC_SUBST(VCONF_LIBS) @@ -34,7 +43,7 @@ AC_SUBST(DLOG_LIBS) ####### Config files AC_CONFIG_FILES([ Makefile - replay-plugin/Makefile + gps-plugin/Makefile ]) AC_OUTPUT diff --git a/replay-plugin/Makefile.am b/gps-plugin/Makefile.am similarity index 70% rename from replay-plugin/Makefile.am rename to gps-plugin/Makefile.am index 4a699dd..239a0c5 100644 --- a/replay-plugin/Makefile.am +++ b/gps-plugin/Makefile.am @@ -3,15 +3,17 @@ lib_LTLIBRARIES = libSLP-lbs-plugin-replay.la libSLP_lbs_plugin_replay_la_SOURCES = \ $(srcdir)/src/nmea_parser.c \ - $(srcdir)/src/gps_plugin_replay.c \ - $(srcdir)/src/setting.c + $(srcdir)/src/gps_plugin_replay.c \ + $(srcdir)/src/setting.c libSLP_lbs_plugin_replay_la_CFLAGS = -Wall -fPIC -fvisibility=hidden -DEXPORT_API="__attribute__((visibility(\"default\")))" \ - -I$(srcdir)/include \ + -I$(srcdir)/include \ $(GPS_MANAGER_PLUGIN_CFLAGS) \ $(VCONF_CFLAGS) \ - $(DLOG_CFLAGS) + $(DLOG_CFLAGS) \ + $(DEVICED_CFLAGS) libSLP_lbs_plugin_replay_la_LDFLAGS = -Wl,--hash-style=both -Wl,--as-needed \ $(VCONF_LIBS) \ - $(DLOG_LIBS) + $(DLOG_LIBS) \ + $(DEVICED_LIBS) diff --git a/gps-plugin/include/gps_plugin_debug.h b/gps-plugin/include/gps_plugin_debug.h new file mode 100644 index 0000000..bdc75ee --- /dev/null +++ b/gps-plugin/include/gps_plugin_debug.h @@ -0,0 +1,53 @@ +/* + * gps-manager replay plugin + * + * Copyright (c) 2011-2013 Samsung Electronics Co., Ltd. All rights reserved. + * + * Contact: Youngae Kang , Minjune Kim + * Genie Kim + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef __GPS_PLUGIN_DEBUG_H__ +#define __GPS_PLUGIN_DEBUG_H__ + +#ifdef __cplusplus +extern "C" { +#endif + +#define GPS_DLOG +#define GPS_DLOG_DEBUG // filename and line number will be shown + +#ifdef GPS_DLOG +#include +#define TAG_GPS_PLUGIN "gps-plugin" + +#define DBG_LOW LOG_DEBUG +#define DBG_INFO LOG_INFO +#define DBG_WARN LOG_WARN +#define DBG_ERR LOG_ERROR + +#ifdef GPS_DLOG_DEBUG // Debug mode +#define LOG_PLUGIN(dbg_lvl,fmt,args...) SLOG(dbg_lvl, TAG_GPS_PLUGIN, "[%-40s: %-4d] "fmt, __FILE__, __LINE__, ##args) +#define SECLOG_PLUGIN(dbg_lvl,fmt,args...) SECURE_SLOG(dbg_lvl, TAG_GPS_PLUGIN, "[%-40s: %-4d] "fmt, __FILE__, __LINE__, ##args) +#else // Release(commercial) mode +#define LOG_PLUGIN(dbg_lvl,fmt,args...) SLOG(dbg_lvl, TAG_GPS_PLUGIN, fmt, ##args) +#define SECLOG_PLUGIN(dbg_lvl,fmt,args...) SECURE_SLOG(dbg_lvl, TAG_GPS_PLUGIN, fmt, ##args) +#endif +#endif + +#ifdef __cplusplus +} +#endif +#endif diff --git a/replay-plugin/include/nmea_parser.h b/gps-plugin/include/nmea_parser.h similarity index 95% rename from replay-plugin/include/nmea_parser.h rename to gps-plugin/include/nmea_parser.h index 1726036..4e3e941 100644 --- a/replay-plugin/include/nmea_parser.h +++ b/gps-plugin/include/nmea_parser.h @@ -4,7 +4,7 @@ * Copyright (c) 2011-2013 Samsung Electronics Co., Ltd. All rights reserved. * * Contact: Youngae Kang , Minjune Kim - * Genie Kim + * Genie Kim * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/replay-plugin/include/setting.h b/gps-plugin/include/setting.h similarity index 81% rename from replay-plugin/include/setting.h rename to gps-plugin/include/setting.h index ba04ff5..b320d8f 100644 --- a/replay-plugin/include/setting.h +++ b/gps-plugin/include/setting.h @@ -4,7 +4,7 @@ * Copyright (c) 2011-2013 Samsung Electronics Co., Ltd. All rights reserved. * * Contact: Youngae Kang , Minjune Kim - * Genie Kim + * Genie Kim * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -25,8 +25,8 @@ #include #include -#define NMEA_FILE_PATH "/opt/media/gps-manager/replay/" -#define DEFAULT_NMEA_LOG "/etc/gps-manager/replay/nmea_replay.log" +#define NMEA_FILE_PATH "/opt/usr/media/lbs-server/replay/" +#define DEFAULT_NMEA_LOG "/etc/lbs-server/replay/nmea_replay.log" typedef enum { REPLAY_OFF = 0, @@ -36,9 +36,15 @@ typedef enum { } replay_mode_t; typedef enum { - READ_ERROR = -1, - READ_SUCCESS = 0, - READ_NOT_FIXED = 1, + BATCH_MODE_OFF = 0, + BATCH_MODE_ON, + BATCH_MODE_EXPIRED +} batch_mode_t; + +typedef enum { + READ_ERROR = -1, + READ_SUCCESS = 0, + READ_NOT_FIXED = 1, } read_error_t; int setting_get_int(const char *path, int *val); diff --git a/replay-plugin/src/gps_plugin_replay.c b/gps-plugin/src/gps_plugin_replay.c similarity index 65% rename from replay-plugin/src/gps_plugin_replay.c rename to gps-plugin/src/gps_plugin_replay.c index cc508a5..7b5ddc4 100644 --- a/replay-plugin/src/gps_plugin_replay.c +++ b/gps-plugin/src/gps_plugin_replay.c @@ -1,10 +1,10 @@ /* - * gps-manager replay plugin + * gps replay plugin * * Copyright (c) 2011-2013 Samsung Electronics Co., Ltd. All rights reserved. * * Contact: Youngae Kang , Minjune Kim - * Genie Kim + * Genie Kim * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -24,9 +24,12 @@ #include #include #include +#include #include +#include -#include +#include +#include #include "gps_plugin_debug.h" #include "nmea_parser.h" @@ -35,14 +38,25 @@ #define REPLAY_NMEA_SET_SIZE 4096 #define REPLAY_NMEA_SENTENCE_SIZE 128 +#define LBS_SERVER_FOLDER "/opt/usr/media/lbs-server" +#define BATCH_LOG "/opt/usr/media/lbs-server/location_batch.log" + gps_event_cb g_gps_event_cb = NULL; +void *g_user_data = NULL; typedef struct { FILE *fd; + FILE *batch_fd; int interval; int replay_mode; + int batch_mode; + int batch_period; + int num_of_batch; + time_t batch_start_time; + pos_data_t *pos_data; + batch_data_t *batch_data; sv_data_t *sv_data; nmea_data_t *nmea_data; @@ -52,16 +66,10 @@ typedef struct { replay_timeout *g_replay_timer = NULL; -int gps_plugin_replay_gps_init(gps_event_cb gps_event_cb, gps_server_param_t * gps_params); +int gps_plugin_replay_gps_init(gps_event_cb gps_event_cb, void *user_data); int gps_plugin_replay_gps_deinit(gps_failure_reason_t * reason_code); -int gps_plugin_replay_gps_request(gps_action_t gps_action, void *data, gps_failure_reason_t * reason_code); - -/* -This is the interface that will be given to the gps-manager to call the API's of this plug-in module. -Init is called immediately after loading the plugin. -Deinit is called during the shut-down. -Request is called with specific parameter for the required operations. -*/ +int gps_plugin_replay_gps_request(gps_action_t gps_action, void *gps_action_data, gps_failure_reason_t * reason_code); + static const gps_plugin_interface g_gps_plugin_replay_interface = { gps_plugin_replay_gps_init, gps_plugin_replay_gps_deinit, @@ -96,7 +104,64 @@ void gps_plugin_replay_pos_event(pos_data_t * data) //LOG_PLUGIN(DBG_LOW, "%d", gps_event.event_data.pos_ind.pos.timestamp); if (g_gps_event_cb != NULL) { - g_gps_event_cb(&gps_event); + g_gps_event_cb(&gps_event, g_user_data); + } +} + +void gps_plugin_replay_batch_event(pos_data_t * data, replay_timeout * timer) +{ + time_t timestamp; + time(×tamp); + + if (timer->batch_fd == NULL) { + if (timer->batch_mode == BATCH_MODE_ON) { + LOG_PLUGIN(DBG_ERR, "Fail to open file [Not available batch_fd]"); + return ; + } + } + + if (data != NULL) { + if (timer->batch_mode == BATCH_MODE_ON) { + int ret = -1; + char buf[256] = {0, }; + + sprintf(buf, "%ld;%.6lf;%.6lf;%.2lf;%.2lf;%.2lf;%.2lf;%.2lf;\n", timestamp, data->latitude, data->longitude, data->altitude, data->speed, data->bearing, data->hor_accuracy, data->ver_accuracy); + LOG_PLUGIN(DBG_LOW, "Add location info to batch file [%s]", buf); + + ret = fwrite(buf, 1, strlen(buf), timer->batch_fd); + if (ret != strlen(buf)) { + LOG_PLUGIN(DBG_ERR, "Fail to write file[%s]", BATCH_LOG); + } + + (timer->num_of_batch)++ ; + } + } + + if ( ((timestamp - timer->batch_start_time) >= timer->batch_period) || (timer->batch_mode == BATCH_MODE_EXPIRED) ) { + LOG_PLUGIN(DBG_LOW, "Batch invoked, Batch interval is expired or Batch stopped"); + gps_event_info_t gps_event; + memset(&gps_event, 0, sizeof(gps_event_info_t)); + + gps_event.event_id = GPS_EVENT_REPORT_BATCH; + timer->batch_mode = BATCH_MODE_OFF; + + if (timer->num_of_batch < 1) { + LOG_PLUGIN(DBG_ERR, "There is no Batch data"); + gps_event.event_data.batch_ind.error = GPS_ERR_COMMUNICATION; + } else { + gps_event.event_data.batch_ind.error = GPS_ERR_NONE; + gps_event.event_data.batch_ind.batch.num_of_location = timer->num_of_batch; + } + + if (g_gps_event_cb != NULL) { + g_gps_event_cb(&gps_event, g_user_data); + } + + if (timer->batch_fd != NULL) { + fclose(timer->batch_fd); + timer->batch_fd = NULL; + timer->num_of_batch = 0; + } } } @@ -128,7 +193,7 @@ void gps_plugin_replay_sv_event(sv_data_t * data) } if (g_gps_event_cb != NULL) { - g_gps_event_cb(&gps_event); + g_gps_event_cb(&gps_event, g_user_data); } } @@ -162,7 +227,7 @@ void gps_plugin_replay_nmea_event(nmea_data_t * data) } if (g_gps_event_cb != NULL) { - g_gps_event_cb(&gps_event); + g_gps_event_cb(&gps_event, g_user_data); } if (gps_event.event_data.nmea_ind.nmea.data != NULL) { @@ -183,7 +248,7 @@ void gps_plugin_respond_start_session(gboolean ret) } if (g_gps_event_cb != NULL) { - g_gps_event_cb(&gps_event); + g_gps_event_cb(&gps_event, g_user_data); } } @@ -195,7 +260,7 @@ void gps_plugin_respond_stop_session(void) gps_event.event_data.stop_session_rsp.error = GPS_ERR_NONE; if (g_gps_event_cb != NULL) { - g_gps_event_cb(&gps_event); + g_gps_event_cb(&gps_event, g_user_data); } } @@ -285,6 +350,7 @@ gboolean gps_plugin_replay_timeout_cb(gpointer data) } memset(timer->pos_data, 0, sizeof(pos_data_t)); + memset(timer->batch_data, 0, sizeof(batch_data_t)); memset(timer->sv_data, 0, sizeof(sv_data_t)); if (timer->replay_mode == REPLAY_NMEA) { @@ -295,7 +361,7 @@ gboolean gps_plugin_replay_timeout_cb(gpointer data) err = nmea_parser(nmea_data, timer->pos_data, timer->sv_data); if (err == READ_ERROR) { LOG_PLUGIN(DBG_ERR, "Fail to parser nmea data from file"); - return FALSE; + //return FALSE; } else if (err == READ_NOT_FIXED) { LOG_PLUGIN(DBG_LOW, "GPS position is not fixed"); timer->sv_data->pos_valid = FALSE; @@ -321,6 +387,64 @@ gboolean gps_plugin_replay_timeout_cb(gpointer data) gps_plugin_replay_pos_event(timer->pos_data); } gps_plugin_replay_sv_event(timer->sv_data); + + if (timer->batch_mode != BATCH_MODE_OFF){ + gps_plugin_replay_batch_event(timer->pos_data, timer); + } + } + ret = TRUE; + return ret; +} + +gboolean gps_plugin_batch_replay_timeout_cb(gpointer data) +{ + gboolean ret = FALSE; + read_error_t err = READ_SUCCESS; + char nmea_data[REPLAY_NMEA_SET_SIZE] = { 0, }; + replay_timeout *timer = (replay_timeout *) data; + + if (timer == NULL) { + LOG_PLUGIN(DBG_ERR, "replay handel[timer] is NULL"); + return FALSE; + } + + memset(timer->pos_data, 0, sizeof(pos_data_t)); + memset(timer->batch_data, 0, sizeof(batch_data_t)); + memset(timer->sv_data, 0, sizeof(sv_data_t)); + + if (timer->replay_mode == REPLAY_NMEA) { + if (gps_plugin_replay_read_nmea(timer, nmea_data) == FALSE) { + LOG_PLUGIN(DBG_ERR, "Fail to read nmea data from file"); + return FALSE; + } else { + err = nmea_parser(nmea_data, timer->pos_data, timer->sv_data); + if (err == READ_ERROR) { + LOG_PLUGIN(DBG_ERR, "Fail to parser nmea data from file"); + } else if (err == READ_NOT_FIXED) { + LOG_PLUGIN(DBG_LOW, "GPS position is not fixed"); + timer->sv_data->pos_valid = FALSE; + } + } + } else if (timer->replay_mode == REPLAY_MANUAL) { + if (gps_plugin_replay_read_manual(timer->pos_data) == FALSE) { + LOG_PLUGIN(DBG_ERR, "Fail to read manual data"); + err = READ_ERROR; + return FALSE; + } else { + timer->sv_data->pos_valid = TRUE; + err = READ_SUCCESS; + } + } else if (timer->replay_mode == REPLAY_OFF) { + LOG_PLUGIN(DBG_WARN, "replay_mode is OFF"); + err = READ_NOT_FIXED; + timer->sv_data->pos_valid = FALSE; + } + + if (g_gps_event_cb != NULL) { + + if (timer->batch_mode != BATCH_MODE_OFF){ + gps_plugin_replay_batch_event(timer->pos_data, timer); + } } ret = TRUE; return ret; @@ -339,7 +463,7 @@ void gps_plugin_stop_replay_mode(replay_timeout * timer) LOG_PLUGIN(DBG_LOW, "g_source_destroy timeout_src"); } else { LOG_PLUGIN(DBG_WARN, "timer->timeout_src is attatched to 0x%x (actual 0x%x)", - g_source_get_context(timer->timeout_src), timer->default_context); + g_source_get_context(timer->timeout_src), timer->default_context); } timer->timeout_src = NULL; timer->default_context = NULL; @@ -347,21 +471,30 @@ void gps_plugin_stop_replay_mode(replay_timeout * timer) LOG_PLUGIN(DBG_WARN, "timeout_src or default_context is NULL or timeout_src is already destroyed"); } gps_plugin_respond_stop_session(); + + display_unlock_state(LCD_OFF, PM_RESET_TIMER); + LOG_PLUGIN(DBG_LOW, "display_unlock_state(LCD_OFF, PM_RESET_TIMER);"); } gboolean gps_plugin_get_nmea_fd(replay_timeout * timer) { char replay_file_path[256]; + char *str; - snprintf(replay_file_path, sizeof(replay_file_path), NMEA_FILE_PATH"%s", setting_get_string(VCONFKEY_LOCATION_NMEA_FILE_NAME)); - LOG_PLUGIN(DBG_ERR, "replay file name : %s", replay_file_path); + str = setting_get_string(VCONFKEY_LOCATION_NMEA_FILE_NAME); + if (str == NULL) { + return FALSE; + } + snprintf(replay_file_path, sizeof(replay_file_path), NMEA_FILE_PATH"%s", str); + SECLOG_PLUGIN(DBG_ERR, "replay file name : %s", replay_file_path); + free(str); timer->fd = fopen(replay_file_path, "r"); if (timer->fd == NULL) { - LOG_PLUGIN(DBG_ERR, "fopen(%s) failed", replay_file_path); + SECLOG_PLUGIN(DBG_ERR, "fopen(%s) failed", replay_file_path); timer->fd = fopen(DEFAULT_NMEA_LOG, "r"); if (timer->fd == NULL) { - LOG_PLUGIN(DBG_ERR, "fopen(%s) failed", DEFAULT_NMEA_LOG); + SECLOG_PLUGIN(DBG_ERR, "fopen(%s) failed", DEFAULT_NMEA_LOG); return FALSE; } } @@ -394,7 +527,7 @@ gboolean gps_plugin_start_replay_mode(replay_timeout * timer) g_source_set_callback(timer->timeout_src, &gps_plugin_replay_timeout_cb, timer, NULL); if (g_source_attach(timer->timeout_src, timer->default_context) > 0) { LOG_PLUGIN(DBG_LOW, "timeout_src(0x%x) is created & attatched to 0x%x", timer->timeout_src, - timer->default_context); + timer->default_context); ret = TRUE; } else { gps_plugin_stop_replay_mode(timer); @@ -402,11 +535,80 @@ gboolean gps_plugin_start_replay_mode(replay_timeout * timer) } } } + + display_lock_state(LCD_OFF, STAY_CUR_STATE, 0); + LOG_PLUGIN(DBG_LOW, "display_lock_state(LCD_OFF, STAY_CUR_STATE, 0);"); + gps_plugin_respond_start_session(ret); return ret; } +gboolean gps_plugin_start_batch_mode(replay_timeout * timer, int batch_interval, int batch_period) +{ + gboolean ret = FALSE; + time_t timestamp; + time(×tamp); + + if (timer->replay_mode == REPLAY_NMEA) { + if (gps_plugin_get_nmea_fd(timer) == FALSE) { + return FALSE; + } + } + + if (timer->default_context == NULL) { + timer->default_context = g_main_context_default(); + if (timer->default_context == NULL) { + return ret; + } + } + + if (timer->timeout_src != NULL) { + LOG_PLUGIN(DBG_ERR, "timeout_src is already existed"); + ret = FALSE; + } else { + timer->timeout_src = g_timeout_source_new_seconds(batch_interval); + if (timer->timeout_src != NULL) { + g_source_set_callback(timer->timeout_src, &gps_plugin_batch_replay_timeout_cb, timer, NULL); + if (g_source_attach(timer->timeout_src, timer->default_context) > 0) { + LOG_PLUGIN(DBG_LOW, "timeout_src(0x%x) is created & attatched to 0x%x", timer->timeout_src, timer->default_context); + ret = TRUE; + } else { + gps_plugin_stop_replay_mode(timer); + ret = FALSE; + } + } + } + + gps_plugin_respond_start_session(ret); + + timer->batch_mode = BATCH_MODE_ON; + timer->batch_period = batch_period; + timer->batch_start_time = timestamp; + + struct stat st = {0}; + if (stat(LBS_SERVER_FOLDER, &st) == -1) { + if (mkdir(LBS_SERVER_FOLDER, 0777) == -1) { + LOG_PLUGIN(DBG_ERR, "Fail to create lbs-server folder"); + ret = FALSE; + } + } + + timer->batch_fd = fopen(BATCH_LOG, "w+"); + if (timer->batch_fd == NULL) { + LOG_PLUGIN(DBG_ERR, "Fail to file create for location batch mode"); + } + + return ret; +} + +void gps_plugin_stop_batch_mode(replay_timeout * timer) +{ + if (timer->batch_mode == BATCH_MODE_ON) { + timer->batch_mode = BATCH_MODE_EXPIRED; + } +} + static void replay_mode_changed_cb(keynode_t * key, void *data) { if (setting_get_int(VCONFKEY_LOCATION_REPLAY_MODE, &g_replay_timer->replay_mode) == FALSE) { @@ -438,6 +640,11 @@ replay_timeout *gps_plugin_replay_timer_init() timer->fd = NULL; timer->interval = 1; + + timer->batch_fd = NULL; + timer->num_of_batch = 0; + timer->batch_mode = BATCH_MODE_OFF; + if (setting_get_int(VCONFKEY_LOCATION_REPLAY_MODE, &timer->replay_mode) == FALSE) { timer->replay_mode = REPLAY_OFF; } @@ -450,10 +657,19 @@ replay_timeout *gps_plugin_replay_timer_init() return NULL; } + timer->batch_data = (batch_data_t *) malloc(sizeof(batch_data_t)); + if (timer->batch_data == NULL) { + LOG_PLUGIN(DBG_ERR, "batch_data allocation is failed."); + free(timer->pos_data); + free(timer); + return NULL; + } + timer->sv_data = (sv_data_t *) malloc(sizeof(sv_data_t)); if (timer->sv_data == NULL) { LOG_PLUGIN(DBG_ERR, "sv_data allocation is failed."); free(timer->pos_data); + free(timer->batch_data); free(timer); return NULL; } @@ -462,6 +678,7 @@ replay_timeout *gps_plugin_replay_timer_init() if (timer->nmea_data == NULL) { LOG_PLUGIN(DBG_ERR, "nmea_data allocation is failed."); free(timer->pos_data); + free(timer->batch_data); free(timer->sv_data); free(timer); return NULL; @@ -498,10 +715,11 @@ void gps_plugin_replay_timer_deinit(replay_timeout * timer) timer = NULL; } -int gps_plugin_replay_gps_init(gps_event_cb gps_event_cb, gps_server_param_t * gps_params) +int gps_plugin_replay_gps_init(gps_event_cb gps_event_cb, void *user_data) { g_gps_event_cb = gps_event_cb; g_replay_timer = gps_plugin_replay_timer_init(); + g_user_data = user_data; return TRUE; } @@ -509,12 +727,16 @@ int gps_plugin_replay_gps_init(gps_event_cb gps_event_cb, gps_server_param_t * g int gps_plugin_replay_gps_deinit(gps_failure_reason_t * reason_code) { gps_plugin_replay_timer_deinit(g_replay_timer); + g_gps_event_cb = NULL; + g_user_data = NULL; return TRUE; } -int gps_plugin_replay_gps_request(gps_action_t gps_action, void *data, gps_failure_reason_t * reason_code) +int gps_plugin_replay_gps_request(gps_action_t gps_action, void *gps_action_data, gps_failure_reason_t * reason_code) { + gps_action_start_data_t *gps_start_data = gps_action_data; + switch (gps_action) { case GPS_ACTION_SEND_PARAMS: break; @@ -524,6 +746,13 @@ int gps_plugin_replay_gps_request(gps_action_t gps_action, void *data, gps_failu case GPS_ACTION_STOP_SESSION: gps_plugin_stop_replay_mode(g_replay_timer); break; + case GPS_ACTION_START_BATCH: + gps_plugin_start_batch_mode(g_replay_timer, gps_start_data->interval, gps_start_data->period); + break; + case GPS_ACTION_STOP_BATCH: + gps_plugin_stop_batch_mode(g_replay_timer); + gps_plugin_stop_replay_mode(g_replay_timer); + break; case GPS_INDI_SUPL_VERIFICATION: case GPS_INDI_SUPL_DNSQUERY: case GPS_ACTION_START_FACTTEST: diff --git a/replay-plugin/src/nmea_parser.c b/gps-plugin/src/nmea_parser.c similarity index 84% rename from replay-plugin/src/nmea_parser.c rename to gps-plugin/src/nmea_parser.c index 63650dc..4a75932 100644 --- a/replay-plugin/src/nmea_parser.c +++ b/gps-plugin/src/nmea_parser.c @@ -1,10 +1,10 @@ /* - * gps-manager replay plugin + * gps replay plugin * * Copyright (c) 2011-2013 Samsung Electronics Co., Ltd. All rights reserved. * * Contact: Youngae Kang , Minjune Kim - * Genie Kim + * Genie Kim * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -23,23 +23,23 @@ #include #include #include -#include +#include #include "gps_plugin_debug.h" #include "nmea_parser.h" #include "setting.h" -#define MAX_NMEA_SENTENCES 32 -#define MAX_TOEKNS 25 +#define MAX_NMEA_SENTENCES 32 +#define MAX_TOEKNS 25 -#define DECIMAL_TO_DEGREE 60.0 -#define METER_TO_FEET 3.2808399 -#define KNOT_TO_MPS 0.5144444 -#define KMPH_TO_MPS 0.2777778 +#define DECIMAL_TO_DEGREE 60.0 +#define METER_TO_FEET 3.2808399 +#define KNOT_TO_MPS 0.5144444 +#define KMPH_TO_MPS 0.2777778 -#define NORTH 1 +#define NORTH 1 #define SOUTH -1 -#define EAST 1 +#define EAST 1 #define WEST -1 int used_sat[MAX_GPS_NUM_SAT_USED] = { 0, }; @@ -168,8 +168,8 @@ static double nmea_parser_get_altitude(const char *alt, const char *unit) static int nmea_parser_gpgga(char *token[], pos_data_t * pos, sv_data_t * sv) { - double latitude, longitude, altitude, eph, geoid; - int utctime, num_of_sat_used, quality; + double latitude, longitude, altitude; + int quality; quality = atoi(token[6]); @@ -179,13 +179,13 @@ static int nmea_parser_gpgga(char *token[], pos_data_t * pos, sv_data_t * sv) return READ_NOT_FIXED; } - utctime = atoi(token[1]); +// utctime = atoi(token[1]); latitude = nmea_parser_get_latitude(token[2], token[3]); longitude = nmea_parser_get_longitude(token[4], token[5]); altitude = nmea_parser_get_altitude(token[9], token[10]); - num_of_sat_used = atoi(token[7]); - eph = atof(token[8]); - geoid = nmea_parser_get_altitude(token[11], token[12]); +// num_of_sat_used = atoi(token[7]); +// eph = atof(token[8]); +// geoid = nmea_parser_get_altitude(token[11], token[12]); pos->latitude = latitude; pos->longitude = longitude; @@ -198,9 +198,8 @@ static int nmea_parser_gpgga(char *token[], pos_data_t * pos, sv_data_t * sv) static int nmea_parser_gprmc(char *token[], pos_data_t * pos) { - int date, utctime; char *status; - double latitude, longitude, speed, bearing, magvar; + double latitude, longitude, speed, bearing; status = token[2]; //warn = *token[2]; if (strcmp(status, "V") == 0) { @@ -208,13 +207,13 @@ static int nmea_parser_gprmc(char *token[], pos_data_t * pos) return READ_NOT_FIXED; } - utctime = atoi(token[1]); +// utctime = atoi(token[1]); latitude = nmea_parser_get_latitude(token[3], token[4]); longitude = nmea_parser_get_longitude(token[5], token[6]); speed = atof(token[7]); bearing = atof(token[8]); - date = atoi(token[9]); - magvar = atof(token[10]); +// date = atoi(token[9]); +// magvar = atof(token[10]); pos->latitude = latitude; pos->longitude = longitude; @@ -235,20 +234,18 @@ static int nmea_parser_gpgll(char *token[], pos_data_t * pos) return READ_NOT_FIXED; } - latitude = nmea_parser_get_latitude(token[1], token[2]); - longitude = nmea_parser_get_longitude(token[3], token[4]); + latitude = nmea_parser_get_latitude(token[1], token[2]); + longitude = nmea_parser_get_longitude(token[3], token[4]); - pos->latitude = latitude; - pos->longitude = longitude; + pos->latitude = latitude; + pos->longitude = longitude; - return READ_SUCCESS; + return READ_SUCCESS; } static int nmea_parser_gpgsa(char *token[], pos_data_t * pos) { - char selection_type; int i, fix_type; - double pdop, hdop, vdop; fix_type = atoi(token[2]); if (fix_type == 1) { @@ -256,27 +253,27 @@ static int nmea_parser_gpgsa(char *token[], pos_data_t * pos) return READ_NOT_FIXED; } - selection_type = *token[1]; +// selection_type = *token[1]; memset(used_sat, 0, sizeof(used_sat)); for (i = 0; i < MAX_GPS_NUM_SAT_USED; i++) { used_sat[i] = atoi(token[i + 3]); } - pdop = atof(token[15]); - hdop = atof(token[16]); - vdop = atof(token[17]); +// pdop = atof(token[15]); +// hdop = atof(token[16]); +// vdop = atof(token[17]); return READ_SUCCESS; } static int nmea_parser_gpvtg(char *token[], pos_data_t * pos) { - double true_course, magnetic_course, knot_speed, kmh_speed; + double true_course, kmh_speed; true_course = atof(token[1]); - magnetic_course = atof(token[3]); - knot_speed = atof(token[5]); +// magnetic_course = atof(token[3]); +// knot_speed = atof(token[5]); kmh_speed = atof(token[7]); pos->speed = kmh_speed * KMPH_TO_MPS; @@ -289,9 +286,9 @@ static int nmea_parser_gpgsv(char *token[], sv_data_t * sv) { int i, j; int p, q, iter; - int num_sen, msg_num, num_sv; + int msg_num, num_sv; - num_sen = atoi(token[1]); +// num_sen = atoi(token[1]); msg_num = atoi(token[2]); if (msg_num < 1) { LOG_PLUGIN(DBG_LOW, "There is not GSV message"); @@ -322,7 +319,7 @@ static int nmea_parser_gpgsv(char *token[], sv_data_t * sv) int nmea_parser_sentence(char *sentence, char *token[], pos_data_t * pos, sv_data_t * sv) { - int ret = READ_ERROR; + int ret = READ_SUCCESS; if (strcmp(sentence, "GPGGA") == 0) { ret = nmea_parser_gpgga(token, pos, sv); } else if (strcmp(sentence, "GPRMC") == 0) { @@ -368,7 +365,6 @@ int nmea_parser(char *data, pos_data_t * pos, sv_data_t * sv) ret = err; } else if (err == READ_ERROR) { ret = err; - break; } } else { LOG_PLUGIN(DBG_ERR, "[NMEA Parser] %dth sentense : Invalid Checksum\n", count); @@ -376,6 +372,6 @@ int nmea_parser(char *data, pos_data_t * pos, sv_data_t * sv) count++; num_sen--; } - + return ret; } diff --git a/replay-plugin/src/setting.c b/gps-plugin/src/setting.c similarity index 97% rename from replay-plugin/src/setting.c rename to gps-plugin/src/setting.c index 347b39f..135fa57 100644 --- a/replay-plugin/src/setting.c +++ b/gps-plugin/src/setting.c @@ -4,7 +4,7 @@ * Copyright (c) 2011-2013 Samsung Electronics Co., Ltd. All rights reserved. * * Contact: Youngae Kang , Minjune Kim - * Genie Kim + * Genie Kim * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/libslp-lbs-plugin-replay.manifest b/libslp-lbs-plugin-replay.manifest deleted file mode 100644 index 056ac6f..0000000 --- a/libslp-lbs-plugin-replay.manifest +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/libslp-lbsplugin-replay.manifest b/libslp-lbsplugin-replay.manifest new file mode 100644 index 0000000..d75ae1b --- /dev/null +++ b/libslp-lbsplugin-replay.manifest @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/libslp-xpsplugin-replay.manifest b/libslp-xpsplugin-replay.manifest new file mode 100644 index 0000000..a76fdba --- /dev/null +++ b/libslp-xpsplugin-replay.manifest @@ -0,0 +1,5 @@ + + + + + diff --git a/nmea-log/nmea_replay.log b/nmea-log/nmea_replay.log index 82c052a..9e7d5dd 100644 --- a/nmea-log/nmea_replay.log +++ b/nmea-log/nmea_replay.log @@ -1,4171 +1,156 @@ -$GPGSV,3,1,10,22,16,277,26,18,09,246,,17,27,047,27,15,15,168,20*73 -$GPGSV,3,2,10,12,57,239,34,30,23,243,14,14,25,313,,26,61,227,34*75 -$GPGSV,3,3,10,09,80,099,35,27,63,109,36*72 -$GPGSV,3,1,10,22,16,277,26,18,09,246,,17,28,049,21,15,15,168,20*74 -$GPGSV,3,2,10,12,57,239,35,30,23,243,14,14,25,313,31,26,61,230,32*76 -$GPGSV,3,3,10,09,80,099,36,27,63,109,36*71 -$GPGGA,144223.0,5114.617879,N,00644.514820,E,1,05,4.8,97.5,M,,,,*34 -$GPRMC,144223.0,A,5114.617879,N,00644.514820,E,15.0,144.6,070709,,,A*5D -$GPGSA,A,3,09,12,17,26,27,,,,,,,,8.4,4.8,6.9*30 -$GPVTG,144.6,T,,M,15.0,N,27.8,K*6E -$GPGSV,3,1,10,22,16,277,21,18,09,246,,17,28,049,26,15,15,168,20*74 -$GPGSV,3,2,10,12,57,239,35,30,23,243,14,14,25,313,31,26,61,230,34*70 -$GPGSV,3,3,10,09,80,099,35,27,63,109,36*72 -$GPGGA,144224.0,5114.607848,N,00644.519079,E,1,05,4.2,113.0,M,,,,*0B -$GPRMC,144224.0,A,5114.607848,N,00644.519079,E,17.2,148.9,070709,,,A*53 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,6.8,4.2,5.3*31 -$GPVTG,148.9,T,,M,17.2,N,31.9,K*6B -$GPGSV,3,1,10,22,15,277,21,18,09,246,,17,27,047,23,15,15,168,21*72 -$GPGSV,3,2,10,12,57,239,34,30,23,243,14,14,25,313,31,26,61,227,34*77 -$GPGSV,3,3,10,09,80,099,34,27,63,109,35*70 -$GPGGA,144225.0,5114.604119,N,00644.523052,E,1,05,4.6,110.0,M,,,,*03 -$GPRMC,144225.0,A,5114.604119,N,00644.523052,E,18.7,151.4,070709,,,A*53 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,7.5,4.6,6.0*39 -$GPVTG,151.4,T,,M,18.7,N,34.7,K*6F -$GPGSV,3,1,10,22,15,277,21,18,09,246,,17,27,047,24,15,15,168,28*7C -$GPGSV,3,2,10,12,57,239,34,30,23,243,14,14,25,313,32,26,61,227,34*74 -$GPGSV,3,3,10,09,80,099,34,27,63,111,35*79 -$GPGGA,144226.0,5114.599824,N,00644.526874,E,1,05,4.6,108.0,M,,,,*00 -$GPRMC,144226.0,A,5114.599824,N,00644.526874,E,20.0,153.7,070709,,,A*54 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,7.6,4.6,6.0*3A -$GPVTG,153.7,T,,M,20.0,N,37.0,K*66 -$GPGSV,3,1,10,22,15,277,21,18,09,246,,17,27,047,25,15,15,168,28*7D -$GPGSV,3,2,10,12,57,239,34,30,23,243,14,14,25,313,31,26,61,227,34*77 -$GPGSV,3,3,10,09,80,099,34,27,63,111,35*79 -$GPGGA,144227.0,5114.594669,N,00644.530847,E,1,05,4.3,108.0,M,,,,*09 -$GPRMC,144227.0,A,5114.594669,N,00644.530847,E,20.9,155.3,070709,,,A*53 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,6.9,4.3,5.4*36 -$GPVTG,155.3,T,,M,20.9,N,38.7,K*65 -$GPGSV,3,1,10,22,15,277,21,18,09,246,,17,27,047,27,15,15,168,29*7E -$GPGSV,3,2,10,12,57,239,34,30,23,243,14,14,25,313,30,26,61,227,35*77 -$GPGSV,3,3,10,09,80,099,34,27,63,111,35*79 -$GPGGA,144228.0,5114.588146,N,00644.534896,E,1,05,4.3,110.5,M,,,,*05 -$GPRMC,144228.0,A,5114.588146,N,00644.534896,E,21.4,156.6,070709,,,A*59 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,6.8,4.3,5.2*31 -$GPVTG,156.6,T,,M,21.4,N,39.6,K*6F -$GPGSV,3,1,10,22,15,277,21,18,09,246,,17,27,047,25,15,15,168,29*7C -$GPGSV,3,2,10,12,57,239,31,30,23,243,14,14,25,313,31,26,61,227,33*75 -$GPGSV,3,3,10,09,80,099,33,27,63,111,34*7F -$GPGGA,144229.0,5114.582383,N,00644.538738,E,1,05,4.2,110.0,M,,,,*06 -$GPRMC,144229.0,A,5114.582383,N,00644.538738,E,21.9,156.1,070709,,,A*54 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,6.8,4.2,5.3*31 -$GPVTG,156.1,T,,M,21.9,N,40.6,K*6B -$GPGSV,3,1,10,22,15,277,21,18,09,246,,17,27,047,22,15,15,168,29*7B -$GPGSV,3,2,10,12,57,239,27,30,23,243,14,14,25,313,31,26,61,227,32*73 -$GPGSV,3,3,10,09,80,099,34,27,63,111,34*78 -$GPGGA,144230.0,5114.576707,N,00644.542671,E,1,05,3.9,109.5,M,,,,*0D -$GPRMC,144230.0,A,5114.576707,N,00644.542671,E,22.5,158.7,070709,,,A*59 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,6.6,3.9,5.3*33 -$GPVTG,158.7,T,,M,22.5,N,41.7,K*6C -$GPGSV,3,1,10,22,15,277,21,18,09,246,,17,27,047,26,15,15,168,28*7E -$GPGSV,3,2,10,12,57,239,34,30,23,243,14,14,25,313,31,26,61,227,35*76 -$GPGSV,3,3,10,09,80,099,35,27,63,111,34*79 -$GPGGA,144231.0,5114.571082,N,00644.546574,E,1,05,3.8,107.0,M,,,,*09 -$GPRMC,144231.0,A,5114.571082,N,00644.546574,E,23.9,160.5,070709,,,A*53 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,6.0,3.8,4.6*30 -$GPVTG,160.5,T,,M,23.9,N,44.3,K*69 -$GPGSV,3,1,10,22,15,277,21,18,09,246,,17,27,047,31,15,15,168,26*76 -$GPGSV,3,2,10,12,57,239,34,30,23,243,14,14,25,313,23,26,61,227,34*74 -$GPGSV,3,3,10,09,80,099,35,27,63,111,34*79 -$GPGGA,144232.0,5114.565389,N,00644.550039,E,1,05,3.9,104.0,M,,,,*0E -$GPRMC,144232.0,A,5114.565389,N,00644.550039,E,24.6,162.3,070709,,,A*5A -$GPGSA,A,3,09,12,17,26,27,,,,,,,,6.1,3.9,4.6*30 -$GPVTG,162.3,T,,M,24.6,N,45.6,K*61 -$GPGSV,3,1,10,22,15,277,21,18,09,246,,17,27,047,32,15,15,168,29*7A -$GPGSV,3,2,10,12,57,239,34,30,23,243,14,14,25,313,22,26,61,227,35*74 -$GPGSV,3,3,10,09,80,099,34,27,63,111,33*7F -$GPGGA,144233.0,5114.559802,N,00644.553192,E,1,05,4.3,101.0,M,,,,*03 -$GPRMC,144233.0,A,5114.559802,N,00644.553192,E,24.3,163.4,070709,,,A*5C -$GPGSA,A,3,09,12,17,26,27,,,,,,,,6.3,4.3,4.6*3F -$GPVTG,163.4,T,,M,24.3,N,45.0,K*64 -$GPGSV,3,1,10,22,15,277,21,18,09,246,,17,27,047,33,15,15,168,31*72 -$GPGSV,3,2,10,12,57,239,33,30,23,243,14,14,25,313,27,26,61,227,34*77 -$GPGSV,3,3,10,09,80,099,34,27,63,111,33*7F -$GPGGA,144234.0,5114.553986,N,00644.556194,E,1,05,4.3,98.0,M,,,,*31 -$GPRMC,144234.0,A,5114.553986,N,00644.556194,E,23.6,164.1,070709,,,A*5F -$GPGSA,A,3,09,12,17,26,27,,,,,,,,6.4,4.3,4.7*39 -$GPVTG,164.1,T,,M,23.6,N,43.6,K*64 -$GPGSV,3,1,10,22,15,277,21,18,09,246,,17,27,047,30,15,15,168,31*71 -$GPGSV,3,2,10,12,57,239,34,30,23,243,14,14,25,313,24,26,61,227,34*73 -$GPGSV,3,3,10,09,80,099,34,27,63,111,33*7F -$GPGGA,144235.0,5114.547853,N,00644.559011,E,1,05,4.4,97.5,M,,,,*32 -$GPRMC,144235.0,A,5114.547853,N,00644.559011,E,24.0,164.6,070709,,,A*57 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,6.6,4.4,4.8*33 -$GPVTG,164.6,T,,M,24.0,N,44.4,K*67 -$GPGSV,3,1,10,22,15,277,21,18,09,246,,17,27,047,26,15,15,168,31*76 -$GPGSV,3,2,10,12,57,239,34,30,23,243,14,14,25,313,24,26,61,227,33*74 -$GPGSV,3,3,10,09,80,099,34,27,63,111,33*7F -$GPGGA,144236.0,5114.541569,N,00644.561857,E,1,05,4.4,97.0,M,,,,*37 -$GPRMC,144236.0,A,5114.541569,N,00644.561857,E,23.5,164.4,070709,,,A*57 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,6.8,4.4,5.2*36 -$GPVTG,164.4,T,,M,23.5,N,43.6,K*62 -$GPGSV,3,1,10,22,15,277,21,18,09,246,,17,27,047,32,15,15,168,31*73 -$GPGSV,3,2,10,12,57,239,33,30,23,243,14,14,25,313,24,26,61,227,33*73 -$GPGSV,3,3,10,09,80,099,34,27,63,111,33*7F -$GPGGA,144237.0,5114.535079,N,00644.564799,E,1,05,4.4,96.0,M,,,,*38 -$GPRMC,144237.0,A,5114.535079,N,00644.564799,E,23.8,164.3,070709,,,A*53 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,6.7,4.4,5.1*3A -$GPVTG,164.3,T,,M,23.8,N,44.1,K*68 -$GPGSV,3,1,10,22,15,277,21,18,09,246,24,17,27,047,32,15,15,168,32*76 -$GPGSV,3,2,10,12,57,239,34,30,23,243,14,14,25,313,23,26,61,227,33*73 -$GPGSV,3,3,10,09,80,099,34,27,63,111,33*7F -$GPGGA,144238.0,5114.528332,N,00644.567771,E,1,05,4.4,95.0,M,,,,*31 -$GPRMC,144238.0,A,5114.528332,N,00644.567771,E,24.5,164.5,070709,,,A*55 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,6.7,4.4,5.0*3B -$GPVTG,164.5,T,,M,24.5,N,45.3,K*67 -$GPGSV,3,1,10,22,15,277,21,18,09,244,21,17,27,047,33,15,15,168,31*73 -$GPGSV,3,2,10,12,57,239,34,30,23,243,,14,25,313,23,26,61,227,33*76 -$GPGSV,3,3,10,09,80,099,34,27,63,111,33*7F -$GPGGA,144239.0,5114.521568,N,00644.570688,E,1,05,4.5,96.0,M,,,,*33 -$GPRMC,144239.0,A,5114.521568,N,00644.570688,E,24.8,165.0,070709,,,A*5C -$GPGSA,A,3,09,12,17,26,27,,,,,,,,6.8,4.5,5.1*34 -$GPVTG,165.0,T,,M,24.8,N,45.8,K*65 -$GPGSV,3,1,10,22,15,277,21,18,09,244,21,17,27,047,32,15,15,168,30*73 -$GPGSV,3,2,10,12,57,239,34,30,23,243,17,14,25,313,23,26,61,227,33*70 -$GPGSV,3,3,10,09,80,099,34,27,63,111,33*7F -$GPGGA,144240.0,5114.514688,N,00644.573565,E,1,05,4.5,95.5,M,,,,*33 -$GPRMC,144240.0,A,5114.514688,N,00644.573565,E,25.1,165.6,070709,,,A*54 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,6.8,4.5,5.1*34 -$GPVTG,165.6,T,,M,25.1,N,46.5,K*65 -$GPGSV,3,1,10,22,15,277,21,18,09,244,21,17,27,047,33,15,15,168,30*72 -$GPGSV,3,2,10,12,57,239,34,30,23,243,21,14,25,313,20,26,61,227,33*76 -$GPGSV,3,3,10,09,80,099,34,27,63,111,34*78 -$GPGGA,144241.0,5114.507959,N,00644.576306,E,1,05,4.5,95.5,M,,,,*35 -$GPRMC,144241.0,A,5114.507959,N,00644.576306,E,25.0,166.4,070709,,,A*52 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,6.9,4.5,5.1*35 -$GPVTG,166.4,T,,M,25.0,N,46.4,K*64 -$GPGSV,3,1,10,22,15,277,21,18,09,244,21,17,27,047,32,15,15,168,33*70 -$GPGSV,3,2,10,12,57,239,35,30,23,243,27,14,25,313,21,26,61,227,33*70 -$GPGSV,3,3,10,09,80,099,34,27,63,111,34*78 -$GPGGA,144242.0,5114.501260,N,00644.578805,E,1,05,4.6,95.0,M,,,,*31 -$GPRMC,144242.0,A,5114.501260,N,00644.578805,E,24.1,166.1,070709,,,A*55 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,7.0,4.6,5.2*3D -$GPVTG,166.1,T,,M,24.1,N,44.6,K*61 -$GPGSV,3,1,10,22,15,277,21,18,09,244,21,17,27,047,32,15,15,168,32*71 -$GPGSV,3,2,10,12,57,239,35,30,23,243,28,14,25,313,23,26,61,227,33*7D -$GPGSV,3,3,10,09,80,099,34,27,63,111,33*7F -$GPGGA,144243.0,5114.495336,N,00644.581079,E,1,05,4.6,94.5,M,,,,*3F -$GPRMC,144243.0,A,5114.495336,N,00644.581079,E,21.4,165.8,070709,,,A*55 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,6.9,4.6,5.1*36 -$GPVTG,165.8,T,,M,21.4,N,39.7,K*60 -$GPGSV,3,1,10,22,15,277,21,18,09,244,21,17,27,047,33,15,15,168,33*71 -$GPGSV,3,2,10,12,57,239,28,30,23,243,23,14,25,313,29,26,61,227,29*7B -$GPGSV,3,3,10,09,80,099,33,27,63,111,34*7F -$GPGGA,144244.0,5114.490606,N,00644.582834,E,1,05,3.9,94.0,M,,,,*34 -$GPRMC,144244.0,A,5114.490606,N,00644.582834,E,17.6,166.7,070709,,,A*58 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,5.9,3.9,4.4*39 -$GPVTG,166.7,T,,M,17.6,N,32.5,K*62 -$GPGSV,3,1,10,22,15,277,21,18,09,244,21,17,26,047,32,15,15,168,33*71 -$GPGSV,3,2,10,12,57,239,27,30,23,243,24,14,25,313,29,26,61,227,26*7C -$GPGSV,3,3,10,09,80,099,33,27,63,111,33*78 -$GPGGA,144245.0,5114.486522,N,00644.584292,E,1,05,3.8,93.5,M,,,,*34 -$GPRMC,144245.0,A,5114.486522,N,00644.584292,E,14.4,167.0,070709,,,A*5C -$GPGSA,A,3,09,12,17,26,27,,,,,,,,5.9,3.8,4.5*39 -$GPVTG,167.0,T,,M,14.4,N,26.7,K*62 -$GPGSV,3,1,10,22,15,277,21,18,09,244,21,17,26,047,33,15,15,168,31*72 -$GPGSV,3,2,10,12,57,239,33,30,23,243,27,14,25,313,28,26,61,227,34*78 -$GPGSV,3,3,10,09,80,099,33,27,63,111,34*7F -$GPGGA,144246.0,5114.483377,N,00644.585394,E,1,05,3.8,93.0,M,,,,*37 -$GPRMC,144246.0,A,5114.483377,N,00644.585394,E,10.7,164.5,070709,,,A*5B -$GPGSA,A,3,09,12,17,26,27,,,,,,,,5.9,3.8,4.5*39 -$GPVTG,164.5,T,,M,10.7,N,19.7,K*6F -$GPGSV,3,1,10,22,15,277,21,18,09,244,21,17,26,047,32,15,15,168,32*70 -$GPGSV,3,2,10,12,57,239,34,30,23,243,27,14,25,313,24,26,61,227,34*73 -$GPGSV,3,3,10,09,80,099,33,27,63,111,33*78 -$GPGGA,144247.0,5114.481503,N,00644.586148,E,1,05,3.9,93.0,M,,,,*30 -$GPRMC,144247.0,A,5114.481503,N,00644.586148,E,6.3,163.4,070709,,,A*68 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,6.0,3.9,4.5*32 -$GPVTG,163.4,T,,M,6.3,N,11.7,K*52 -$GPGSV,3,1,10,22,15,277,21,18,09,244,21,17,26,047,33,15,15,168,31*72 -$GPGSV,3,2,10,12,57,239,35,30,23,243,31,14,25,313,22,26,61,227,33*74 -$GPGSV,3,3,10,09,80,099,33,27,63,111,33*78 -$GPGGA,144248.0,5114.480246,N,00644.586862,E,1,05,4.0,92.0,M,,,,*36 -$GPRMC,144248.0,A,5114.480246,N,00644.586862,E,3.6,162.8,070709,,,A*6C -$GPGSA,A,3,09,12,17,26,27,,,,,,,,6.1,4.0,4.6*3E -$GPVTG,162.8,T,,M,3.6,N,6.7,K*69 -$GPGSV,3,1,10,22,15,277,21,18,09,244,21,17,26,047,33,15,15,168,32*71 -$GPGSV,3,2,10,12,57,239,34,30,23,243,31,14,25,313,26,26,61,227,34*76 -$GPGSV,3,3,10,09,80,099,33,27,63,111,33*78 -$GPGGA,144249.0,5114.479421,N,00644.587164,E,1,05,4.1,92.0,M,,,,*39 -$GPRMC,144249.0,A,5114.479421,N,00644.587164,E,2.3,163.7,070709,,,A*68 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,6.3,4.1,4.7*3C -$GPVTG,163.7,T,,M,2.3,N,4.3,K*65 -$GPGSV,3,1,10,22,15,277,21,18,09,244,21,17,26,047,33,15,15,168,32*71 -$GPGSV,3,2,10,12,57,239,34,30,23,243,31,14,25,313,25,26,61,227,34*75 -$GPGSV,3,3,10,09,80,099,33,27,63,111,34*7F -$GPGGA,144250.0,5114.479245,N,00644.587350,E,1,05,4.3,92.0,M,,,,*32 -$GPRMC,144250.0,A,5114.479245,N,00644.587350,E,,,070709,,,A*63 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,6.5,4.3,4.8*37 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,10,22,15,277,21,18,09,244,21,17,26,047,33,15,15,168,33*70 -$GPGSV,3,2,10,12,57,239,35,30,23,243,32,14,25,313,25,26,61,227,33*70 -$GPGSV,3,3,10,09,80,099,34,27,63,111,33*7F -$GPGGA,144251.0,5114.478986,N,00644.587606,E,1,05,4.4,92.0,M,,,,*37 -$GPRMC,144251.0,A,5114.478986,N,00644.587606,E,1.6,169.5,070709,,,A*6D -$GPGSA,A,3,09,12,17,26,27,,,,,,,,6.6,4.4,4.9*32 -$GPVTG,169.5,T,,M,1.6,N,3.0,K*6F -$GPGSV,3,1,10,22,15,277,21,18,09,244,21,17,26,047,32,15,15,168,31*73 -$GPGSV,3,2,10,12,57,239,34,30,23,243,31,14,25,313,25,26,61,227,33*72 -$GPGSV,3,3,10,09,80,099,33,27,63,111,33*78 -$GPGGA,144252.0,5114.478327,N,00644.587782,E,1,05,4.6,92.0,M,,,,*3A -$GPRMC,144252.0,A,5114.478327,N,00644.587782,E,3.4,171.5,070709,,,A*6B -$GPGSA,A,3,09,12,17,26,27,,,,,,,,7.1,4.6,5.4*3A -$GPVTG,171.5,T,,M,3.4,N,6.3,K*60 -$GPGSV,3,1,10,22,15,277,21,18,09,244,21,17,26,047,32,15,15,168,31*73 -$GPGSV,3,2,10,12,57,239,34,30,23,243,30,14,26,313,25,26,61,227,33*70 -$GPGSV,3,3,10,09,80,099,32,27,63,111,33*79 -$GPGGA,144253.0,5114.476826,N,00644.588230,E,1,05,4.9,92.5,M,,,,*36 -$GPRMC,144253.0,A,5114.476826,N,00644.588230,E,5.7,167.6,070709,,,A*6C -$GPGSA,A,3,09,12,17,26,27,,,,,,,,7.7,4.9,6.0*34 -$GPVTG,167.6,T,,M,5.7,N,10.5,K*50 -$GPGSV,3,1,10,22,15,277,21,18,09,244,21,17,26,047,31,15,15,168,30*71 -$GPGSV,3,2,10,12,57,239,35,30,23,243,32,14,26,313,25,26,61,227,33*73 -$GPGSV,3,3,10,09,80,101,32,27,63,111,34*7E -$GPGGA,144254.0,5114.474825,N,00644.589015,E,1,05,4.8,92.5,M,,,,*35 -$GPRMC,144254.0,A,5114.474825,N,00644.589015,E,7.8,167.9,070709,,,A*6C -$GPGSA,A,3,09,12,17,26,27,,,,,,,,7.6,4.8,5.9*3E -$GPVTG,167.9,T,,M,7.8,N,14.4,K*57 -$GPGSV,3,1,10,22,15,277,21,18,09,244,21,17,26,047,29,15,15,168,33*7B -$GPGSV,3,2,10,12,57,239,35,30,23,243,32,14,26,313,25,26,61,227,34*74 -$GPGSV,3,3,10,09,80,101,32,27,63,111,33*79 -$GPGGA,144255.0,5114.472433,N,00644.589970,E,1,05,4.7,92.5,M,,,,*3C -$GPRMC,144255.0,A,5114.472433,N,00644.589970,E,8.8,167.9,070709,,,A*65 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,7.6,4.7,5.9*31 -$GPVTG,167.9,T,,M,8.8,N,16.2,K*5C -$GPGSV,3,1,10,22,15,277,21,18,09,244,21,17,26,047,31,15,15,168,32*73 -$GPGSV,3,2,10,12,57,239,34,30,23,243,31,14,26,313,25,26,61,227,33*71 -$GPGSV,3,3,10,09,80,101,31,27,63,111,33*7A -$GPGGA,144256.0,5114.469662,N,00644.590991,E,1,05,4.8,92.5,M,,,,*3B -$GPRMC,144256.0,A,5114.469662,N,00644.590991,E,10.7,167.8,070709,,,A*5A -$GPGSA,A,3,09,12,17,26,27,,,,,,,,7.7,4.8,6.0*35 -$GPVTG,167.8,T,,M,10.7,N,19.8,K*6E -$GPGSV,3,1,10,22,15,277,21,18,09,244,21,17,26,047,33,15,15,168,35*76 -$GPGSV,3,2,10,12,57,239,30,30,23,243,29,14,26,313,25,26,61,227,33*7C -$GPGSV,3,3,10,09,80,101,31,27,63,111,34*7D -$GPGGA,144257.0,5114.466255,N,00644.592278,E,1,05,4.4,93.0,M,,,,*33 -$GPRMC,144257.0,A,5114.466255,N,00644.592278,E,12.4,168.2,070709,,,A*5E -$GPGSA,A,3,09,12,17,26,27,,,,,,,,7.1,4.4,5.5*39 -$GPVTG,168.2,T,,M,12.4,N,22.9,K*63 -$GPGSV,3,1,10,22,15,277,,18,09,244,21,17,26,047,32,15,15,168,35*74 -$GPGSV,3,2,10,12,57,239,30,30,23,243,25,14,26,313,25,26,61,227,29*7B -$GPGSV,3,3,10,09,80,101,32,27,63,111,33*79 -$GPGGA,144258.0,5114.462408,N,00644.593717,E,1,05,4.1,92.5,M,,,,*3A -$GPRMC,144258.0,A,5114.462408,N,00644.593717,E,14.2,168.2,070709,,,A*56 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,6.5,4.1,5.0*3C -$GPVTG,168.2,T,,M,14.2,N,26.4,K*6A -$GPGSV,3,1,10,22,15,277,,18,09,244,21,17,26,047,32,15,15,168,34*75 -$GPGSV,3,2,10,12,57,239,33,30,23,243,28,14,26,313,22,26,61,227,34*7E -$GPGSV,3,3,10,09,80,101,32,27,63,111,33*79 -$GPGGA,144259.0,5114.456513,N,00644.596116,E,1,06,1.9,89.0,M,,,,*34 -$GPRMC,144259.0,A,5114.456513,N,00644.596116,E,15.8,167.3,070709,,,A*5C -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.6,1.9,1.8*3E -$GPVTG,167.3,T,,M,15.8,N,29.3,K*67 -$GPGSV,3,1,10,22,15,277,,18,09,244,,17,26,047,31,15,15,168,34*75 -$GPGSV,3,2,10,12,57,239,33,30,23,243,31,14,26,313,22,26,61,227,35*77 -$GPGSV,3,3,10,09,80,101,31,27,63,111,33*7A -$GPGGA,144300.0,5114.451250,N,00644.598142,E,1,06,1.9,87.0,M,,,,*3F -$GPRMC,144300.0,A,5114.451250,N,00644.598142,E,16.1,167.0,070709,,,A*50 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.7,1.9,1.9*3E -$GPVTG,167.0,T,,M,16.1,N,29.8,K*65 -$GPGSV,3,1,10,22,15,277,,18,09,244,,17,26,047,32,15,15,168,34*76 -$GPGSV,3,2,10,12,57,239,33,30,23,243,31,14,26,313,21,26,61,227,35*74 -$GPGSV,3,3,10,09,80,101,31,27,63,111,33*7A -$GPGGA,144301.0,5114.446780,N,00644.599757,E,1,06,1.9,86.5,M,,,,*37 -$GPRMC,144301.0,A,5114.446780,N,00644.599757,E,15.9,167.3,070709,,,A*54 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.7,1.9,1.9*3E -$GPVTG,167.3,T,,M,15.9,N,29.5,K*60 -$GPGSV,3,1,10,22,15,277,26,18,09,244,,17,26,047,31,15,15,168,33*76 -$GPGSV,3,2,10,12,57,239,34,30,23,243,31,14,26,313,21,26,61,227,35*73 -$GPGSV,3,3,10,09,80,101,32,27,63,111,33*79 -$GPGGA,144302.0,5114.442248,N,00644.601522,E,1,06,1.8,86.5,M,,,,*32 -$GPRMC,144302.0,A,5114.442248,N,00644.601522,E,17.5,167.2,070709,,,A*5F -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.7,1.8,1.9*3F -$GPVTG,167.2,T,,M,17.5,N,32.4,K*64 -$GPGSV,3,1,10,22,15,277,23,18,09,244,,17,26,047,32,15,15,168,31*72 -$GPGSV,3,2,10,12,57,239,34,30,23,243,30,14,26,313,21,26,61,227,35*72 -$GPGSV,3,3,10,09,80,101,32,27,63,111,33*79 -$GPGGA,144303.0,5114.437036,N,00644.603730,E,1,06,1.8,86.0,M,,,,*3C -$GPRMC,144303.0,A,5114.437036,N,00644.603730,E,19.1,165.6,070709,,,A*58 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.7,1.8,2.0*35 -$GPVTG,165.6,T,,M,19.1,N,35.3,K*68 -$GPGSV,3,1,10,22,15,277,26,18,09,244,,17,26,047,33,15,15,168,34*73 -$GPGSV,3,2,10,12,57,239,34,30,23,243,25,14,26,313,21,26,61,227,35*76 -$GPGSV,3,3,10,09,80,101,33,27,63,111,34*7F -$GPGGA,144304.0,5114.431810,N,00644.606098,E,1,06,1.8,86.5,M,,,,*34 -$GPRMC,144304.0,A,5114.431810,N,00644.606098,E,20.0,164.1,070709,,,A*58 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.7,1.8,2.0*35 -$GPVTG,164.1,T,,M,20.0,N,37.0,K*64 -$GPGSV,3,1,10,22,15,277,26,18,09,244,,17,26,047,33,15,15,168,34*73 -$GPGSV,3,2,10,12,57,239,33,30,23,243,22,14,26,313,21,26,61,227,34*77 -$GPGSV,3,3,10,09,80,101,33,27,63,111,33*78 -$GPGGA,144305.0,5114.426137,N,00644.608588,E,1,06,1.8,87.0,M,,,,*31 -$GPRMC,144305.0,A,5114.426137,N,00644.608588,E,21.3,164.2,070709,,,A*58 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.7,1.8,2.0*35 -$GPVTG,164.2,T,,M,21.3,N,39.4,K*6F -$GPGSV,3,1,10,22,15,277,26,18,09,244,,17,26,047,33,15,15,168,34*73 -$GPGSV,3,2,10,12,57,239,31,30,23,243,20,14,26,313,21,26,61,227,34*77 -$GPGSV,3,3,10,09,80,101,32,27,63,111,33*79 -$GPGGA,144306.0,5114.420387,N,00644.611173,E,1,06,1.8,87.0,M,,,,*35 -$GPRMC,144306.0,A,5114.420387,N,00644.611173,E,21.7,165.9,070709,,,A*52 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.7,1.8,1.9*3F -$GPVTG,165.9,T,,M,21.7,N,40.2,K*69 -$GPGSV,3,1,10,22,15,277,26,18,09,244,,17,26,047,28,15,15,168,34*79 -$GPGSV,3,2,10,12,57,239,35,30,23,243,31,14,26,313,21,26,61,227,34*73 -$GPGSV,3,3,10,09,80,101,33,27,63,111,34*7F -$GPGGA,144307.0,5114.414480,N,00644.613532,E,1,06,2.0,86.5,M,,,,*3F -$GPRMC,144307.0,A,5114.414480,N,00644.613532,E,21.6,166.4,070709,,,A*58 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.0,2.0,2.2*3A -$GPVTG,166.4,T,,M,21.6,N,40.0,K*64 -$GPGSV,3,1,10,22,15,277,21,18,09,244,,17,26,047,26,15,15,168,34*70 -$GPGSV,3,2,10,12,57,239,35,30,23,243,26,14,26,313,21,26,61,227,34*75 -$GPGSV,3,3,10,09,80,101,33,27,63,111,34*7F -$GPGGA,144308.0,5114.408354,N,00644.615749,E,1,06,2.5,86.0,M,,,,*3B -$GPRMC,144308.0,A,5114.408354,N,00644.615749,E,22.0,167.1,070709,,,A*5D -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.8,2.5,2.8*3D -$GPVTG,167.1,T,,M,22.0,N,40.7,K*62 -$GPGSV,3,1,10,22,15,277,21,18,09,244,,17,26,047,32,15,15,168,34*75 -$GPGSV,3,2,10,12,57,239,35,30,23,243,21,14,26,313,21,26,61,227,34*72 -$GPGSV,3,3,10,09,80,101,33,27,63,111,34*7F -$GPGGA,144309.0,5114.402030,N,00644.618158,E,1,06,2.3,85.5,M,,,,*3A -$GPRMC,144309.0,A,5114.402030,N,00644.618158,E,23.4,166.6,070709,,,A*5F -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.5,2.3,2.6*38 -$GPVTG,166.6,T,,M,23.4,N,43.3,K*66 -$GPGSV,3,1,10,22,15,277,21,18,09,244,,17,26,047,32,15,15,168,34*75 -$GPGSV,3,2,10,12,57,239,33,30,23,243,23,14,26,313,21,26,61,227,35*77 -$GPGSV,3,3,10,09,80,101,33,27,63,111,34*7F -$GPGGA,144310.0,5114.395467,N,00644.620753,E,1,06,2.2,85.0,M,,,,*3F -$GPRMC,144310.0,A,5114.395467,N,00644.620753,E,24.4,166.6,070709,,,A*59 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.3,2.2,2.5*3C -$GPVTG,166.6,T,,M,24.4,N,45.2,K*66 -$GPGSV,3,1,10,22,15,277,21,18,09,244,,17,26,047,31,15,15,168,33*71 -$GPGSV,3,2,10,12,57,239,34,30,23,243,25,14,26,313,21,26,61,227,34*77 -$GPGSV,3,3,10,09,80,101,31,27,63,111,34*7D -$GPGGA,144311.0,5114.388766,N,00644.623374,E,1,06,2.1,85.0,M,,,,*31 -$GPRMC,144311.0,A,5114.388766,N,00644.623374,E,24.5,166.3,070709,,,A*50 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.1,2.1,2.4*3C -$GPVTG,166.3,T,,M,24.5,N,45.4,K*64 -$GPGSV,3,1,10,22,15,277,22,18,09,244,,17,26,047,29,15,15,168,32*7A -$GPGSV,3,2,10,12,57,239,33,30,23,243,23,14,26,313,21,26,61,227,34*76 -$GPGSV,3,3,10,09,80,101,32,27,63,111,34*7E -$GPGGA,144312.0,5114.382132,N,00644.625964,E,1,06,2.0,84.5,M,,,,*37 -$GPRMC,144312.0,A,5114.382132,N,00644.625964,E,24.4,166.7,070709,,,A*56 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.0,2.0,2.2*3A -$GPVTG,166.7,T,,M,24.4,N,45.2,K*67 -$GPGSV,3,1,10,22,15,277,22,18,09,244,,17,26,047,31,15,15,168,33*72 -$GPGSV,3,2,10,12,57,239,33,30,23,243,21,14,26,313,21,26,61,227,34*74 -$GPGSV,3,3,10,09,80,101,31,27,63,111,34*7D -$GPGGA,144313.0,5114.375668,N,00644.628418,E,1,06,1.9,84.0,M,,,,*32 -$GPRMC,144313.0,A,5114.375668,N,00644.628418,E,24.0,166.8,070709,,,A*57 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.9,1.9,2.2*38 -$GPVTG,166.8,T,,M,24.0,N,44.5,K*6A -$GPGSV,3,1,10,22,15,277,22,18,09,244,,17,26,047,28,15,15,168,32*7B -$GPGSV,3,2,10,12,57,239,34,30,23,243,22,14,26,313,21,26,61,227,34*70 -$GPGSV,3,3,10,09,80,101,31,27,63,111,34*7D -$GPGGA,144314.0,5114.369115,N,00644.630746,E,1,06,2.1,83.5,M,,,,*3D -$GPRMC,144314.0,A,5114.369115,N,00644.630746,E,24.5,166.9,070709,,,A*55 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.2,2.1,2.4*3F -$GPVTG,166.9,T,,M,24.5,N,45.5,K*6F -$GPGSV,3,1,10,22,15,277,22,18,09,244,,17,26,047,30,15,15,168,32*72 -$GPGSV,3,2,10,12,57,239,34,30,23,243,25,14,26,313,21,26,61,227,34*77 -$GPGSV,3,3,10,09,80,101,31,27,63,111,34*7D -$GPGGA,144315.0,5114.362479,N,00644.633155,E,1,06,2.0,83.0,M,,,,*3B -$GPRMC,144315.0,A,5114.362479,N,00644.633155,E,24.4,166.9,070709,,,A*56 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.1,2.0,2.3*3A -$GPVTG,166.9,T,,M,24.4,N,45.2,K*69 -$GPGSV,3,1,10,22,15,277,22,18,09,244,,17,26,047,30,15,15,168,33*73 -$GPGSV,3,2,10,12,57,239,34,30,23,243,29,14,26,313,21,26,61,227,34*7B -$GPGSV,3,3,10,09,80,101,31,27,63,111,34*7D -$GPGGA,144316.0,5114.355936,N,00644.635544,E,1,06,2.0,83.0,M,,,,*38 -$GPRMC,144316.0,A,5114.355936,N,00644.635544,E,24.3,166.7,070709,,,A*5C -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.0,2.0,2.3*3B -$GPVTG,166.7,T,,M,24.3,N,45.0,K*62 -$GPGSV,3,1,10,22,15,277,22,18,09,244,,17,26,047,29,15,15,168,33*7B -$GPGSV,3,2,10,12,57,239,32,30,23,243,24,14,26,313,21,26,61,227,34*70 -$GPGSV,3,3,10,09,80,101,32,27,63,111,34*7E -$GPGGA,144317.0,5114.349315,N,00644.637983,E,1,06,2.0,82.5,M,,,,*3E -$GPRMC,144317.0,A,5114.349315,N,00644.637983,E,24.7,166.3,070709,,,A*5E -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.0,2.0,2.2*3A -$GPVTG,166.3,T,,M,24.7,N,45.8,K*6A -$GPGSV,3,1,11,22,15,277,22,18,09,244,,17,26,047,32,15,15,168,33*70 -$GPGSV,3,2,11,12,57,239,34,30,23,243,25,14,26,313,21,26,61,227,34*76 -$GPGSV,3,3,11,04,04,098,,09,80,101,31,27,63,111,34*4D -$GPGGA,144318.0,5114.342485,N,00644.640518,E,1,06,1.9,82.0,M,,,,*35 -$GPRMC,144318.0,A,5114.342485,N,00644.640518,E,25.4,166.5,070709,,,A*5E -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.9,1.9,2.2*38 -$GPVTG,166.5,T,,M,25.4,N,47.0,K*64 -$GPGSV,3,1,11,22,15,277,22,18,09,244,19,17,26,047,31,15,15,168,33*7B -$GPGSV,3,2,11,12,57,239,34,30,23,243,31,14,26,313,21,26,61,227,34*73 -$GPGSV,3,3,11,04,04,098,,09,80,101,31,27,63,111,34*4D -$GPGGA,144319.0,5114.335739,N,00644.643188,E,1,06,1.9,81.5,M,,,,*38 -$GPRMC,144319.0,A,5114.335739,N,00644.643188,E,25.0,166.0,070709,,,A*54 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.9,1.9,2.1*3B -$GPVTG,166.0,T,,M,25.0,N,46.3,K*67 -$GPGSV,3,1,11,22,15,277,22,18,09,244,19,17,26,047,32,15,15,168,31*7A -$GPGSV,3,2,11,12,57,239,34,30,23,243,30,14,26,313,21,26,61,227,34*72 -$GPGSV,3,3,11,04,04,098,,09,80,101,31,27,63,111,34*4D -$GPGGA,144320.0,5114.329281,N,00644.645738,E,1,06,1.8,81.0,M,,,,*36 -$GPRMC,144320.0,A,5114.329281,N,00644.645738,E,23.6,166.3,070709,,,A*5D -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.8,1.8,2.1*3B -$GPVTG,166.3,T,,M,23.6,N,43.8,K*6A -$GPGSV,3,1,11,22,15,277,22,18,09,244,21,17,26,047,33,15,15,168,33*72 -$GPGSV,3,2,11,12,57,239,35,30,23,243,28,14,26,313,21,26,61,227,35*7B -$GPGSV,3,3,11,04,04,098,,09,80,101,32,27,63,111,35*4F -$GPGGA,144321.0,5114.323473,N,00644.648062,E,1,06,1.8,80.5,M,,,,*37 -$GPRMC,144321.0,A,5114.323473,N,00644.648062,E,20.5,166.1,070709,,,A*5A -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.8,1.8,2.1*3B -$GPVTG,166.1,T,,M,20.5,N,38.0,K*6C -$GPGSV,3,1,11,22,15,277,22,18,09,244,20,17,26,047,30,15,15,168,33*70 -$GPGSV,3,2,11,12,57,239,34,30,23,243,23,14,26,313,,26,61,227,34*73 -$GPGSV,3,3,11,04,04,098,,09,80,101,32,27,63,111,34*4E -$GPGGA,144322.0,5114.318401,N,00644.649907,E,1,06,1.9,80.5,M,,,,*33 -$GPRMC,144322.0,A,5114.318401,N,00644.649907,E,18.0,166.6,070709,,,A*56 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.8,1.9,2.1*3A -$GPVTG,166.6,T,,M,18.0,N,33.4,K*6A -$GPGSV,3,1,11,22,15,277,22,18,09,244,20,17,26,047,26,15,15,168,34*70 -$GPGSV,3,2,11,12,57,239,34,30,23,243,22,14,26,313,,26,61,227,34*72 -$GPGSV,3,3,11,04,04,098,,09,80,101,31,27,63,111,34*4D -$GPGGA,144323.0,5114.313907,N,00644.651431,E,1,06,2.3,80.5,M,,,,*3A -$GPRMC,144323.0,A,5114.313907,N,00644.651431,E,15.7,167.9,070709,,,A*52 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.6,2.3,2.7*3A -$GPVTG,167.9,T,,M,15.7,N,29.1,K*60 -$GPGSV,3,1,11,22,15,277,22,18,09,244,23,17,26,047,31,15,15,168,34*75 -$GPGSV,3,2,11,12,58,239,35,30,23,243,28,14,26,313,,26,61,227,34*76 -$GPGSV,3,3,11,04,04,098,,09,80,101,32,27,63,111,34*4E -$GPGGA,144324.0,5114.309932,N,00644.652804,E,1,06,2.2,80.0,M,,,,*3D -$GPRMC,144324.0,A,5114.309932,N,00644.652804,E,13.7,167.4,070709,,,A*5A -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.3,2.2,2.5*3C -$GPVTG,167.4,T,,M,13.7,N,25.4,K*62 -$GPGSV,3,1,11,22,15,277,22,18,09,244,24,17,26,047,30,15,15,168,34*73 -$GPGSV,3,2,11,12,58,239,34,30,23,243,24,14,26,313,,26,61,227,34*7B -$GPGSV,3,3,11,04,04,098,,09,80,101,32,27,63,111,34*4E -$GPGGA,144325.0,5114.306479,N,00644.654056,E,1,06,2.0,80.0,M,,,,*3A -$GPRMC,144325.0,A,5114.306479,N,00644.654056,E,12.1,167.3,070709,,,A*5F -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.1,2.0,2.4*3D -$GPVTG,167.3,T,,M,12.1,N,22.4,K*65 -$GPGSV,3,1,11,22,15,277,22,18,09,244,22,17,26,047,31,15,15,168,33*73 -$GPGSV,3,2,11,12,58,239,34,30,23,243,29,14,26,313,,26,61,227,33*71 -$GPGSV,3,3,11,04,04,098,,09,80,101,32,27,63,111,34*4E -$GPGGA,144326.0,5114.303419,N,00644.655203,E,1,06,2.0,79.5,M,,,,*3A -$GPRMC,144326.0,A,5114.303419,N,00644.655203,E,10.3,167.2,070709,,,A*5D -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.0,2.0,2.3*3B -$GPVTG,167.2,T,,M,10.3,N,19.2,K*6A -$GPGSV,3,1,11,22,15,277,22,18,09,244,21,17,26,047,31,15,15,168,31*72 -$GPGSV,3,2,11,12,58,239,34,30,23,243,25,14,26,313,,26,61,227,34*7A -$GPGSV,3,3,11,04,04,098,,09,80,101,32,27,63,111,34*4E -$GPGGA,144327.0,5114.300950,N,00644.656143,E,1,06,1.9,79.5,M,,,,*36 -$GPRMC,144327.0,A,5114.300950,N,00644.656143,E,8.6,166.4,070709,,,A*60 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.9,1.9,2.2*38 -$GPVTG,166.4,T,,M,8.6,N,15.9,K*56 -$GPGSV,3,1,11,22,15,277,22,18,09,244,21,17,26,047,33,15,15,168,33*72 -$GPGSV,3,2,11,12,58,239,34,30,23,243,24,14,26,313,,26,61,227,34*7B -$GPGSV,3,3,11,04,04,098,,09,80,101,33,27,63,111,34*4F -$GPGGA,144328.0,5114.299323,N,00644.656601,E,1,06,1.9,79.0,M,,,,*32 -$GPRMC,144328.0,A,5114.299323,N,00644.656601,E,5.7,167.5,070709,,,A*6D -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.9,1.9,2.1*3B -$GPVTG,167.5,T,,M,5.7,N,10.6,K*50 -$GPGSV,3,1,11,22,15,277,22,18,09,244,20,17,26,047,33,15,15,168,33*73 -$GPGSV,3,2,11,12,58,239,35,30,23,243,21,14,26,313,,26,61,227,34*7F -$GPGSV,3,3,11,04,04,098,,09,80,101,33,27,63,111,34*4F -$GPGGA,144329.0,5114.297922,N,00644.657310,E,1,06,1.9,79.5,M,,,,*37 -$GPRMC,144329.0,A,5114.297922,N,00644.657310,E,4.5,166.6,070709,,,A*6C -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.8,1.9,2.1*3A -$GPVTG,166.6,T,,M,4.5,N,8.3,K*6D -$GPGSV,3,1,11,22,15,277,22,18,09,244,20,17,26,047,32,15,15,168,31*70 -$GPGSV,3,2,11,12,58,239,36,30,23,243,22,14,26,313,,26,61,227,34*7F -$GPGSV,3,3,11,04,04,098,,09,80,101,33,27,63,111,35*4E -$GPGGA,144330.0,5114.296984,N,00644.657803,E,1,06,1.8,79.5,M,,,,*3A -$GPRMC,144330.0,A,5114.296984,N,00644.657803,E,3.1,166.5,070709,,,A*60 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.8,1.8,2.1*3B -$GPVTG,166.5,T,,M,3.1,N,5.6,K*65 -$GPGSV,3,1,11,22,15,277,22,18,09,244,22,17,26,047,32,15,15,168,31*72 -$GPGSV,3,2,11,12,58,239,35,30,23,243,25,14,26,313,,26,61,227,33*7C -$GPGSV,3,3,11,04,04,098,,09,80,101,32,27,63,111,34*4E -$GPGGA,144331.0,5114.296363,N,00644.658060,E,1,06,1.8,79.5,M,,,,*3A -$GPRMC,144331.0,A,5114.296363,N,00644.658060,E,1.6,163.2,070709,,,A*67 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.7,1.8,2.0*35 -$GPVTG,163.2,T,,M,1.6,N,3.0,K*62 -$GPGSV,3,1,11,22,15,277,22,18,09,244,20,17,26,047,33,15,15,168,34*74 -$GPGSV,3,2,11,12,58,239,35,30,23,243,27,14,26,313,,26,61,227,32*7F -$GPGSV,3,3,11,04,04,098,,09,80,101,31,27,63,111,34*4D -$GPGGA,144332.0,5114.296031,N,00644.658055,E,1,06,1.7,79.5,M,,,,*34 -$GPRMC,144332.0,A,5114.296031,N,00644.658055,E,,,070709,,,A*67 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.7,1.7,2.0*3A -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,277,,18,09,244,21,17,26,047,33,15,15,168,35*74 -$GPGSV,3,2,11,12,58,239,33,30,23,243,24,14,26,313,,26,61,227,34*7C -$GPGSV,3,3,11,04,04,098,,09,80,101,33,27,63,111,34*4F -$GPGGA,144333.0,5114.295936,N,00644.657964,E,1,06,1.8,79.5,M,,,,*33 -$GPRMC,144333.0,A,5114.295936,N,00644.657964,E,,,070709,,,A*6F -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.7,1.8,2.0*35 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,277,,18,09,244,21,17,26,047,34,15,15,168,34*72 -$GPGSV,3,2,11,12,58,239,34,30,23,243,25,14,26,313,,26,61,227,33*7D -$GPGSV,3,3,11,04,04,098,,09,80,101,33,27,63,111,34*4F -$GPGGA,144334.0,5114.295837,N,00644.657919,E,1,06,1.8,79.0,M,,,,*3B -$GPRMC,144334.0,A,5114.295837,N,00644.657919,E,,,070709,,,A*62 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.7,1.8,2.0*35 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,277,,18,09,244,20,17,26,047,33,15,15,168,35*75 -$GPGSV,3,2,11,12,58,239,33,30,23,243,22,14,26,313,,26,61,227,33*7D -$GPGSV,3,3,11,04,04,098,,09,80,101,33,27,63,111,35*4E -$GPGGA,144335.0,5114.295762,N,00644.657994,E,1,06,1.8,78.0,M,,,,*31 -$GPRMC,144335.0,A,5114.295762,N,00644.657994,E,,,070709,,,A*69 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.6,1.8,1.9*3E -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,277,,18,09,244,22,17,26,047,33,15,15,168,35*77 -$GPGSV,3,2,11,12,58,239,35,30,23,243,22,14,26,313,,26,61,227,32*7A -$GPGSV,3,3,11,04,04,098,,09,80,101,33,27,63,111,34*4F -$GPGGA,144336.0,5114.295734,N,00644.657823,E,1,06,1.8,78.0,M,,,,*3C -$GPRMC,144336.0,A,5114.295734,N,00644.657823,E,,,070709,,,A*64 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.6,1.8,1.9*3E -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,277,,18,09,244,22,17,26,047,34,15,15,168,34*71 -$GPGSV,3,2,11,12,58,239,35,30,23,243,24,14,26,313,,26,61,227,34*7A -$GPGSV,3,3,11,04,04,098,,09,80,101,34,27,63,111,34*48 -$GPGGA,144337.0,5114.295629,N,00644.657622,E,1,06,1.8,78.0,M,,,,*3F -$GPRMC,144337.0,A,5114.295629,N,00644.657622,E,,,070709,,,A*67 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.6,1.8,1.9*3E -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,277,,18,09,244,22,17,26,047,35,15,15,168,34*70 -$GPGSV,3,2,11,12,58,239,36,30,23,243,26,14,26,313,,26,61,227,32*7D -$GPGSV,3,3,11,04,04,098,,09,80,101,33,27,63,111,35*4E -$GPGGA,144338.0,5114.295551,N,00644.657501,E,1,06,1.7,78.0,M,,,,*31 -$GPRMC,144338.0,A,5114.295551,N,00644.657501,E,,,070709,,,A*66 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.6,1.7,1.9*31 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,277,,18,09,244,22,17,26,047,35,15,15,168,34*70 -$GPGSV,3,2,11,12,58,239,35,30,23,243,25,14,26,313,,26,61,227,33*7C -$GPGSV,3,3,11,04,04,098,,09,80,101,33,27,63,111,34*4F -$GPGGA,144339.0,5114.295586,N,00644.657270,E,1,06,1.7,78.0,M,,,,*3B -$GPRMC,144339.0,A,5114.295586,N,00644.657270,E,,,070709,,,A*6C -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.6,1.7,1.9*31 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,277,,18,09,244,22,17,26,047,34,15,15,168,34*71 -$GPGSV,3,2,11,12,58,239,36,30,23,243,25,14,26,313,,26,61,227,33*7F -$GPGSV,3,3,11,04,04,098,,09,80,101,33,27,63,111,33*48 -$GPGGA,144340.0,5114.295634,N,00644.657164,E,1,06,1.8,78.0,M,,,,*36 -$GPRMC,144340.0,A,5114.295634,N,00644.657164,E,,,070709,,,A*6E -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.6,1.8,1.9*3E -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,277,,18,09,244,22,17,26,047,33,15,15,168,34*76 -$GPGSV,3,2,11,12,58,239,35,30,23,243,25,14,26,313,,26,61,227,34*7B -$GPGSV,3,3,11,04,04,098,,09,80,101,33,27,63,111,34*4F -$GPGGA,144341.0,5114.295651,N,00644.657134,E,1,06,1.8,78.0,M,,,,*31 -$GPRMC,144341.0,A,5114.295651,N,00644.657134,E,,,070709,,,A*69 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.6,1.8,1.9*3E -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,277,,18,09,244,22,17,26,047,34,15,15,168,34*71 -$GPGSV,3,2,11,12,58,239,36,30,23,243,25,14,26,313,,26,61,227,34*78 -$GPGSV,3,3,11,04,04,098,,09,80,101,32,27,63,111,34*4E -$GPGGA,144342.0,5114.295651,N,00644.657134,E,1,06,1.8,78.0,M,,,,*32 -$GPRMC,144342.0,A,5114.295651,N,00644.657134,E,,,070709,,,A*6A -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.7,1.8,2.0*35 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,277,,18,09,244,22,17,26,047,33,15,15,168,31*73 -$GPGSV,3,2,11,12,58,239,34,30,23,243,20,14,26,313,,26,61,227,34*7F -$GPGSV,3,3,11,04,04,098,,09,80,101,33,27,63,111,34*4F -$GPGGA,144343.0,5114.295123,N,00644.657310,E,1,06,1.8,78.5,M,,,,*30 -$GPRMC,144343.0,A,5114.295123,N,00644.657310,E,2.9,171.2,070709,,,A*63 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.7,1.8,2.0*35 -$GPVTG,171.2,T,,M,2.9,N,5.4,K*6F -$GPGSV,3,1,11,22,15,277,,18,09,244,22,17,26,047,32,15,15,168,32*71 -$GPGSV,3,2,11,12,58,239,35,30,23,243,23,14,26,313,,26,61,227,33*7A -$GPGSV,3,3,11,04,04,098,,09,80,101,33,27,63,111,34*4F -$GPGGA,144344.0,5114.293969,N,00644.657697,E,1,06,1.8,78.5,M,,,,*3D -$GPRMC,144344.0,A,5114.293969,N,00644.657697,E,5.1,171.6,070709,,,A*65 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.7,1.8,2.0*35 -$GPVTG,171.6,T,,M,5.1,N,9.4,K*68 -$GPGSV,3,1,11,22,15,277,,18,09,244,22,17,26,047,33,15,15,168,32*70 -$GPGSV,3,2,11,12,58,239,35,30,23,243,24,14,26,313,,26,61,227,34*7A -$GPGSV,3,3,11,04,04,098,,09,80,101,33,27,63,111,34*4F -$GPGGA,144345.0,5114.292061,N,00644.658447,E,1,06,1.8,78.0,M,,,,*39 -$GPRMC,144345.0,A,5114.292061,N,00644.658447,E,8.2,167.3,070709,,,A*68 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.7,1.8,2.0*35 -$GPVTG,167.3,T,,M,8.2,N,15.2,K*5F -$GPGSV,3,1,11,22,15,277,,18,09,244,22,17,26,047,32,15,15,168,33*70 -$GPGSV,3,2,11,12,58,239,35,30,23,243,26,14,26,313,,26,61,227,34*78 -$GPGSV,3,3,11,04,04,098,,09,80,101,33,27,63,111,34*4F -$GPGGA,144346.0,5114.289717,N,00644.659226,E,1,06,1.8,78.0,M,,,,*36 -$GPRMC,144346.0,A,5114.289717,N,00644.659226,E,9.6,166.7,070709,,,A*67 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.7,1.8,2.0*35 -$GPVTG,166.7,T,,M,9.6,N,17.7,K*58 -$GPGSV,3,1,11,22,15,277,,18,09,244,22,17,26,047,32,15,15,168,34*77 -$GPGSV,3,2,11,12,58,239,35,30,23,243,25,14,26,313,,26,61,227,34*7B -$GPGSV,3,3,11,04,04,098,,09,80,101,34,27,63,111,34*48 -$GPGGA,144347.0,5114.286833,N,00644.660433,E,1,06,1.8,78.0,M,,,,*39 -$GPRMC,144347.0,A,5114.286833,N,00644.660433,E,11.5,167.0,070709,,,A*54 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.7,1.8,2.0*35 -$GPVTG,167.0,T,,M,11.5,N,21.3,K*65 -$GPGSV,3,1,11,22,15,277,,18,09,244,14,17,26,047,33,15,15,168,34*73 -$GPGSV,3,2,11,12,58,239,34,30,23,243,27,14,26,313,,26,61,226,34*79 -$GPGSV,3,3,11,04,04,098,,09,80,101,34,27,63,111,34*48 -$GPGGA,144348.0,5114.283566,N,00644.661605,E,1,06,1.8,78.0,M,,,,*38 -$GPRMC,144348.0,A,5114.283566,N,00644.661605,E,12.8,167.1,070709,,,A*5A -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.8,1.8,2.0*3A -$GPVTG,167.1,T,,M,12.8,N,23.7,K*6C -$GPGSV,3,1,11,22,15,277,,18,08,244,14,17,26,047,33,15,15,168,33*75 -$GPGSV,3,2,11,12,58,239,35,30,23,243,26,14,26,313,,26,61,226,34*79 -$GPGSV,3,3,11,04,04,098,,09,80,101,35,27,63,111,34*49 -$GPGGA,144349.0,5114.279837,N,00644.662928,E,1,06,1.8,77.5,M,,,,*3C -$GPRMC,144349.0,A,5114.279837,N,00644.662928,E,14.7,166.7,070709,,,A*5A -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.7,1.8,2.0*35 -$GPVTG,166.7,T,,M,14.7,N,27.2,K*63 -$GPGSV,3,1,11,22,15,277,,18,08,244,14,17,26,047,33,15,15,168,31*77 -$GPGSV,3,2,11,12,58,240,35,30,23,243,27,14,26,313,,26,61,226,33*71 -$GPGSV,3,3,11,04,04,098,,09,80,101,35,27,63,111,34*49 -$GPGGA,144350.0,5114.275645,N,00644.664452,E,1,06,1.8,77.5,M,,,,*35 -$GPRMC,144350.0,A,5114.275645,N,00644.664452,E,16.4,166.5,070709,,,A*50 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.7,1.8,2.0*35 -$GPVTG,166.5,T,,M,16.4,N,30.3,K*67 -$GPGSV,1,1,00*79 -$GPGGA,144351.0,5114.270988,N,00644.666438,E,1,06,1.8,77.5,M,,,,*31 -$GPRMC,144351.0,A,5114.270988,N,00644.666438,E,18.0,165.9,070709,,,A*51 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.7,1.8,2.0*35 -$GPVTG,165.9,T,,M,18.0,N,33.4,K*66 -$GPGSV,3,1,11,22,15,277,,18,08,244,18,17,26,047,33,15,15,168,26*7D -$GPGSV,3,2,11,12,58,240,35,30,23,243,30,14,26,313,27,26,61,226,34*75 -$GPGSV,3,3,11,04,04,098,,09,80,101,33,27,63,111,34*4F -$GPGGA,144352.0,5114.265937,N,00644.668510,E,1,06,2.1,78.0,M,,,,*37 -$GPRMC,144352.0,A,5114.265937,N,00644.668510,E,19.3,166.4,070709,,,A*5B -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.2,2.1,2.4*3F -$GPVTG,166.4,T,,M,19.3,N,35.7,K*6F -$GPGSV,1,1,00*79 -$GPGGA,144353.0,5114.260488,N,00644.670688,E,1,06,2.6,78.0,M,,,,*36 -$GPRMC,144353.0,A,5114.260488,N,00644.670688,E,20.8,165.9,070709,,,A*52 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.0,2.6,3.0*38 -$GPVTG,165.9,T,,M,20.8,N,38.6,K*6C -$GPGSV,3,1,11,22,15,277,,18,08,244,18,17,26,047,23,15,15,168,23*79 -$GPGSV,3,2,11,12,58,240,35,30,23,243,29,14,26,313,28,26,61,226,34*72 -$GPGSV,3,3,11,04,04,098,,09,80,101,34,27,63,111,33*4F -$GPGGA,144354.0,5114.254624,N,00644.673192,E,1,06,3.2,78.0,M,,,,*38 -$GPRMC,144354.0,A,5114.254624,N,00644.673192,E,22.1,164.7,070709,,,A*5D -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,5.2,3.2,4.1*38 -$GPVTG,164.7,T,,M,22.1,N,41.0,K*60 -$GPGSV,3,1,11,22,15,277,,18,08,244,18,17,26,047,23,15,15,168,21*7B -$GPGSV,3,2,11,12,58,240,34,30,23,243,31,14,26,313,29,26,61,226,35*7A -$GPGSV,3,3,11,04,04,098,,09,80,101,34,27,63,111,34*48 -$GPGGA,144355.0,5114.248589,N,00644.676039,E,1,06,3.4,78.0,M,,,,*33 -$GPRMC,144355.0,A,5114.248589,N,00644.676039,E,22.8,162.7,070709,,,A*5F -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,5.7,3.4,4.5*3F -$GPVTG,162.7,T,,M,22.8,N,42.3,K*6F -$GPGSV,3,1,11,22,15,277,,18,08,244,18,17,26,047,27,15,14,168,21*7E -$GPGSV,3,2,11,12,58,240,33,30,23,243,28,14,26,313,30,26,61,226,32*7A -$GPGSV,3,3,11,04,04,098,,09,80,101,33,27,63,111,33*48 -$GPGGA,144356.0,5114.242068,N,00644.679418,E,1,06,2.7,78.0,M,,,,*3A -$GPRMC,144356.0,A,5114.242068,N,00644.679418,E,24.5,162.1,070709,,,A*59 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.2,2.7,3.3*38 -$GPVTG,162.1,T,,M,24.5,N,45.3,K*65 -$GPGSV,3,1,11,22,15,277,,18,08,244,18,17,26,047,25,15,14,168,21*7C -$GPGSV,3,2,11,12,58,240,23,30,23,243,22,14,26,313,28,26,61,226,25*7E -$GPGSV,3,3,11,04,04,098,,09,80,101,30,27,63,111,32*4A -$GPGGA,144357.0,5114.235505,N,00644.682924,E,1,06,2.2,78.0,M,,,,*36 -$GPRMC,144357.0,A,5114.235505,N,00644.682924,E,24.9,161.0,070709,,,A*5E -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.3,2.2,2.4*3D -$GPVTG,161.0,T,,M,24.9,N,46.2,K*69 -$GPGSV,3,1,11,22,15,277,,18,08,244,18,17,26,047,31,15,14,168,21*79 -$GPGSV,3,2,11,12,58,240,26,30,23,243,22,14,26,313,20,26,61,226,28*7E -$GPGSV,3,3,11,04,04,098,,09,80,101,32,27,63,111,33*49 -$GPGGA,144358.0,5114.228636,N,00644.686806,E,1,06,2.3,78.5,M,,,,*37 -$GPRMC,144358.0,A,5114.228636,N,00644.686806,E,26.1,160.6,070709,,,A*56 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.4,2.3,2.5*3A -$GPVTG,160.6,T,,M,26.1,N,48.4,K*6C -$GPGSV,3,1,11,22,15,277,,18,08,244,18,17,26,047,30,15,14,168,21*78 -$GPGSV,3,2,11,12,58,240,27,30,23,243,26,14,26,313,20,26,61,226,29*7A -$GPGSV,3,3,11,04,04,098,,09,80,101,33,27,63,111,33*48 -$GPGGA,144359.0,5114.221728,N,00644.690714,E,1,06,2.3,78.5,M,,,,*3A -$GPRMC,144359.0,A,5114.221728,N,00644.690714,E,26.6,160.1,070709,,,A*5B -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.5,2.3,2.6*38 -$GPVTG,160.1,T,,M,26.6,N,49.2,K*6B -$GPGSV,3,1,11,22,15,277,,18,08,244,18,17,26,047,30,15,14,168,22*7B -$GPGSV,3,2,11,12,58,240,27,30,24,243,25,14,26,313,21,26,61,226,27*71 -$GPGSV,3,3,11,04,04,098,,09,80,101,32,27,63,111,33*49 -$GPGGA,144400.0,5114.214931,N,00644.694782,E,1,06,2.1,78.5,M,,,,*38 -$GPRMC,144400.0,A,5114.214931,N,00644.694782,E,26.2,158.9,070709,,,A*5C -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.1,2.1,2.3*3B -$GPVTG,158.9,T,,M,26.2,N,48.4,K*6B -$GPGSV,3,1,11,22,15,277,,18,08,244,18,17,26,047,21,15,14,168,25*7C -$GPGSV,3,2,11,12,58,240,26,30,24,243,25,14,26,313,22,26,61,226,27*73 -$GPGSV,3,3,11,04,04,098,,09,80,102,30,27,63,111,33*48 -$GPGGA,144401.0,5114.208433,N,00644.698826,E,1,06,2.5,79.0,M,,,,*36 -$GPRMC,144401.0,A,5114.208433,N,00644.698826,E,25.2,158.7,070709,,,A*5F -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.8,2.5,2.8*3D -$GPVTG,158.7,T,,M,25.2,N,46.8,K*64 -$GPGSV,3,1,11,22,15,277,,18,08,244,18,17,26,047,22,15,14,168,21*7B -$GPGSV,3,2,11,12,58,240,29,30,24,243,24,14,26,313,22,26,61,226,32*79 -$GPGSV,3,3,11,04,04,098,,09,80,102,33,27,63,111,33*4B -$GPGGA,144402.0,5114.201966,N,00644.703080,E,1,06,3.0,79.0,M,,,,*32 -$GPRMC,144402.0,A,5114.201966,N,00644.703080,E,25.1,157.4,070709,,,A*50 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.9,3.0,3.8*3E -$GPVTG,157.4,T,,M,25.1,N,46.5,K*66 -$GPGSV,3,1,11,22,15,277,,18,08,244,18,17,26,047,22,15,14,168,21*7B -$GPGSV,3,2,11,12,58,240,34,30,24,243,22,14,26,313,23,26,61,226,33*73 -$GPGSV,3,3,11,04,04,098,,09,80,102,33,27,63,111,33*4B -$GPGGA,144403.0,5114.195888,N,00644.707556,E,1,06,3.1,79.0,M,,,,*37 -$GPRMC,144403.0,A,5114.195888,N,00644.707556,E,24.2,155.7,070709,,,A*57 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,5.2,3.1,4.1*3B -$GPVTG,155.7,T,,M,24.2,N,44.8,K*6A -$GPGSV,3,1,11,22,15,277,,18,08,244,18,17,26,047,21,15,14,168,23*7A -$GPGSV,3,2,11,12,58,240,28,30,24,243,20,14,26,313,29,26,61,226,28*7C -$GPGSV,3,3,11,04,04,098,,09,80,102,33,27,63,111,34*4C -$GPGGA,144404.0,5114.190339,N,00644.711967,E,1,06,2.9,79.0,M,,,,*34 -$GPRMC,144404.0,A,5114.190339,N,00644.711967,E,23.1,152.9,070709,,,A*50 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.6,2.9,3.5*34 -$GPVTG,152.9,T,,M,23.1,N,42.8,K*61 -$GPGSV,3,1,11,22,15,277,,18,08,244,18,17,26,047,21,15,14,168,24*7D -$GPGSV,3,2,11,12,58,240,29,30,24,243,21,14,26,313,23,26,61,226,29*77 -$GPGSV,3,3,11,04,04,098,,09,80,102,33,27,63,111,34*4C -$GPGGA,144405.0,5114.184543,N,00644.716584,E,1,06,3.1,79.0,M,,,,*34 -$GPRMC,144405.0,A,5114.184543,N,00644.716584,E,23.3,153.6,070709,,,A*55 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.9,3.1,3.8*3F -$GPVTG,153.6,T,,M,23.3,N,43.2,K*66 -$GPGSV,3,1,11,22,15,277,,18,08,244,18,17,26,047,21,15,14,168,28*71 -$GPGSV,3,2,11,12,58,240,30,30,24,243,21,14,26,313,22,26,61,226,28*7F -$GPGSV,3,3,11,04,04,098,,09,80,102,34,27,63,111,35*4A -$GPGGA,144406.0,5114.178822,N,00644.721241,E,1,06,3.4,79.0,M,,,,*31 -$GPRMC,144406.0,A,5114.178822,N,00644.721241,E,23.0,152.7,070709,,,A*56 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,5.3,3.4,4.0*3E -$GPVTG,152.7,T,,M,23.0,N,42.6,K*60 -$GPGSV,3,1,11,22,15,277,,18,08,244,18,17,26,047,21,15,14,168,20*79 -$GPGSV,3,2,11,12,58,240,29,30,24,243,21,14,26,313,22,26,61,226,28*77 -$GPGSV,3,3,11,04,04,098,,09,80,102,33,27,63,111,35*4D -$GPGGA,144407.0,5114.173240,N,00644.725812,E,1,06,14.0,79.0,M,,,,*0F -$GPRMC,144407.0,A,5114.173240,N,00644.725812,E,22.6,152.9,070709,,,A*53 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,23.9,14.0,19.4*0A -$GPVTG,152.9,T,,M,22.6,N,41.9,K*65 -$GPGSV,3,1,11,22,15,277,,18,08,244,18,17,26,047,21,15,14,168,22*7B -$GPGSV,3,2,11,12,58,240,35,30,24,243,25,14,26,313,22,26,61,226,32*75 -$GPGSV,3,3,11,04,04,098,,09,80,102,33,27,63,111,34*4C -$GPGGA,144408.0,5114.167544,N,00644.730560,E,1,06,11.2,79.0,M,,,,*0D -$GPRMC,144408.0,A,5114.167544,N,00644.730560,E,22.8,152.5,070709,,,A*54 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,19.0,11.2,15.2*07 -$GPVTG,152.5,T,,M,22.8,N,42.2,K*6F -$GPGSV,3,1,11,22,15,277,,18,08,244,18,17,26,047,21,15,14,168,21*78 -$GPGSV,3,2,11,12,58,240,27,30,24,243,27,14,26,313,25,26,61,226,26*76 -$GPGSV,3,3,11,04,04,098,,09,80,102,33,27,63,111,34*4C -$GPGGA,144409.0,5114.161984,N,00644.735005,E,1,06,15.2,79.5,M,,,,*08 -$GPRMC,144409.0,A,5114.161984,N,00644.735005,E,22.2,154.3,070709,,,A*5A -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,25.5,15.2,20.4*09 -$GPVTG,154.3,T,,M,22.2,N,41.2,K*66 -$GPGSV,3,1,11,22,15,277,,18,08,244,18,17,26,047,21,15,14,168,22*7B -$GPGSV,3,2,11,12,58,240,35,30,24,243,24,14,26,313,21,26,61,226,34*71 -$GPGSV,3,3,11,04,04,098,,09,80,102,33,27,63,111,35*4D -$GPGGA,144410.0,5114.156797,N,00644.739547,E,1,06,14.4,79.5,M,,,,*00 -$GPRMC,144410.0,A,5114.156797,N,00644.739547,E,21.5,151.3,070709,,,A*54 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,23.9,14.4,19.1*0B -$GPVTG,151.3,T,,M,21.5,N,39.8,K*62 -$GPGSV,3,1,11,22,15,277,,18,08,244,18,17,26,047,21,15,14,168,26*7F -$GPGSV,3,2,11,12,58,240,34,30,24,243,24,14,26,313,28,26,61,226,33*7E -$GPGSV,3,3,11,04,04,098,,09,80,102,33,27,63,111,35*4D -$GPGGA,144411.0,5114.151753,N,00644.744355,E,1,05,14.0,79.5,M,,,,*06 -$GPRMC,144411.0,A,5114.151753,N,00644.744355,E,21.0,149.3,070709,,,A*59 -$GPGSA,A,3,09,12,15,26,27,,,,,,,,22.6,14.0,17.7*0F -$GPVTG,149.3,T,,M,21.0,N,38.9,K*6E -$GPGSV,3,1,11,22,15,277,,18,08,244,,17,26,047,21,15,14,168,24*74 -$GPGSV,3,2,11,12,58,240,29,30,24,243,24,14,26,313,33,26,61,226,28*72 -$GPGSV,3,3,11,04,04,098,,09,80,102,35,27,63,111,36*48 -$GPGGA,144412.0,5114.146618,N,00644.749374,E,1,05,13.4,79.5,M,,,,*00 -$GPRMC,144412.0,A,5114.146618,N,00644.749374,E,21.6,147.7,070709,,,A*50 -$GPGSA,A,3,09,12,15,26,27,,,,,,,,22.2,13.4,17.7*08 -$GPVTG,147.7,T,,M,21.6,N,40.1,K*65 -$GPGSV,3,1,11,22,15,277,,18,08,244,,17,26,047,24,15,14,168,21*74 -$GPGSV,3,2,11,12,58,240,28,30,24,243,24,14,26,313,31,26,61,226,28*71 -$GPGSV,3,3,11,04,04,098,,09,80,102,32,27,63,111,34*4D -$GPGGA,144413.0,5114.141875,N,00644.754554,E,1,05,13.9,79.5,M,,,,*06 -$GPRMC,144413.0,A,5114.141875,N,00644.754554,E,20.8,145.5,070709,,,A*54 -$GPGSA,A,3,09,12,15,26,27,,,,,,,,23.5,13.9,18.9*02 -$GPVTG,145.5,T,,M,20.8,N,38.5,K*61 -$GPGSV,3,1,11,22,15,277,,18,08,244,,17,26,047,24,15,14,168,27*72 -$GPGSV,3,2,11,12,58,240,28,30,24,243,26,14,26,313,25,26,61,226,27*79 -$GPGSV,3,3,11,04,04,098,,09,80,102,31,27,63,111,33*49 -$GPGGA,144414.0,5114.137055,N,00644.759814,E,1,05,15.1,79.5,M,,,,*00 -$GPRMC,144414.0,A,5114.137055,N,00644.759814,E,21.1,146.2,070709,,,A*50 -$GPGSA,A,3,09,12,15,26,27,,,,,,,,24.0,15.1,18.6*01 -$GPVTG,146.2,T,,M,21.1,N,39.1,K*68 -$GPGSV,3,1,11,22,15,277,,18,08,244,,17,26,047,24,15,14,168,22*77 -$GPGSV,3,2,11,12,58,240,26,30,24,243,27,14,26,313,25,26,61,226,27*76 -$GPGSV,3,3,11,04,04,098,,09,80,102,32,27,63,111,34*4D -$GPGGA,144415.0,5114.132222,N,00644.765165,E,1,06,2.3,79.5,M,,,,*31 -$GPRMC,144415.0,A,5114.132222,N,00644.765165,E,21.4,144.9,070709,,,A*5A -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.5,2.3,2.6*38 -$GPVTG,144.9,T,,M,21.4,N,39.6,K*63 -$GPGSV,3,1,11,22,15,277,,18,08,244,,17,26,047,24,15,14,168,22*77 -$GPGSV,3,2,11,12,58,240,26,30,24,243,24,14,26,313,21,26,61,226,27*71 -$GPGSV,3,3,11,04,04,098,,09,80,102,34,27,63,111,35*4A -$GPGGA,144416.0,5114.127017,N,00644.770964,E,1,06,2.4,79.5,M,,,,*38 -$GPRMC,144416.0,A,5114.127017,N,00644.770964,E,22.7,144.1,070709,,,A*5C -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.8,2.4,2.9*3D -$GPVTG,144.1,T,,M,22.7,N,42.0,K*61 -$GPGSV,3,1,11,22,15,277,,18,08,244,,17,26,047,24,15,14,168,23*76 -$GPGSV,3,2,11,12,58,240,25,30,24,243,27,14,26,313,21,26,61,226,25*73 -$GPGSV,3,3,11,04,04,098,,09,80,102,33,27,63,111,35*4D -$GPGGA,144417.0,5114.121806,N,00644.776999,E,1,06,2.5,79.5,M,,,,*32 -$GPRMC,144417.0,A,5114.121806,N,00644.776999,E,23.2,143.2,070709,,,A*57 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.7,2.5,2.7*3D -$GPVTG,143.2,T,,M,23.2,N,43.0,K*60 -$GPGSV,3,1,11,22,15,277,,18,08,244,,17,26,047,24,15,14,168,23*76 -$GPGSV,3,2,11,12,58,240,34,30,24,243,25,14,26,313,21,26,61,226,34*71 -$GPGSV,3,3,11,04,04,098,,09,80,102,35,27,63,111,36*48 -$GPGGA,144418.0,5114.116523,N,00644.783989,E,1,06,9.8,79.5,M,,,,*3E -$GPRMC,144418.0,A,5114.116523,N,00644.783989,E,24.7,140.8,070709,,,A*56 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,16.8,9.8,13.7*30 -$GPVTG,140.8,T,,M,24.7,N,45.8,K*65 -$GPGSV,3,1,11,22,15,277,,18,08,244,,17,26,047,22,15,14,168,23*70 -$GPGSV,3,2,11,12,58,240,25,30,24,243,27,14,26,313,22,26,60,226,25*71 -$GPGSV,3,3,11,04,04,098,,09,80,102,34,27,63,111,36*49 -$GPGGA,144419.0,5114.111419,N,00644.790824,E,1,06,3.0,79.5,M,,,,*36 -$GPRMC,144419.0,A,5114.111419,N,00644.790824,E,24.3,140.1,070709,,,A*51 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.7,3.0,3.6*3E -$GPVTG,140.1,T,,M,24.3,N,45.1,K*61 -$GPGSV,3,1,11,22,15,277,,18,08,244,,17,26,047,21,15,14,168,23*73 -$GPGSV,3,2,11,12,58,240,29,30,24,243,28,14,26,313,24,26,60,226,28*79 -$GPGSV,3,3,11,04,04,098,,09,80,102,35,27,63,111,37*49 -$GPGGA,144420.0,5114.105235,N,00644.798363,E,1,06,3.2,79.5,M,,,,*33 -$GPRMC,144420.0,A,5114.105235,N,00644.798363,E,27.1,140.7,070709,,,A*51 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,5.2,3.2,4.1*38 -$GPVTG,140.7,T,,M,27.1,N,50.2,K*61 -$GPGSV,3,1,11,22,15,277,,18,08,244,,17,26,047,21,15,14,168,23*73 -$GPGSV,3,2,11,12,58,240,31,30,24,243,23,14,26,313,24,26,60,226,30*72 -$GPGSV,3,3,11,04,04,098,,09,80,102,34,27,63,111,35*4A -$GPGGA,144421.0,5114.099462,N,00644.806565,E,1,06,4.3,79.5,M,,,,*3C -$GPRMC,144421.0,A,5114.099462,N,00644.806565,E,28.1,137.1,070709,,,A*51 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,7.7,4.3,6.3*39 -$GPVTG,137.1,T,,M,28.1,N,52.0,K*68 -$GPGSV,3,1,11,22,15,277,,18,08,244,,17,26,047,21,15,14,168,23*73 -$GPGSV,3,2,11,12,58,240,26,30,24,243,20,14,26,313,28,26,60,226,27*7D -$GPGSV,3,3,11,04,04,098,,09,80,102,32,27,63,111,36*4F -$GPGGA,144422.0,5114.093767,N,00644.814929,E,1,06,4.1,79.0,M,,,,*33 -$GPRMC,144422.0,A,5114.093767,N,00644.814929,E,27.8,137.9,070709,,,A*57 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,7.4,4.1,6.2*39 -$GPVTG,137.9,T,,M,27.8,N,51.5,K*60 -$GPGSV,3,1,11,22,15,277,,18,08,244,,17,26,047,21,15,14,168,23*73 -$GPGSV,3,2,11,12,58,240,34,30,24,243,20,14,26,313,23,26,60,226,34*77 -$GPGSV,3,3,11,04,04,098,,09,80,102,34,27,63,111,36*49 -$GPGGA,144423.0,5114.088202,N,00644.823388,E,1,06,4.4,79.5,M,,,,*3B -$GPRMC,144423.0,A,5114.088202,N,00644.823388,E,27.3,137.0,070709,,,A*5D -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,8.0,4.4,6.7*32 -$GPVTG,137.0,T,,M,27.3,N,50.6,K*60 -$GPGSV,3,1,11,22,15,277,,18,08,244,,17,26,047,24,15,14,168,23*76 -$GPGSV,3,2,11,12,58,240,34,30,24,243,20,14,26,313,29,26,60,226,35*7C -$GPGSV,3,3,11,04,04,098,,09,80,102,34,27,63,111,36*49 -$GPGGA,144424.0,5114.083127,N,00644.831414,E,1,06,3.8,79.0,M,,,,*3C -$GPRMC,144424.0,A,5114.083127,N,00644.831414,E,26.1,136.2,070709,,,A*54 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,6.6,3.8,5.4*31 -$GPVTG,136.2,T,,M,26.1,N,48.4,K*6B -$GPGSV,3,1,11,22,15,277,,18,08,244,,17,26,047,26,15,14,168,23*74 -$GPGSV,3,2,11,12,58,240,34,30,24,243,20,14,26,313,31,26,60,226,34*74 -$GPGSV,3,3,11,04,04,098,,09,79,102,35,27,63,111,37*4F -$GPGGA,144425.0,5114.078626,N,00644.839079,E,1,05,3.7,79.0,M,,,,*34 -$GPRMC,144425.0,A,5114.078626,N,00644.839079,E,24.2,136.2,070709,,,A*51 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,6.4,3.7,5.1*3D -$GPVTG,136.2,T,,M,24.2,N,44.8,K*6A -$GPGSV,3,1,11,22,15,277,,18,08,244,,17,26,047,28,15,14,168,23*7A -$GPGSV,3,2,11,12,58,240,35,30,24,243,20,14,26,313,32,26,60,226,35*77 -$GPGSV,3,3,11,04,04,098,,09,79,102,36,27,63,111,36*4D -$GPGGA,144426.0,5114.074253,N,00644.846205,E,1,05,3.8,79.0,M,,,,*33 -$GPRMC,144426.0,A,5114.074253,N,00644.846205,E,22.0,136.6,070709,,,A*59 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,6.4,3.8,5.1*32 -$GPVTG,136.6,T,,M,22.0,N,40.8,K*6E -$GPGSV,3,1,11,22,15,275,,18,08,244,,17,26,047,26,15,14,168,22*77 -$GPGSV,3,2,11,12,58,240,35,30,24,243,20,14,26,313,31,26,60,226,35*74 -$GPGSV,3,3,11,04,04,098,,09,79,102,36,27,63,111,36*4D -$GPGGA,144427.0,5114.070270,N,00644.852300,E,1,05,3.9,79.0,M,,,,*37 -$GPRMC,144427.0,A,5114.070270,N,00644.852300,E,19.0,139.2,070709,,,A*5F -$GPGSA,A,3,09,12,17,26,27,,,,,,,,6.6,3.9,5.3*33 -$GPVTG,139.2,T,,M,19.0,N,35.2,K*65 -$GPGSV,3,1,11,22,15,275,,18,08,244,,17,26,047,25,15,14,168,30*77 -$GPGSV,3,2,11,12,58,240,35,30,24,243,20,14,26,313,32,26,60,226,34*76 -$GPGSV,3,3,11,04,04,098,,09,79,102,35,27,63,111,35*4D -$GPGGA,144428.0,5114.065948,N,00644.857068,E,1,06,2.7,79.0,M,,,,*38 -$GPRMC,144428.0,A,5114.065948,N,00644.857068,E,18.0,151.4,070709,,,A*55 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.2,2.7,3.2*39 -$GPVTG,151.4,T,,M,18.0,N,33.3,K*6B -$GPGSV,3,1,11,22,15,275,,18,08,244,,17,26,047,28,15,14,168,30*7A -$GPGSV,3,2,11,12,58,240,34,30,24,243,26,14,26,313,30,26,60,226,35*72 -$GPGSV,3,3,11,04,04,098,,09,79,102,34,27,63,111,33*4A -$GPGGA,144429.0,5114.061276,N,00644.859814,E,1,06,2.1,78.5,M,,,,*34 -$GPRMC,144429.0,A,5114.061276,N,00644.859814,E,18.3,167.5,070709,,,A*5C -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.3,2.1,2.5*3F -$GPVTG,167.5,T,,M,18.3,N,33.9,K*66 -$GPGSV,3,1,11,22,15,275,,18,08,244,,17,26,047,28,15,14,168,30*7A -$GPGSV,3,2,11,12,58,240,35,30,24,243,26,14,26,313,27,26,60,226,34*74 -$GPGSV,3,3,11,04,04,098,,09,79,102,33,27,63,111,33*4D -$GPGGA,144430.0,5114.056161,N,00644.859980,E,1,06,2.2,78.5,M,,,,*32 -$GPRMC,144430.0,A,5114.056161,N,00644.859980,E,18.8,182.6,070709,,,A*5A -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.5,2.2,2.6*39 -$GPVTG,182.6,T,,M,18.8,N,34.9,K*62 -$GPGSV,3,1,11,22,15,275,,18,08,244,,17,26,047,29,15,14,168,20*7A -$GPGSV,3,2,11,12,58,240,34,30,24,243,26,14,26,313,20,26,60,226,36*70 -$GPGSV,3,3,11,04,04,098,,09,79,102,31,27,63,111,35*49 -$GPGGA,144431.0,5114.051046,N,00644.858571,E,1,06,2.8,78.5,M,,,,*39 -$GPRMC,144431.0,A,5114.051046,N,00644.858571,E,18.9,191.9,070709,,,A*57 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.5,2.8,3.5*36 -$GPVTG,191.9,T,,M,18.9,N,35.1,K*67 -$GPGSV,3,1,11,22,15,275,,18,08,244,,17,26,047,29,15,14,168,22*78 -$GPGSV,3,2,11,12,58,240,34,30,24,243,26,14,26,313,21,26,60,226,34*73 -$GPGSV,3,3,11,04,04,098,,09,79,102,32,27,63,111,33*4C -$GPGGA,144432.0,5114.045245,N,00644.856791,E,1,06,2.5,79.0,M,,,,*35 -$GPRMC,144432.0,A,5114.045245,N,00644.856791,E,20.8,193.0,070709,,,A*53 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.0,2.5,3.1*3A -$GPVTG,193.0,T,,M,20.8,N,38.5,K*6F -$GPGSV,3,1,11,22,15,275,,18,08,244,,17,26,047,28,15,14,168,25*7E -$GPGSV,3,2,11,12,58,240,36,30,24,243,26,14,26,313,24,26,60,226,36*76 -$GPGSV,3,3,11,04,04,098,,09,79,102,31,27,63,111,33*4F -$GPGGA,144433.0,5114.039311,N,00644.854578,E,1,06,2.4,79.0,M,,,,*39 -$GPRMC,144433.0,A,5114.039311,N,00644.854578,E,21.4,194.5,070709,,,A*51 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.8,2.4,3.0*35 -$GPVTG,194.5,T,,M,21.4,N,39.7,K*63 -$GPGSV,3,1,11,22,15,275,18,18,08,244,,17,26,047,25,15,14,168,29*76 -$GPGSV,3,2,11,12,58,240,35,30,24,243,26,14,26,313,20,26,60,226,35*72 -$GPGSV,3,3,11,04,04,098,,09,79,102,30,27,63,111,32*4F -$GPGGA,144434.0,5114.033538,N,00644.852124,E,1,06,2.5,79.5,M,,,,*36 -$GPRMC,144434.0,A,5114.033538,N,00644.852124,E,21.2,195.4,070709,,,A*5C -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.0,2.5,3.1*3A -$GPVTG,195.4,T,,M,21.2,N,39.3,K*61 -$GPGSV,3,1,11,22,15,275,18,18,08,244,,17,26,047,26,15,14,168,29*75 -$GPGSV,3,2,11,12,58,240,37,30,24,243,26,14,26,313,20,26,60,226,36*73 -$GPGSV,3,3,11,04,04,098,,09,79,102,31,27,63,111,30*4C -$GPGGA,144435.0,5114.027719,N,00644.849650,E,1,06,2.3,79.5,M,,,,*3B -$GPRMC,144435.0,A,5114.027719,N,00644.849650,E,21.9,194.7,070709,,,A*5E -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.6,2.3,2.8*35 -$GPVTG,194.7,T,,M,21.9,N,40.5,K*60 -$GPGSV,3,1,11,22,15,275,18,18,08,244,,17,26,047,28,15,14,168,25*77 -$GPGSV,3,2,11,12,58,240,37,30,24,243,26,14,26,313,21,26,60,226,36*72 -$GPGSV,3,3,11,04,04,098,,09,79,102,30,27,63,111,23*4F -$GPGGA,144436.0,5114.021789,N,00644.847231,E,1,06,2.6,79.5,M,,,,*3F -$GPRMC,144436.0,A,5114.021789,N,00644.847231,E,21.7,194.8,070709,,,A*5E -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.0,2.6,3.1*39 -$GPVTG,194.8,T,,M,21.7,N,40.1,K*65 -$GPGSV,3,1,11,22,15,275,18,18,08,244,,17,26,047,25,15,14,168,22*7D -$GPGSV,3,2,11,12,58,240,37,30,24,243,26,14,26,313,27,26,60,226,36*74 -$GPGSV,3,3,11,04,04,098,,09,79,102,30,27,63,111,28*44 -$GPGGA,144437.0,5114.016036,N,00644.844731,E,1,06,3.0,79.5,M,,,,*38 -$GPRMC,144437.0,A,5114.016036,N,00644.844731,E,22.0,195.6,070709,,,A*55 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.9,3.0,3.8*3E -$GPVTG,195.6,T,,M,22.0,N,40.7,K*68 -$GPGSV,3,1,11,22,15,275,18,18,08,244,,17,26,047,23,15,14,168,22*7B -$GPGSV,3,2,11,12,58,240,36,30,24,243,,14,26,313,28,26,60,226,36*7E -$GPGSV,3,3,11,04,04,098,,09,79,102,30,27,63,111,33*4E -$GPGGA,144438.0,5114.010039,N,00644.842292,E,1,06,3.3,80.0,M,,,,*34 -$GPRMC,144438.0,A,5114.010039,N,00644.842292,E,22.2,195.2,070709,,,A*5F -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,5.5,3.3,4.3*3C -$GPVTG,195.2,T,,M,22.2,N,41.1,K*69 -$GPGSV,3,1,11,22,15,275,18,18,08,244,,17,26,047,22,15,14,168,20*78 -$GPGSV,3,2,11,12,58,240,36,30,24,243,24,14,26,313,22,26,60,226,36*72 -$GPGSV,3,3,11,04,04,098,,09,79,102,30,27,63,111,33*4E -$GPGGA,144439.0,5114.004001,N,00644.839944,E,1,06,3.6,80.0,M,,,,*32 -$GPRMC,144439.0,A,5114.004001,N,00644.839944,E,22.1,195.3,070709,,,A*5E -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,6.1,3.6,4.9*34 -$GPVTG,195.3,T,,M,22.1,N,40.9,K*62 -$GPGSV,3,1,11,22,15,275,18,18,08,244,,17,26,047,22,15,14,168,22*7A -$GPGSV,3,2,11,12,58,240,28,30,24,243,25,14,26,313,21,26,60,226,33*7A -$GPGSV,3,3,11,04,04,098,,09,79,102,31,27,63,111,33*4F -$GPGGA,144440.0,5113.998452,N,00644.837278,E,1,06,3.0,80.0,M,,,,*39 -$GPRMC,144440.0,A,5113.998452,N,00644.837278,E,21.3,195.7,070709,,,A*56 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.7,3.0,3.6*3E -$GPVTG,195.7,T,,M,21.3,N,39.4,K*64 -$GPGSV,3,1,11,22,15,275,18,18,08,244,,17,26,047,22,15,14,168,22*7A -$GPGSV,3,2,11,12,58,240,32,30,24,243,24,14,26,313,22,26,60,226,33*73 -$GPGSV,3,3,11,04,04,098,,09,79,102,30,27,63,111,33*4E -$GPGGA,144441.0,5113.992889,N,00644.834899,E,1,06,3.0,80.0,M,,,,*3E -$GPRMC,144441.0,A,5113.992889,N,00644.834899,E,20.8,195.2,070709,,,A*5E -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.9,3.0,3.8*3E -$GPVTG,195.2,T,,M,20.8,N,38.4,K*6A -$GPGSV,3,1,11,22,15,275,18,18,08,244,,17,26,047,22,15,14,168,21*79 -$GPGSV,3,2,11,12,58,240,37,30,24,243,25,14,26,313,22,26,60,226,36*72 -$GPGSV,3,3,11,04,04,098,,09,79,102,32,27,63,111,33*4C -$GPGGA,144442.0,5113.987307,N,00644.832470,E,1,06,9.8,80.0,M,,,,*3B -$GPRMC,144442.0,A,5113.987307,N,00644.832470,E,20.8,195.0,070709,,,A*5B -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,16.8,9.8,13.6*31 -$GPVTG,195.0,T,,M,20.8,N,38.6,K*6A -$GPGSV,3,1,11,22,15,275,18,18,08,244,,17,26,047,22,15,14,168,25*7D -$GPGSV,3,2,11,12,58,240,37,30,24,243,23,14,26,313,22,26,60,226,36*74 -$GPGSV,3,3,11,04,04,098,,09,79,102,31,27,63,111,32*4E -$GPGGA,144443.0,5113.981901,N,00644.829971,E,1,06,9.6,80.0,M,,,,*38 -$GPRMC,144443.0,A,5113.981901,N,00644.829971,E,20.4,196.3,070709,,,A*5A -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,15.5,9.6,12.2*34 -$GPVTG,196.3,T,,M,20.4,N,37.8,K*67 -$GPGSV,3,1,11,22,15,275,18,18,08,244,,17,26,047,22,15,14,168,24*7C -$GPGSV,3,2,11,12,58,240,37,30,24,243,23,14,26,313,22,26,60,226,36*74 -$GPGSV,3,3,11,04,04,098,,09,79,102,30,27,63,111,32*4F -$GPGGA,144444.0,5113.976600,N,00644.827532,E,1,06,9.1,80.0,M,,,,*3B -$GPRMC,144444.0,A,5113.976600,N,00644.827532,E,19.9,196.6,070709,,,A*5C -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,15.0,9.1,11.9*3E -$GPVTG,196.6,T,,M,19.9,N,36.9,K*65 -$GPGSV,3,1,11,22,15,275,18,18,08,244,,17,26,047,22,15,14,168,20*78 -$GPGSV,3,2,11,12,58,240,37,30,24,243,24,14,26,313,21,26,60,226,36*70 -$GPGSV,3,3,11,04,04,098,,09,79,102,31,27,63,111,33*4F -$GPGGA,144445.0,5113.971367,N,00644.825183,E,1,06,8.7,79.5,M,,,,*31 -$GPRMC,144445.0,A,5113.971367,N,00644.825183,E,19.2,195.4,070709,,,A*58 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,15.4,8.7,12.7*30 -$GPVTG,195.4,T,,M,19.2,N,35.6,K*63 -$GPGSV,3,1,11,22,15,275,18,18,08,244,,17,26,047,22,15,14,168,20*78 -$GPGSV,3,2,11,12,58,240,32,30,24,243,25,14,26,313,21,26,60,226,34*76 -$GPGSV,3,3,11,04,04,098,,09,79,102,32,27,63,111,33*4C -$GPGGA,144446.0,5113.966625,N,00644.822935,E,1,05,9.1,79.5,M,,,,*31 -$GPRMC,144446.0,A,5113.966625,N,00644.822935,E,18.0,196.7,070709,,,A*5F -$GPGSA,A,3,09,12,15,26,27,,,,,,,,16.0,9.1,13.1*31 -$GPVTG,196.7,T,,M,18.0,N,33.4,K*64 -$GPGSV,3,1,11,22,15,275,18,18,08,244,,17,26,047,22,15,14,168,21*79 -$GPGSV,3,2,11,12,58,240,37,30,24,243,22,14,26,313,21,26,60,226,37*77 -$GPGSV,3,3,11,04,04,098,,09,79,102,31,27,63,111,33*4F -$GPGGA,144447.0,5113.962227,N,00644.820948,E,1,05,8.9,79.5,M,,,,*33 -$GPRMC,144447.0,A,5113.962227,N,00644.820948,E,16.3,193.4,070709,,,A*5F -$GPGSA,A,3,09,12,15,26,27,,,,,,,,15.7,8.9,12.9*35 -$GPVTG,193.4,T,,M,16.3,N,30.3,K*6B -$GPGSV,3,1,11,22,15,275,18,18,08,244,,17,26,047,22,15,14,168,21*79 -$GPGSV,3,2,11,12,58,240,37,30,24,243,24,14,26,313,21,26,60,226,37*71 -$GPGSV,3,3,11,04,04,098,,09,79,102,31,27,63,111,33*4F -$GPGGA,144448.0,5113.958073,N,00644.819490,E,1,05,8.7,79.5,M,,,,*3A -$GPRMC,144448.0,A,5113.958073,N,00644.819490,E,15.3,191.7,070709,,,A*5A -$GPGSA,A,3,09,12,15,26,27,,,,,,,,15.4,8.7,12.7*36 -$GPVTG,191.7,T,,M,15.3,N,28.3,K*60 -$GPGSV,3,1,11,22,15,275,18,18,08,244,,17,26,047,22,15,14,168,21*79 -$GPGSV,3,2,11,12,58,240,37,30,24,243,26,14,26,313,22,26,60,226,36*71 -$GPGSV,3,3,11,04,04,098,,09,79,102,31,27,63,111,34*48 -$GPGGA,144449.0,5113.954736,N,00644.818062,E,1,05,8.6,79.5,M,,,,*38 -$GPRMC,144449.0,A,5113.954736,N,00644.818062,E,13.2,191.0,070709,,,A*59 -$GPGSA,A,3,09,12,15,26,27,,,,,,,,15.5,8.6,12.9*38 -$GPVTG,191.0,T,,M,13.2,N,24.5,K*6A -$GPGSV,3,1,11,22,15,275,18,18,08,244,,17,26,047,21,15,14,168,23*78 -$GPGSV,3,2,11,12,58,240,37,30,24,243,23,14,26,313,23,26,60,226,36*75 -$GPGSV,3,3,11,04,04,098,,09,79,102,30,27,63,111,35*48 -$GPGGA,144450.0,5113.951769,N,00644.816644,E,1,06,3.8,79.5,M,,,,*35 -$GPRMC,144450.0,A,5113.951769,N,00644.816644,E,11.7,193.9,070709,,,A*5E -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,6.3,3.8,5.0*30 -$GPVTG,193.9,T,,M,11.7,N,21.7,K*61 -$GPGSV,3,1,11,22,15,275,19,18,08,244,,17,26,047,21,15,14,168,29*73 -$GPGSV,3,2,11,12,58,240,37,30,24,243,26,14,26,313,20,26,60,226,35*70 -$GPGSV,3,3,11,04,04,098,,09,79,102,30,27,63,111,32*4F -$GPGGA,144451.0,5113.948980,N,00644.815421,E,1,06,4.0,79.5,M,,,,*38 -$GPRMC,144451.0,A,5113.948980,N,00644.815421,E,10.4,194.0,070709,,,A*50 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,6.3,4.0,4.9*37 -$GPVTG,194.0,T,,M,10.4,N,19.3,K*62 -$GPGSV,3,1,11,22,15,275,19,18,08,244,,17,26,047,21,15,14,168,23*79 -$GPGSV,3,2,11,12,58,240,36,30,24,243,27,14,26,313,20,26,60,226,35*70 -$GPGSV,3,3,11,04,04,098,,09,79,102,31,27,63,111,32*4E -$GPGGA,144452.0,5113.946468,N,00644.814642,E,1,06,4.2,79.5,M,,,,*3A -$GPRMC,144452.0,A,5113.946468,N,00644.814642,E,9.2,190.8,070709,,,A*62 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,7.1,4.2,5.8*36 -$GPVTG,190.8,T,,M,9.2,N,17.1,K*5C -$GPGSV,3,1,11,22,15,275,19,18,08,244,,17,26,047,21,15,14,168,26*7C -$GPGSV,3,2,11,12,58,240,37,30,24,243,24,14,26,313,23,26,60,226,36*72 -$GPGSV,3,3,11,04,04,098,,09,79,102,29,27,63,111,33*46 -$GPGGA,144453.0,5113.944730,N,00644.813908,E,1,06,8.4,79.5,M,,,,*3B -$GPRMC,144453.0,A,5113.944730,N,00644.813908,E,6.0,192.6,070709,,,A*68 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,13.5,8.4,10.6*37 -$GPVTG,192.6,T,,M,6.0,N,11.1,K*5B -$GPGSV,3,1,11,22,15,275,19,18,08,244,,17,26,046,21,15,14,168,25*7E -$GPGSV,3,2,11,12,58,240,37,30,24,243,24,14,26,313,27,26,60,226,37*77 -$GPGSV,3,3,11,04,04,098,,09,79,102,30,27,63,111,33*4E -$GPGGA,144454.0,5113.943428,N,00644.813495,E,1,06,8.1,79.5,M,,,,*3D -$GPRMC,144454.0,A,5113.943428,N,00644.813495,E,4.8,188.1,070709,,,A*6D -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,13.4,8.1,10.7*32 -$GPVTG,188.1,T,,M,4.8,N,8.9,K*6D -$GPGSV,3,1,11,22,15,275,17,18,08,244,,17,26,046,21,15,14,168,28*7D -$GPGSV,3,2,11,12,58,240,37,30,24,243,22,14,26,313,24,26,60,226,36*73 -$GPGSV,3,3,11,04,04,098,,09,79,102,30,27,63,111,31*4C -$GPGGA,144455.0,5113.943154,N,00644.812992,E,1,06,8.4,80.0,M,,,,*3F -$GPRMC,144455.0,A,5113.943154,N,00644.812992,E,2.5,194.4,070709,,,A*6A -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,13.3,8.4,10.3*34 -$GPVTG,194.4,T,,M,2.5,N,4.6,K*6D -$GPGSV,3,1,11,22,15,275,17,18,08,244,,17,26,046,21,15,14,168,31*75 -$GPGSV,3,2,11,12,59,240,37,30,24,243,25,14,26,313,24,26,60,226,34*77 -$GPGSV,3,3,11,04,04,098,,09,79,102,31,27,63,111,33*4F -$GPGGA,144456.0,5113.942616,N,00644.812721,E,1,06,9.0,79.5,M,,,,*3C -$GPRMC,144456.0,A,5113.942616,N,00644.812721,E,1.3,194.0,070709,,,A*6E -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,14.3,9.0,11.0*34 -$GPVTG,194.0,T,,M,1.3,N,2.5,K*69 -$GPGSV,3,1,11,22,15,275,17,18,08,244,18,17,26,046,21,15,14,168,31*7C -$GPGSV,3,2,11,12,59,240,37,30,24,243,29,14,26,313,25,26,60,226,34*7A -$GPGSV,3,3,11,04,04,098,,09,79,102,30,27,63,111,33*4E -$GPGGA,144457.0,5113.942548,N,00644.812615,E,1,05,9.1,79.5,M,,,,*31 -$GPRMC,144457.0,A,5113.942548,N,00644.812615,E,,,070709,,,A*6F -$GPGSA,A,3,09,12,15,26,27,,,,,,,,14.4,9.1,11.1*35 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,17,18,08,244,18,17,26,046,21,15,14,168,31*7C -$GPGSV,3,2,11,12,59,240,37,30,24,243,26,14,26,313,25,26,60,226,34*75 -$GPGSV,3,3,11,04,04,098,,09,79,102,30,27,63,111,33*4E -$GPGGA,144458.0,5113.942834,N,00644.812414,E,1,05,9.8,80.0,M,,,,*31 -$GPRMC,144458.0,A,5113.942834,N,00644.812414,E,,,070709,,,A*65 -$GPGSA,A,3,09,12,15,26,27,,,,,,,,15.5,9.8,11.9*34 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,17,18,08,244,17,17,26,046,21,15,14,168,32*70 -$GPGSV,3,2,11,12,59,240,37,30,24,243,26,14,26,313,26,26,60,226,34*76 -$GPGSV,3,3,11,04,04,098,,09,79,102,29,27,63,111,32*47 -$GPGGA,144459.0,5113.942938,N,00644.812469,E,1,05,9.9,80.5,M,,,,*33 -$GPRMC,144459.0,A,5113.942938,N,00644.812469,E,,,070709,,,A*63 -$GPGSA,A,3,09,12,15,26,27,,,,,,,,15.5,9.9,12.0*3F -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,17,18,08,244,17,17,26,046,21,15,14,168,32*70 -$GPGSV,3,2,11,12,59,240,37,30,24,243,27,14,26,313,26,26,60,226,34*77 -$GPGSV,3,3,11,04,04,098,,09,79,102,30,27,63,111,33*4E -$GPGGA,144500.0,5113.943174,N,00644.812308,E,1,05,9.8,80.5,M,,,,*3E -$GPRMC,144500.0,A,5113.943174,N,00644.812308,E,,,070709,,,A*6F -$GPGSA,A,3,09,12,15,26,27,,,,,,,,15.4,9.8,11.8*34 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,17,18,08,244,17,17,26,046,25,15,14,168,31*77 -$GPGSV,3,2,11,12,59,240,37,30,24,243,27,14,26,313,26,26,60,226,34*77 -$GPGSV,3,3,11,04,04,098,,09,79,102,30,27,63,111,33*4E -$GPGGA,144501.0,5113.943078,N,00644.812434,E,1,05,10.0,80.5,M,,,,*0A -$GPRMC,144501.0,A,5113.943078,N,00644.812434,E,,,070709,,,A*6B -$GPGSA,A,3,09,12,15,26,27,,,,,,,,15.8,10.0,12.1*02 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,17,18,08,244,17,17,26,046,25,15,14,168,32*74 -$GPGSV,3,2,11,12,59,240,37,30,24,243,25,14,26,313,25,26,60,226,34*76 -$GPGSV,3,3,11,04,04,098,,09,79,102,30,27,63,111,33*4E -$GPGGA,144502.0,5113.942985,N,00644.812580,E,1,05,10.1,81.0,M,,,,*08 -$GPRMC,144502.0,A,5113.942985,N,00644.812580,E,,,070709,,,A*6C -$GPGSA,A,3,09,12,15,26,27,,,,,,,,15.9,10.1,12.2*01 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,17,18,08,244,17,17,26,046,24,15,14,168,31*76 -$GPGSV,3,2,11,12,59,240,37,30,24,243,26,14,26,313,24,26,60,226,34*74 -$GPGSV,3,3,11,04,04,098,,09,79,102,31,27,63,111,33*4F -$GPGGA,144503.0,5113.942789,N,00644.812746,E,1,05,10.2,81.0,M,,,,*00 -$GPRMC,144503.0,A,5113.942789,N,00644.812746,E,,,070709,,,A*67 -$GPGSA,A,3,09,12,15,26,27,,,,,,,,16.0,10.2,12.3*09 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,17,18,08,244,17,17,26,046,24,15,14,168,31*76 -$GPGSV,3,2,11,12,59,240,37,30,24,243,27,14,26,313,24,26,60,226,34*75 -$GPGSV,3,3,11,04,04,098,,09,79,102,30,27,63,111,33*4E -$GPGGA,144504.0,5113.942432,N,00644.812997,E,1,05,10.1,81.0,M,,,,*05 -$GPRMC,144504.0,A,5113.942432,N,00644.812997,E,,,070709,,,A*61 -$GPGSA,A,3,09,12,15,26,27,,,,,,,,15.9,10.1,12.3*00 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,17,18,08,244,17,17,26,046,25,15,14,168,31*77 -$GPGSV,3,2,11,12,59,240,37,30,24,243,27,14,26,313,24,26,60,226,33*72 -$GPGSV,3,3,11,04,04,098,,09,79,102,31,27,63,111,33*4F -$GPGGA,144505.0,5113.941949,N,00644.813158,E,1,06,2.7,81.5,M,,,,*3F -$GPRMC,144505.0,A,5113.941949,N,00644.813158,E,,,070709,,,A*68 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.2,2.7,3.3*38 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,17,18,08,244,17,17,26,046,26,15,14,168,30*75 -$GPGSV,3,2,11,12,59,240,37,30,24,243,28,14,26,313,24,26,60,226,33*7D -$GPGSV,3,3,11,04,04,098,,09,79,102,31,27,63,111,32*4E -$GPGGA,144506.0,5113.941580,N,00644.813370,E,1,06,2.4,81.5,M,,,,*3E -$GPRMC,144506.0,A,5113.941580,N,00644.813370,E,,,070709,,,A*6A -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.9,2.4,3.0*34 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,17,18,08,244,17,17,26,046,24,15,14,168,30*77 -$GPGSV,3,2,11,12,59,240,37,30,24,243,28,14,26,313,24,26,60,226,33*7D -$GPGSV,3,3,11,04,04,098,,09,79,102,32,27,63,111,32*4D -$GPGGA,144507.0,5113.941363,N,00644.813415,E,1,06,2.9,81.5,M,,,,*3D -$GPRMC,144507.0,A,5113.941363,N,00644.813415,E,,,070709,,,A*64 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.6,2.9,3.6*37 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,17,18,08,244,17,17,26,046,24,15,14,168,31*76 -$GPGSV,3,2,11,12,59,240,37,30,24,243,28,14,26,313,23,26,60,226,34*7D -$GPGSV,3,3,11,04,04,098,,09,79,102,31,27,63,111,32*4E -$GPGGA,144508.0,5113.941296,N,00644.813435,E,1,06,2.9,81.5,M,,,,*3B -$GPRMC,144508.0,A,5113.941296,N,00644.813435,E,,,070709,,,A*62 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.5,2.9,3.5*37 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,17,18,08,244,17,17,26,046,22,15,14,168,30*71 -$GPGSV,3,2,11,12,59,240,36,30,24,243,28,14,26,313,23,26,60,226,33*7B -$GPGSV,3,3,11,04,04,098,,09,79,102,31,27,63,111,32*4E -$GPGGA,144509.0,5113.941333,N,00644.813480,E,1,06,3.3,81.5,M,,,,*31 -$GPRMC,144509.0,A,5113.941333,N,00644.813480,E,,,070709,,,A*63 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,5.3,3.3,4.1*38 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,17,18,08,244,17,17,26,046,22,15,14,168,29*79 -$GPGSV,3,2,11,12,59,240,37,30,24,243,29,14,26,313,23,26,60,226,33*7B -$GPGSV,3,3,11,04,04,098,,09,79,102,31,27,63,111,32*4E -$GPGGA,144510.0,5113.941346,N,00644.813485,E,1,06,3.0,81.5,M,,,,*3D -$GPRMC,144510.0,A,5113.941346,N,00644.813485,E,,,070709,,,A*6C -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.8,3.0,3.7*30 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,17,18,08,244,17,17,26,046,23,15,14,168,29*78 -$GPGSV,3,2,11,12,59,240,37,30,24,243,29,14,26,313,25,26,60,226,33*7D -$GPGSV,3,3,11,04,04,098,,09,79,102,32,27,63,111,32*4D -$GPGGA,144511.0,5113.941338,N,00644.813480,E,1,06,2.8,81.5,M,,,,*39 -$GPRMC,144511.0,A,5113.941338,N,00644.813480,E,,,070709,,,A*61 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.5,2.8,3.5*36 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,17,18,08,244,17,17,26,046,23,15,14,168,29*78 -$GPGSV,3,2,11,12,59,240,37,30,24,243,29,14,26,313,24,26,60,226,33*7C -$GPGSV,3,3,11,04,04,098,,09,79,102,32,27,63,111,33*4C -$GPGGA,144512.0,5113.941341,N,00644.813475,E,1,06,2.8,81.5,M,,,,*3E -$GPRMC,144512.0,A,5113.941341,N,00644.813475,E,,,070709,,,A*66 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.5,2.8,3.5*36 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,17,18,08,244,17,17,26,046,23,15,14,168,28*79 -$GPGSV,3,2,11,12,59,240,36,30,24,243,28,14,26,313,23,26,60,226,33*7B -$GPGSV,3,3,11,04,04,098,,09,79,102,31,27,63,111,32*4E -$GPGGA,144513.0,5113.941338,N,00644.813475,E,1,06,3.0,81.5,M,,,,*38 -$GPRMC,144513.0,A,5113.941338,N,00644.813475,E,,,070709,,,A*69 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.8,3.0,3.8*3F -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,17,18,08,244,17,17,26,046,23,15,14,168,29*78 -$GPGSV,3,2,11,12,59,240,36,30,24,243,30,14,26,313,24,26,60,226,33*75 -$GPGSV,3,3,11,04,04,098,,09,79,102,32,27,63,111,32*4D -$GPGGA,144514.0,5113.941338,N,00644.813475,E,1,06,2.8,81.5,M,,,,*36 -$GPRMC,144514.0,A,5113.941338,N,00644.813475,E,,,070709,,,A*6E -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.4,2.8,3.4*36 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,17,18,08,244,17,17,26,046,24,15,14,168,29*7F -$GPGSV,3,2,11,12,59,240,36,30,24,243,29,14,26,313,23,26,60,226,33*7A -$GPGSV,3,3,11,04,04,098,,09,79,104,32,27,63,111,32*4B -$GPGGA,144515.0,5113.941338,N,00644.813475,E,1,06,2.6,81.5,M,,,,*39 -$GPRMC,144515.0,A,5113.941338,N,00644.813475,E,,,070709,,,A*6F -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.1,2.6,3.2*3B -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,,18,08,244,17,17,26,046,24,15,14,168,27*77 -$GPGSV,3,2,11,12,59,240,37,30,24,243,28,14,26,313,23,26,60,226,34*7D -$GPGSV,3,3,11,04,04,098,,09,79,104,32,27,63,111,32*4B -$GPGGA,144516.0,5113.941336,N,00644.813475,E,1,06,2.6,81.5,M,,,,*34 -$GPRMC,144516.0,A,5113.941336,N,00644.813475,E,,,070709,,,A*62 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.1,2.6,3.2*3B -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,,18,08,244,17,17,26,046,24,15,14,168,27*77 -$GPGSV,3,2,11,12,59,240,37,30,24,243,29,14,26,313,23,26,60,226,33*7B -$GPGSV,3,3,11,04,04,098,,09,79,104,32,27,63,111,32*4B -$GPGGA,144517.0,5113.941336,N,00644.813475,E,1,06,2.6,81.5,M,,,,*35 -$GPRMC,144517.0,A,5113.941336,N,00644.813475,E,,,070709,,,A*63 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.2,2.6,3.2*38 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,,18,08,244,17,17,26,046,25,15,14,168,27*76 -$GPGSV,3,2,11,12,59,240,37,30,24,243,29,14,26,313,23,26,60,226,33*7B -$GPGSV,3,3,11,04,04,098,,09,79,104,32,27,63,111,32*4B -$GPGGA,144518.0,5113.941336,N,00644.813475,E,1,06,2.4,81.5,M,,,,*38 -$GPRMC,144518.0,A,5113.941336,N,00644.813475,E,,,070709,,,A*6C -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.9,2.4,3.0*34 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,,18,08,244,17,17,26,046,24,15,14,168,26*76 -$GPGSV,3,2,11,12,59,240,37,30,24,243,29,14,26,313,23,26,60,226,33*7B -$GPGSV,3,3,11,04,04,098,,09,79,104,32,27,63,111,32*4B -$GPGGA,144519.0,5113.941336,N,00644.813470,E,1,06,2.6,81.5,M,,,,*3E -$GPRMC,144519.0,A,5113.941336,N,00644.813470,E,,,070709,,,A*68 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.2,2.6,3.3*39 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,,18,08,244,,17,26,046,25,15,14,168,28*7F -$GPGSV,3,2,11,12,59,240,37,30,24,243,29,14,26,313,24,26,60,226,34*7B -$GPGSV,3,3,11,04,04,098,,09,79,104,33,27,63,111,33*4B -$GPGGA,144520.0,5113.941333,N,00644.813475,E,1,06,2.7,81.5,M,,,,*35 -$GPRMC,144520.0,A,5113.941333,N,00644.813475,E,,,070709,,,A*62 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.3,2.7,3.3*39 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,,18,08,244,,17,26,046,25,15,14,168,28*7F -$GPGSV,3,2,11,12,59,240,37,30,24,243,29,14,26,313,23,26,60,226,34*7C -$GPGSV,3,3,11,04,04,098,,09,79,104,33,27,63,111,32*4A -$GPGGA,144521.0,5113.941333,N,00644.813475,E,1,06,2.5,81.5,M,,,,*36 -$GPRMC,144521.0,A,5113.941333,N,00644.813475,E,,,070709,,,A*63 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.1,2.5,3.1*3B -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,,18,08,244,,17,26,046,26,15,14,168,28*7C -$GPGSV,3,2,11,12,59,240,37,30,24,243,29,14,26,313,22,26,60,226,34*7D -$GPGSV,3,3,11,04,04,098,,09,79,104,33,27,63,111,33*4B -$GPGGA,144522.0,5113.941326,N,00644.813475,E,1,06,2.6,81.5,M,,,,*32 -$GPRMC,144522.0,A,5113.941326,N,00644.813475,E,,,070709,,,A*64 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.1,2.6,3.2*3B -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,,18,08,244,,17,26,046,25,15,14,168,28*7F -$GPGSV,3,2,11,12,59,240,37,30,24,243,29,14,26,313,21,26,60,226,34*7E -$GPGSV,3,3,11,04,04,098,,09,79,104,32,27,63,111,33*4A -$GPGGA,144523.0,5113.941326,N,00644.813475,E,1,06,2.6,81.5,M,,,,*33 -$GPRMC,144523.0,A,5113.941326,N,00644.813475,E,,,070709,,,A*65 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.1,2.6,3.2*3B -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,,18,08,244,,17,26,046,26,15,14,168,29*7D -$GPGSV,3,2,11,12,59,240,37,30,24,243,29,14,26,313,21,26,60,226,35*7F -$GPGSV,3,3,11,04,04,098,,09,79,104,33,27,63,111,33*4B -$GPGGA,144524.0,5113.941326,N,00644.813475,E,1,06,2.6,81.5,M,,,,*34 -$GPRMC,144524.0,A,5113.941326,N,00644.813475,E,,,070709,,,A*62 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.1,2.6,3.2*3B -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,,18,08,244,,17,26,046,29,15,14,168,30*7A -$GPGSV,3,2,11,12,59,240,37,30,24,243,27,14,26,313,21,26,60,226,35*71 -$GPGSV,3,3,11,04,04,098,,09,79,104,32,27,63,111,33*4A -$GPGGA,144525.0,5113.941331,N,00644.813405,E,1,06,2.4,81.5,M,,,,*36 -$GPRMC,144525.0,A,5113.941331,N,00644.813405,E,,,070709,,,A*62 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.8,2.4,3.0*35 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,,18,08,244,,17,26,046,26,15,14,168,28*7C -$GPGSV,3,2,11,12,59,240,37,30,24,243,25,14,26,313,21,26,60,226,34*72 -$GPGSV,3,3,11,04,04,098,,09,79,104,31,27,63,111,32*48 -$GPGGA,144526.0,5113.941243,N,00644.813309,E,1,06,2.3,81.5,M,,,,*3D -$GPRMC,144526.0,A,5113.941243,N,00644.813309,E,,,070709,,,A*6E -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.7,2.3,2.9*35 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,,18,08,244,,17,26,046,26,15,14,168,31*74 -$GPGSV,3,2,11,12,59,240,37,30,24,243,23,14,26,313,23,26,60,226,33*71 -$GPGSV,3,3,11,04,04,098,,09,79,104,34,27,63,111,33*4C -$GPGGA,144527.0,5113.940931,N,00644.813214,E,1,06,2.2,82.0,M,,,,*39 -$GPRMC,144527.0,A,5113.940931,N,00644.813214,E,,,070709,,,A*6D -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.6,2.2,2.8*34 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,,18,08,244,,17,26,046,25,15,14,168,30*76 -$GPGSV,3,2,11,12,59,240,37,30,24,243,22,14,26,313,23,26,60,226,33*70 -$GPGSV,3,3,11,04,04,098,,09,79,104,33,27,63,111,32*4A -$GPGGA,144528.0,5113.940891,N,00644.812997,E,1,06,2.6,82.5,M,,,,*3D -$GPRMC,144528.0,A,5113.940891,N,00644.812997,E,,,070709,,,A*68 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.2,2.6,3.2*38 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,,18,08,244,,17,26,046,25,15,14,168,31*77 -$GPGSV,3,2,11,12,59,240,38,30,24,243,22,14,26,313,24,26,60,226,33*78 -$GPGSV,3,3,11,04,04,098,,09,79,104,32,27,63,111,32*4B -$GPGGA,144529.0,5113.940903,N,00644.812852,E,1,06,2.5,83.0,M,,,,*39 -$GPRMC,144529.0,A,5113.940903,N,00644.812852,E,,,070709,,,A*6B -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.9,2.5,3.0*35 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,,18,08,244,,17,26,046,21,15,14,168,31*73 -$GPGSV,3,2,11,12,59,240,37,30,24,243,27,14,26,313,22,26,60,225,36*72 -$GPGSV,3,3,11,04,04,098,,09,79,104,30,27,62,111,33*49 -$GPGGA,144530.0,5113.940903,N,00644.812852,E,1,06,3.7,83.0,M,,,,*32 -$GPRMC,144530.0,A,5113.940903,N,00644.812852,E,,,070709,,,A*63 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,5.8,3.7,4.5*33 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,15,275,,18,08,244,,17,26,046,26,15,14,168,26*72 -$GPGSV,3,2,11,12,59,240,35,30,24,243,23,14,26,313,22,26,60,225,35*77 -$GPGSV,3,3,11,04,04,098,,09,79,104,30,27,62,111,33*49 -$GPGGA,144531.0,5113.940498,N,00644.812223,E,1,06,2.3,83.0,M,,,,*35 -$GPRMC,144531.0,A,5113.940498,N,00644.812223,E,2.5,233.5,070709,,,A*61 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.7,2.3,2.9*35 -$GPVTG,233.5,T,,M,2.5,N,4.7,K*63 -$GPGSV,3,1,11,22,15,275,,18,08,244,,17,26,046,22,15,14,168,26*76 -$GPGSV,3,2,11,12,59,240,37,30,24,243,23,14,26,313,22,26,60,225,37*77 -$GPGSV,3,3,11,04,04,098,,09,79,104,30,27,62,111,31*4B -$GPGGA,144532.0,5113.939653,N,00644.811001,E,1,06,2.9,83.0,M,,,,*36 -$GPRMC,144532.0,A,5113.939653,N,00644.811001,E,4.3,228.4,070709,,,A*63 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.7,2.9,3.6*36 -$GPVTG,228.4,T,,M,4.3,N,7.9,K*65 -$GPGSV,3,1,11,22,15,275,,18,08,244,,17,26,046,22,15,14,168,32*73 -$GPGSV,3,2,11,12,59,240,34,30,24,243,24,14,26,313,22,26,60,225,35*71 -$GPGSV,3,3,11,04,04,098,,09,79,104,30,27,62,111,32*48 -$GPGGA,144533.0,5113.937604,N,00644.809547,E,1,06,3.1,82.0,M,,,,*3D -$GPRMC,144533.0,A,5113.937604,N,00644.809547,E,7.6,212.8,070709,,,A*63 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.8,3.1,3.6*30 -$GPVTG,212.8,T,,M,7.6,N,14.1,K*5C -$GPGSV,3,1,11,22,15,275,,18,08,244,,17,26,046,23,15,14,168,31*71 -$GPGSV,3,2,11,12,59,240,33,30,24,243,24,14,26,313,22,26,60,225,35*76 -$GPGSV,3,3,11,04,04,098,,09,79,104,30,27,62,111,31*4B -$GPGGA,144534.0,5113.934775,N,00644.807566,E,1,06,2.8,81.0,M,,,,*38 -$GPRMC,144534.0,A,5113.934775,N,00644.807566,E,10.4,208.9,070709,,,A*53 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.3,2.8,3.3*36 -$GPVTG,208.9,T,,M,10.4,N,19.2,K*6C -$GPGSV,3,1,11,22,15,275,,18,08,244,,17,26,046,24,15,14,168,33*74 -$GPGSV,3,2,11,12,59,240,35,30,24,243,30,14,26,313,20,26,60,225,35*77 -$GPGSV,3,3,11,04,04,098,,09,79,104,30,27,62,111,31*4B -$GPGGA,144535.0,5113.931343,N,00644.805489,E,1,06,2.8,80.5,M,,,,*3B -$GPRMC,144535.0,A,5113.931343,N,00644.805489,E,13.0,203.2,070709,,,A*53 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.4,2.8,3.3*31 -$GPVTG,203.2,T,,M,13.0,N,24.0,K*67 -$GPGSV,3,1,11,22,15,275,,18,08,244,,17,26,046,27,15,14,168,33*77 -$GPGSV,3,2,11,12,59,240,36,30,24,243,33,14,26,313,25,26,60,225,36*71 -$GPGSV,3,3,11,04,04,098,,09,79,104,31,27,62,111,32*49 -$GPGGA,144536.0,5113.927397,N,00644.803422,E,1,06,2.2,80.5,M,,,,*3B -$GPRMC,144536.0,A,5113.927397,N,00644.803422,E,14.5,199.4,070709,,,A*5D -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.4,2.2,2.6*38 -$GPVTG,199.4,T,,M,14.5,N,26.8,K*69 -$GPGSV,3,1,11,22,15,275,,18,08,244,,17,26,046,21,15,14,168,30*72 -$GPGSV,3,2,11,12,59,240,37,30,24,243,33,14,26,313,26,26,60,225,36*73 -$GPGSV,3,3,11,04,04,098,,09,79,104,31,27,62,111,33*48 -$GPGGA,144537.0,5113.923319,N,00644.801958,E,1,06,3.6,80.5,M,,,,*3F -$GPRMC,144537.0,A,5113.923319,N,00644.801958,E,14.8,191.1,070709,,,A*5C -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,5.7,3.6,4.4*3C -$GPVTG,191.1,T,,M,14.8,N,27.5,K*65 -$GPGSV,3,1,11,22,15,275,,18,08,244,,17,26,046,21,15,14,168,23*70 -$GPGSV,3,2,11,12,59,240,36,30,24,243,35,14,26,313,30,26,60,225,36*73 -$GPGSV,3,3,11,04,04,098,,09,79,104,34,27,62,111,34*4A -$GPGGA,144538.0,5113.919240,N,00644.801642,E,1,06,3.8,80.5,M,,,,*3E -$GPRMC,144538.0,A,5113.919240,N,00644.801642,E,14.5,178.2,070709,,,A*5A -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,6.4,3.8,5.2*35 -$GPVTG,178.2,T,,M,14.5,N,26.8,K*60 -$GPGSV,3,1,11,22,15,275,,18,08,244,,17,26,046,21,15,14,168,20*73 -$GPGSV,3,2,11,12,59,240,35,30,24,243,34,14,26,313,29,26,60,225,35*7A -$GPGSV,3,3,11,04,04,098,,09,79,104,35,27,62,111,33*4C -$GPGGA,144539.0,5113.915162,N,00644.802934,E,1,06,3.9,80.5,M,,,,*3C -$GPRMC,144539.0,A,5113.915162,N,00644.802934,E,15.1,162.3,070709,,,A*56 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,6.8,3.9,5.5*3F -$GPVTG,162.3,T,,M,15.1,N,27.9,K*6F -$GPGSV,3,1,11,22,15,275,,18,08,244,,17,26,046,21,15,14,168,20*73 -$GPGSV,3,2,11,12,59,240,34,30,24,243,31,14,26,313,31,26,60,225,35*77 -$GPGSV,3,3,11,04,04,098,,09,79,104,35,27,62,111,35*4A -$GPGGA,144540.0,5113.911515,N,00644.805816,E,1,06,8.6,80.0,M,,,,*35 -$GPRMC,144540.0,A,5113.911515,N,00644.805816,E,15.4,147.0,070709,,,A*5F -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,15.7,8.6,13.1*35 -$GPVTG,147.0,T,,M,15.4,N,28.5,K*6D -$GPGSV,3,1,11,22,15,275,,18,08,244,,17,26,046,21,15,14,168,20*73 -$GPGSV,3,2,11,12,59,240,35,30,24,243,26,14,26,313,31,26,60,225,34*71 -$GPGSV,3,3,11,04,04,098,,09,79,104,35,27,62,111,36*49 -$GPGGA,144541.0,5113.908191,N,00644.809653,E,1,06,9.2,80.0,M,,,,*32 -$GPRMC,144541.0,A,5113.908191,N,00644.809653,E,15.3,143.0,070709,,,A*5E -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,16.6,9.2,13.7*34 -$GPVTG,143.0,T,,M,15.3,N,28.4,K*6F -$GPGSV,3,1,11,22,15,275,,18,08,244,,17,26,046,23,15,14,168,32*72 -$GPGSV,3,2,11,12,59,240,33,30,24,243,26,14,26,313,31,26,60,225,31*72 -$GPGSV,3,3,11,04,04,098,,09,79,104,36,27,62,111,36*4A -$GPGGA,144542.0,5113.905088,N,00644.813339,E,1,06,3.1,80.0,M,,,,*3E -$GPRMC,144542.0,A,5113.905088,N,00644.813339,E,13.8,146.4,070709,,,A*57 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.7,3.1,3.6*3F -$GPVTG,146.4,T,,M,13.8,N,25.5,K*6F -$GPGSV,3,1,11,22,15,275,,18,08,244,,17,26,046,23,15,14,168,31*71 -$GPGSV,3,2,11,12,59,240,31,30,24,243,26,14,26,313,28,26,60,225,32*7B -$GPGSV,3,3,11,04,04,098,,09,79,104,35,27,62,111,35*4A -$GPGGA,144543.0,5113.901377,N,00644.816246,E,1,06,3.2,79.5,M,,,,*34 -$GPRMC,144543.0,A,5113.901377,N,00644.816246,E,13.8,156.9,070709,,,A*51 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.8,3.2,3.6*33 -$GPVTG,156.9,T,,M,13.8,N,25.5,K*63 -$GPGSV,3,1,11,22,14,275,,18,08,244,,17,26,046,26,15,14,168,26*73 -$GPGSV,3,2,11,12,59,240,34,30,25,243,25,14,26,313,27,26,60,225,34*75 -$GPGSV,3,3,11,04,05,098,,09,79,104,34,27,62,111,33*4C -$GPGGA,144544.0,5113.898075,N,00644.817820,E,1,06,2.3,79.0,M,,,,*3D -$GPRMC,144544.0,A,5113.898075,N,00644.817820,E,12.6,168.9,070709,,,A*5F -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.6,2.3,2.6*3B -$GPVTG,168.9,T,,M,12.6,N,23.3,K*61 -$GPGSV,3,1,11,22,14,275,,18,08,244,,17,26,046,24,15,14,168,26*71 -$GPGSV,3,2,11,12,59,240,35,30,25,243,21,14,26,313,27,26,60,225,34*70 -$GPGSV,3,3,11,04,05,098,,09,79,104,34,27,62,111,33*4C -$GPGGA,144545.0,5113.894401,N,00644.818369,E,1,06,2.7,79.0,M,,,,*3A -$GPRMC,144545.0,A,5113.894401,N,00644.818369,E,13.5,178.7,070709,,,A*51 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.2,2.7,3.2*39 -$GPVTG,178.7,T,,M,13.5,N,24.9,K*61 -$GPGSV,3,1,11,22,14,275,,18,08,244,,17,26,046,24,15,14,168,22*75 -$GPGSV,3,2,11,12,59,240,34,30,25,243,20,14,26,313,27,26,60,225,37*73 -$GPGSV,3,3,11,04,05,098,,09,79,104,33,27,62,111,31*49 -$GPGGA,144546.0,5113.890413,N,00644.818187,E,1,06,2.9,79.0,M,,,,*32 -$GPRMC,144546.0,A,5113.890413,N,00644.818187,E,14.5,184.6,070709,,,A*52 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.5,2.9,3.5*37 -$GPVTG,184.6,T,,M,14.5,N,26.9,K*66 -$GPGSV,3,1,11,22,14,275,,18,08,244,,17,26,046,27,15,14,168,22*76 -$GPGSV,3,2,11,12,59,240,34,30,25,243,29,14,26,313,22,26,60,225,36*7E -$GPGSV,3,3,11,04,05,098,,09,79,104,32,27,62,111,34*4D -$GPGGA,144547.0,5113.886131,N,00644.817257,E,1,06,2.5,79.0,M,,,,*3C -$GPRMC,144547.0,A,5113.886131,N,00644.817257,E,14.9,189.6,070709,,,A*51 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.9,2.5,3.0*35 -$GPVTG,189.6,T,,M,14.9,N,27.6,K*69 -$GPGSV,3,1,11,22,14,275,,18,08,244,,17,26,046,24,15,14,168,20*77 -$GPGSV,3,2,11,12,59,240,35,30,25,243,23,14,26,313,22,26,60,225,36*75 -$GPGSV,3,3,11,04,05,098,,09,79,104,32,27,62,111,34*4D -$GPGGA,144548.0,5113.881811,N,00644.816281,E,1,06,2.9,79.5,M,,,,*3C -$GPRMC,144548.0,A,5113.881811,N,00644.816281,E,15.0,188.3,070709,,,A*54 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.8,2.9,3.8*37 -$GPVTG,188.3,T,,M,15.0,N,27.7,K*64 -$GPGSV,3,1,11,22,14,275,,18,08,244,,17,26,046,24,15,14,168,23*74 -$GPGSV,3,2,11,12,59,240,36,30,25,243,20,14,26,313,23,26,60,225,36*74 -$GPGSV,3,3,11,04,05,098,,09,79,104,32,27,62,111,35*4C -$GPGGA,144549.0,5113.877798,N,00644.815034,E,1,06,2.8,79.5,M,,,,*34 -$GPRMC,144549.0,A,5113.877798,N,00644.815034,E,14.6,191.5,070709,,,A*54 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.6,2.8,3.6*36 -$GPVTG,191.5,T,,M,14.6,N,27.0,K*6A -$GPGSV,3,1,11,22,14,275,,18,08,244,,17,26,046,34,15,14,168,25*73 -$GPGSV,3,2,11,12,59,240,36,30,25,243,20,14,26,313,26,26,60,225,36*71 -$GPGSV,3,3,11,04,05,098,,09,79,104,30,27,62,111,32*49 -$GPGGA,144550.0,5113.873789,N,00644.812857,E,1,06,2.3,80.0,M,,,,*3A -$GPRMC,144550.0,A,5113.873789,N,00644.812857,E,15.1,203.8,070709,,,A*51 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.7,2.3,2.8*34 -$GPVTG,203.8,T,,M,15.1,N,28.0,K*66 -$GPGSV,3,1,11,22,14,275,,18,08,244,,17,26,046,33,15,14,168,32*72 -$GPGSV,3,2,11,12,59,240,33,30,25,243,20,14,26,313,26,26,60,225,35*77 -$GPGSV,3,3,11,04,05,098,,09,79,104,30,27,62,111,32*49 -$GPGGA,144551.0,5113.869716,N,00644.809301,E,1,06,1.9,79.5,M,,,,*3E -$GPRMC,144551.0,A,5113.869716,N,00644.809301,E,16.8,215.5,070709,,,A*5F -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.9,1.9,2.2*38 -$GPVTG,215.5,T,,M,16.8,N,31.2,K*6C -$GPGSV,3,1,11,22,14,275,,18,08,244,,17,26,046,33,15,14,168,30*70 -$GPGSV,3,2,11,12,59,240,29,30,25,243,36,14,26,313,26,26,60,225,32*7C -$GPGSV,3,3,11,04,05,098,,09,79,104,29,27,62,111,33*40 -$GPGGA,144552.0,5113.865919,N,00644.804362,E,1,06,1.8,79.5,M,,,,*39 -$GPRMC,144552.0,A,5113.865919,N,00644.804362,E,18.2,222.4,070709,,,A*58 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,2.6,1.8,1.8*3F -$GPVTG,222.4,T,,M,18.2,N,33.7,K*6A -$GPGSV,3,1,11,22,14,275,,18,08,244,,17,26,046,31,15,14,168,23*70 -$GPGSV,3,2,11,12,59,240,36,30,25,243,33,14,26,313,26,26,60,225,36*73 -$GPGSV,3,3,11,04,05,098,,09,79,104,31,27,62,111,31*4B -$GPGGA,144553.0,5113.862124,N,00644.798418,E,1,06,2.3,79.5,M,,,,*31 -$GPRMC,144553.0,A,5113.862124,N,00644.798418,E,19.6,226.6,070709,,,A*5B -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.5,2.3,2.6*38 -$GPVTG,226.6,T,,M,19.6,N,36.3,K*68 -$GPGSV,3,1,11,22,14,275,,18,08,244,,17,26,046,30,15,14,168,23*71 -$GPGSV,3,2,11,12,59,240,35,30,25,243,33,14,26,313,26,26,60,225,36*70 -$GPGSV,3,3,11,04,05,098,,09,79,104,31,27,62,112,29*41 -$GPGGA,144554.0,5113.858383,N,00644.792006,E,1,06,2.4,79.5,M,,,,*36 -$GPRMC,144554.0,A,5113.858383,N,00644.792006,E,19.6,227.8,070709,,,A*54 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,3.6,2.4,2.7*3D -$GPVTG,227.8,T,,M,19.6,N,36.4,K*60 -$GPGSV,3,1,11,22,14,275,,18,08,244,,17,26,046,31,15,14,168,23*70 -$GPGSV,3,2,11,12,59,240,36,30,25,243,35,14,26,313,26,26,60,225,37*74 -$GPGSV,3,3,11,04,05,098,,09,78,104,32,27,62,112,31*4A -$GPGGA,144555.0,5113.854528,N,00644.785448,E,1,06,2.6,80.0,M,,,,*35 -$GPRMC,144555.0,A,5113.854528,N,00644.785448,E,20.2,229.2,070709,,,A*5C -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,4.0,2.6,3.0*38 -$GPVTG,229.2,T,,M,20.2,N,37.5,K*6A -$GPGSV,3,1,11,22,14,275,,18,08,244,,17,26,046,33,15,14,168,23*72 -$GPGSV,3,2,11,12,59,240,36,30,25,243,33,14,26,313,20,26,60,225,37*74 -$GPGSV,3,3,11,04,05,098,,09,78,104,31,27,62,112,31*49 -$GPGGA,144556.0,5113.850635,N,00644.778503,E,1,06,5.3,80.0,M,,,,*33 -$GPRMC,144556.0,A,5113.850635,N,00644.778503,E,20.5,230.5,070709,,,A*50 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,8.2,5.3,6.3*32 -$GPVTG,230.5,T,,M,20.5,N,38.0,K*68 -$GPGSV,3,1,11,22,14,275,,18,08,244,,17,26,046,33,15,14,168,23*72 -$GPGSV,3,2,11,12,59,240,37,30,25,243,26,14,26,313,23,26,60,225,36*73 -$GPGSV,3,3,11,04,05,098,,09,78,104,31,27,62,112,29*40 -$GPGGA,144557.0,5113.846924,N,00644.771401,E,1,06,5.6,80.0,M,,,,*35 -$GPRMC,144557.0,A,5113.846924,N,00644.771401,E,20.9,230.6,070709,,,A*5C -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,8.5,5.6,6.3*30 -$GPVTG,230.6,T,,M,20.9,N,38.7,K*60 -$GPGSV,3,1,11,22,14,275,,18,08,244,,17,26,046,34,15,14,168,23*75 -$GPGSV,3,2,11,12,59,240,36,30,25,243,29,14,26,313,24,26,60,225,37*7B -$GPGSV,3,3,11,04,05,098,,09,78,104,32,27,62,112,29*43 -$GPGGA,144558.0,5113.843215,N,00644.764180,E,1,06,5.8,80.5,M,,,,*35 -$GPRMC,144558.0,A,5113.843215,N,00644.764180,E,20.8,231.0,070709,,,A*51 -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,8.6,5.8,6.4*3A -$GPVTG,231.0,T,,M,20.8,N,38.4,K*65 -$GPGSV,3,1,11,22,14,275,,18,08,244,,17,26,046,33,15,14,168,23*72 -$GPGSV,3,2,11,12,59,240,33,30,25,243,36,14,26,313,24,26,60,225,35*72 -$GPGSV,3,3,11,04,05,098,,09,78,104,31,27,62,112,32*4A -$GPGGA,144559.0,5113.839433,N,00644.757234,E,1,07,4.4,81.5,M,,,,*3A -$GPRMC,144559.0,A,5113.839433,N,00644.757234,E,20.4,231.7,070709,,,A*58 -$GPGSA,A,3,09,12,15,17,26,27,30,,,,,,5.4,4.4,3.1*3B -$GPVTG,231.7,T,,M,20.4,N,37.7,K*62 -$GPGSV,3,1,11,22,14,275,,18,07,244,,17,26,046,32,15,14,168,23*7C -$GPGSV,3,2,11,12,59,240,36,30,25,243,33,14,26,313,22,26,60,225,37*76 -$GPGSV,3,3,11,04,05,098,,09,78,104,31,27,62,112,32*4A -$GPGGA,144600.0,5113.835817,N,00644.750455,E,1,06,4.3,82.0,M,,,,*35 -$GPRMC,144600.0,A,5113.835817,N,00644.750455,E,20.1,231.7,070709,,,A*52 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.3,4.3,3.1*3F -$GPVTG,231.7,T,,M,20.1,N,37.2,K*62 -$GPGSV,3,1,11,22,14,275,,18,07,244,,17,26,046,28,15,14,168,23*77 -$GPGSV,3,2,11,12,59,240,36,30,25,243,33,14,26,313,22,26,60,225,37*76 -$GPGSV,3,3,11,04,05,098,,09,78,104,31,27,62,112,30*48 -$GPGGA,144601.0,5113.832286,N,00644.743711,E,1,06,4.4,82.5,M,,,,*32 -$GPRMC,144601.0,A,5113.832286,N,00644.743711,E,19.8,231.8,070709,,,A*5B -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.3,4.4,2.9*31 -$GPVTG,231.8,T,,M,19.8,N,36.7,K*6A -$GPGSV,3,1,11,22,14,275,,18,07,244,,17,26,046,29,15,14,168,23*76 -$GPGSV,3,2,11,12,59,240,36,30,25,244,36,14,26,313,22,26,60,225,37*74 -$GPGSV,3,3,11,04,05,098,,09,78,104,32,27,62,112,30*4B -$GPGGA,144602.0,5113.828791,N,00644.737037,E,1,06,4.4,82.5,M,,,,*39 -$GPRMC,144602.0,A,5113.828791,N,00644.737037,E,19.7,231.6,070709,,,A*51 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.3,4.4,2.8*30 -$GPVTG,231.6,T,,M,19.7,N,36.4,K*68 -$GPGSV,3,1,11,22,14,275,,18,07,244,,17,26,046,32,15,14,168,23*7C -$GPGSV,3,2,11,12,59,240,35,30,25,244,32,14,26,313,22,26,60,225,37*73 -$GPGSV,3,3,11,04,05,098,,09,78,104,32,27,62,112,32*49 -$GPGGA,144603.0,5113.825449,N,00644.730042,E,1,06,4.3,83.0,M,,,,*35 -$GPRMC,144603.0,A,5113.825449,N,00644.730042,E,20.1,233.1,070709,,,A*57 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.2,4.3,2.9*37 -$GPVTG,233.1,T,,M,20.1,N,37.2,K*66 -$GPGSV,3,1,11,22,14,275,,18,07,244,,17,26,046,33,15,14,168,12*7F -$GPGSV,3,2,11,12,59,240,37,30,25,244,37,14,26,313,21,26,60,225,38*78 -$GPGSV,3,3,11,04,05,098,,09,78,104,32,27,62,112,32*49 -$GPGGA,144604.0,5113.822042,N,00644.722860,E,1,06,4.3,83.5,M,,,,*34 -$GPRMC,144604.0,A,5113.822042,N,00644.722860,E,20.8,232.8,070709,,,A*52 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.2,4.3,2.8*36 -$GPVTG,232.8,T,,M,20.8,N,38.5,K*6F -$GPGSV,3,1,11,22,14,275,,18,07,244,,17,26,046,33,15,14,168,12*7F -$GPGSV,3,2,11,12,59,240,36,30,25,244,36,14,26,313,21,26,60,225,36*76 -$GPGSV,3,3,11,04,05,098,,09,78,104,31,27,62,112,32*4A -$GPGGA,144605.0,5113.818501,N,00644.715457,E,1,06,4.3,84.0,M,,,,*30 -$GPRMC,144605.0,A,5113.818501,N,00644.715457,E,21.3,232.3,070709,,,A*55 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.1,4.3,2.8*35 -$GPVTG,232.3,T,,M,21.3,N,39.5,K*6F -$GPGSV,3,1,11,22,14,275,,18,07,244,,17,26,046,30,15,14,168,12*7C -$GPGSV,3,2,11,12,59,240,35,30,25,244,36,14,26,313,21,26,60,225,37*74 -$GPGSV,3,3,11,04,05,098,,09,78,104,31,27,62,112,32*4A -$GPGGA,144606.0,5113.814858,N,00644.708155,E,1,06,4.3,84.0,M,,,,*35 -$GPRMC,144606.0,A,5113.814858,N,00644.708155,E,21.0,231.5,070709,,,A*56 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.2,4.3,2.8*36 -$GPVTG,231.5,T,,M,21.0,N,38.9,K*64 -$GPGSV,3,1,11,22,14,275,,18,07,244,,17,26,046,31,15,14,168,12*7D -$GPGSV,3,2,11,12,59,240,36,30,25,244,34,14,26,313,21,26,60,225,36*74 -$GPGSV,3,3,11,04,05,098,,09,78,104,31,27,62,112,31*49 -$GPGGA,144607.0,5113.811534,N,00644.701350,E,1,06,4.3,84.5,M,,,,*3D -$GPRMC,144607.0,A,5113.811534,N,00644.701350,E,18.6,232.1,070709,,,A*50 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.1,4.3,2.7*3A -$GPVTG,232.1,T,,M,18.6,N,34.4,K*6E -$GPGSV,3,1,11,22,14,275,,18,07,244,,17,26,046,33,15,14,168,16*7B -$GPGSV,3,2,11,12,59,240,37,30,25,244,36,14,26,313,20,26,60,225,38*78 -$GPGSV,3,3,11,04,05,098,,09,78,104,32,27,62,112,33*48 -$GPGGA,144608.0,5113.808410,N,00644.695678,E,1,07,3.5,84.0,M,,,,*3B -$GPRMC,144608.0,A,5113.808410,N,00644.695678,E,15.4,226.6,070709,,,A*5E -$GPGSA,A,3,09,12,15,17,26,27,30,,,,,,4.2,3.5,2.3*39 -$GPVTG,226.6,T,,M,15.4,N,28.4,K*6E -$GPGSV,3,1,11,22,14,275,21,18,07,244,,17,26,046,33,15,14,168,16*78 -$GPGSV,3,2,11,12,59,240,36,30,25,244,36,14,26,313,20,26,60,225,38*79 -$GPGSV,3,3,11,04,05,098,,09,78,104,32,27,62,112,31*4A -$GPGGA,144609.0,5113.806110,N,00644.691760,E,1,07,3.7,85.0,M,,,,*3E -$GPRMC,144609.0,A,5113.806110,N,00644.691760,E,11.1,223.7,070709,,,A*5D -$GPGSA,A,3,09,12,15,17,26,27,30,,,,,,4.4,3.7,2.3*3D -$GPVTG,223.7,T,,M,11.1,N,20.5,K*62 -$GPGSV,3,1,11,22,14,275,22,18,07,244,,17,26,046,33,15,14,168,16*7B -$GPGSV,3,2,11,12,59,240,35,30,25,244,37,14,26,313,22,26,60,225,37*76 -$GPGSV,3,3,11,04,05,098,,09,78,104,33,27,62,112,32*48 -$GPGGA,144610.0,5113.804317,N,00644.688637,E,1,07,3.8,85.0,M,,,,*35 -$GPRMC,144610.0,A,5113.804317,N,00644.688637,E,9.3,223.8,070709,,,A*6D -$GPGSA,A,3,09,12,15,17,26,27,30,,,,,,4.4,3.8,2.3*32 -$GPVTG,223.8,T,,M,9.3,N,17.1,K*56 -$GPGSV,3,1,11,22,14,275,26,18,07,244,,17,26,046,33,15,14,168,16*7F -$GPGSV,3,2,11,12,59,240,36,30,25,244,36,14,26,313,22,26,60,225,38*7B -$GPGSV,3,3,11,04,05,097,,09,78,104,32,27,62,112,31*45 -$GPGGA,144611.0,5113.803595,N,00644.687038,E,1,07,3.8,84.5,M,,,,*3D -$GPRMC,144611.0,A,5113.803595,N,00644.687038,E,4.2,215.6,070709,,,A*66 -$GPGSA,A,3,09,12,15,17,26,27,30,,,,,,4.5,3.8,2.3*33 -$GPVTG,215.6,T,,M,4.2,N,7.8,K*69 -$GPGSV,3,1,11,22,14,275,31,18,07,244,,17,26,046,33,15,14,168,16*79 -$GPGSV,3,2,11,12,59,240,36,30,25,244,37,14,26,313,22,26,60,225,37*75 -$GPGSV,3,3,11,04,05,097,,09,78,104,31,27,62,112,30*47 -$GPGGA,144612.0,5113.803281,N,00644.686032,E,1,07,3.9,85.0,M,,,,*32 -$GPRMC,144612.0,A,5113.803281,N,00644.686032,E,2.3,234.5,070709,,,A*6B -$GPGSA,A,3,09,12,15,17,26,27,30,,,,,,4.5,3.9,2.3*32 -$GPVTG,234.5,T,,M,2.3,N,4.3,K*66 -$GPGSV,3,1,11,22,14,275,34,18,07,244,,17,26,046,32,15,14,168,16*7D -$GPGSV,3,2,11,12,59,240,36,30,25,244,37,14,26,313,22,26,60,225,37*75 -$GPGSV,3,3,11,04,05,097,,09,78,104,31,27,62,112,32*45 -$GPGGA,144613.0,5113.803258,N,00644.685448,E,1,07,4.6,85.5,M,,,,*30 -$GPRMC,144613.0,A,5113.803258,N,00644.685448,E,,,070709,,,A*65 -$GPGSA,A,3,09,12,15,17,26,27,30,,,,,,5.3,4.6,2.7*39 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,275,35,18,07,244,,17,26,046,33,15,14,168,16*7D -$GPGSV,3,2,11,12,59,240,36,30,25,244,37,14,26,313,23,26,60,225,37*74 -$GPGSV,3,3,11,04,05,097,,09,78,104,30,27,62,112,33*45 -$GPGGA,144614.0,5113.803248,N,00644.685267,E,1,07,4.3,86.0,M,,,,*3E -$GPRMC,144614.0,A,5113.803248,N,00644.685267,E,,,070709,,,A*68 -$GPGSA,A,3,09,12,15,17,26,27,30,,,,,,5.1,4.3,2.6*3F -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,275,34,18,07,244,,17,26,046,33,15,14,168,16*7C -$GPGSV,3,2,11,12,59,240,36,30,25,244,37,14,26,313,23,26,60,225,37*74 -$GPGSV,3,3,11,04,05,097,,09,78,104,32,27,62,112,32*46 -$GPGGA,144615.0,5113.803135,N,00644.685006,E,1,06,4.4,86.0,M,,,,*35 -$GPRMC,144615.0,A,5113.803135,N,00644.685006,E,1.2,234.0,070709,,,A*63 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.1,4.4,2.7*3D -$GPVTG,234.0,T,,M,1.2,N,2.2,K*66 -$GPGSV,3,1,11,22,14,275,,18,07,244,,17,26,046,32,15,14,168,16*7A -$GPGSV,3,2,11,12,59,240,37,30,25,244,37,14,26,313,24,26,60,225,37*72 -$GPGSV,3,3,11,04,05,097,,09,78,104,32,27,62,112,32*46 -$GPGGA,144616.0,5113.803153,N,00644.684543,E,1,06,4.3,86.0,M,,,,*34 -$GPRMC,144616.0,A,5113.803153,N,00644.684543,E,,,070709,,,A*63 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.1,4.3,2.6*3B -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,275,,18,07,244,,17,26,046,33,15,14,168,16*7B -$GPGSV,3,2,11,12,59,240,37,30,25,244,36,14,26,313,23,26,60,225,37*74 -$GPGSV,3,3,11,04,05,097,,09,78,104,32,27,62,112,31*45 -$GPGGA,144617.0,5113.803210,N,00644.684422,E,1,06,4.2,85.5,M,,,,*30 -$GPRMC,144617.0,A,5113.803210,N,00644.684422,E,,,070709,,,A*60 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.0,4.2,2.7*3A -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,275,,18,07,244,,17,26,046,34,15,14,168,16*7C -$GPGSV,3,2,11,12,59,240,38,30,25,244,37,14,26,313,25,26,60,225,39*72 -$GPGSV,3,3,11,04,05,097,,09,78,104,34,27,62,112,35*47 -$GPGGA,144618.0,5113.803082,N,00644.684166,E,1,06,4.2,86.0,M,,,,*35 -$GPRMC,144618.0,A,5113.803082,N,00644.684166,E,,,070709,,,A*63 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.0,4.2,2.7*3A -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,275,,18,07,244,,17,26,046,33,15,14,168,17*7A -$GPGSV,3,2,11,12,59,240,38,30,25,244,35,14,26,313,20,26,60,225,38*74 -$GPGSV,3,3,11,04,05,097,,09,78,104,33,27,62,112,35*40 -$GPGGA,144619.0,5113.803173,N,00644.683955,E,1,07,3.3,86.0,M,,,,*33 -$GPRMC,144619.0,A,5113.803173,N,00644.683955,E,,,070709,,,A*62 -$GPGSA,A,3,09,12,15,17,26,27,30,,,,,,4.0,3.3,2.2*3C -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,275,,18,07,244,26,17,26,046,33,15,14,168,17*7E -$GPGSV,3,2,11,12,59,240,38,30,25,244,35,14,26,313,20,26,60,225,38*74 -$GPGSV,3,3,11,04,05,097,,09,78,104,35,27,62,112,34*47 -$GPGGA,144620.0,5113.803195,N,00644.684166,E,1,07,3.3,85.5,M,,,,*38 -$GPRMC,144620.0,A,5113.803195,N,00644.684166,E,,,070709,,,A*6F -$GPGSA,A,3,09,12,15,17,26,27,30,,,,,,4.0,3.3,2.2*3C -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,275,,18,07,244,27,17,26,046,33,15,14,168,17*7F -$GPGSV,3,2,11,12,59,240,38,30,25,244,36,14,26,313,21,26,60,225,37*79 -$GPGSV,3,3,11,04,05,097,,09,78,104,34,27,62,112,34*46 -$GPGGA,144621.0,5113.803107,N,00644.684382,E,1,07,3.3,85.5,M,,,,*3A -$GPRMC,144621.0,A,5113.803107,N,00644.684382,E,,,070709,,,A*6D -$GPGSA,A,3,09,12,15,17,26,27,30,,,,,,4.0,3.3,2.2*3C -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,275,,18,07,244,27,17,26,046,31,15,14,168,17*7D -$GPGSV,3,2,11,12,59,240,38,30,25,244,36,14,26,313,22,26,60,225,38*75 -$GPGSV,3,3,11,04,05,097,,09,78,104,34,27,62,112,35*47 -$GPGGA,144622.0,5113.803082,N,00644.684508,E,1,07,3.3,85.5,M,,,,*31 -$GPRMC,144622.0,A,5113.803082,N,00644.684508,E,,,070709,,,A*66 -$GPGSA,A,3,09,12,15,17,26,27,30,,,,,,4.0,3.3,2.3*3D -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,275,,18,07,244,27,17,26,046,33,15,14,168,17*7F -$GPGSV,3,2,11,12,59,240,38,30,25,244,37,14,26,313,20,26,60,225,38*76 -$GPGSV,3,3,11,04,05,097,,09,78,104,34,27,62,112,35*47 -$GPGGA,144623.0,5113.803110,N,00644.684568,E,1,07,4.0,85.5,M,,,,*38 -$GPRMC,144623.0,A,5113.803110,N,00644.684568,E,,,070709,,,A*6B -$GPGSA,A,3,09,12,15,17,26,27,30,,,,,,4.8,4.0,2.7*35 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,275,,18,07,244,27,17,26,046,31,15,14,168,17*7D -$GPGSV,3,2,11,12,59,240,38,30,25,244,36,14,26,313,21,26,60,225,37*79 -$GPGSV,3,3,11,04,05,097,,09,78,104,33,27,62,112,34*41 -$GPGGA,144624.0,5113.803168,N,00644.684664,E,1,07,3.8,85.5,M,,,,*30 -$GPRMC,144624.0,A,5113.803168,N,00644.684664,E,,,070709,,,A*6C -$GPGSA,A,3,09,12,15,17,26,27,30,,,,,,4.7,3.8,2.6*34 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,275,,18,07,244,29,17,26,046,31,15,14,168,17*73 -$GPGSV,3,2,11,12,59,240,38,30,25,244,37,14,26,313,24,26,60,225,37*7D -$GPGSV,3,3,11,04,05,097,,09,78,104,34,27,62,112,34*46 -$GPGGA,144625.0,5113.803168,N,00644.684664,E,1,07,3.9,85.5,M,,,,*30 -$GPRMC,144625.0,A,5113.803168,N,00644.684664,E,,,070709,,,A*6D -$GPGSA,A,3,09,12,15,17,26,27,30,,,,,,4.6,3.9,2.6*34 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,275,,18,07,244,27,17,26,046,30,15,14,168,17*7C -$GPGSV,3,2,11,12,59,240,37,30,25,244,37,14,26,313,22,26,60,225,37*74 -$GPGSV,3,3,11,04,05,097,,09,78,104,33,27,62,112,35*40 -$GPGGA,144626.0,5113.803158,N,00644.684282,E,1,06,4.0,85.5,M,,,,*33 -$GPRMC,144626.0,A,5113.803158,N,00644.684282,E,,,070709,,,A*61 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,4.7,4.0,2.6*3F -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,275,,18,07,244,27,17,26,046,30,15,14,168,17*7C -$GPGSV,3,2,11,12,59,240,36,30,25,244,38,14,26,313,21,26,60,225,37*79 -$GPGSV,3,3,11,04,05,097,,09,78,104,33,27,62,112,33*46 -$GPGGA,144627.0,5113.803095,N,00644.683869,E,1,06,4.1,85.5,M,,,,*3B -$GPRMC,144627.0,A,5113.803095,N,00644.683869,E,,,070709,,,A*68 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,4.9,4.1,2.6*30 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,275,,18,07,244,25,17,26,046,32,15,14,168,17*7C -$GPGSV,3,2,11,12,59,240,37,30,25,244,38,14,26,313,23,26,60,225,36*7B -$GPGSV,3,3,11,04,05,097,,09,78,104,33,27,62,112,32*47 -$GPGGA,144628.0,5113.803037,N,00644.683693,E,1,06,4.2,85.5,M,,,,*34 -$GPRMC,144628.0,A,5113.803037,N,00644.683693,E,,,070709,,,A*64 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.0,4.2,2.6*3B -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,275,,18,07,244,25,17,26,046,33,15,14,168,17*7D -$GPGSV,3,2,11,12,59,240,35,30,25,244,38,14,26,313,25,26,60,225,37*7E -$GPGSV,3,3,11,04,05,097,,09,78,104,33,27,62,112,31*44 -$GPGGA,144629.0,5113.803095,N,00644.683728,E,1,06,4.6,85.5,M,,,,*38 -$GPRMC,144629.0,A,5113.803095,N,00644.683728,E,,,070709,,,A*6C -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.4,4.6,2.7*3A -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,275,,18,07,244,25,17,26,046,34,15,14,168,17*7A -$GPGSV,3,2,11,12,59,240,36,30,25,244,38,14,26,313,26,26,60,225,37*7E -$GPGSV,3,3,11,04,05,097,,09,78,104,33,27,62,112,31*44 -$GPGGA,144630.0,5113.803188,N,00644.683698,E,1,06,4.9,85.5,M,,,,*38 -$GPRMC,144630.0,A,5113.803188,N,00644.683698,E,,,070709,,,A*63 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.7,4.9,2.8*39 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,275,,18,07,244,25,17,26,046,33,15,14,168,17*7D -$GPGSV,3,2,11,12,59,240,36,30,25,244,38,14,26,313,25,26,60,225,37*7D -$GPGSV,3,3,11,04,05,097,,09,78,104,33,27,62,112,31*44 -$GPGGA,144631.0,5113.803263,N,00644.683809,E,1,06,4.9,86.0,M,,,,*3F -$GPRMC,144631.0,A,5113.803263,N,00644.683809,E,,,070709,,,A*62 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.7,4.9,2.8*39 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,275,,18,07,244,25,17,26,046,33,15,14,168,17*7D -$GPGSV,3,2,11,12,59,240,35,30,25,244,38,14,26,313,25,26,60,225,37*7E -$GPGSV,3,3,11,04,05,097,,09,78,104,33,27,62,112,31*44 -$GPGGA,144632.0,5113.803492,N,00644.683764,E,1,06,5.0,86.0,M,,,,*38 -$GPRMC,144632.0,A,5113.803492,N,00644.683764,E,,,070709,,,A*6D -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.8,5.0,2.9*3F -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,275,,18,07,244,22,17,26,046,33,15,14,168,17*7A -$GPGSV,3,2,11,12,59,240,36,30,25,244,39,14,26,313,24,26,60,225,38*72 -$GPGSV,3,3,11,04,05,097,,09,78,104,33,27,62,112,31*44 -$GPGGA,144633.0,5113.803550,N,00644.683799,E,1,06,5.0,86.5,M,,,,*31 -$GPRMC,144633.0,A,5113.803550,N,00644.683799,E,,,070709,,,A*61 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.8,5.0,2.9*3F -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,275,,18,07,244,22,17,26,046,34,15,14,168,17*7D -$GPGSV,3,2,11,12,59,240,36,30,25,244,39,14,26,313,24,26,59,225,37*77 -$GPGSV,3,3,11,04,05,097,,09,78,104,33,27,62,112,31*44 -$GPGGA,144634.0,5113.803708,N,00644.683733,E,1,06,5.0,86.5,M,,,,*39 -$GPRMC,144634.0,A,5113.803708,N,00644.683733,E,,,070709,,,A*69 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.7,5.0,2.9*30 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,275,,18,07,244,22,17,26,046,34,15,14,168,17*7D -$GPGSV,3,2,11,12,59,240,36,30,25,244,38,14,26,313,24,26,59,225,37*76 -$GPGSV,3,3,11,04,05,097,,09,78,105,32,27,62,112,31*44 -$GPGGA,144635.0,5113.803781,N,00644.683582,E,1,06,4.8,86.5,M,,,,*38 -$GPRMC,144635.0,A,5113.803781,N,00644.683582,E,,,070709,,,A*61 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.6,4.8,2.8*39 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,275,,18,07,244,23,17,26,046,33,15,14,168,17*7B -$GPGSV,3,2,11,12,59,240,36,30,25,244,38,14,26,313,22,26,59,225,37*70 -$GPGSV,3,3,11,04,05,097,,09,78,105,32,27,62,112,31*44 -$GPGGA,144636.0,5113.803781,N,00644.683582,E,1,06,4.7,86.5,M,,,,*34 -$GPRMC,144636.0,A,5113.803781,N,00644.683582,E,,,070709,,,A*62 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.4,4.7,2.7*3B -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,275,,18,07,244,28,17,26,046,33,15,14,168,17*70 -$GPGSV,3,2,11,12,59,240,37,30,25,244,39,14,26,313,22,26,59,225,37*70 -$GPGSV,3,3,11,04,05,097,,09,78,105,34,27,62,112,33*40 -$GPGGA,144637.0,5113.803671,N,00644.683396,E,1,06,4.6,86.5,M,,,,*39 -$GPRMC,144637.0,A,5113.803671,N,00644.683396,E,1.1,234.6,070709,,,A*6D -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.4,4.6,2.7*3A -$GPVTG,234.6,T,,M,1.1,N,2.1,K*60 -$GPGSV,3,1,11,22,14,275,,18,07,244,29,17,26,046,30,15,14,168,17*72 -$GPGSV,3,2,11,12,59,240,35,30,25,244,37,14,26,313,22,26,59,225,37*7C -$GPGSV,3,3,11,04,05,097,,09,78,105,33,27,62,112,32*46 -$GPGGA,144638.0,5113.803389,N,00644.682567,E,1,06,4.6,87.0,M,,,,*39 -$GPRMC,144638.0,A,5113.803389,N,00644.682567,E,2.9,235.2,070709,,,A*67 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.3,4.6,2.7*3D -$GPVTG,235.2,T,,M,2.9,N,5.3,K*6B -$GPGSV,3,1,11,22,14,275,,18,07,244,27,17,26,046,32,15,14,168,17*7E -$GPGSV,3,2,11,12,59,240,34,30,25,244,37,14,26,313,25,26,59,225,37*7A -$GPGSV,3,3,11,04,05,097,,09,78,105,31,27,62,112,31*47 -$GPGGA,144639.0,5113.802976,N,00644.680998,E,1,06,4.6,87.0,M,,,,*3D -$GPRMC,144639.0,A,5113.802976,N,00644.680998,E,5.1,245.2,070709,,,A*6B -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.4,4.6,2.8*35 -$GPVTG,245.2,T,,M,5.1,N,9.4,K*68 -$GPGSV,3,1,11,22,14,275,,18,07,244,21,17,26,046,33,15,14,168,*7F -$GPGSV,3,2,11,12,59,240,36,30,25,244,37,14,26,313,27,26,59,225,37*7A -$GPGSV,3,3,11,04,05,097,,09,78,105,32,27,62,112,31*44 -$GPGGA,144640.0,5113.801707,N,00644.678639,E,1,06,4.5,87.0,M,,,,*38 -$GPRMC,144640.0,A,5113.801707,N,00644.678639,E,7.4,237.2,070709,,,A*6F -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.3,4.5,2.8*31 -$GPVTG,237.2,T,,M,7.4,N,13.8,K*5D -$GPGSV,3,1,11,22,14,275,,18,07,244,20,17,26,046,34,15,14,168,*79 -$GPGSV,3,2,11,12,59,240,36,30,25,244,36,14,26,313,31,26,59,225,37*7C -$GPGSV,3,3,11,04,05,097,,09,78,105,33,27,62,112,31*45 -$GPGGA,144641.0,5113.800444,N,00644.675828,E,1,06,4.4,87.0,M,,,,*3E -$GPRMC,144641.0,A,5113.800444,N,00644.675828,E,7.4,236.9,070709,,,A*62 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.3,4.4,2.8*30 -$GPVTG,236.9,T,,M,7.4,N,13.8,K*57 -$GPGSV,3,1,11,22,14,275,,18,07,244,20,17,26,046,34,15,14,168,*79 -$GPGSV,3,2,11,12,59,240,36,30,25,244,37,14,26,313,31,26,59,225,37*7D -$GPGSV,3,3,11,04,05,097,,09,78,105,33,27,62,112,32*46 -$GPGGA,144642.0,5113.799046,N,00644.672896,E,1,06,4.4,87.5,M,,,,*33 -$GPRMC,144642.0,A,5113.799046,N,00644.672896,E,8.9,235.7,070709,,,A*65 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.2,4.4,2.8*31 -$GPVTG,235.7,T,,M,8.9,N,16.5,K*50 -$GPGSV,3,1,11,22,14,275,,18,07,244,20,17,26,046,32,15,14,168,*7F -$GPGSV,3,2,11,12,59,240,35,30,25,244,36,14,26,313,32,26,59,225,37*7C -$GPGSV,3,3,11,04,05,097,,09,78,105,31,27,62,112,32*44 -$GPGGA,144643.0,5113.797397,N,00644.669576,E,1,06,4.3,87.5,M,,,,*3D -$GPRMC,144643.0,A,5113.797397,N,00644.669576,E,10.4,233.5,070709,,,A*5C -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.1,4.3,2.7*3A -$GPVTG,233.5,T,,M,10.4,N,19.2,K*68 -$GPGSV,3,1,11,22,14,275,,18,07,244,20,17,26,046,32,15,14,168,*7F -$GPGSV,3,2,11,12,59,240,35,30,25,244,36,14,26,313,29,26,59,225,37*76 -$GPGSV,3,3,11,04,05,097,,09,78,105,31,27,62,112,31*47 -$GPGGA,144644.0,5113.795191,N,00644.666509,E,1,06,4.4,87.5,M,,,,*3C -$GPRMC,144644.0,A,5113.795191,N,00644.666509,E,10.6,217.7,070709,,,A*5C -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.2,4.4,2.8*31 -$GPVTG,217.7,T,,M,10.6,N,19.6,K*6A -$GPGSV,3,1,11,22,14,275,,18,07,244,20,17,26,046,34,15,14,168,*79 -$GPGSV,3,2,11,12,59,240,37,30,25,244,35,14,26,313,31,26,59,225,36*7F -$GPGSV,3,3,11,04,05,097,,09,78,105,30,27,62,112,31*46 -$GPGGA,144645.0,5113.792357,N,00644.664779,E,1,06,4.3,87.5,M,,,,*32 -$GPRMC,144645.0,A,5113.792357,N,00644.664779,E,10.4,193.0,070709,,,A*5F -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.2,4.3,2.8*36 -$GPVTG,193.0,T,,M,10.4,N,19.3,K*65 -$GPGSV,3,1,11,22,14,275,,18,07,244,20,17,26,046,28,15,14,168,*74 -$GPGSV,3,2,11,12,59,240,35,30,25,244,34,14,26,313,28,26,59,225,37*75 -$GPGSV,3,3,11,04,05,097,,09,78,105,35,27,62,112,32*40 -$GPGGA,144646.0,5113.789008,N,00644.665085,E,1,06,4.3,87.5,M,,,,*37 -$GPRMC,144646.0,A,5113.789008,N,00644.665085,E,11.9,169.1,070709,,,A*52 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.1,4.3,2.7*3A -$GPVTG,169.1,T,,M,11.9,N,22.0,K*66 -$GPGSV,3,1,11,22,14,275,,18,07,244,20,17,26,046,28,15,14,168,*74 -$GPGSV,3,2,11,12,59,240,35,30,25,244,31,14,26,313,30,26,59,225,35*7B -$GPGSV,3,3,11,04,05,097,,09,78,105,37,27,62,112,36*46 -$GPGGA,144647.0,5113.785523,N,00644.666810,E,1,06,3.7,87.5,M,,,,*32 -$GPRMC,144647.0,A,5113.785523,N,00644.666810,E,13.6,157.3,070709,,,A*56 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,4.8,3.7,3.0*37 -$GPVTG,157.3,T,,M,13.6,N,25.2,K*61 -$GPGSV,3,1,11,22,14,275,,18,07,244,20,17,26,046,28,15,14,168,*74 -$GPGSV,3,2,11,12,59,240,33,30,25,244,26,14,27,313,32,26,59,225,33*7E -$GPGSV,3,3,11,04,05,097,,09,78,105,36,27,62,112,36*47 -$GPGGA,144648.0,5113.782289,N,00644.670361,E,1,06,3.5,87.5,M,,,,*35 -$GPRMC,144648.0,A,5113.782289,N,00644.670361,E,14.8,142.5,070709,,,A*58 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.0,3.5,3.5*39 -$GPVTG,142.5,T,,M,14.8,N,27.5,K*6F -$GPGSV,3,1,11,22,14,275,,18,07,244,20,17,26,046,28,15,14,168,*74 -$GPGSV,3,2,11,12,59,240,29,30,25,244,25,14,27,313,31,26,59,225,27*70 -$GPGSV,3,3,11,04,05,097,,09,78,105,36,27,62,112,37*46 -$GPGGA,144649.0,5113.779795,N,00644.675360,E,1,06,2.9,87.5,M,,,,*31 -$GPRMC,144649.0,A,5113.779795,N,00644.675360,E,16.0,125.8,070709,,,A*57 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,4.1,2.9,2.9*39 -$GPVTG,125.8,T,,M,16.0,N,29.6,K*64 -$GPGSV,3,1,11,22,14,275,,18,07,244,20,17,26,046,28,15,14,168,*74 -$GPGSV,3,2,11,12,59,240,24,30,25,244,26,14,27,313,31,26,59,225,25*7C -$GPGSV,3,3,11,04,05,097,,09,78,105,35,27,62,112,35*47 -$GPGGA,144650.0,5113.777896,N,00644.681681,E,1,06,7.5,87.5,M,,,,*33 -$GPRMC,144650.0,A,5113.777896,N,00644.681681,E,16.9,115.5,070709,,,A*5B -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,10.0,7.5,6.6*0F -$GPVTG,115.5,T,,M,16.9,N,31.4,K*68 -$GPGSV,3,1,11,22,14,275,,18,07,244,20,17,26,046,28,15,14,168,*74 -$GPGSV,3,2,11,12,59,240,26,30,25,244,22,14,27,313,33,26,59,225,28*75 -$GPGSV,3,3,11,04,05,097,,09,78,105,33,27,62,112,32*46 -$GPGGA,144651.0,5113.776568,N,00644.688838,E,1,06,6.4,87.5,M,,,,*3A -$GPRMC,144651.0,A,5113.776568,N,00644.688838,E,18.0,107.9,070709,,,A*5A -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,9.5,6.4,7.0*35 -$GPVTG,107.9,T,,M,18.0,N,33.4,K*62 -$GPGSV,3,1,11,22,14,275,,18,07,244,20,17,26,046,28,15,14,168,*74 -$GPGSV,3,2,11,12,59,240,31,30,25,244,28,14,27,313,33,26,59,225,34*74 -$GPGSV,3,3,11,04,05,097,,09,78,105,35,27,62,112,35*47 -$GPGGA,144652.0,5113.774788,N,00644.697191,E,1,06,6.5,87.5,M,,,,*32 -$GPRMC,144652.0,A,5113.774788,N,00644.697191,E,20.4,107.3,070709,,,A*56 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,8.4,6.5,5.2*34 -$GPVTG,107.3,T,,M,20.4,N,37.8,K*6F -$GPGSV,3,1,11,22,14,275,,18,07,244,20,17,26,046,28,15,14,168,*74 -$GPGSV,3,2,11,12,59,240,31,30,25,244,30,14,27,313,24,26,59,225,33*7C -$GPGSV,3,3,11,04,05,097,,09,78,105,36,27,62,112,37*46 -$GPGGA,144653.0,5113.772671,N,00644.706299,E,1,06,6.3,87.5,M,,,,*36 -$GPRMC,144653.0,A,5113.772671,N,00644.706299,E,21.9,108.7,070709,,,A*53 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,7.7,6.3,4.3*3E -$GPVTG,108.7,T,,M,21.9,N,40.6,K*66 -$GPGSV,3,1,11,22,14,275,,18,07,244,20,17,26,046,28,15,14,168,19*7C -$GPGSV,3,2,11,12,59,240,34,30,25,244,28,14,27,313,31,26,59,225,34*73 -$GPGSV,3,3,11,04,05,097,,09,78,105,34,27,62,112,34*47 -$GPGGA,144654.0,5113.770342,N,00644.716066,E,1,05,6.2,87.5,M,,,,*37 -$GPRMC,144654.0,A,5113.770342,N,00644.716066,E,23.5,108.9,070709,,,A*50 -$GPGSA,A,3,09,12,26,27,30,,,,,,,,8.0,6.2,5.0*33 -$GPVTG,108.9,T,,M,23.5,N,43.5,K*66 -$GPGSV,3,1,11,22,14,275,,18,07,244,20,17,26,046,28,15,14,168,19*7C -$GPGSV,3,2,11,12,59,240,27,30,25,244,26,14,27,313,26,26,59,225,29*75 -$GPGSV,3,3,11,04,05,097,,09,78,105,33,27,62,112,35*41 -$GPGGA,144655.0,5113.768137,N,00644.725918,E,1,05,6.2,87.5,M,,,,*3F -$GPRMC,144655.0,A,5113.768137,N,00644.725918,E,23.3,109.4,070709,,,A*52 -$GPGSA,A,3,09,12,26,27,30,,,,,,,,8.3,6.2,5.4*34 -$GPVTG,109.4,T,,M,23.3,N,43.2,K*6B -$GPGSV,3,1,11,22,14,275,24,18,07,244,20,17,26,046,19,15,14,168,19*78 -$GPGSV,3,2,11,12,59,240,32,30,25,244,27,14,27,313,24,26,59,225,30*7A -$GPGSV,3,3,11,04,05,097,,09,78,105,35,27,62,112,36*44 -$GPGGA,144656.0,5113.765648,N,00644.735845,E,1,05,6.4,87.0,M,,,,*35 -$GPRMC,144656.0,A,5113.765648,N,00644.735845,E,23.7,110.7,070709,,,A*54 -$GPGSA,A,3,09,12,26,27,30,,,,,,,,8.6,6.4,5.7*34 -$GPVTG,110.7,T,,M,23.7,N,44.0,K*61 -$GPGSV,3,1,11,22,14,275,26,18,07,244,20,17,26,046,19,15,14,168,19*7A -$GPGSV,3,2,11,12,59,240,28,30,25,244,27,14,27,313,26,26,59,225,27*75 -$GPGSV,3,3,11,04,05,097,,09,78,105,36,27,62,112,36*47 -$GPGGA,144657.0,5113.763274,N,00644.745652,E,1,05,7.0,87.5,M,,,,*36 -$GPRMC,144657.0,A,5113.763274,N,00644.745652,E,23.6,110.8,070709,,,A*59 -$GPGSA,A,3,09,12,26,27,30,,,,,,,,9.4,7.0,6.3*35 -$GPVTG,110.8,T,,M,23.6,N,43.7,K*6F -$GPGSV,3,1,11,22,14,275,21,18,07,244,20,17,26,046,20,15,14,168,19*77 -$GPGSV,3,2,11,12,59,240,33,30,25,244,27,14,27,313,28,26,59,225,35*72 -$GPGSV,3,3,11,04,05,097,,09,78,105,36,27,62,112,37*46 -$GPGGA,144658.0,5113.761222,N,00644.755258,E,1,06,3.9,87.5,M,,,,*39 -$GPRMC,144658.0,A,5113.761222,N,00644.755258,E,23.3,109.8,070709,,,A*55 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.2,3.9,3.5*37 -$GPVTG,109.8,T,,M,23.3,N,43.1,K*64 -$GPGSV,3,1,11,22,14,275,24,18,07,244,20,17,26,046,20,15,14,168,19*72 -$GPGSV,3,2,11,12,59,240,33,30,25,244,25,14,27,313,30,26,59,225,33*7F -$GPGSV,3,3,11,04,05,097,,09,78,105,36,27,62,112,35*44 -$GPGGA,144659.0,5113.758914,N,00644.765055,E,1,06,3.9,87.5,M,,,,*30 -$GPRMC,144659.0,A,5113.758914,N,00644.765055,E,23.7,110.5,070709,,,A*5D -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.7,3.9,4.2*32 -$GPVTG,110.5,T,,M,23.7,N,43.8,K*6C -$GPGSV,3,1,11,22,14,275,29,18,07,244,20,17,26,046,20,15,14,168,19*7F -$GPGSV,3,2,11,12,59,240,31,30,25,244,25,14,27,313,30,26,59,225,32*7C -$GPGSV,3,3,11,04,05,097,,09,78,105,35,27,62,112,36*44 -$GPGGA,144700.0,5113.756781,N,00644.774670,E,1,06,4.2,87.5,M,,,,*3C -$GPRMC,144700.0,A,5113.756781,N,00644.774670,E,23.0,110.4,070709,,,A*5B -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,6.3,4.2,4.7*3C -$GPVTG,110.4,T,,M,23.0,N,42.6,K*65 -$GPGSV,3,1,11,22,14,275,27,18,07,244,20,17,26,046,20,15,14,168,19*71 -$GPGSV,3,2,11,12,59,240,34,30,25,244,22,14,27,313,25,26,59,225,35*7D -$GPGSV,3,3,11,04,05,097,,09,78,105,36,27,62,112,37*46 -$GPGGA,144701.0,5113.754425,N,00644.784397,E,1,06,7.3,87.5,M,,,,*33 -$GPRMC,144701.0,A,5113.754425,N,00644.784397,E,23.2,110.8,070709,,,A*58 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,12.6,7.3,10.2*3E -$GPVTG,110.8,T,,M,23.2,N,42.9,K*64 -$GPGSV,3,1,11,22,14,275,29,18,07,244,20,17,26,046,20,15,14,168,19*7F -$GPGSV,3,2,11,12,59,240,34,30,25,244,22,14,27,313,22,26,59,225,34*7B -$GPGSV,3,3,11,04,05,097,,09,78,105,34,27,62,112,33*40 -$GPGGA,144702.0,5113.751833,N,00644.794153,E,1,06,6.9,87.0,M,,,,*3B -$GPRMC,144702.0,A,5113.751833,N,00644.794153,E,23.5,112.7,070709,,,A*54 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,12.0,6.9,9.9*00 -$GPVTG,112.7,T,,M,23.5,N,43.5,K*63 -$GPGSV,3,1,11,22,14,275,29,18,07,244,20,17,26,046,20,15,14,168,19*7F -$GPGSV,3,2,11,12,59,240,27,30,25,244,24,14,27,313,22,26,59,225,28*72 -$GPGSV,3,3,11,04,05,097,,09,78,105,34,27,62,112,35*46 -$GPGGA,144703.0,5113.749436,N,00644.803709,E,1,06,6.5,87.0,M,,,,*3E -$GPRMC,144703.0,A,5113.749436,N,00644.803709,E,22.9,111.7,070709,,,A*53 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,9.1,6.5,6.3*32 -$GPVTG,111.7,T,,M,22.9,N,42.3,K*6A -$GPGSV,3,1,11,22,14,275,26,18,07,244,,17,26,046,20,15,14,168,16*7D -$GPGSV,3,2,11,12,59,240,30,30,25,244,24,14,27,313,25,26,59,225,31*7B -$GPGSV,3,3,11,04,05,097,,09,78,105,35,27,62,112,36*44 -$GPGGA,144704.0,5113.747166,N,00644.813063,E,1,07,5.2,87.0,M,,,,*38 -$GPRMC,144704.0,A,5113.747166,N,00644.813063,E,22.7,111.4,070709,,,A*5D -$GPGSA,A,3,09,12,15,17,26,27,30,,,,,,7.5,5.2,5.4*3C -$GPVTG,111.4,T,,M,22.7,N,42.1,K*65 -$GPGSV,3,1,11,22,14,275,24,18,07,244,,17,26,046,20,15,14,168,16*7F -$GPGSV,3,2,11,12,59,240,31,30,25,244,24,14,27,313,32,26,59,225,30*7D -$GPGSV,3,3,11,04,05,097,,09,78,105,35,27,62,112,35*47 -$GPGGA,144705.0,5113.744525,N,00644.822558,E,1,06,5.6,87.0,M,,,,*33 -$GPRMC,144705.0,A,5113.744525,N,00644.822558,E,23.2,113.2,070709,,,A*53 -$GPGSA,A,3,09,12,15,26,27,30,,,,,,,8.1,5.6,5.9*38 -$GPVTG,113.2,T,,M,23.2,N,43.0,K*65 -$GPGSV,3,1,11,22,14,275,24,18,07,244,,17,26,046,20,15,14,168,16*7F -$GPGSV,3,2,11,12,59,240,29,30,25,244,26,14,27,313,33,26,59,225,31*76 -$GPGSV,3,3,11,04,05,097,,09,78,105,36,27,62,112,35*44 -$GPGGA,144706.0,5113.742577,N,00644.831932,E,1,06,5.2,87.5,M,,,,*32 -$GPRMC,144706.0,A,5113.742577,N,00644.831932,E,23.7,109.9,070709,,,A*56 -$GPGSA,A,3,09,12,15,26,27,30,,,,,,,7.4,5.2,5.2*3D -$GPVTG,109.9,T,,M,23.7,N,43.9,K*69 -$GPGSV,3,1,11,22,14,275,26,18,07,244,,17,26,046,20,15,14,168,16*7D -$GPGSV,3,2,11,12,59,240,28,30,25,244,25,14,27,313,31,26,59,225,30*77 -$GPGSV,3,3,11,04,05,097,20,09,78,105,36,27,62,112,36*45 -$GPGGA,144707.0,5113.740600,N,00644.841739,E,1,06,6.4,87.5,M,,,,*35 -$GPRMC,144707.0,A,5113.740600,N,00644.841739,E,23.6,109.0,070709,,,A*5C -$GPGSA,A,3,09,12,15,26,27,30,,,,,,,9.0,6.4,6.3*30 -$GPVTG,109.0,T,,M,23.6,N,43.8,K*60 -$GPGSV,3,1,11,22,14,275,29,18,07,244,,17,26,046,20,15,14,168,16*72 -$GPGSV,3,2,11,12,59,240,29,30,25,244,27,14,27,313,23,26,59,225,31*76 -$GPGSV,3,3,11,04,05,097,20,09,78,105,35,27,62,112,35*45 -$GPGGA,144708.0,5113.738259,N,00644.851873,E,1,06,6.4,88.0,M,,,,*37 -$GPRMC,144708.0,A,5113.738259,N,00644.851873,E,24.6,110.0,070709,,,A*5B -$GPGSA,A,3,09,12,15,26,27,30,,,,,,,8.8,6.4,6.0*3A -$GPVTG,110.0,T,,M,24.6,N,45.7,K*66 -$GPGSV,3,1,11,22,14,275,25,18,07,244,,17,26,046,23,15,14,168,16*7D -$GPGSV,3,2,11,12,59,240,26,30,25,244,23,14,27,313,23,26,59,225,28*75 -$GPGSV,3,3,11,04,05,097,20,09,78,105,36,27,61,112,36*46 -$GPGGA,144709.0,5113.735966,N,00644.862117,E,1,06,7.6,88.0,M,,,,*34 -$GPRMC,144709.0,A,5113.735966,N,00644.862117,E,24.5,110.2,070709,,,A*5A -$GPGSA,A,3,09,12,15,26,27,30,,,,,,,11.7,7.6,8.8*08 -$GPVTG,110.2,T,,M,24.5,N,45.4,K*64 -$GPGSV,3,1,11,22,14,275,26,18,07,244,,17,26,046,23,15,14,168,16*7E -$GPGSV,3,2,11,12,59,240,28,30,25,244,23,14,27,313,25,26,59,225,28*7D -$GPGSV,3,3,11,04,05,097,20,09,78,105,36,27,61,112,36*46 -$GPGGA,144710.0,5113.733788,N,00644.872060,E,1,06,8.1,88.0,M,,,,*3C -$GPRMC,144710.0,A,5113.733788,N,00644.872060,E,24.0,110.2,070709,,,A*5F -$GPGSA,A,3,09,12,15,26,27,30,,,,,,,12.6,8.1,9.6*0D -$GPVTG,110.2,T,,M,24.0,N,44.5,K*61 -$GPGSV,3,1,11,22,14,275,23,18,07,244,,17,26,046,23,15,13,168,16*7C -$GPGSV,3,2,11,12,59,240,32,30,25,244,23,14,27,313,27,26,59,225,33*7E -$GPGSV,3,3,11,04,05,097,20,09,78,105,35,27,61,112,35*46 -$GPGGA,144711.0,5113.731661,N,00644.881922,E,1,05,7.3,88.0,M,,,,*34 -$GPRMC,144711.0,A,5113.731661,N,00644.881922,E,23.5,110.5,070709,,,A*5C -$GPGSA,A,3,09,12,26,27,30,,,,,,,,12.7,7.3,10.4*3F -$GPVTG,110.5,T,,M,23.5,N,43.6,K*60 -$GPGSV,3,1,11,22,14,275,23,18,07,244,,17,26,046,23,15,13,168,16*7C -$GPGSV,3,2,11,12,59,240,29,30,25,244,23,14,27,313,26,26,59,225,31*77 -$GPGSV,3,3,11,04,05,097,20,09,78,105,35,27,61,112,33*40 -$GPGGA,144712.0,5113.728907,N,00644.891663,E,1,05,11.6,88.0,M,,,,*09 -$GPRMC,144712.0,A,5113.728907,N,00644.891663,E,23.5,113.0,070709,,,A*55 -$GPGSA,A,3,09,12,26,27,30,,,,,,,,25.5,11.6,22.9*07 -$GPVTG,113.0,T,,M,23.5,N,43.6,K*66 -$GPGSV,3,1,11,22,14,275,28,18,07,244,,17,26,046,24,15,13,168,16*70 -$GPGSV,3,2,11,12,59,240,27,30,25,244,23,14,27,313,27,26,59,225,28*70 -$GPGSV,3,3,11,04,05,097,20,09,78,105,33,27,61,112,35*40 -$GPGGA,144713.0,5113.726833,N,00644.901027,E,1,06,3.5,87.5,M,,,,*37 -$GPRMC,144713.0,A,5113.726833,N,00644.901027,E,22.3,110.5,070709,,,A*53 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.7,3.5,4.5*39 -$GPVTG,110.5,T,,M,22.3,N,41.4,K*67 -$GPGSV,3,1,11,22,14,275,27,18,07,244,,17,26,046,28,15,13,168,16*73 -$GPGSV,3,2,11,12,59,240,30,30,25,244,23,14,27,313,24,26,59,225,31*7D -$GPGSV,3,3,11,04,05,097,20,09,78,105,37,27,61,112,37*46 -$GPGGA,144714.0,5113.725276,N,00644.910045,E,1,06,3.7,87.5,M,,,,*3E -$GPRMC,144714.0,A,5113.725276,N,00644.910045,E,21.6,108.5,070709,,,A*57 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,5.8,3.7,4.5*34 -$GPVTG,108.5,T,,M,21.6,N,40.1,K*6C -$GPGSV,3,1,11,22,14,275,25,18,07,244,,17,26,046,24,15,13,168,16*7D -$GPGSV,3,2,11,12,59,240,34,30,25,244,23,14,27,313,28,26,59,223,34*76 -$GPGSV,3,3,11,04,05,097,20,09,78,105,36,27,61,112,36*46 -$GPGGA,144715.0,5113.723207,N,00644.919127,E,1,06,3.7,87.0,M,,,,*36 -$GPRMC,144715.0,A,5113.723207,N,00644.919127,E,21.5,109.8,070709,,,A*55 -$GPGSA,A,3,09,12,17,26,27,30,,,,,,,6.3,3.7,5.1*39 -$GPVTG,109.8,T,,M,21.5,N,39.9,K*65 -$GPGSV,3,1,11,22,14,275,23,18,07,244,,17,26,046,28,15,13,168,16*77 -$GPGSV,3,2,11,12,59,240,35,30,25,244,23,14,27,313,30,26,59,223,35*7F -$GPGSV,3,3,11,04,05,097,20,09,78,105,36,27,61,112,37*47 -$GPGGA,144716.0,5113.721067,N,00644.928436,E,1,05,3.7,87.0,M,,,,*37 -$GPRMC,144716.0,A,5113.721067,N,00644.928436,E,23.0,112.1,070709,,,A*53 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,6.0,3.7,4.8*31 -$GPVTG,112.1,T,,M,23.0,N,42.5,K*61 -$GPGSV,3,1,11,22,14,275,22,18,07,244,,17,26,046,28,15,13,168,16*76 -$GPGSV,3,2,11,12,59,240,35,30,25,244,23,14,27,313,29,26,59,223,34*76 -$GPGSV,3,3,11,04,05,097,20,09,78,105,36,27,61,112,36*46 -$GPGGA,144717.0,5113.718615,N,00644.938042,E,1,05,3.7,87.0,M,,,,*39 -$GPRMC,144717.0,A,5113.718615,N,00644.938042,E,23.8,111.8,070709,,,A*5F -$GPGSA,A,3,09,12,17,26,27,,,,,,,,6.1,3.7,4.9*31 -$GPVTG,111.8,T,,M,23.8,N,44.0,K*60 -$GPGSV,3,1,11,22,14,275,22,18,07,244,,17,26,046,21,15,13,168,16*7F -$GPGSV,3,2,11,12,59,240,35,30,25,244,23,14,27,313,29,26,59,223,34*76 -$GPGSV,3,3,11,04,05,097,20,09,78,105,36,27,61,112,37*47 -$GPGGA,144718.0,5113.716269,N,00644.947809,E,1,05,4.4,87.0,M,,,,*3C -$GPRMC,144718.0,A,5113.716269,N,00644.947809,E,23.6,110.7,070709,,,A*5E -$GPGSA,A,3,09,12,17,26,27,,,,,,,,8.1,4.4,6.8*38 -$GPVTG,110.7,T,,M,23.6,N,43.7,K*60 -$GPGSV,3,1,11,22,14,275,22,18,07,244,,17,26,046,21,15,13,168,16*7F -$GPGSV,3,2,11,12,59,240,34,30,25,244,23,14,27,313,33,26,59,223,34*7C -$GPGSV,3,3,11,04,05,097,20,09,78,105,36,27,61,112,36*46 -$GPGGA,144719.0,5113.713993,N,00644.958058,E,1,05,4.6,86.5,M,,,,*32 -$GPRMC,144719.0,A,5113.713993,N,00644.958058,E,24.9,106.5,070709,,,A*5B -$GPGSA,A,3,09,12,17,26,27,,,,,,,,8.5,4.6,7.2*35 -$GPVTG,106.5,T,,M,24.9,N,46.1,K*6E -$GPGSV,3,1,11,22,14,275,22,18,07,244,,17,26,046,21,15,13,168,16*7F -$GPGSV,3,2,11,12,59,240,32,30,25,244,23,14,27,313,27,26,59,223,34*7F -$GPGSV,3,3,11,04,05,097,20,09,78,105,36,27,61,112,34*44 -$GPGGA,144720.0,5113.712211,N,00644.968911,E,1,05,4.6,86.5,M,,,,*3F -$GPRMC,144720.0,A,5113.712211,N,00644.968911,E,25.7,105.1,070709,,,A*5E -$GPGSA,A,3,09,12,17,26,27,,,,,,,,8.4,4.6,7.1*37 -$GPVTG,105.1,T,,M,25.7,N,47.6,K*60 -$GPGSV,3,1,11,22,14,275,22,18,07,244,,17,26,046,21,15,13,168,15*7C -$GPGSV,3,2,11,12,59,240,29,30,25,244,23,14,27,313,26,26,59,223,31*71 -$GPGSV,3,3,11,04,05,097,20,09,78,105,36,27,61,112,33*43 -$GPGGA,144721.0,5113.710161,N,00644.979995,E,1,05,11.6,86.5,M,,,,*00 -$GPRMC,144721.0,A,5113.710161,N,00644.979995,E,26.0,106.1,070709,,,A*52 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,25.5,11.6,22.9*02 -$GPVTG,106.1,T,,M,26.0,N,48.2,K*6C -$GPGSV,3,1,11,22,14,275,22,18,07,244,,17,25,046,22,15,13,168,15*7C -$GPGSV,3,2,11,12,59,240,31,30,25,244,23,14,27,313,30,26,59,223,32*7C -$GPGSV,3,3,11,04,05,097,20,09,78,105,31,27,61,112,32*45 -$GPGGA,144722.0,5113.708132,N,00644.991296,E,1,05,4.2,86.5,M,,,,*32 -$GPRMC,144722.0,A,5113.708132,N,00644.991296,E,26.3,105.1,070709,,,A*50 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,7.3,4.2,5.9*31 -$GPVTG,105.1,T,,M,26.3,N,48.8,K*66 -$GPGSV,3,1,11,22,14,275,22,18,07,244,,17,25,046,22,15,13,168,15*7C -$GPGSV,3,2,11,12,59,240,30,30,25,244,23,14,27,313,28,26,59,223,29*7E -$GPGSV,3,3,11,04,05,097,20,09,78,105,32,27,61,112,32*46 -$GPGGA,144723.0,5113.705874,N,00645.002666,E,1,05,3.9,86.5,M,,,,*30 -$GPRMC,144723.0,A,5113.705874,N,00645.002666,E,27.0,106.7,070709,,,A*59 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,6.7,3.9,5.4*35 -$GPVTG,106.7,T,,M,27.0,N,50.0,K*60 -$GPGSV,3,1,11,22,14,275,22,18,07,243,,17,25,046,20,15,13,168,15*79 -$GPGSV,3,2,11,12,59,240,28,30,25,244,23,14,27,313,31,26,59,223,28*7E -$GPGSV,3,3,11,04,05,097,20,09,78,105,32,27,61,112,31*45 -$GPGGA,144724.0,5113.703940,N,00645.013937,E,1,05,3.9,86.5,M,,,,*3C -$GPRMC,144724.0,A,5113.703940,N,00645.013937,E,26.5,106.0,070709,,,A*56 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,6.7,3.9,5.4*35 -$GPVTG,106.0,T,,M,26.5,N,49.0,K*6B -$GPGSV,3,1,11,22,14,275,22,18,07,243,,17,25,046,26,15,13,168,17*7D -$GPGSV,3,2,11,12,59,240,24,30,25,244,23,14,27,313,30,26,59,223,27*7C -$GPGSV,3,3,11,04,05,097,20,09,78,105,34,27,61,112,34*46 -$GPGGA,144725.0,5113.701257,N,00645.025081,E,1,05,3.4,86.0,M,,,,*3B -$GPRMC,144725.0,A,5113.701257,N,00645.025081,E,26.1,109.1,070709,,,A*53 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,5.5,3.4,4.3*3F -$GPVTG,109.1,T,,M,26.1,N,48.4,K*64 -$GPGSV,3,1,11,22,14,275,20,18,07,243,,17,25,046,31,15,13,168,17*79 -$GPGSV,3,2,11,12,59,240,27,30,25,244,23,14,27,313,24,26,59,223,29*74 -$GPGSV,3,3,11,04,05,097,20,09,78,105,33,27,61,112,34*41 -$GPGGA,144726.0,5113.698788,N,00645.035884,E,1,05,3.7,86.5,M,,,,*34 -$GPRMC,144726.0,A,5113.698788,N,00645.035884,E,25.7,110.4,070709,,,A*52 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,5.9,3.7,4.5*36 -$GPVTG,110.4,T,,M,25.7,N,47.5,K*62 -$GPGSV,3,1,11,22,14,275,20,18,07,243,,17,25,046,24,15,13,168,17*7D -$GPGSV,3,2,11,12,59,240,33,30,25,244,23,14,27,313,27,26,59,223,35*7F -$GPGSV,3,3,11,04,05,097,20,09,78,105,36,27,61,112,37*47 -$GPGGA,144727.0,5113.696472,N,00645.046224,E,1,05,3.6,86.5,M,,,,*38 -$GPRMC,144727.0,A,5113.696472,N,00645.046224,E,24.8,111.4,070709,,,A*50 -$GPGSA,A,3,09,12,17,26,27,,,,,,,,6.0,3.6,4.8*30 -$GPVTG,111.4,T,,M,24.8,N,46.0,K*69 -$GPGSV,3,1,11,22,14,275,27,18,07,243,,17,25,046,20,15,13,168,14*7D -$GPGSV,3,2,11,12,59,240,31,30,26,244,23,14,27,313,34,26,59,223,32*7B -$GPGSV,3,3,11,04,05,097,,09,78,105,37,27,61,112,37*44 -$GPGGA,144728.0,5113.693942,N,00645.056322,E,1,06,3.3,86.0,M,,,,*39 -$GPRMC,144728.0,A,5113.693942,N,00645.056322,E,24.0,111.0,070709,,,A*5E -$GPGSA,A,3,09,12,15,17,26,27,,,,,,,5.9,3.3,4.8*3B -$GPVTG,111.0,T,,M,24.0,N,44.4,K*63 -$GPGSV,3,1,11,22,14,275,23,18,07,243,,17,25,046,20,15,13,168,14*79 -$GPGSV,3,2,11,12,59,240,30,30,26,244,23,14,27,313,32,26,59,223,29*76 -$GPGSV,3,3,11,04,05,097,,09,78,105,35,27,61,112,32*43 -$GPGGA,144729.0,5113.690663,N,00645.066607,E,1,07,2.1,86.5,M,,,,*31 -$GPRMC,144729.0,A,5113.690663,N,00645.066607,E,23.3,110.7,070709,,,A*53 -$GPGSA,A,3,09,12,14,15,17,26,27,,,,,,4.3,2.1,3.7*3E -$GPVTG,110.7,T,,M,23.3,N,43.1,K*63 -$GPGSV,3,1,11,22,14,275,26,18,07,243,,17,25,046,20,15,13,168,14*7C -$GPGSV,3,2,11,12,59,240,29,30,26,244,23,14,27,313,26,26,59,223,29*7B -$GPGSV,3,3,11,04,05,097,,09,78,105,32,27,61,112,34*42 -$GPGGA,144730.0,5113.688325,N,00645.076223,E,1,07,2.1,86.5,M,,,,*34 -$GPRMC,144730.0,A,5113.688325,N,00645.076223,E,22.8,110.5,070709,,,A*5E -$GPGSA,A,3,09,12,14,15,17,26,27,,,,,,4.2,2.1,3.6*3E -$GPVTG,110.5,T,,M,22.8,N,42.2,K*69 -$GPGSV,3,1,11,22,14,275,28,18,07,243,,17,25,046,20,15,13,168,14*72 -$GPGSV,3,2,11,12,59,240,27,30,26,244,23,14,27,313,29,26,59,223,30*72 -$GPGSV,3,3,11,04,05,097,,09,78,105,32,27,61,112,31*47 -$GPGGA,144731.0,5113.685712,N,00645.085924,E,1,07,2.4,86.5,M,,,,*3D -$GPRMC,144731.0,A,5113.685712,N,00645.085924,E,22.6,109.6,070709,,,A*57 -$GPGSA,A,3,09,12,14,15,17,26,27,,,,,,5.1,2.4,4.5*3D -$GPVTG,109.6,T,,M,22.6,N,41.9,K*64 -$GPGSV,3,1,11,22,14,275,27,18,07,243,,17,25,046,20,15,13,168,14*7D -$GPGSV,3,2,11,12,59,240,27,30,26,244,23,14,27,313,28,26,59,223,29*7B -$GPGSV,3,3,11,04,05,097,,09,78,105,34,27,61,112,34*44 -$GPGGA,144732.0,5113.683665,N,00645.095323,E,1,07,2.5,86.5,M,,,,*34 -$GPRMC,144732.0,A,5113.683665,N,00645.095323,E,22.1,109.1,070709,,,A*5F -$GPGSA,A,3,09,12,14,15,17,26,27,,,,,,5.1,2.5,4.4*3D -$GPVTG,109.1,T,,M,22.1,N,40.9,K*65 -$GPGSV,3,1,11,22,14,275,26,18,07,243,,17,25,046,31,15,13,168,14*7C -$GPGSV,3,2,11,12,59,240,29,30,26,244,,14,27,313,30,26,59,223,29*7D -$GPGSV,3,3,11,04,05,097,,09,78,105,36,27,61,112,37*45 -$GPGGA,144733.0,5113.681651,N,00645.104552,E,1,07,2.8,86.5,M,,,,*34 -$GPRMC,144733.0,A,5113.681651,N,00645.104552,E,21.5,110.2,070709,,,A*5E -$GPGSA,A,3,09,12,14,15,17,26,27,,,,,,5.0,2.8,4.1*34 -$GPVTG,110.2,T,,M,21.5,N,39.9,K*67 -$GPGSV,3,1,11,22,14,275,25,18,07,243,,17,25,046,23,15,13,168,14*7C -$GPGSV,3,2,11,12,59,240,29,30,26,244,20,14,27,313,24,26,59,223,30*72 -$GPGSV,3,3,11,04,05,097,,09,78,105,36,27,61,112,33*41 -$GPGGA,144734.0,5113.679486,N,00645.113584,E,1,07,2.7,86.5,M,,,,*3E -$GPRMC,144734.0,A,5113.679486,N,00645.113584,E,22.1,110.4,070709,,,A*5A -$GPGSA,A,3,09,12,14,15,17,26,27,,,,,,5.0,2.7,4.3*39 -$GPVTG,110.4,T,,M,22.1,N,41.0,K*60 -$GPGSV,3,1,11,22,14,275,23,18,07,243,,17,25,046,21,15,13,168,14*78 -$GPGSV,3,2,11,12,59,240,30,30,26,244,19,14,27,313,27,26,59,223,31*72 -$GPGSV,3,3,11,04,05,097,,09,78,105,28,27,61,112,28*44 -$GPGGA,144735.0,5113.677384,N,00645.122828,E,1,06,3.1,86.5,M,,,,*3B -$GPRMC,144735.0,A,5113.677384,N,00645.122828,E,22.3,109.8,070709,,,A*5F -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,7.0,3.1,6.2*3B -$GPVTG,109.8,T,,M,22.3,N,41.2,K*64 -$GPGSV,3,1,11,22,14,275,26,18,07,243,,17,25,046,21,15,13,168,14*7D -$GPGSV,3,2,11,12,59,240,25,30,26,244,19,14,27,313,27,26,59,223,25*73 -$GPGSV,3,3,11,04,05,097,,09,78,105,32,27,61,112,31*47 -$GPGGA,144736.0,5113.675450,N,00645.132016,E,1,06,2.9,86.5,M,,,,*39 -$GPRMC,144736.0,A,5113.675450,N,00645.132016,E,21.9,108.1,070709,,,A*55 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.9,2.9,5.1*39 -$GPVTG,108.1,T,,M,21.9,N,40.6,K*60 -$GPGSV,3,1,11,22,14,275,24,18,07,243,,17,25,046,23,15,13,168,16*7F -$GPGSV,3,2,11,12,59,240,27,30,26,244,19,14,27,313,26,26,59,223,27*72 -$GPGSV,3,3,11,04,05,097,,09,78,105,32,27,61,112,34*42 -$GPGGA,144737.0,5113.673391,N,00645.140862,E,1,07,2.0,86.5,M,,,,*32 -$GPRMC,144737.0,A,5113.673391,N,00645.140862,E,20.4,109.6,070709,,,A*5C -$GPGSA,A,3,09,12,14,15,17,26,27,,,,,,3.9,2.0,3.3*36 -$GPVTG,109.6,T,,M,20.4,N,37.7,K*6B -$GPGSV,3,1,11,22,14,275,24,18,07,243,,17,25,046,21,15,13,168,16*7D -$GPGSV,3,2,11,12,59,240,28,30,26,244,19,14,27,313,31,26,59,223,29*75 -$GPGSV,3,3,11,04,05,097,,09,78,105,35,27,61,112,34*45 -$GPGGA,144738.0,5113.671462,N,00645.149060,E,1,07,2.0,86.5,M,,,,*37 -$GPRMC,144738.0,A,5113.671462,N,00645.149060,E,18.8,108.8,070709,,,A*51 -$GPGSA,A,3,09,12,14,15,17,26,27,,,,,,4.1,2.0,3.6*3C -$GPVTG,108.8,T,,M,18.8,N,34.8,K*6F -$GPGSV,3,1,11,22,14,275,22,18,07,243,,17,25,046,22,15,13,168,16*78 -$GPGSV,3,2,11,12,59,240,25,30,26,244,19,14,27,313,26,26,59,223,28*7F -$GPGSV,3,3,11,04,05,097,,09,78,105,36,27,61,112,36*44 -$GPGGA,144739.0,5113.669672,N,00645.156503,E,1,07,2.0,86.5,M,,,,*32 -$GPRMC,144739.0,A,5113.669672,N,00645.156503,E,17.1,110.7,070709,,,A*54 -$GPGSA,A,3,09,12,14,15,17,26,27,,,,,,3.9,2.0,3.3*36 -$GPVTG,110.7,T,,M,17.1,N,31.6,K*64 -$GPGSV,3,1,11,22,14,275,23,18,07,243,,17,25,046,23,15,13,168,16*78 -$GPGSV,3,2,11,12,59,240,29,30,26,244,19,14,27,313,25,26,59,223,27*7F -$GPGSV,3,3,11,04,05,097,19,09,78,105,36,27,61,112,36*4C -$GPGGA,144740.0,5113.668123,N,00645.162940,E,1,07,2.7,86.5,M,,,,*35 -$GPRMC,144740.0,A,5113.668123,N,00645.162940,E,14.4,110.6,070709,,,A*53 -$GPGSA,A,3,09,12,14,15,17,26,27,,,,,,5.2,2.7,4.4*3C -$GPVTG,110.6,T,,M,14.4,N,26.6,K*65 -$GPGSV,3,1,11,22,14,275,25,18,07,243,,17,25,046,23,15,13,168,16*7E -$GPGSV,3,2,11,12,59,240,32,30,26,244,19,14,27,313,30,26,59,223,35*72 -$GPGSV,3,3,11,04,05,097,17,09,78,105,35,27,61,112,34*43 -$GPGGA,144741.0,5113.666624,N,00645.167808,E,1,07,2.8,86.5,M,,,,*3D -$GPRMC,144741.0,A,5113.666624,N,00645.167808,E,10.3,116.2,070709,,,A*55 -$GPGSA,A,3,09,12,14,15,17,26,27,,,,,,5.8,2.8,5.1*3D -$GPVTG,116.2,T,,M,10.3,N,19.0,K*6E -$GPGSV,3,1,11,22,14,275,26,18,07,243,,17,25,046,23,15,13,168,16*7D -$GPGSV,3,2,11,12,59,240,34,30,26,244,22,14,27,313,28,26,59,223,34*74 -$GPGSV,3,3,11,04,05,097,17,09,78,105,33,27,61,112,34*45 -$GPGGA,144742.0,5113.665704,N,00645.170650,E,1,08,2.2,87.0,M,,,,*3A -$GPRMC,144742.0,A,5113.665704,N,00645.170650,E,5.8,120.5,070709,,,A*6E -$GPGSA,A,3,09,12,14,15,17,26,27,30,,,,,4.6,2.2,4.0*3B -$GPVTG,120.5,T,,M,5.8,N,10.7,K*5D -$GPGSV,3,1,11,22,14,275,20,18,07,243,,17,25,046,23,15,13,168,16*7B -$GPGSV,3,2,11,12,59,240,29,30,26,244,22,14,27,313,27,26,59,223,28*7A -$GPGSV,3,3,11,04,05,097,17,09,78,105,33,27,61,112,35*44 -$GPGGA,144743.0,5113.665284,N,00645.172053,E,1,08,2.2,87.0,M,,,,*31 -$GPRMC,144743.0,A,5113.665284,N,00645.172053,E,2.5,126.9,070709,,,A*65 -$GPGSA,A,3,09,12,14,15,17,26,27,30,,,,,4.1,2.2,3.5*3E -$GPVTG,126.9,T,,M,2.5,N,4.7,K*68 -$GPGSV,3,1,11,22,14,275,21,18,07,243,,17,25,046,26,15,13,168,16*7F -$GPGSV,3,2,11,12,59,240,25,30,26,244,22,14,27,313,24,26,59,223,26*7B -$GPGSV,3,3,11,04,05,097,17,09,78,105,33,27,61,112,36*47 -$GPGGA,144744.0,5113.665216,N,00645.172576,E,1,07,2.2,87.0,M,,,,*30 -$GPRMC,144744.0,A,5113.665216,N,00645.172576,E,,,070709,,,A*60 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.8,2.2,3.0*31 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,275,21,18,07,243,,17,25,046,26,15,13,168,16*7F -$GPGSV,3,2,11,12,59,240,20,30,26,244,22,14,27,313,26,26,59,223,30*7B -$GPGSV,3,3,11,04,05,097,17,09,78,105,36,27,61,112,38*4C -$GPGGA,144745.0,5113.664934,N,00645.172591,E,1,07,2.1,87.5,M,,,,*34 -$GPRMC,144745.0,A,5113.664934,N,00645.172591,E,,,070709,,,A*62 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.7,2.1,3.0*3D -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,275,21,18,07,243,,17,25,046,25,15,13,168,16*7C -$GPGSV,3,2,11,12,59,240,28,30,26,244,24,14,27,313,24,26,59,223,25*73 -$GPGSV,3,3,11,04,05,097,17,09,78,105,34,27,61,112,38*4E -$GPGGA,144746.0,5113.664791,N,00645.172988,E,1,07,2.2,87.5,M,,,,*31 -$GPRMC,144746.0,A,5113.664791,N,00645.172988,E,1.4,126.4,070709,,,A*60 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.6,2.2,2.9*37 -$GPVTG,126.4,T,,M,1.4,N,2.6,K*60 -$GPGSV,3,1,11,22,14,275,21,18,07,243,,17,25,046,25,15,13,168,16*7C -$GPGSV,3,2,11,12,59,240,26,30,26,244,26,14,27,313,26,26,59,223,23*7B -$GPGSV,3,3,11,04,05,097,17,09,78,105,36,27,61,112,36*42 -$GPGGA,144747.0,5113.664527,N,00645.174492,E,1,07,2.0,88.0,M,,,,*37 -$GPRMC,144747.0,A,5113.664527,N,00645.174492,E,5.3,112.7,070709,,,A*69 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.3,2.0,2.6*3F -$GPVTG,112.7,T,,M,5.3,N,9.8,K*62 -$GPGSV,3,1,11,22,14,275,23,18,07,243,,17,25,046,33,15,13,168,16*79 -$GPGSV,3,2,11,12,59,240,26,30,26,244,24,14,27,313,26,26,59,223,30*7B -$GPGSV,3,3,11,04,05,097,17,09,78,105,37,27,61,112,35*40 -$GPGGA,144748.0,5113.664039,N,00645.177711,E,1,07,2.3,87.5,M,,,,*30 -$GPRMC,144748.0,A,5113.664039,N,00645.177711,E,8.7,109.8,070709,,,A*6B -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.7,2.3,2.9*37 -$GPVTG,109.8,T,,M,8.7,N,16.1,K*59 -$GPGSV,3,1,11,22,14,275,21,18,07,243,,17,25,046,31,15,13,168,16*79 -$GPGSV,3,2,11,12,59,240,35,30,26,244,24,14,27,313,29,26,59,223,35*73 -$GPGSV,3,3,11,04,05,097,17,09,78,105,37,27,61,112,31*44 -$GPGGA,144749.0,5113.662953,N,00645.182086,E,1,07,2.4,88.0,M,,,,*3C -$GPRMC,144749.0,A,5113.662953,N,00645.182086,E,11.6,107.1,070709,,,A*54 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.1,2.4,3.4*3D -$GPVTG,107.1,T,,M,11.6,N,21.4,K*66 -$GPGSV,3,1,11,22,14,275,20,18,07,243,,17,25,046,25,15,13,168,16*7D -$GPGSV,3,2,11,12,59,240,33,30,26,244,20,14,27,313,33,26,59,223,32*7D -$GPGSV,3,3,11,04,05,097,17,09,78,105,29,27,61,112,27*4C -$GPGGA,144750.0,5113.661577,N,00645.187839,E,1,07,2.5,88.0,M,,,,*35 -$GPRMC,144750.0,A,5113.661577,N,00645.187839,E,14.9,108.9,070709,,,A*51 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,5.4,2.5,4.8*33 -$GPVTG,108.9,T,,M,14.9,N,27.5,K*6C -$GPGSV,3,1,11,22,14,275,25,18,07,243,,17,25,046,23,15,13,168,16*7E -$GPGSV,3,2,11,12,59,240,26,30,26,244,25,14,27,313,33,26,59,223,28*77 -$GPGSV,3,3,11,04,05,097,17,09,78,105,33,27,61,112,33*42 -$GPGGA,144751.0,5113.659970,N,00645.194408,E,1,07,1.9,88.0,M,,,,*37 -$GPRMC,144751.0,A,5113.659970,N,00645.194408,E,16.7,111.8,070709,,,A*59 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.8,1.9,3.3*3A -$GPVTG,111.8,T,,M,16.7,N,31.0,K*6B -$GPGSV,3,1,11,22,14,275,22,18,07,243,,17,25,046,25,15,13,168,16*7F -$GPGSV,3,2,11,12,59,240,32,30,26,244,23,14,27,313,33,26,59,223,34*79 -$GPGSV,3,3,11,04,05,097,17,09,78,105,36,27,61,112,31*45 -$GPGGA,144752.0,5113.658022,N,00645.201629,E,1,07,2.0,88.0,M,,,,*3F -$GPRMC,144752.0,A,5113.658022,N,00645.201629,E,18.5,110.3,070709,,,A*5D -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.0,2.0,3.4*38 -$GPVTG,110.3,T,,M,18.5,N,34.3,K*6B -$GPGSV,3,1,11,22,14,275,23,18,07,243,,17,25,046,25,15,13,168,16*7E -$GPGSV,3,2,11,12,59,240,29,30,26,244,23,14,27,313,32,26,59,223,29*7E -$GPGSV,3,3,11,04,05,097,17,09,78,105,33,27,61,112,34*45 -$GPGGA,144753.0,5113.655942,N,00645.209767,E,1,07,2.0,88.5,M,,,,*3A -$GPRMC,144753.0,A,5113.655942,N,00645.209767,E,20.4,111.5,070709,,,A*50 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.0,2.0,3.5*39 -$GPVTG,111.5,T,,M,20.4,N,37.8,K*6E -$GPGSV,3,1,11,22,14,275,25,18,07,243,,17,25,046,27,15,13,168,16*7A -$GPGSV,3,2,11,12,59,240,28,30,26,244,23,14,27,313,27,26,59,223,29*7B -$GPGSV,3,3,11,04,05,097,17,09,78,105,33,27,61,112,31*40 -$GPGGA,144754.0,5113.653822,N,00645.218397,E,1,07,2.1,88.5,M,,,,*36 -$GPRMC,144754.0,A,5113.653822,N,00645.218397,E,21.0,110.3,070709,,,A*5F -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.6,2.1,3.0*3C -$GPVTG,110.3,T,,M,21.0,N,38.9,K*62 -$GPGSV,3,1,11,22,14,275,26,18,07,243,,17,25,046,26,15,13,168,16*78 -$GPGSV,3,2,11,12,59,240,26,30,26,244,23,14,27,313,28,26,59,223,27*74 -$GPGSV,3,3,11,04,05,097,17,09,78,105,36,27,61,112,36*42 -$GPGGA,144755.0,5113.651740,N,00645.227419,E,1,07,2.7,88.5,M,,,,*35 -$GPRMC,144755.0,A,5113.651740,N,00645.227419,E,22.5,110.0,070709,,,A*5F -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.9,2.7,4.0*35 -$GPVTG,110.0,T,,M,22.5,N,41.7,K*67 -$GPGSV,3,1,11,22,14,275,26,18,07,243,,17,25,046,24,15,13,168,16*7A -$GPGSV,3,2,11,12,59,240,31,30,26,244,23,14,27,313,28,26,59,223,32*76 -$GPGSV,3,3,11,04,05,097,17,09,78,105,35,27,61,112,35*42 -$GPGGA,144756.0,5113.649593,N,00645.237185,E,1,07,2.6,88.5,M,,,,*33 -$GPRMC,144756.0,A,5113.649593,N,00645.237185,E,23.8,108.8,070709,,,A*55 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.8,2.6,4.1*34 -$GPVTG,108.8,T,,M,23.8,N,44.2,K*6A -$GPGSV,3,1,11,22,14,275,23,18,07,243,,17,25,046,23,15,13,168,16*78 -$GPGSV,3,2,11,12,59,240,31,30,26,244,23,14,27,313,27,26,59,223,36*7D -$GPGSV,3,3,11,04,05,097,17,09,78,105,36,27,61,112,36*42 -$GPGGA,144757.0,5113.647750,N,00645.247827,E,1,07,2.5,89.0,M,,,,*30 -$GPRMC,144757.0,A,5113.647750,N,00645.247827,E,25.6,105.5,070709,,,A*59 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.8,2.5,4.1*37 -$GPVTG,105.5,T,,M,25.6,N,47.4,K*67 -$GPGSV,3,1,11,22,14,275,24,18,07,243,,17,25,046,21,15,13,168,*7A -$GPGSV,3,2,11,12,59,241,30,30,26,244,23,14,27,313,29,26,59,223,31*74 -$GPGSV,3,3,11,04,05,097,17,09,78,105,37,27,61,112,37*42 -$GPGGA,144758.0,5113.645937,N,00645.258831,E,1,07,2.6,89.0,M,,,,*38 -$GPRMC,144758.0,A,5113.645937,N,00645.258831,E,25.8,103.8,070709,,,A*57 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,5.1,2.6,4.3*3E -$GPVTG,103.8,T,,M,25.8,N,47.8,K*6E -$GPGSV,3,1,11,22,14,275,24,18,07,243,,17,25,046,22,15,13,168,*79 -$GPGSV,3,2,11,12,59,241,35,30,26,244,23,14,27,313,27,26,59,223,36*78 -$GPGSV,3,3,11,04,05,097,17,09,78,105,36,27,61,112,33*47 -$GPGGA,144759.0,5113.644443,N,00645.270151,E,1,06,2.6,89.0,M,,,,*32 -$GPRMC,144759.0,A,5113.644443,N,00645.270151,E,26.4,100.6,070709,,,A*5E -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.1,2.6,4.4*3A -$GPVTG,100.6,T,,M,26.4,N,48.9,K*62 -$GPGSV,3,1,11,22,14,275,24,18,07,243,,17,25,046,21,15,13,168,17*7C -$GPGSV,3,2,11,12,60,241,29,30,26,244,23,14,27,313,25,26,59,223,31*7A -$GPGSV,3,3,11,04,05,097,17,09,78,105,36,27,61,112,33*47 -$GPGGA,144800.0,5113.643085,N,00645.281703,E,1,06,2.7,89.0,M,,,,*36 -$GPRMC,144800.0,A,5113.643085,N,00645.281703,E,26.2,100.2,070709,,,A*59 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.1,2.7,4.4*3B -$GPVTG,100.2,T,,M,26.2,N,48.6,K*6F -$GPGSV,3,1,11,22,14,275,30,18,07,243,,17,25,046,20,15,13,168,19*76 -$GPGSV,3,2,11,12,60,241,31,30,26,244,23,14,27,313,25,26,59,223,33*71 -$GPGSV,3,3,11,04,05,097,,09,78,105,36,27,61,112,29*4A -$GPGGA,144801.0,5113.641659,N,00645.293381,E,1,06,2.9,88.5,M,,,,*35 -$GPRMC,144801.0,A,5113.641659,N,00645.293381,E,26.9,100.5,070709,,,A*5C -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.8,2.9,5.0*39 -$GPVTG,100.5,T,,M,26.9,N,49.9,K*6D -$GPGSV,3,1,11,22,14,275,28,18,07,243,,17,25,046,22,15,13,168,19*7D -$GPGSV,3,2,11,12,60,241,27,30,26,244,23,14,27,313,26,26,59,223,29*7E -$GPGSV,3,3,11,04,05,097,22,09,78,106,35,27,61,112,31*43 -$GPGGA,144802.0,5113.640213,N,00645.305255,E,1,06,2.7,88.5,M,,,,*35 -$GPRMC,144802.0,A,5113.640213,N,00645.305255,E,27.8,101.5,070709,,,A*53 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.1,2.7,4.3*3C -$GPVTG,101.5,T,,M,27.8,N,51.5,K*69 -$GPGSV,3,1,11,22,14,275,24,18,07,243,,17,25,046,21,15,13,168,19*72 -$GPGSV,3,2,11,12,60,241,27,30,26,244,23,14,27,313,25,26,59,223,29*7D -$GPGSV,3,3,11,04,05,097,22,09,78,106,33,27,61,112,29*4C -$GPGGA,144803.0,5113.638622,N,00645.317295,E,1,06,2.6,88.5,M,,,,*33 -$GPRMC,144803.0,A,5113.638622,N,00645.317295,E,27.8,101.3,070709,,,A*52 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.0,2.6,4.2*3D -$GPVTG,101.3,T,,M,27.8,N,51.5,K*6F -$GPGSV,3,1,11,22,14,275,24,18,07,243,,17,25,046,21,15,13,168,19*72 -$GPGSV,3,2,11,12,60,241,28,30,26,244,23,14,27,313,26,26,59,223,30*79 -$GPGSV,3,3,11,04,05,097,20,09,78,106,34,27,61,112,34*45 -$GPGGA,144804.0,5113.636892,N,00645.329556,E,1,06,2.6,88.5,M,,,,*3A -$GPRMC,144804.0,A,5113.636892,N,00645.329556,E,28.5,102.7,070709,,,A*5E -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.2,2.6,4.5*38 -$GPVTG,102.7,T,,M,28.5,N,52.8,K*64 -$GPGSV,3,1,11,22,14,275,24,18,07,243,,17,25,046,20,15,13,168,19*73 -$GPGSV,3,2,11,12,60,241,28,30,26,244,23,14,27,313,29,26,59,223,30*76 -$GPGSV,3,3,11,04,05,097,21,09,78,106,35,27,61,112,33*42 -$GPGGA,144805.0,5113.635217,N,00645.341912,E,1,06,2.5,88.5,M,,,,*3E -$GPRMC,144805.0,A,5113.635217,N,00645.341912,E,28.5,102.5,070709,,,A*5B -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.0,2.5,4.3*3F -$GPVTG,102.5,T,,M,28.5,N,52.7,K*69 -$GPGSV,3,1,11,22,14,275,24,18,07,243,,17,25,046,25,15,13,168,19*76 -$GPGSV,3,2,11,12,60,241,29,30,26,244,23,14,27,313,29,26,59,223,29*7F -$GPGSV,3,3,11,04,05,097,21,09,78,106,37,27,61,112,34*47 -$GPGGA,144806.0,5113.633603,N,00645.353977,E,1,06,2.6,89.0,M,,,,*3D -$GPRMC,144806.0,A,5113.633603,N,00645.353977,E,27.9,102.2,070709,,,A*5B -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.0,2.6,4.2*3D -$GPVTG,102.2,T,,M,27.9,N,51.6,K*6F -$GPGSV,3,1,11,22,14,275,24,18,07,243,,17,25,046,31,15,13,168,19*73 -$GPGSV,3,2,11,12,60,241,27,30,26,244,23,14,27,313,29,26,59,223,30*79 -$GPGSV,3,3,11,04,05,097,24,09,78,106,34,27,61,112,32*47 -$GPGGA,144807.0,5113.631918,N,00645.366022,E,1,06,2.7,88.5,M,,,,*31 -$GPRMC,144807.0,A,5113.631918,N,00645.366022,E,27.9,102.8,070709,,,A*58 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,4.8,2.7,3.9*39 -$GPVTG,102.8,T,,M,27.9,N,51.8,K*6B -$GPGSV,3,1,11,22,14,275,24,18,07,243,,17,25,046,20,15,13,168,19*73 -$GPGSV,3,2,11,12,60,241,30,30,26,244,23,14,27,313,31,26,59,223,32*74 -$GPGSV,3,3,11,04,05,097,27,09,78,106,35,27,61,112,36*41 -$GPGGA,144808.0,5113.630276,N,00645.377961,E,1,06,2.6,89.0,M,,,,*37 -$GPRMC,144808.0,A,5113.630276,N,00645.377961,E,27.5,102.2,070709,,,A*5D -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.4,2.6,4.7*3C -$GPVTG,102.2,T,,M,27.5,N,50.9,K*6D -$GPGSV,3,1,11,22,14,275,24,18,07,243,,17,25,046,22,15,13,168,19*71 -$GPGSV,3,2,11,12,60,241,28,30,26,244,23,14,27,313,33,26,59,223,29*75 -$GPGSV,3,3,11,04,05,097,22,09,78,106,35,27,61,112,33*41 -$GPGGA,144809.0,5113.628591,N,00645.389835,E,1,06,2.6,89.0,M,,,,*30 -$GPRMC,144809.0,A,5113.628591,N,00645.389835,E,27.2,101.8,070709,,,A*54 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.0,2.6,4.3*3C -$GPVTG,101.8,T,,M,27.2,N,50.4,K*6E -$GPGSV,3,1,11,22,14,274,24,18,07,243,,17,25,046,21,15,13,168,19*73 -$GPGSV,3,2,11,12,60,241,30,30,26,244,23,14,27,313,27,26,59,223,32*73 -$GPGSV,3,3,11,04,05,097,26,09,78,106,37,27,61,112,34*40 -$GPGGA,144810.0,5113.626934,N,00645.401503,E,1,06,2.6,89.0,M,,,,*3A -$GPRMC,144810.0,A,5113.626934,N,00645.401503,E,26.8,103.2,070709,,,A*5D -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.1,2.6,4.4*3A -$GPVTG,103.2,T,,M,26.8,N,49.6,K*67 -$GPGSV,3,1,11,22,14,274,24,18,07,243,,17,25,046,21,15,13,168,19*73 -$GPGSV,3,2,11,12,60,241,31,30,26,244,23,14,27,313,28,26,59,223,32*7D -$GPGSV,3,3,11,04,06,097,28,09,78,106,36,27,61,112,31*49 -$GPGGA,144811.0,5113.625390,N,00645.413100,E,1,06,2.8,89.0,M,,,,*36 -$GPRMC,144811.0,A,5113.625390,N,00645.413100,E,26.4,102.3,070709,,,A*53 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.6,2.8,4.9*3E -$GPVTG,102.3,T,,M,26.4,N,48.9,K*65 -$GPGSV,3,1,11,22,14,274,21,18,07,243,,17,25,046,20,15,13,168,19*77 -$GPGSV,3,2,11,12,60,241,28,30,26,244,23,14,27,313,25,26,59,223,32*78 -$GPGSV,3,3,11,04,06,097,29,09,78,106,35,27,61,112,33*49 -$GPGGA,144812.0,5113.623793,N,00645.424144,E,1,06,2.6,89.0,M,,,,*3E -$GPRMC,144812.0,A,5113.623793,N,00645.424144,E,25.4,103.6,070709,,,A*52 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.1,2.6,4.4*3A -$GPVTG,103.6,T,,M,25.4,N,47.0,K*64 -$GPGSV,3,1,11,22,14,274,21,18,07,243,,17,25,046,29,15,13,168,19*7E -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,27,313,25,26,59,223,36*70 -$GPGSV,3,3,11,04,06,097,30,09,78,106,37,27,61,112,35*45 -$GPGGA,144813.0,5113.622302,N,00645.434750,E,1,06,2.8,89.0,M,,,,*3E -$GPRMC,144813.0,A,5113.622302,N,00645.434750,E,24.2,102.0,070709,,,A*5C -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,4.6,2.8,3.7*36 -$GPVTG,102.0,T,,M,24.2,N,44.8,K*6F -$GPGSV,3,1,11,22,14,274,25,18,07,243,,17,25,046,27,15,13,168,19*74 -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,27,313,23,26,59,223,36*76 -$GPGSV,3,3,11,04,06,097,32,09,78,106,36,27,61,112,36*45 -$GPGGA,144814.0,5113.621030,N,00645.445060,E,1,06,2.9,89.0,M,,,,*3B -$GPRMC,144814.0,A,5113.621030,N,00645.445060,E,23.3,101.8,070709,,,A*55 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,4.8,2.9,3.8*36 -$GPVTG,101.8,T,,M,23.3,N,43.1,K*6C -$GPGSV,3,1,11,22,14,274,29,18,07,243,,17,25,046,25,15,13,168,19*7A -$GPGSV,3,2,11,12,60,241,35,30,26,244,,14,27,313,27,26,59,223,36*73 -$GPGSV,3,3,11,04,06,097,30,09,78,106,37,27,61,112,36*46 -$GPGGA,144815.0,5113.619694,N,00645.455068,E,1,06,2.7,89.0,M,,,,*3E -$GPRMC,144815.0,A,5113.619694,N,00645.455068,E,22.8,102.8,070709,,,A*57 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.0,2.7,4.2*3C -$GPVTG,102.8,T,,M,22.8,N,42.2,K*67 -$GPGSV,3,1,11,22,14,274,34,18,07,243,,17,25,046,25,15,13,168,19*76 -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,27,313,33,26,59,223,36*77 -$GPGSV,3,3,11,04,06,097,31,09,78,106,37,27,61,112,36*47 -$GPGGA,144816.0,5113.618196,N,00645.464779,E,1,06,2.6,89.0,M,,,,*3D -$GPRMC,144816.0,A,5113.618196,N,00645.464779,E,21.5,102.8,070709,,,A*5B -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.1,2.6,4.3*3D -$GPVTG,102.8,T,,M,21.5,N,39.8,K*6F -$GPGSV,3,1,11,22,14,274,34,18,07,243,,17,25,046,22,15,13,168,19*71 -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,27,313,26,26,59,223,36*73 -$GPGSV,3,3,11,04,06,097,31,09,78,106,36,27,61,112,35*45 -$GPGGA,144817.0,5113.616727,N,00645.473449,E,1,06,2.7,89.0,M,,,,*39 -$GPRMC,144817.0,A,5113.616727,N,00645.473449,E,20.1,106.0,070709,,,A*57 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.5,2.7,4.8*33 -$GPVTG,106.0,T,,M,20.1,N,37.3,K*63 -$GPGSV,3,1,11,22,14,274,32,18,07,243,,17,25,046,22,15,13,168,19*77 -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,27,313,26,26,59,223,35*70 -$GPGSV,3,3,11,04,06,097,30,09,78,106,37,27,61,112,36*46 -$GPGGA,144818.0,5113.615131,N,00645.481682,E,1,06,2.7,89.5,M,,,,*39 -$GPRMC,144818.0,A,5113.615131,N,00645.481682,E,18.6,107.9,070709,,,A*56 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.6,2.7,4.9*31 -$GPVTG,107.9,T,,M,18.6,N,34.5,K*62 -$GPGSV,3,1,11,22,14,274,31,18,07,243,,17,25,046,24,15,13,168,19*72 -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,27,313,28,26,59,223,36*7D -$GPGSV,3,3,11,04,06,097,28,09,78,106,37,27,61,112,36*4F -$GPGGA,144819.0,5113.613639,N,00645.489256,E,1,06,2.7,89.5,M,,,,*34 -$GPRMC,144819.0,A,5113.613639,N,00645.489256,E,17.1,106.1,070709,,,A*5A -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.5,2.7,4.7*3C -$GPVTG,106.1,T,,M,17.1,N,31.7,K*64 -$GPGSV,3,1,11,22,14,274,31,18,07,243,,17,25,046,20,15,13,168,19*76 -$GPGSV,3,2,11,12,60,241,35,30,26,244,,14,27,313,30,26,59,223,37*74 -$GPGSV,3,3,11,04,06,097,26,09,78,106,38,27,61,112,37*4F -$GPGGA,144820.0,5113.612380,N,00645.496181,E,1,06,2.7,90.5,M,,,,*37 -$GPRMC,144820.0,A,5113.612380,N,00645.496181,E,15.8,108.4,070709,,,A*51 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.7,2.7,5.0*38 -$GPVTG,108.4,T,,M,15.8,N,29.2,K*68 -$GPGSV,3,1,11,22,14,274,29,18,07,243,,17,25,046,24,15,13,168,19*7B -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,27,313,26,26,59,223,35*70 -$GPGSV,3,3,11,04,06,097,25,09,78,106,37,27,61,112,36*42 -$GPGGA,144821.0,5113.610687,N,00645.502106,E,1,06,2.7,90.5,M,,,,*35 -$GPRMC,144821.0,A,5113.610687,N,00645.502106,E,13.9,115.9,070709,,,A*55 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.4,2.7,4.7*3D -$GPVTG,115.9,T,,M,13.9,N,25.8,K*68 -$GPGSV,3,1,11,22,14,274,27,18,07,243,,17,25,046,21,15,13,168,*78 -$GPGSV,3,2,11,12,60,241,35,30,26,244,,14,27,313,31,26,59,223,35*77 -$GPGSV,3,3,11,04,06,097,20,09,78,106,37,27,61,112,37*46 -$GPGGA,144822.0,5113.608638,N,00645.506863,E,1,06,2.7,90.5,M,,,,*35 -$GPRMC,144822.0,A,5113.608638,N,00645.506863,E,13.4,130.2,070709,,,A*54 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.7,2.7,5.0*38 -$GPVTG,130.2,T,,M,13.4,N,24.8,K*68 -$GPGSV,3,1,11,22,14,274,23,18,07,243,,17,25,046,20,15,13,168,*7D -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,27,313,32,26,59,223,34*74 -$GPGSV,3,3,11,04,06,097,22,09,78,106,37,27,61,112,36*45 -$GPGGA,144823.0,5113.605766,N,00645.510821,E,1,06,2.6,90.5,M,,,,*33 -$GPRMC,144823.0,A,5113.605766,N,00645.510821,E,13.3,143.6,070709,,,A*54 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.6,2.6,4.9*30 -$GPVTG,143.6,T,,M,13.3,N,24.6,K*61 -$GPGSV,3,1,11,22,14,274,23,18,07,243,,17,25,046,25,15,13,168,*78 -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,27,313,31,26,59,223,34*77 -$GPGSV,3,3,11,04,06,097,22,09,78,106,37,27,61,112,35*46 -$GPGGA,144824.0,5113.602626,N,00645.513351,E,1,06,2.7,90.5,M,,,,*38 -$GPRMC,144824.0,A,5113.602626,N,00645.513351,E,13.1,160.9,070709,,,A*52 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.4,2.7,4.7*3D -$GPVTG,160.9,T,,M,13.1,N,24.2,K*69 -$GPGSV,3,1,11,22,14,274,23,18,07,243,,17,25,046,30,15,13,168,*7C -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,27,313,28,26,59,223,35*7E -$GPGSV,3,3,11,04,06,097,22,09,78,106,36,27,61,112,34*46 -$GPGGA,144825.0,5113.598884,N,00645.514170,E,1,06,2.8,90.5,M,,,,*36 -$GPRMC,144825.0,A,5113.598884,N,00645.514170,E,13.1,178.7,070709,,,A*54 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.0,2.8,4.1*30 -$GPVTG,178.7,T,,M,13.1,N,24.2,K*6E -$GPGSV,3,1,11,22,14,274,23,18,07,243,,17,25,046,29,15,13,168,*74 -$GPGSV,3,2,11,12,60,241,35,30,26,244,,14,27,313,32,26,59,223,37*76 -$GPGSV,3,3,11,04,06,097,20,09,78,106,33,27,61,112,33*46 -$GPGGA,144826.0,5113.595200,N,00645.513547,E,1,06,2.9,90.0,M,,,,*3D -$GPRMC,144826.0,A,5113.595200,N,00645.513547,E,13.7,194.8,070709,,,A*50 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.6,2.9,4.8*3E -$GPVTG,194.8,T,,M,13.7,N,25.3,K*65 -$GPGSV,3,1,11,22,14,274,23,18,07,243,,17,25,046,33,15,13,168,*7F -$GPGSV,3,2,11,12,60,241,35,30,26,244,,14,27,313,32,26,59,223,36*77 -$GPGSV,3,3,11,04,06,097,20,09,78,106,30,27,61,112,32*44 -$GPGGA,144827.0,5113.591456,N,00645.511002,E,1,06,3.4,89.5,M,,,,*3A -$GPRMC,144827.0,A,5113.591456,N,00645.511002,E,15.5,207.7,070709,,,A*54 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,6.6,3.4,5.7*3F -$GPVTG,207.7,T,,M,15.5,N,28.8,K*61 -$GPGSV,3,1,11,22,14,274,27,18,07,243,,17,25,046,33,15,13,168,*7B -$GPGSV,3,2,11,12,60,241,35,30,26,244,,14,27,313,32,26,59,223,35*74 -$GPGSV,3,3,11,04,06,097,20,09,78,106,31,27,61,112,33*44 -$GPGGA,144828.0,5113.587940,N,00645.506793,E,1,06,3.6,89.0,M,,,,*36 -$GPRMC,144828.0,A,5113.587940,N,00645.506793,E,17.1,218.0,070709,,,A*50 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,6.9,3.6,5.9*3C -$GPVTG,218.0,T,,M,17.1,N,31.7,K*69 -$GPGSV,3,1,11,22,14,274,20,18,07,243,,17,25,046,32,15,13,168,*7D -$GPGSV,3,2,11,12,60,241,35,30,26,244,,14,27,313,27,26,59,223,36*73 -$GPGSV,3,3,11,04,06,097,21,09,78,106,31,27,61,112,33*45 -$GPGGA,144829.0,5113.583535,N,00645.502216,E,1,06,3.4,89.0,M,,,,*33 -$GPRMC,144829.0,A,5113.583535,N,00645.502216,E,19.4,214.3,070709,,,A*53 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,6.7,3.4,5.8*31 -$GPVTG,214.3,T,,M,19.4,N,35.9,K*67 -$GPGSV,3,1,11,22,14,274,20,18,07,243,,17,25,046,33,15,13,168,*7C -$GPGSV,3,2,11,12,60,241,35,30,26,244,,14,27,313,29,26,59,223,36*7D -$GPGSV,3,3,11,04,06,097,22,09,78,106,31,27,61,112,32*47 -$GPGGA,144830.0,5113.578735,N,00645.497489,E,1,06,3.4,88.5,M,,,,*34 -$GPRMC,144830.0,A,5113.578735,N,00645.497489,E,21.1,210.6,070709,,,A*5F -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,6.7,3.4,5.8*31 -$GPVTG,210.6,T,,M,21.1,N,39.0,K*6D -$GPGSV,3,1,11,22,14,274,23,18,07,243,,17,25,046,32,15,13,168,*7E -$GPGSV,3,2,11,12,60,241,33,30,26,244,,14,27,313,29,26,59,223,36*7B -$GPGSV,3,3,11,04,06,097,23,09,78,106,31,27,61,112,31*45 -$GPGGA,144831.0,5113.573504,N,00645.493108,E,1,06,3.2,88.5,M,,,,*30 -$GPRMC,144831.0,A,5113.573504,N,00645.493108,E,22.6,206.4,070709,,,A*5C -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,6.4,3.2,5.5*39 -$GPVTG,206.4,T,,M,22.6,N,41.9,K*6A -$GPGSV,3,1,11,22,14,274,22,18,07,243,,17,25,046,33,15,13,168,*7E -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,27,313,24,26,59,223,36*71 -$GPGSV,3,3,11,04,06,097,23,09,78,106,30,27,61,112,25*41 -$GPGGA,144832.0,5113.567630,N,00645.488834,E,1,06,3.5,88.5,M,,,,*39 -$GPRMC,144832.0,A,5113.567630,N,00645.488834,E,23.2,203.8,070709,,,A*5E -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,6.1,3.5,5.0*3E -$GPVTG,203.8,T,,M,23.2,N,43.0,K*6D -$GPGSV,3,1,11,22,14,274,21,18,07,243,,17,25,046,29,15,13,168,*76 -$GPGSV,3,2,11,12,60,241,37,30,26,244,,14,27,313,23,26,59,223,37*74 -$GPGSV,3,3,11,04,06,097,23,09,78,106,31,27,61,112,29*4C -$GPGGA,144833.0,5113.561263,N,00645.485545,E,1,06,3.5,88.5,M,,,,*3A -$GPRMC,144833.0,A,5113.561263,N,00645.485545,E,24.2,196.5,070709,,,A*58 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,6.2,3.5,5.1*3C -$GPVTG,196.5,T,,M,24.2,N,44.8,K*67 -$GPGSV,3,1,11,22,14,274,29,18,07,243,,17,25,046,23,15,13,168,*74 -$GPGSV,3,2,11,12,60,241,36,30,26,244,,14,27,313,26,26,59,223,35*72 -$GPGSV,3,3,11,04,06,097,23,09,78,106,31,27,61,112,34*40 -$GPGGA,144834.0,5113.554472,N,00645.483050,E,1,06,3.1,88.5,M,,,,*3E -$GPRMC,144834.0,A,5113.554472,N,00645.483050,E,25.1,191.2,070709,,,A*5A -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,6.8,3.1,6.0*30 -$GPVTG,191.2,T,,M,25.1,N,46.5,K*6A -$GPGSV,3,1,11,22,14,274,20,18,07,243,,17,25,046,28,15,13,168,*76 -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,27,313,29,26,59,223,34*7E -$GPGSV,3,3,11,04,06,097,23,09,78,106,33,27,61,112,34*42 -$GPGGA,144835.0,5113.547036,N,00645.481340,E,1,06,2.9,88.0,M,,,,*35 -$GPRMC,144835.0,A,5113.547036,N,00645.481340,E,26.6,186.7,070709,,,A*5A -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.9,2.9,5.1*39 -$GPVTG,186.7,T,,M,26.6,N,49.3,K*64 -$GPGSV,3,1,11,22,14,274,20,18,07,243,,17,25,046,25,15,13,168,*7B -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,27,313,32,26,59,223,35*75 -$GPGSV,3,3,11,04,06,097,23,09,78,106,34,27,61,112,33*42 -$GPGGA,144836.0,5113.539432,N,00645.480525,E,1,06,2.9,88.0,M,,,,*3B -$GPRMC,144836.0,A,5113.539432,N,00645.480525,E,28.0,180.1,070709,,,A*5C -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,6.2,2.9,5.5*35 -$GPVTG,180.1,T,,M,28.0,N,51.9,K*6F -$GPGSV,3,1,11,22,14,274,20,18,07,243,,17,25,046,26,15,13,168,*78 -$GPGSV,3,2,11,12,60,241,27,30,26,244,,14,27,313,27,26,59,223,27*70 -$GPGSV,3,3,11,04,06,097,23,09,78,106,32,27,61,112,33*44 -$GPGGA,144837.0,5113.531622,N,00645.480762,E,1,06,2.7,88.0,M,,,,*3E -$GPRMC,144837.0,A,5113.531622,N,00645.480762,E,28.2,178.1,070709,,,A*52 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.1,2.7,4.3*3C -$GPVTG,178.1,T,,M,28.2,N,52.2,K*62 -$GPGSV,3,1,11,22,14,274,20,18,07,243,30,17,25,046,27,15,13,168,*7A -$GPGSV,3,2,11,12,60,241,27,30,26,244,,14,27,313,27,26,59,223,27*70 -$GPGSV,3,3,11,04,06,097,23,09,78,106,32,27,61,112,33*44 -$GPGGA,144838.0,5113.523894,N,00645.481335,E,1,06,2.8,88.0,M,,,,*39 -$GPRMC,144838.0,A,5113.523894,N,00645.481335,E,27.7,176.9,070709,,,A*56 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.2,2.8,4.3*30 -$GPVTG,176.9,T,,M,27.7,N,51.2,K*6D -$GPGSV,3,1,11,22,14,274,27,18,07,243,30,17,25,046,27,15,13,168,*7D -$GPGSV,3,2,11,12,60,241,26,30,26,244,,14,27,313,27,26,59,223,29*7F -$GPGSV,3,3,11,04,06,097,23,09,78,106,23,27,61,112,23*45 -$GPGGA,144839.0,5113.516190,N,00645.483588,E,1,06,3.2,88.0,M,,,,*3A -$GPRMC,144839.0,A,5113.516190,N,00645.483588,E,27.9,170.5,070709,,,A*5A -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,7.2,3.2,6.4*3C -$GPVTG,170.5,T,,M,27.9,N,51.7,K*6C -$GPGSV,3,1,11,22,14,274,26,18,07,243,26,17,25,046,23,15,13,168,*7F -$GPGSV,3,2,11,12,60,241,33,30,26,244,,14,27,313,29,26,59,223,35*78 -$GPGSV,3,3,11,04,06,097,23,09,78,106,37,27,61,112,36*44 -$GPGGA,144840.0,5113.508440,N,00645.489588,E,1,06,2.6,88.5,M,,,,*39 -$GPRMC,144840.0,A,5113.508440,N,00645.489588,E,28.9,157.5,070709,,,A*53 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.5,2.6,4.9*33 -$GPVTG,157.5,T,,M,28.9,N,53.4,K*67 -$GPGSV,3,1,11,22,14,274,29,18,07,243,25,17,25,046,25,15,13,168,*75 -$GPGSV,3,2,11,12,60,241,35,30,26,244,,14,27,313,30,26,59,223,35*76 -$GPGSV,3,3,11,04,06,097,23,09,78,106,37,27,61,112,36*44 -$GPGGA,144841.0,5113.501165,N,00645.495558,E,1,06,2.6,88.5,M,,,,*33 -$GPRMC,144841.0,A,5113.501165,N,00645.495558,E,29.6,150.4,070709,,,A*51 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.5,2.6,4.8*32 -$GPVTG,150.4,T,,M,29.6,N,54.8,K*64 -$GPGSV,3,1,11,22,14,274,29,18,07,243,21,17,25,046,24,15,13,168,*70 -$GPGSV,3,2,11,12,60,241,35,30,26,244,,14,27,313,31,26,59,223,33*71 -$GPGSV,3,3,11,04,06,097,23,09,78,106,37,27,61,112,35*47 -$GPGGA,144842.0,5113.494227,N,00645.502558,E,1,06,2.6,88.5,M,,,,*37 -$GPRMC,144842.0,A,5113.494227,N,00645.502558,E,29.9,145.0,070709,,,A*5A -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.4,2.6,4.7*3C -$GPVTG,145.0,T,,M,29.9,N,55.4,K*66 -$GPGSV,3,1,11,22,14,274,24,18,07,243,22,17,25,046,24,15,13,168,*7E -$GPGSV,3,2,11,12,60,241,35,30,26,244,,14,27,313,32,26,59,223,32*73 -$GPGSV,3,3,11,04,06,097,23,09,78,106,37,27,61,112,36*44 -$GPGGA,144843.0,5113.487682,N,00645.511002,E,1,06,2.6,88.5,M,,,,*37 -$GPRMC,144843.0,A,5113.487682,N,00645.511002,E,29.8,139.2,070709,,,A*52 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.4,2.6,4.7*3C -$GPVTG,139.2,T,,M,29.8,N,55.2,K*68 -$GPGSV,3,1,11,22,14,274,26,18,07,243,25,17,25,046,25,15,13,168,*7A -$GPGSV,3,2,11,12,60,241,35,30,26,244,,14,27,313,32,26,59,223,33*72 -$GPGSV,3,3,11,04,06,097,23,09,78,106,37,27,61,112,36*44 -$GPGGA,144844.0,5113.481597,N,00645.519889,E,1,06,2.6,88.5,M,,,,*32 -$GPRMC,144844.0,A,5113.481597,N,00645.519889,E,29.8,135.8,070709,,,A*51 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.3,2.6,4.6*3A -$GPVTG,135.8,T,,M,29.8,N,55.2,K*6E -$GPGSV,3,1,11,22,14,274,27,18,07,243,25,17,25,046,29,15,13,168,*77 -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,27,313,31,26,59,223,35*76 -$GPGSV,3,3,11,04,06,097,23,09,78,106,37,27,61,112,35*47 -$GPGGA,144845.0,5113.475760,N,00645.529534,E,1,06,2.7,89.0,M,,,,*3F -$GPRMC,144845.0,A,5113.475760,N,00645.529534,E,29.9,132.9,070709,,,A*5E -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.1,2.7,4.3*3C -$GPVTG,132.9,T,,M,29.9,N,55.3,K*68 -$GPGSV,3,1,11,22,14,274,31,18,07,243,25,17,25,046,32,15,13,168,*7A -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,27,313,31,26,59,223,35*76 -$GPGSV,3,3,11,04,06,097,23,09,78,106,38,27,61,112,35*48 -$GPGGA,144846.0,5113.470311,N,00645.539422,E,1,06,2.7,89.0,M,,,,*3C -$GPRMC,144846.0,A,5113.470311,N,00645.539422,E,29.6,130.0,070709,,,A*59 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.1,2.7,4.3*3C -$GPVTG,130.0,T,,M,29.6,N,54.8,K*66 -$GPGSV,3,1,11,22,14,274,31,18,07,243,25,17,25,046,32,15,13,168,*7A -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,27,313,32,26,59,223,36*76 -$GPGSV,3,3,11,04,06,097,23,09,78,106,37,27,61,112,36*44 -$GPGGA,144847.0,5113.465068,N,00645.549691,E,1,06,2.6,89.0,M,,,,*38 -$GPRMC,144847.0,A,5113.465068,N,00645.549691,E,29.8,129.3,070709,,,A*59 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.0,2.6,4.2*3D -$GPVTG,129.3,T,,M,29.8,N,55.2,K*68 -$GPGSV,3,1,11,22,14,274,31,18,07,243,25,17,25,046,31,15,13,168,*79 -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,27,313,32,26,59,223,35*75 -$GPGSV,3,3,11,04,06,097,23,09,78,106,37,27,61,112,36*44 -$GPGGA,144848.0,5113.459793,N,00645.560031,E,1,06,2.6,89.5,M,,,,*39 -$GPRMC,144848.0,A,5113.459793,N,00645.560031,E,29.8,129.7,070709,,,A*59 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.0,2.6,4.2*3D -$GPVTG,129.7,T,,M,29.8,N,55.2,K*6C -$GPGSV,3,1,11,22,14,274,31,18,07,243,25,17,25,046,31,15,13,168,*79 -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,28,313,32,26,59,223,35*7A -$GPGSV,3,3,11,04,06,097,23,09,78,106,37,27,61,112,36*44 -$GPGGA,144849.0,5113.454316,N,00645.570195,E,1,06,2.6,89.0,M,,,,*37 -$GPRMC,144849.0,A,5113.454316,N,00645.570195,E,30.0,130.7,070709,,,A*5A -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.0,2.6,4.2*3D -$GPVTG,130.7,T,,M,30.0,N,55.5,K*63 -$GPGSV,3,1,11,22,14,274,30,18,07,243,26,17,25,046,30,15,12,168,*7B -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,28,313,31,26,59,223,35*79 -$GPGSV,3,3,11,04,06,097,23,09,78,106,37,27,61,112,37*45 -$GPGGA,144850.0,5113.448827,N,00645.580238,E,1,06,2.6,89.5,M,,,,*35 -$GPRMC,144850.0,A,5113.448827,N,00645.580238,E,30.2,132.6,070709,,,A*5C -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.0,2.6,4.2*3D -$GPVTG,132.6,T,,M,30.2,N,56.0,K*64 -$GPGSV,3,1,11,22,14,274,26,18,07,243,23,17,25,046,27,15,12,168,*7F -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,28,313,31,26,59,223,35*79 -$GPGSV,3,3,11,04,06,097,23,09,78,106,37,27,61,112,37*45 -$GPGGA,144851.0,5113.442955,N,00645.590010,E,1,06,2.6,90.0,M,,,,*3E -$GPRMC,144851.0,A,5113.442955,N,00645.590010,E,30.6,135.5,070709,,,A*5A -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.3,2.6,4.6*3A -$GPVTG,135.5,T,,M,30.6,N,56.7,K*63 -$GPGSV,3,1,11,22,14,274,25,18,07,243,23,17,25,046,26,15,12,168,*7D -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,28,313,31,26,59,223,34*78 -$GPGSV,3,3,11,04,06,097,,09,78,106,36,27,61,112,37*45 -$GPGGA,144852.0,5113.436747,N,00645.599404,E,1,06,2.6,89.5,M,,,,*36 -$GPRMC,144852.0,A,5113.436747,N,00645.599404,E,30.8,138.0,070709,,,A*59 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.2,2.6,4.5*38 -$GPVTG,138.0,T,,M,30.8,N,57.1,K*62 -$GPGSV,3,1,11,22,14,274,24,18,07,243,24,17,25,046,23,15,12,168,*7E -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,28,313,31,26,59,223,34*78 -$GPGSV,3,3,11,04,06,097,,09,77,106,37,27,61,112,36*4A -$GPGGA,144853.0,5113.430367,N,00645.608276,E,1,06,2.6,90.0,M,,,,*32 -$GPRMC,144853.0,A,5113.430367,N,00645.608276,E,30.6,139.2,070709,,,A*5D -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.4,2.6,4.7*3C -$GPVTG,139.2,T,,M,30.6,N,56.7,K*68 -$GPGSV,3,1,11,22,14,274,22,18,07,243,22,17,25,046,22,15,12,168,*7F -$GPGSV,3,2,11,12,60,241,33,30,26,244,,14,28,313,32,26,59,223,34*7C -$GPGSV,3,3,11,04,06,097,,09,77,106,37,27,61,112,36*4A -$GPGGA,144854.0,5113.423885,N,00645.617213,E,1,06,2.6,90.0,M,,,,*3D -$GPRMC,144854.0,A,5113.423885,N,00645.617213,E,30.0,139.5,070709,,,A*53 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.4,2.6,4.8*33 -$GPVTG,139.5,T,,M,30.0,N,55.6,K*6B -$GPGSV,3,1,11,22,14,274,24,18,07,243,22,17,25,046,22,15,12,168,*79 -$GPGSV,3,2,11,12,60,241,33,30,26,244,,14,28,312,32,26,59,223,32*7B -$GPGSV,3,3,11,04,06,097,,09,77,106,37,27,61,112,36*4A -$GPGGA,144855.0,5113.417334,N,00645.625651,E,1,06,2.6,90.0,M,,,,*39 -$GPRMC,144855.0,A,5113.417334,N,00645.625651,E,30.0,141.7,070709,,,A*5A -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.3,2.6,4.6*3A -$GPVTG,141.7,T,,M,30.0,N,55.6,K*66 -$GPGSV,3,1,11,22,14,274,24,18,07,243,25,17,25,046,21,15,12,168,*7D -$GPGSV,3,2,11,12,60,241,33,30,26,244,,14,28,312,33,26,59,223,31*79 -$GPGSV,3,3,11,04,06,097,,09,77,106,37,27,61,112,35*49 -$GPGGA,144856.0,5113.410527,N,00645.634171,E,1,06,2.6,89.5,M,,,,*31 -$GPRMC,144856.0,A,5113.410527,N,00645.634171,E,31.1,142.1,070709,,,A*5A -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.4,2.6,4.7*3C -$GPVTG,142.1,T,,M,31.1,N,57.7,K*60 -$GPGSV,3,1,11,22,14,274,24,18,07,243,23,17,25,046,21,15,12,168,*7B -$GPGSV,3,2,11,12,60,241,33,30,26,244,,14,28,312,33,26,59,223,31*79 -$GPGSV,3,3,11,04,06,097,,09,77,106,37,27,61,112,35*49 -$GPGGA,144857.0,5113.403713,N,00645.642791,E,1,06,2.6,90.0,M,,,,*33 -$GPRMC,144857.0,A,5113.403713,N,00645.642791,E,32.0,141.4,070709,,,A*51 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.5,2.6,4.8*32 -$GPVTG,141.4,T,,M,32.0,N,59.3,K*6E -$GPGSV,3,1,11,22,14,274,24,18,07,243,25,17,25,046,21,15,12,168,*7D -$GPGSV,3,2,11,12,60,241,33,30,26,244,,14,28,312,32,26,59,223,31*78 -$GPGSV,3,3,11,04,06,097,,09,77,106,37,27,61,112,36*4A -$GPGGA,144858.0,5113.396665,N,00645.651773,E,1,06,2.6,90.0,M,,,,*39 -$GPRMC,144858.0,A,5113.396665,N,00645.651773,E,33.0,141.1,070709,,,A*5F -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.4,2.6,4.7*3C -$GPVTG,141.1,T,,M,33.0,N,61.2,K*60 -$GPGSV,3,1,11,22,14,274,26,18,07,243,23,17,25,046,21,15,12,168,*79 -$GPGSV,3,2,11,12,60,241,32,30,26,244,,14,28,312,31,26,59,223,31*7A -$GPGSV,3,3,11,04,06,097,,09,77,106,37,27,61,112,36*4A -$GPGGA,144859.0,5113.389415,N,00645.661097,E,1,06,2.6,90.0,M,,,,*3D -$GPRMC,144859.0,A,5113.389415,N,00645.661097,E,34.1,141.0,070709,,,A*5C -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.3,2.6,4.6*3A -$GPVTG,141.0,T,,M,34.1,N,63.1,K*66 -$GPGSV,3,1,11,22,14,274,26,18,07,243,23,17,25,046,21,15,12,168,*79 -$GPGSV,3,2,11,12,60,241,35,30,26,244,,14,28,312,31,26,59,223,34*78 -$GPGSV,3,3,11,04,06,097,,09,77,106,37,27,61,112,36*4A -$GPGGA,144900.0,5113.381866,N,00645.670536,E,1,06,2.6,90.5,M,,,,*3B -$GPRMC,144900.0,A,5113.381866,N,00645.670536,E,35.2,142.0,070709,,,A*5E -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.4,2.6,4.7*3C -$GPVTG,142.0,T,,M,35.2,N,65.3,K*63 -$GPGSV,3,1,11,22,14,274,24,18,07,243,23,17,25,046,21,15,12,168,*7B -$GPGSV,3,2,11,12,60,241,35,30,26,244,,14,28,312,31,26,59,223,33*7F -$GPGSV,3,3,11,04,06,097,,09,77,106,36,27,61,112,36*4B -$GPGGA,144901.0,5113.373888,N,00645.680152,E,1,06,3.0,90.5,M,,,,*39 -$GPRMC,144901.0,A,5113.373888,N,00645.680152,E,36.4,143.2,070709,,,A*5D -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,6.5,3.0,5.7*38 -$GPVTG,143.2,T,,M,36.4,N,67.5,K*61 -$GPGSV,3,1,11,22,14,274,25,18,07,243,24,17,25,046,21,15,12,168,*7D -$GPGSV,3,2,11,12,60,241,33,30,26,244,,14,28,312,30,26,59,223,33*78 -$GPGSV,3,3,11,04,06,097,,09,77,106,37,27,61,112,35*49 -$GPGGA,144902.0,5113.365557,N,00645.689894,E,1,06,3.0,90.5,M,,,,*38 -$GPRMC,144902.0,A,5113.365557,N,00645.689894,E,37.8,143.6,070709,,,A*55 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,6.4,3.0,5.6*38 -$GPVTG,143.6,T,,M,37.8,N,69.9,K*6A -$GPGSV,3,1,11,22,14,274,25,18,07,243,22,17,25,046,21,15,12,168,*7B -$GPGSV,3,2,11,12,60,241,35,30,26,244,,14,28,312,30,26,59,223,33*7E -$GPGSV,3,3,11,04,06,097,,09,77,106,37,27,61,112,35*49 -$GPGGA,144903.0,5113.356990,N,00645.700058,E,1,06,2.6,90.5,M,,,,*31 -$GPRMC,144903.0,A,5113.356990,N,00645.700058,E,39.0,143.2,070709,,,A*59 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.4,2.6,4.7*3C -$GPVTG,143.2,T,,M,39.0,N,72.2,K*69 -$GPGSV,3,1,11,22,14,274,26,18,07,243,25,17,25,046,21,15,12,168,*7F -$GPGSV,3,2,11,12,60,241,33,30,26,244,,14,28,312,30,26,59,223,31*7A -$GPGSV,3,3,11,04,06,097,,09,77,106,37,27,61,112,34*48 -$GPGGA,144904.0,5113.348201,N,00645.710644,E,1,06,2.6,91.0,M,,,,*34 -$GPRMC,144904.0,A,5113.348201,N,00645.710644,E,40.1,142.4,070709,,,A*50 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.5,2.6,4.8*32 -$GPVTG,142.4,T,,M,40.1,N,74.2,K*67 -$GPGSV,3,1,11,22,14,274,25,18,07,243,22,17,25,046,21,15,12,168,*7B -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,28,312,29,26,59,223,33*77 -$GPGSV,3,3,11,04,06,097,,09,77,106,37,27,61,112,30*4C -$GPGGA,144905.0,5113.339280,N,00645.721592,E,1,06,3.0,91.0,M,,,,*37 -$GPRMC,144905.0,A,5113.339280,N,00645.721592,E,41.3,143.0,070709,,,A*52 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,6.5,3.0,5.7*38 -$GPVTG,143.0,T,,M,41.3,N,76.6,K*67 -$GPGSV,3,1,11,22,14,274,25,18,07,243,22,17,25,046,21,15,12,168,*7B -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,28,312,31,26,59,223,32*7F -$GPGSV,3,3,11,04,06,097,,09,77,106,36,27,61,112,33*4E -$GPGGA,144906.0,5113.329943,N,00645.732868,E,1,06,3.6,91.0,M,,,,*3D -$GPRMC,144906.0,A,5113.329943,N,00645.732868,E,42.1,142.7,070709,,,A*59 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,8.1,3.6,7.2*33 -$GPVTG,142.7,T,,M,42.1,N,77.9,K*6E -$GPGSV,3,1,11,22,14,274,22,18,07,243,20,17,25,046,21,15,12,168,*7E -$GPGSV,3,2,11,12,60,241,31,30,26,244,,14,28,312,29,26,59,223,28*78 -$GPGSV,3,3,11,04,06,097,,09,77,106,36,27,61,112,35*48 -$GPGGA,144907.0,5113.320566,N,00645.744279,E,1,06,2.8,91.0,M,,,,*3A -$GPRMC,144907.0,A,5113.320566,N,00645.744279,E,43.0,142.7,070709,,,A*51 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.5,2.8,4.8*3C -$GPVTG,142.7,T,,M,43.0,N,79.6,K*6F -$GPGSV,3,1,11,22,14,274,28,18,07,243,23,17,25,046,21,15,12,168,*77 -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,28,312,29,26,59,222,33*76 -$GPGSV,3,3,11,04,06,097,,09,77,106,36,27,61,112,36*4B -$GPGGA,144908.0,5113.310958,N,00645.755700,E,1,06,2.7,91.0,M,,,,*33 -$GPRMC,144908.0,A,5113.310958,N,00645.755700,E,43.7,143.7,070709,,,A*51 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.5,2.7,4.7*3C -$GPVTG,143.7,T,,M,43.7,N,80.9,K*60 -$GPGSV,3,1,11,22,14,274,27,18,07,243,21,17,25,046,21,15,12,168,*7A -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,28,312,24,26,59,222,33*7B -$GPGSV,3,3,11,04,06,097,,09,77,106,37,27,61,112,35*49 -$GPGGA,144909.0,5113.301146,N,00645.767342,E,1,06,2.9,91.5,M,,,,*3D -$GPRMC,144909.0,A,5113.301146,N,00645.767342,E,44.2,143.4,070709,,,A*55 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.6,2.9,4.8*3E -$GPVTG,143.4,T,,M,44.2,N,81.9,K*60 -$GPGSV,3,1,11,22,14,274,28,18,07,243,21,17,25,046,21,15,12,168,*75 -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,28,312,22,26,59,222,33*7D -$GPGSV,3,3,11,04,06,097,,09,77,106,37,27,61,112,35*49 -$GPGGA,144910.0,5113.291239,N,00645.779211,E,1,06,3.9,91.0,M,,,,*3A -$GPRMC,144910.0,A,5113.291239,N,00645.779211,E,44.6,142.8,070709,,,A*5F -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,8.0,3.9,7.0*3F -$GPVTG,142.8,T,,M,44.6,N,82.6,K*65 -$GPGSV,3,1,11,22,14,274,27,18,07,243,22,17,25,046,21,15,12,168,*79 -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,28,312,28,26,59,222,34*70 -$GPGSV,3,3,11,04,06,097,,09,77,106,36,27,61,112,35*48 -$GPGGA,144911.0,5113.281349,N,00645.791055,E,1,06,3.1,91.0,M,,,,*30 -$GPRMC,144911.0,A,5113.281349,N,00645.791055,E,44.5,143.2,070709,,,A*55 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,6.6,3.1,5.8*35 -$GPVTG,143.2,T,,M,44.5,N,82.3,K*68 -$GPGSV,3,1,11,22,14,274,27,18,07,243,22,17,25,046,21,15,12,168,*79 -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,28,312,30,26,59,222,34*79 -$GPGSV,3,3,11,04,06,097,,09,77,106,37,27,61,112,35*49 -$GPGGA,144912.0,5113.271517,N,00645.802572,E,1,06,3.1,91.0,M,,,,*34 -$GPRMC,144912.0,A,5113.271517,N,00645.802572,E,43.6,144.0,070709,,,A*50 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,6.6,3.1,5.9*34 -$GPVTG,144.0,T,,M,43.6,N,80.7,K*6F -$GPGSV,3,1,11,22,14,274,27,18,07,243,22,17,25,046,21,15,12,168,*79 -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,28,312,31,26,59,222,33*7F -$GPGSV,3,3,11,04,06,097,,09,77,106,36,27,61,112,35*48 -$GPGGA,144913.0,5113.261806,N,00645.813797,E,1,06,3.1,91.0,M,,,,*30 -$GPRMC,144913.0,A,5113.261806,N,00645.813797,E,42.5,143.9,070709,,,A*58 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,6.6,3.1,5.9*34 -$GPVTG,143.9,T,,M,42.5,N,78.7,K*64 -$GPGSV,3,1,11,22,14,274,27,18,07,243,24,17,25,046,21,15,12,168,*7F -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,28,312,29,26,59,222,33*76 -$GPGSV,3,3,11,04,06,097,,09,77,106,37,27,61,112,35*49 -$GPGGA,144914.0,5113.252406,N,00645.824800,E,1,05,3.1,91.0,M,,,,*3D -$GPRMC,144914.0,A,5113.252406,N,00645.824800,E,41.8,143.5,070709,,,A*54 -$GPGSA,A,3,09,12,14,26,27,,,,,,,,6.7,3.1,5.9*33 -$GPVTG,143.5,T,,M,41.8,N,77.3,K*6D -$GPGSV,3,1,11,22,14,274,26,18,07,243,24,17,25,046,21,15,12,168,*7E -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,28,312,30,26,59,222,34*79 -$GPGSV,3,3,11,04,06,097,,09,77,106,36,27,61,112,35*48 -$GPGGA,144915.0,5113.243258,N,00645.835789,E,1,05,3.1,91.0,M,,,,*3F -$GPRMC,144915.0,A,5113.243258,N,00645.835789,E,41.0,143.0,070709,,,A*5B -$GPGSA,A,3,09,12,14,26,27,,,,,,,,6.6,3.1,5.9*32 -$GPVTG,143.0,T,,M,41.0,N,75.9,K*68 -$GPGSV,3,1,11,22,14,274,27,18,07,243,25,17,25,046,18,15,12,168,*74 -$GPGSV,3,2,11,12,60,241,34,30,26,244,,14,28,312,31,26,59,222,32*7E -$GPGSV,3,3,11,04,06,097,,09,77,106,37,27,61,112,35*49 -$GPGGA,144916.0,5113.234233,N,00645.846607,E,1,05,3.1,91.0,M,,,,*32 -$GPRMC,144916.0,A,5113.234233,N,00645.846607,E,39.8,143.0,070709,,,A*51 -$GPGSA,A,3,09,12,14,26,27,,,,,,,,6.6,3.1,5.8*33 -$GPVTG,143.0,T,,M,39.8,N,73.7,K*67 -$GPGSV,3,1,11,22,14,274,29,18,07,243,26,17,25,046,18,15,12,168,*79 -$GPGSV,3,2,11,12,60,241,35,30,26,244,,14,28,312,31,26,59,222,34*79 -$GPGSV,3,3,11,04,06,097,,09,77,106,37,27,61,112,36*4A -$GPGGA,144917.0,5113.225460,N,00645.856952,E,1,05,3.1,91.0,M,,,,*3D -$GPRMC,144917.0,A,5113.225460,N,00645.856952,E,38.5,143.6,070709,,,A*54 -$GPGSA,A,3,09,12,14,26,27,,,,,,,,6.6,3.1,5.8*33 -$GPVTG,143.6,T,,M,38.5,N,71.3,K*6B -$GPGSV,3,1,11,22,14,274,30,18,07,243,26,17,25,046,19,15,12,168,*70 -$GPGSV,3,2,11,12,60,241,35,30,26,244,,14,28,312,31,26,59,222,34*79 -$GPGSV,3,3,11,04,06,097,,09,77,106,37,27,61,112,35*49 -$GPGGA,144918.0,5113.216943,N,00645.866894,E,1,06,2.6,91.0,M,,,,*33 -$GPRMC,144918.0,A,5113.216943,N,00645.866894,E,37.7,143.9,070709,,,A*5D -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.6,2.6,5.0*38 -$GPVTG,143.9,T,,M,37.7,N,69.8,K*6B -$GPGSV,3,1,11,22,14,274,28,18,07,243,25,17,25,046,19,15,12,168,*7A -$GPGSV,3,2,11,12,60,241,35,30,26,244,,14,28,312,31,26,59,222,34*79 -$GPGSV,3,3,11,04,06,097,,09,77,106,37,27,61,112,36*4A -$GPGGA,144919.0,5113.208899,N,00645.876510,E,1,06,2.6,91.0,M,,,,*3B -$GPRMC,144919.0,A,5113.208899,N,00645.876510,E,35.2,142.9,070709,,,A*53 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.7,2.6,5.0*39 -$GPVTG,142.9,T,,M,35.2,N,65.2,K*6B -$GPGSV,3,1,11,22,14,274,26,18,07,243,22,17,25,046,17,15,12,168,*7D -$GPGSV,3,2,11,12,60,241,35,30,26,244,33,14,28,312,31,26,59,222,33*7E -$GPGSV,3,3,11,04,06,097,,09,77,106,36,27,61,112,35*48 -$GPGGA,144920.0,5113.201484,N,00645.885739,E,1,07,1.9,91.5,M,,,,*35 -$GPRMC,144920.0,A,5113.201484,N,00645.885739,E,33.4,142.5,070709,,,A*59 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.5,1.9,2.9*3C -$GPVTG,142.5,T,,M,33.4,N,61.8,K*69 -$GPGSV,3,1,11,22,14,274,28,18,07,243,21,17,25,046,17,15,12,168,*70 -$GPGSV,3,2,11,12,60,241,34,30,26,244,34,14,28,312,31,26,59,222,34*7F -$GPGSV,3,3,11,04,06,097,,09,77,106,36,27,61,112,35*48 -$GPGGA,144921.0,5113.194634,N,00645.894595,E,1,07,2.0,92.0,M,,,,*3A -$GPRMC,144921.0,A,5113.194634,N,00645.894595,E,31.1,142.1,070709,,,A*59 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.5,2.0,2.9*36 -$GPVTG,142.1,T,,M,31.1,N,57.5,K*62 -$GPGSV,3,1,11,22,14,274,27,18,07,243,21,17,25,046,17,15,12,168,*7F -$GPGSV,3,2,11,12,60,241,34,30,26,244,34,14,28,312,30,26,59,222,34*7E -$GPGSV,3,3,11,04,06,097,,09,77,106,36,27,61,112,35*48 -$GPGGA,144922.0,5113.188124,N,00645.903099,E,1,07,2.0,92.5,M,,,,*31 -$GPRMC,144922.0,A,5113.188124,N,00645.903099,E,30.5,141.8,070709,,,A*58 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.6,2.0,2.9*35 -$GPVTG,141.8,T,,M,30.5,N,56.4,K*6D -$GPGSV,3,1,11,22,14,274,26,18,07,243,23,17,25,046,17,15,12,168,*7C -$GPGSV,3,2,11,12,60,241,34,30,26,244,34,14,28,312,31,26,59,222,34*7F -$GPGSV,3,3,11,04,06,097,,09,77,106,36,27,61,112,36*4B -$GPGGA,144923.0,5113.181691,N,00645.911362,E,1,07,2.3,93.0,M,,,,*33 -$GPRMC,144923.0,A,5113.181691,N,00645.911362,E,30.1,141.0,070709,,,A*51 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.1,2.3,3.4*3A -$GPVTG,141.0,T,,M,30.1,N,55.7,K*61 -$GPGSV,3,1,11,22,14,274,23,18,07,243,23,17,25,046,17,15,12,168,*79 -$GPGSV,3,2,11,12,60,241,34,30,26,244,33,14,28,312,31,26,59,222,34*78 -$GPGSV,3,3,11,04,06,097,,09,77,106,36,27,61,112,36*4B -$GPGGA,144924.0,5113.175164,N,00645.919816,E,1,07,2.3,94.0,M,,,,*35 -$GPRMC,144924.0,A,5113.175164,N,00645.919816,E,31.2,141.1,070709,,,A*53 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.1,2.3,3.4*3A -$GPVTG,141.1,T,,M,31.2,N,57.7,K*60 -$GPGSV,3,1,11,22,14,274,23,18,07,243,23,17,25,046,17,15,12,168,*79 -$GPGSV,3,2,11,12,60,241,34,30,26,244,32,14,28,312,31,26,59,222,34*79 -$GPGSV,3,3,11,04,06,097,,09,77,106,36,27,61,112,36*4B -$GPGGA,144925.0,5113.168419,N,00645.928577,E,1,07,2.3,94.0,M,,,,*3F -$GPRMC,144925.0,A,5113.168419,N,00645.928577,E,32.0,140.9,070709,,,A*51 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.3,2.3,3.6*3A -$GPVTG,140.9,T,,M,32.0,N,59.2,K*63 -$GPGSV,3,1,11,22,14,274,21,18,07,243,23,17,25,046,17,15,12,168,*7B -$GPGSV,3,2,11,12,60,241,34,30,26,244,32,14,28,312,31,26,59,222,34*79 -$GPGSV,3,3,11,04,06,097,,09,77,106,36,27,61,112,36*4B -$GPGGA,144926.0,5113.161751,N,00645.937584,E,1,07,2.2,94.5,M,,,,*3C -$GPRMC,144926.0,A,5113.161751,N,00645.937584,E,31.7,140.1,070709,,,A*5A -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.2,2.2,3.5*39 -$GPVTG,140.1,T,,M,31.7,N,58.7,K*6B -$GPGSV,3,1,11,22,14,274,21,18,07,243,23,17,25,046,17,15,12,168,*7B -$GPGSV,3,2,11,12,60,241,35,30,26,244,26,14,28,312,31,26,59,222,35*7C -$GPGSV,3,3,11,04,06,097,,09,77,106,36,27,61,112,37*4A -$GPGGA,144927.0,5113.155077,N,00645.946621,E,1,06,2.4,94.5,M,,,,*34 -$GPRMC,144927.0,A,5113.155077,N,00645.946621,E,31.4,139.4,070709,,,A*5D -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,5.0,2.4,4.4*3C -$GPVTG,139.4,T,,M,31.4,N,58.2,K*66 -$GPGSV,3,1,11,22,14,274,21,18,07,243,23,17,25,046,17,15,12,168,*7B -$GPGSV,3,2,11,12,60,241,35,30,26,244,26,14,28,312,32,26,59,222,35*7F -$GPGSV,3,3,11,04,06,097,,09,77,106,36,27,61,113,37*4B -$GPGGA,144928.0,5113.148514,N,00645.955558,E,1,06,2.4,94.5,M,,,,*38 -$GPRMC,144928.0,A,5113.148514,N,00645.955558,E,31.4,139.5,070709,,,A*50 -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,5.1,2.4,4.5*3C -$GPVTG,139.5,T,,M,31.4,N,58.2,K*67 -$GPGSV,3,1,11,22,14,274,21,18,07,243,21,17,25,046,17,15,12,168,*79 -$GPGSV,3,2,11,12,60,241,34,30,26,244,24,14,28,312,31,26,59,222,35*7F -$GPGSV,3,3,11,04,06,097,,09,77,106,36,27,61,113,37*4B -$GPGGA,144929.0,5113.141810,N,00645.964852,E,1,06,2.5,94.5,M,,,,*3D -$GPRMC,144929.0,A,5113.141810,N,00645.964852,E,32.1,138.6,070709,,,A*50 -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,5.5,2.5,4.9*35 -$GPVTG,138.6,T,,M,32.1,N,59.5,K*65 -$GPGSV,3,1,11,22,14,274,20,18,07,243,24,17,25,046,17,15,12,168,*7D -$GPGSV,3,2,11,12,60,241,35,30,26,244,30,14,28,312,31,26,59,222,36*78 -$GPGSV,3,3,11,04,06,097,,09,77,106,36,27,61,113,37*4B -$GPGGA,144930.0,5113.135310,N,00645.974307,E,1,06,2.3,94.5,M,,,,*31 -$GPRMC,144930.0,A,5113.135310,N,00645.974307,E,31.8,137.4,070709,,,A*5D -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,4.6,2.3,3.9*36 -$GPVTG,137.4,T,,M,31.8,N,59.0,K*67 -$GPGSV,3,1,11,22,14,274,20,18,07,243,21,17,25,046,17,15,12,168,*78 -$GPGSV,3,2,11,12,60,241,34,30,26,244,30,14,28,312,30,26,59,222,36*78 -$GPGSV,3,3,11,04,06,097,,09,77,106,36,27,61,113,37*4B -$GPGGA,144931.0,5113.128850,N,00645.984214,E,1,06,2.3,94.5,M,,,,*3F -$GPRMC,144931.0,A,5113.128850,N,00645.984214,E,32.7,136.2,070709,,,A*58 -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,4.6,2.3,4.0*38 -$GPVTG,136.2,T,,M,32.7,N,60.5,K*63 -$GPGSV,3,1,11,22,14,274,20,18,07,243,21,17,25,046,17,15,12,168,*78 -$GPGSV,3,2,11,12,60,241,34,30,26,244,29,14,28,312,30,26,59,222,35*73 -$GPGSV,3,3,11,04,06,097,,09,77,106,36,27,61,113,37*4B -$GPGGA,144932.0,5113.122315,N,00645.994267,E,1,06,2.3,94.5,M,,,,*39 -$GPRMC,144932.0,A,5113.122315,N,00645.994267,E,32.7,135.6,070709,,,A*59 -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,4.6,2.3,4.0*38 -$GPVTG,135.6,T,,M,32.7,N,60.6,K*67 -$GPGSV,3,1,11,22,14,274,20,18,07,243,21,17,25,046,17,15,12,168,*78 -$GPGSV,3,2,11,12,61,241,34,30,26,244,29,14,28,312,31,26,59,222,36*70 -$GPGSV,3,3,11,04,06,097,,09,77,106,36,27,61,113,37*4B -$GPGGA,144933.0,5113.115812,N,00646.004698,E,1,06,2.3,94.5,M,,,,*37 -$GPRMC,144933.0,A,5113.115812,N,00646.004698,E,33.5,134.5,070709,,,A*56 -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,4.8,2.3,4.2*34 -$GPVTG,134.5,T,,M,33.5,N,62.0,K*62 -$GPGSV,3,1,11,22,14,274,20,18,07,243,21,17,25,046,17,15,12,168,*78 -$GPGSV,3,2,11,12,61,241,34,30,26,244,30,14,28,312,31,26,59,222,36*78 -$GPGSV,3,3,11,04,06,097,,09,77,106,36,27,61,113,37*4B -$GPGGA,144934.0,5113.109548,N,00646.015294,E,1,06,2.4,94.5,M,,,,*30 -$GPRMC,144934.0,A,5113.109548,N,00646.015294,E,33.0,132.9,070709,,,A*59 -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,4.8,2.4,4.1*30 -$GPVTG,132.9,T,,M,33.0,N,61.1,K*6F -$GPGSV,3,1,11,22,14,274,22,18,07,243,21,17,25,046,17,15,12,168,*7A -$GPGSV,3,2,11,12,61,241,34,30,26,244,30,14,28,312,32,26,59,222,35*78 -$GPGSV,3,3,11,04,06,097,,09,77,106,36,27,61,113,37*4B -$GPGGA,144935.0,5113.103458,N,00646.025996,E,1,06,2.3,94.5,M,,,,*36 -$GPRMC,144935.0,A,5113.103458,N,00646.025996,E,32.4,131.7,070709,,,A*50 -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,4.8,2.3,4.1*37 -$GPVTG,131.7,T,,M,32.4,N,60.1,K*66 -$GPGSV,3,1,11,22,14,274,23,18,07,243,21,17,25,046,17,15,12,168,*7B -$GPGSV,3,2,11,12,61,241,35,30,26,244,29,14,28,312,33,26,59,222,36*73 -$GPGSV,3,3,11,04,06,097,,09,77,106,35,27,61,113,37*48 -$GPGGA,144936.0,5113.097589,N,00646.036738,E,1,06,2.3,94.5,M,,,,*3C -$GPRMC,144936.0,A,5113.097589,N,00646.036738,E,31.9,130.5,070709,,,A*57 -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,4.7,2.3,4.1*38 -$GPVTG,130.5,T,,M,31.9,N,59.0,K*60 -$GPGSV,3,1,11,22,14,274,26,18,07,243,22,17,24,046,17,15,12,168,*7C -$GPGSV,3,2,11,12,61,241,35,30,26,244,31,14,28,312,32,26,59,222,35*78 -$GPGSV,3,3,11,04,06,097,,09,77,106,36,27,61,113,37*4B -$GPGGA,144937.0,5113.092102,N,00646.047501,E,1,06,2.3,95.0,M,,,,*35 -$GPRMC,144937.0,A,5113.092102,N,00646.047501,E,31.3,128.9,070709,,,A*55 -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,4.6,2.3,3.9*36 -$GPVTG,128.9,T,,M,31.3,N,58.0,K*6E -$GPGSV,3,1,11,22,14,274,27,18,07,243,26,17,24,046,17,15,12,168,*79 -$GPGSV,3,2,11,12,61,241,35,30,26,244,31,14,28,312,33,26,59,222,34*78 -$GPGSV,3,3,11,04,06,097,,09,77,106,36,27,61,113,37*4B -$GPGGA,144938.0,5113.086877,N,00646.058198,E,1,06,2.2,95.0,M,,,,*3F -$GPRMC,144938.0,A,5113.086877,N,00646.058198,E,30.7,127.6,070709,,,A*5B -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,4.5,2.2,3.9*34 -$GPVTG,127.6,T,,M,30.7,N,56.9,K*6C -$GPGSV,3,1,11,22,14,274,27,18,07,243,25,17,24,046,17,15,12,168,*7A -$GPGSV,3,2,11,12,61,241,36,30,26,244,32,14,28,312,33,26,59,222,35*79 -$GPGSV,3,3,11,04,06,097,,09,77,106,36,27,61,113,37*4B -$GPGGA,144939.0,5113.081810,N,00646.068980,E,1,06,2.2,95.0,M,,,,*3A -$GPRMC,144939.0,A,5113.081810,N,00646.068980,E,30.4,126.8,070709,,,A*52 -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,4.4,2.2,3.8*34 -$GPVTG,126.8,T,,M,30.4,N,56.3,K*6A -$GPGSV,3,1,11,22,14,274,27,18,07,243,25,17,24,046,17,15,12,168,*7A -$GPGSV,3,2,11,12,61,241,35,30,26,244,31,14,28,312,31,26,59,222,35*7B -$GPGSV,3,3,11,04,06,097,,09,77,108,36,27,61,113,37*45 -$GPGGA,144940.0,5113.076791,N,00646.079617,E,1,06,2.3,95.0,M,,,,*3A -$GPRMC,144940.0,A,5113.076791,N,00646.079617,E,29.9,126.0,070709,,,A*5E -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,4.5,2.3,3.8*34 -$GPVTG,126.0,T,,M,29.9,N,55.4,K*63 -$GPGSV,3,1,11,22,14,274,27,18,07,243,25,17,24,046,,15,12,168,*7C -$GPGSV,3,2,11,12,61,241,35,30,26,244,31,14,28,312,33,26,59,222,35*79 -$GPGSV,3,3,11,04,06,097,,09,77,108,37,27,61,113,37*44 -$GPGGA,144941.0,5113.072023,N,00646.090208,E,1,06,2.2,95.0,M,,,,*3D -$GPRMC,144941.0,A,5113.072023,N,00646.090208,E,29.3,125.6,070709,,,A*57 -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,4.5,2.2,3.9*34 -$GPVTG,125.6,T,,M,29.3,N,54.3,K*6A -$GPGSV,3,1,11,22,14,274,27,18,07,243,25,17,24,046,,15,12,168,*7C -$GPGSV,3,2,11,12,61,241,36,30,26,244,31,14,28,312,32,26,59,222,36*78 -$GPGSV,3,3,11,04,06,097,,09,77,108,36,27,61,113,37*45 -$GPGGA,144942.0,5113.067495,N,00646.100624,E,1,06,2.3,95.5,M,,,,*35 -$GPRMC,144942.0,A,5113.067495,N,00646.100624,E,28.8,124.8,070709,,,A*5E -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,4.5,2.3,3.9*35 -$GPVTG,124.8,T,,M,28.8,N,53.4,K*6F -$GPGSV,3,1,11,22,14,274,29,18,07,243,25,17,24,046,,15,12,168,*72 -$GPGSV,3,2,11,12,61,241,36,30,26,244,31,14,28,312,32,26,59,222,36*78 -$GPGSV,3,3,11,04,06,097,,09,77,108,37,27,61,113,37*44 -$GPGGA,144943.0,5113.063016,N,00646.111125,E,1,06,2.3,95.5,M,,,,*39 -$GPRMC,144943.0,A,5113.063016,N,00646.111125,E,28.5,124.3,070709,,,A*54 -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,4.5,2.3,3.9*35 -$GPVTG,124.3,T,,M,28.5,N,52.7,K*6B -$GPGSV,3,1,11,22,14,274,29,18,07,243,25,17,24,046,,15,12,168,*72 -$GPGSV,3,2,11,12,61,241,36,30,26,244,31,14,28,312,32,26,59,222,36*78 -$GPGSV,3,3,11,04,06,097,,09,77,108,37,27,61,113,37*44 -$GPGGA,144944.0,5113.058636,N,00646.121575,E,1,06,2.3,95.0,M,,,,*35 -$GPRMC,144944.0,A,5113.058636,N,00646.121575,E,28.4,123.3,070709,,,A*5B -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,4.5,2.3,3.9*35 -$GPVTG,123.3,T,,M,28.4,N,52.6,K*6C -$GPGSV,3,1,11,22,14,274,21,18,07,243,25,17,24,046,,15,12,168,*7A -$GPGSV,3,2,11,12,61,241,36,30,26,244,30,14,28,312,31,26,59,222,35*79 -$GPGSV,3,3,11,04,06,097,,09,77,108,37,27,61,113,37*44 -$GPGGA,144945.0,5113.054296,N,00646.132101,E,1,06,2.3,95.0,M,,,,*33 -$GPRMC,144945.0,A,5113.054296,N,00646.132101,E,28.7,123.3,070709,,,A*5E -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,4.5,2.3,3.8*34 -$GPVTG,123.3,T,,M,28.7,N,53.2,K*6A -$GPGSV,3,1,11,22,14,274,23,18,07,243,25,17,24,046,,15,12,168,*78 -$GPGSV,3,2,11,12,61,241,37,30,26,244,31,14,28,312,31,26,59,222,36*7A -$GPGSV,3,3,11,04,06,097,,09,77,108,37,27,61,113,37*44 -$GPGGA,144946.0,5113.049913,N,00646.142607,E,1,06,2.3,95.0,M,,,,*3C -$GPRMC,144946.0,A,5113.049913,N,00646.142607,E,28.3,123.3,070709,,,A*55 -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,4.5,2.3,3.9*35 -$GPVTG,123.3,T,,M,28.3,N,52.4,K*69 -$GPGSV,3,1,11,22,14,274,30,18,07,243,25,17,24,046,,15,12,168,*7A -$GPGSV,3,2,11,12,61,241,37,30,26,244,31,14,28,312,31,26,59,222,36*7A -$GPGSV,3,3,11,04,06,097,,09,77,108,36,27,61,113,37*45 -$GPGGA,144947.0,5113.045646,N,00646.153088,E,1,06,2.3,95.5,M,,,,*3A -$GPRMC,144947.0,A,5113.045646,N,00646.153088,E,28.8,123.4,070709,,,A*5A -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,4.5,2.3,3.9*35 -$GPVTG,123.4,T,,M,28.8,N,53.3,K*63 -$GPGSV,3,1,11,22,14,274,29,18,07,243,22,17,24,046,,15,12,168,*75 -$GPGSV,3,2,11,12,61,241,36,30,26,244,29,14,28,312,31,26,59,222,35*71 -$GPGSV,3,3,11,04,06,097,,09,77,108,37,27,61,113,37*44 -$GPGGA,144948.0,5113.041378,N,00646.163538,E,1,06,2.4,95.5,M,,,,*33 -$GPRMC,144948.0,A,5113.041378,N,00646.163538,E,28.2,123.2,070709,,,A*58 -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,4.7,2.4,4.0*3E -$GPVTG,123.2,T,,M,28.2,N,52.2,K*6F -$GPGSV,3,1,11,22,14,274,30,18,07,243,22,17,24,046,,15,12,168,*7D -$GPGSV,3,2,11,12,61,241,36,30,26,244,29,14,28,312,30,26,59,222,36*73 -$GPGSV,3,3,11,04,06,097,,09,77,108,37,27,61,113,37*44 -$GPGGA,144949.0,5113.037154,N,00646.174004,E,1,06,2.4,95.5,M,,,,*33 -$GPRMC,144949.0,A,5113.037154,N,00646.174004,E,28.1,123.1,070709,,,A*58 -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,4.7,2.4,4.1*3F -$GPVTG,123.1,T,,M,28.1,N,52.0,K*6D -$GPGSV,3,1,11,22,14,274,29,18,07,243,24,17,24,046,,15,12,168,*73 -$GPGSV,3,2,11,12,61,241,36,30,26,244,29,14,28,312,30,26,59,222,36*73 -$GPGSV,3,3,11,04,06,097,,09,77,108,37,27,61,113,36*45 -$GPGGA,144950.0,5113.032982,N,00646.184344,E,1,06,2.4,95.5,M,,,,*35 -$GPRMC,144950.0,A,5113.032982,N,00646.184344,E,27.5,122.6,070709,,,A*53 -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,4.9,2.4,4.2*32 -$GPVTG,122.6,T,,M,27.5,N,50.9,K*6B -$GPGSV,3,1,11,22,14,274,29,18,07,243,23,17,24,046,,15,12,168,*74 -$GPGSV,3,2,11,12,61,241,36,30,26,244,29,14,28,312,31,26,59,222,33*77 -$GPGSV,3,3,11,04,06,097,,09,77,108,37,27,61,113,37*44 -$GPGGA,144951.0,5113.028909,N,00646.194513,E,1,06,2.4,95.5,M,,,,*39 -$GPRMC,144951.0,A,5113.028909,N,00646.194513,E,27.1,122.6,070709,,,A*5B -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,4.7,2.4,4.0*3E -$GPVTG,122.6,T,,M,27.1,N,50.1,K*67 -$GPGSV,3,1,11,22,14,274,29,18,07,243,23,17,24,046,,15,12,168,*74 -$GPGSV,3,2,11,12,61,241,37,30,26,244,28,14,28,312,30,26,59,222,33*76 -$GPGSV,3,3,11,04,06,097,,09,77,108,37,27,61,113,36*45 -$GPGGA,144952.0,5113.025046,N,00646.204757,E,1,06,2.5,95.0,M,,,,*39 -$GPRMC,144952.0,A,5113.025046,N,00646.204757,E,26.6,122.2,070709,,,A*5D -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,4.8,2.5,4.1*31 -$GPVTG,122.2,T,,M,26.6,N,49.2,K*6E -$GPGSV,3,1,11,22,14,274,31,18,07,243,23,17,24,045,,15,12,168,*7E -$GPGSV,3,2,11,12,61,241,37,30,26,244,30,14,28,312,31,26,59,222,39*74 -$GPGSV,3,3,11,04,06,097,,09,77,108,37,27,61,113,36*45 -$GPGGA,144953.0,5113.021415,N,00646.214841,E,1,06,2.5,95.0,M,,,,*37 -$GPRMC,144953.0,A,5113.021415,N,00646.214841,E,26.3,122.0,070709,,,A*54 -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,4.8,2.5,4.1*31 -$GPVTG,122.0,T,,M,26.3,N,48.7,K*6D -$GPGSV,3,1,11,22,14,274,27,18,07,243,23,17,24,045,,15,12,168,*79 -$GPGSV,3,2,11,12,61,241,35,30,26,244,27,14,28,312,30,26,59,222,32*7A -$GPGSV,3,3,11,04,06,097,,09,77,108,37,27,61,113,37*44 -$GPGGA,144954.0,5113.017508,N,00646.224773,E,1,06,2.4,95.0,M,,,,*34 -$GPRMC,144954.0,A,5113.017508,N,00646.224773,E,26.8,122.3,070709,,,A*5E -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,4.8,2.4,4.2*33 -$GPVTG,122.3,T,,M,26.8,N,49.7,K*64 -$GPGSV,3,1,11,22,14,274,35,18,07,243,23,17,24,045,,15,12,168,*7A -$GPGSV,3,2,11,12,61,241,36,30,26,244,29,14,28,312,31,26,59,222,35*71 -$GPGSV,3,3,11,04,06,097,,09,77,108,36,27,61,113,37*45 -$GPGGA,144955.0,5113.013625,N,00646.234857,E,1,06,2.4,95.0,M,,,,*35 -$GPRMC,144955.0,A,5113.013625,N,00646.234857,E,27.2,122.3,070709,,,A*54 -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,4.6,2.4,3.9*31 -$GPVTG,122.3,T,,M,27.2,N,50.4,K*64 -$GPGSV,3,1,11,22,14,274,29,18,07,243,23,17,24,045,,15,12,168,*77 -$GPGSV,3,2,11,12,61,241,35,30,26,244,30,14,28,312,31,26,59,222,34*7B -$GPGSV,3,3,11,04,06,097,,09,77,108,36,27,61,113,37*45 -$GPGGA,144956.0,5113.009695,N,00646.245041,E,1,06,2.3,95.5,M,,,,*3D -$GPRMC,144956.0,A,5113.009695,N,00646.245041,E,27.1,122.1,070709,,,A*5F -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,4.5,2.3,3.8*34 -$GPVTG,122.1,T,,M,27.1,N,50.3,K*62 -$GPGSV,3,1,11,22,14,274,29,18,07,243,23,17,24,045,,15,12,168,*77 -$GPGSV,3,2,11,12,61,241,36,30,26,244,30,14,28,312,33,26,59,222,35*7B -$GPGSV,3,3,11,04,06,097,,09,77,108,36,27,61,113,37*45 -$GPGGA,144957.0,5113.005727,N,00646.255099,E,1,06,2.3,95.5,M,,,,*3C -$GPRMC,144957.0,A,5113.005727,N,00646.255099,E,26.9,121.8,070709,,,A*5D -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,4.4,2.3,3.7*3A -$GPVTG,121.8,T,,M,26.9,N,49.9,K*63 -$GPGSV,3,1,11,22,14,274,32,18,07,243,23,17,24,045,,15,12,168,*7D -$GPGSV,3,2,11,12,61,241,36,30,26,244,27,14,28,312,33,26,59,222,34*7C -$GPGSV,3,3,11,04,06,097,,09,77,108,36,27,61,113,37*45 -$GPGGA,144958.0,5113.001802,N,00646.265157,E,1,06,2.4,95.5,M,,,,*38 -$GPRMC,144958.0,A,5113.001802,N,00646.265157,E,26.8,121.6,070709,,,A*51 -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,4.9,2.4,4.3*33 -$GPVTG,121.6,T,,M,26.8,N,49.7,K*62 -$GPGSV,3,1,11,22,14,274,35,18,07,243,23,17,24,045,,15,12,168,17*7C -$GPGSV,3,2,11,12,61,241,36,30,26,244,20,14,28,312,33,26,59,222,34*7B -$GPGSV,3,3,11,04,06,097,,09,77,108,36,27,61,113,37*45 -$GPGGA,144959.0,5112.997962,N,00646.275401,E,1,06,2.6,95.5,M,,,,*3C -$GPRMC,144959.0,A,5112.997962,N,00646.275401,E,27.5,121.0,070709,,,A*5D -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,5.7,2.6,5.0*3C -$GPVTG,121.0,T,,M,27.5,N,50.9,K*6E -$GPGSV,3,1,11,22,14,274,22,18,07,243,23,17,24,045,,15,12,168,17*7A -$GPGSV,3,2,11,12,61,241,36,30,26,244,20,14,28,312,32,26,59,222,35*7B -$GPGSV,3,3,11,04,06,097,,09,77,108,36,27,61,113,37*45 -$GPGGA,145000.0,5112.994127,N,00646.285892,E,1,06,2.6,95.0,M,,,,*3E -$GPRMC,145000.0,A,5112.994127,N,00646.285892,E,27.5,120.3,070709,,,A*58 -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,5.7,2.6,5.1*3D -$GPVTG,120.3,T,,M,27.5,N,50.9,K*6C -$GPGSV,3,1,11,22,14,274,20,18,07,243,23,17,24,045,,15,12,168,16*79 -$GPGSV,3,2,11,12,61,241,36,30,26,244,20,14,28,312,32,26,59,222,34*7A -$GPGSV,3,3,11,04,06,097,,09,77,108,36,27,61,113,37*45 -$GPGGA,145001.0,5112.990272,N,00646.296479,E,1,06,2.6,95.0,M,,,,*33 -$GPRMC,145001.0,A,5112.990272,N,00646.296479,E,27.9,120.7,070709,,,A*5D -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,5.7,2.6,5.1*3D -$GPVTG,120.7,T,,M,27.9,N,51.7,K*6B -$GPGSV,3,1,11,22,14,274,20,18,07,243,23,17,24,045,,15,12,168,16*79 -$GPGSV,3,2,11,12,61,241,36,30,26,244,20,14,28,312,31,26,59,222,34*79 -$GPGSV,3,3,11,04,06,097,26,09,77,108,36,27,61,113,37*41 -$GPGGA,145002.0,5112.986344,N,00646.307216,E,1,06,3.1,95.0,M,,,,*33 -$GPRMC,145002.0,A,5112.986344,N,00646.307216,E,28.3,120.5,070709,,,A*5C -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,6.9,3.1,6.2*36 -$GPVTG,120.5,T,,M,28.3,N,52.4,K*6C -$GPGSV,3,1,11,22,14,274,20,18,07,243,23,17,24,045,,15,12,168,16*79 -$GPGSV,3,2,11,12,61,241,36,30,26,244,21,14,28,312,31,26,59,222,34*78 -$GPGSV,3,3,11,04,06,097,26,09,77,108,36,27,61,113,37*41 -$GPGGA,145003.0,5112.982379,N,00646.317998,E,1,06,2.5,95.0,M,,,,*31 -$GPRMC,145003.0,A,5112.982379,N,00646.317998,E,28.0,120.1,070709,,,A*5C -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,5.6,2.5,4.9*36 -$GPVTG,120.1,T,,M,28.0,N,51.9,K*65 -$GPGSV,3,1,11,22,14,274,20,18,07,243,23,17,24,045,,15,12,168,16*79 -$GPGSV,3,2,11,12,61,241,36,30,26,244,23,14,28,312,30,26,59,222,35*7A -$GPGSV,3,3,11,04,06,097,17,09,77,108,37,27,61,113,37*42 -$GPGGA,145004.0,5112.978522,N,00646.328751,E,1,06,2.6,95.0,M,,,,*3F -$GPRMC,145004.0,A,5112.978522,N,00646.328751,E,28.3,119.9,070709,,,A*50 -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,5.5,2.6,4.8*37 -$GPVTG,119.9,T,,M,28.3,N,52.3,K*6D -$GPGSV,3,1,11,22,14,274,20,18,07,243,23,17,24,045,,15,12,168,16*79 -$GPGSV,3,2,11,12,61,241,37,30,26,244,27,14,28,312,31,26,59,222,35*7E -$GPGSV,3,3,11,04,06,097,19,09,77,108,37,27,61,113,37*4C -$GPGGA,145005.0,5112.974574,N,00646.339563,E,1,06,2.5,94.5,M,,,,*35 -$GPRMC,145005.0,A,5112.974574,N,00646.339563,E,27.9,120.1,070709,,,A*5A -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,5.1,2.5,4.5*3D -$GPVTG,120.1,T,,M,27.9,N,51.7,K*6D -$GPGSV,3,1,11,22,14,274,20,18,07,243,23,17,24,045,,15,12,168,16*79 -$GPGSV,3,2,11,12,61,241,36,30,26,244,27,14,28,312,31,26,59,222,35*7F -$GPGSV,3,3,11,04,06,097,19,09,77,108,37,27,61,113,37*4C -$GPGGA,145006.0,5112.970764,N,00646.350160,E,1,06,2.5,94.5,M,,,,*39 -$GPRMC,145006.0,A,5112.970764,N,00646.350160,E,27.3,120.2,070709,,,A*5F -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,5.2,2.5,4.6*3D -$GPVTG,120.2,T,,M,27.3,N,50.5,K*67 -$GPGSV,3,1,11,22,14,274,20,18,07,243,23,17,24,045,,15,12,168,16*79 -$GPGSV,3,2,11,12,61,241,37,30,26,244,27,14,28,312,31,26,59,222,36*7D -$GPGSV,3,3,11,04,06,097,19,09,77,108,37,27,61,113,37*4C -$GPGGA,145007.0,5112.967105,N,00646.360122,E,1,06,2.5,94.5,M,,,,*3A -$GPRMC,145007.0,A,5112.967105,N,00646.360122,E,24.9,120.4,070709,,,A*53 -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,5.4,2.5,4.7*3A -$GPVTG,120.4,T,,M,24.9,N,46.1,K*6B -$GPGSV,3,1,11,22,14,274,26,18,07,243,23,17,24,045,,15,12,168,16*7F -$GPGSV,3,2,11,12,61,241,36,30,26,244,27,14,28,312,31,26,59,222,36*7C -$GPGSV,3,3,11,04,06,097,19,09,77,108,37,27,61,113,36*4D -$GPGGA,145008.0,5112.963633,N,00646.369044,E,1,06,3.0,94.5,M,,,,*3F -$GPRMC,145008.0,A,5112.963633,N,00646.369044,E,22.4,122.3,070709,,,A*5C -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,6.9,3.0,6.2*37 -$GPVTG,122.3,T,,M,22.4,N,41.4,K*67 -$GPGSV,3,1,11,22,14,274,22,18,07,243,23,17,24,045,,15,12,168,16*7B -$GPGSV,3,2,11,12,61,241,35,30,26,244,27,14,28,312,30,26,59,222,35*7D -$GPGSV,3,3,11,04,06,097,19,09,77,108,37,27,61,113,36*4D -$GPGGA,145009.0,5112.960789,N,00646.377096,E,1,06,3.1,94.5,M,,,,*3C -$GPRMC,145009.0,A,5112.960789,N,00646.377096,E,20.2,120.2,070709,,,A*59 -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,6.9,3.1,6.2*36 -$GPVTG,120.2,T,,M,20.2,N,37.5,K*60 -$GPGSV,3,1,11,22,14,274,22,18,07,243,23,17,24,045,,15,12,168,16*7B -$GPGSV,3,2,11,12,61,241,36,30,26,244,27,14,28,312,31,26,59,222,35*7F -$GPGSV,3,3,11,04,06,097,19,09,77,108,37,27,61,113,36*4D -$GPGGA,145010.0,5112.958103,N,00646.384599,E,1,06,3.1,94.5,M,,,,*3D -$GPRMC,145010.0,A,5112.958103,N,00646.384599,E,18.7,120.3,070709,,,A*57 -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,6.9,3.1,6.2*36 -$GPVTG,120.3,T,,M,18.7,N,34.7,K*6E -$GPGSV,3,1,11,22,14,274,22,18,07,243,23,17,24,045,,15,12,168,16*7B -$GPGSV,3,2,11,12,61,241,36,30,26,244,27,14,28,312,31,26,59,222,35*7F -$GPGSV,3,3,11,04,06,097,19,09,77,108,37,27,61,113,36*4D -$GPGGA,145011.0,5112.955621,N,00646.391675,E,1,06,3.1,94.5,M,,,,*33 -$GPRMC,145011.0,A,5112.955621,N,00646.391675,E,17.7,119.4,070709,,,A*5B -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,7.0,3.1,6.3*3F -$GPVTG,119.4,T,,M,17.7,N,32.9,K*64 -$GPGSV,3,1,11,22,14,274,22,18,07,243,23,17,24,045,,15,12,168,16*7B -$GPGSV,3,2,11,12,61,241,35,30,26,244,27,14,28,312,31,26,59,222,34*7D -$GPGSV,3,3,11,04,06,097,19,09,77,108,37,27,61,113,36*4D -$GPGGA,145012.0,5112.953303,N,00646.398188,E,1,05,3.0,94.5,M,,,,*3D -$GPRMC,145012.0,A,5112.953303,N,00646.398188,E,16.4,119.2,070709,,,A*53 -$GPGSA,A,3,09,12,14,26,27,,,,,,,,6.7,3.0,5.9*32 -$GPVTG,119.2,T,,M,16.4,N,30.4,K*6F -$GPGSV,3,1,11,22,14,274,22,18,07,243,,17,24,045,,15,12,168,16*7A -$GPGSV,3,2,11,12,61,241,36,30,26,244,27,14,28,312,31,26,59,222,34*7E -$GPGSV,3,3,11,04,06,097,19,09,77,108,36,27,61,113,36*4C -$GPGGA,145013.0,5112.951264,N,00646.404127,E,1,05,3.1,94.5,M,,,,*38 -$GPRMC,145013.0,A,5112.951264,N,00646.404127,E,15.0,118.1,070709,,,A*52 -$GPGSA,A,3,09,12,14,26,27,,,,,,,,6.8,3.1,6.0*36 -$GPVTG,118.1,T,,M,15.0,N,27.7,K*6F -$GPGSV,3,1,11,22,14,274,22,18,07,243,,17,24,045,,15,12,168,16*7A -$GPGSV,3,2,11,12,61,241,36,30,26,244,22,14,28,312,31,26,59,222,34*7B -$GPGSV,3,3,11,04,06,097,19,09,77,108,37,27,61,113,35*4E -$GPGGA,145014.0,5112.949531,N,00646.409498,E,1,05,3.1,94.5,M,,,,*3D -$GPRMC,145014.0,A,5112.949531,N,00646.409498,E,13.0,116.6,070709,,,A*58 -$GPGSA,A,3,09,12,14,26,27,,,,,,,,6.8,3.1,6.1*37 -$GPVTG,116.6,T,,M,13.0,N,24.0,K*64 -$GPGSV,3,1,11,22,14,274,22,18,07,243,,17,24,045,,15,12,168,16*7A -$GPGSV,3,2,11,12,61,241,35,30,26,244,22,14,28,312,32,26,59,222,34*7B -$GPGSV,3,3,11,04,06,097,19,09,77,108,37,27,61,113,35*4E -$GPGGA,145015.0,5112.948115,N,00646.414065,E,1,05,3.1,94.5,M,,,,*35 -$GPRMC,145015.0,A,5112.948115,N,00646.414065,E,10.4,116.7,070709,,,A*56 -$GPGSA,A,3,09,12,14,26,27,,,,,,,,6.8,3.1,6.1*37 -$GPVTG,116.7,T,,M,10.4,N,19.2,K*6E -$GPGSV,3,1,11,22,14,274,22,18,07,243,,17,24,045,,15,12,168,16*7A -$GPGSV,3,2,11,12,61,241,35,30,26,244,17,14,28,312,31,26,59,222,34*7E -$GPGSV,3,3,11,04,06,097,19,09,77,108,37,27,61,113,36*4D -$GPGGA,145016.0,5112.947022,N,00646.417555,E,1,06,2.6,94.5,M,,,,*3C -$GPRMC,145016.0,A,5112.947022,N,00646.417555,E,7.7,115.5,070709,,,A*6E -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,5.6,2.6,5.0*3D -$GPVTG,115.5,T,,M,7.7,N,14.2,K*57 -$GPGSV,3,1,11,22,14,274,22,18,07,243,,17,24,045,22,15,12,168,16*7A -$GPGSV,3,2,11,12,61,241,36,30,26,244,17,14,28,312,31,26,59,222,35*7C -$GPGSV,3,3,11,04,06,097,19,09,77,108,37,27,61,113,36*4D -$GPGGA,145017.0,5112.946207,N,00646.420014,E,1,06,2.6,94.5,M,,,,*3D -$GPRMC,145017.0,A,5112.946207,N,00646.420014,E,5.4,121.7,070709,,,A*6B -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,5.7,2.6,5.0*3C -$GPVTG,121.7,T,,M,5.4,N,9.9,K*64 -$GPGSV,3,1,11,22,14,274,22,18,07,243,,17,24,045,22,15,12,168,16*7A -$GPGSV,3,2,11,12,61,241,35,30,26,244,17,14,28,312,33,26,59,222,35*7D -$GPGSV,3,3,11,04,06,097,19,09,77,108,37,27,61,113,36*4D -$GPGGA,145018.0,5112.945867,N,00646.421639,E,1,06,2.6,94.5,M,,,,*35 -$GPRMC,145018.0,A,5112.945867,N,00646.421639,E,3.2,113.2,070709,,,A*67 -$GPGSA,A,3,09,12,14,26,27,30,,,,,,,5.7,2.6,5.1*3D -$GPVTG,113.2,T,,M,3.2,N,5.9,K*6C -$GPGSV,3,1,11,22,14,274,15,18,07,243,,17,24,045,23,15,12,168,*78 -$GPGSV,3,2,11,12,61,241,35,30,26,244,22,14,28,312,30,26,59,222,35*78 -$GPGSV,3,3,11,04,06,097,19,09,77,108,38,27,61,113,37*43 -$GPGGA,145019.0,5112.945540,N,00646.422660,E,1,07,2.2,94.5,M,,,,*36 -$GPRMC,145019.0,A,5112.945540,N,00646.422660,E,2.4,115.9,070709,,,A*6B -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.6,2.2,4.0*3F -$GPVTG,115.9,T,,M,2.4,N,4.4,K*6A -$GPGSV,3,1,11,22,14,274,15,18,06,243,,17,24,045,22,15,12,168,*78 -$GPGSV,3,2,11,12,61,241,35,30,26,244,22,14,28,312,33,26,59,222,34*7A -$GPGSV,3,3,11,04,06,097,19,09,77,108,38,27,61,113,36*42 -$GPGGA,145020.0,5112.945359,N,00646.423736,E,1,07,2.2,94.5,M,,,,*31 -$GPRMC,145020.0,A,5112.945359,N,00646.423736,E,2.4,109.1,070709,,,A*69 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.6,2.2,4.0*3F -$GPVTG,109.1,T,,M,2.4,N,4.5,K*6E -$GPGSV,3,1,11,22,14,274,15,18,06,243,,17,24,045,25,15,12,168,*7F -$GPGSV,3,2,11,12,61,241,34,30,26,244,22,14,28,312,32,26,59,222,34*7A -$GPGSV,3,3,11,04,06,097,19,09,77,108,38,27,61,113,36*42 -$GPGGA,145021.0,5112.945133,N,00646.424863,E,1,07,2.2,94.0,M,,,,*33 -$GPRMC,145021.0,A,5112.945133,N,00646.424863,E,2.9,110.1,070709,,,A*6B -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.5,2.2,3.9*32 -$GPVTG,110.1,T,,M,2.9,N,5.4,K*6B -$GPGSV,3,1,11,22,14,274,17,18,06,243,,17,24,045,24,15,12,168,*7C -$GPGSV,3,2,11,12,61,241,34,30,26,244,22,14,28,312,32,26,59,222,34*7A -$GPGSV,3,3,11,04,06,097,19,09,77,108,38,27,61,113,35*41 -$GPGGA,145022.0,5112.944907,N,00646.426024,E,1,07,2.6,94.5,M,,,,*36 -$GPRMC,145022.0,A,5112.944907,N,00646.426024,E,3.4,108.4,070709,,,A*6F -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,5.4,2.6,4.7*3F -$GPVTG,108.4,T,,M,3.4,N,6.3,K*6F -$GPGSV,3,1,11,22,14,274,17,18,06,243,,17,24,045,26,15,12,168,14*7B -$GPGSV,3,2,11,12,61,241,35,30,26,244,22,14,28,312,33,26,59,222,36*78 -$GPGSV,3,3,11,04,06,097,19,09,76,108,38,27,61,113,37*42 -$GPGGA,145023.0,5112.944540,N,00646.427860,E,1,07,2.6,94.5,M,,,,*31 -$GPRMC,145023.0,A,5112.944540,N,00646.427860,E,5.0,107.5,070709,,,A*64 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,5.4,2.6,4.7*3F -$GPVTG,107.5,T,,M,5.0,N,9.3,K*6C -$GPGSV,3,1,11,22,14,274,17,18,06,243,,17,24,045,27,15,12,168,14*7A -$GPGSV,3,2,11,12,61,241,34,30,26,244,22,14,28,312,33,26,59,222,36*79 -$GPGSV,3,3,11,04,06,097,,09,76,108,38,27,61,113,35*48 -$GPGGA,145024.0,5112.943992,N,00646.430566,E,1,07,2.5,94.5,M,,,,*3C -$GPRMC,145024.0,A,5112.943992,N,00646.430566,E,7.7,106.3,070709,,,A*68 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,5.1,2.5,4.5*3B -$GPVTG,106.3,T,,M,7.7,N,14.3,K*52 -$GPGSV,3,1,11,22,14,274,17,18,06,243,,17,24,045,28,15,12,168,14*75 -$GPGSV,3,2,11,12,61,241,34,30,26,244,22,14,28,312,33,26,59,222,35*7A -$GPGSV,3,3,11,04,06,097,19,09,76,108,38,27,61,113,34*41 -$GPGGA,145025.0,5112.943360,N,00646.434287,E,1,07,2.5,95.0,M,,,,*32 -$GPRMC,145025.0,A,5112.943360,N,00646.434287,E,10.0,103.9,070709,,,A*5C -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,5.2,2.5,4.5*38 -$GPVTG,103.9,T,,M,10.0,N,18.6,K*65 -$GPGSV,3,1,11,22,14,274,17,18,06,243,,17,24,045,29,15,12,168,14*74 -$GPGSV,3,2,11,12,61,241,34,30,26,244,22,14,28,312,33,26,59,222,35*7A -$GPGSV,3,3,11,04,06,097,19,09,76,108,38,27,61,113,34*41 -$GPGGA,145026.0,5112.942689,N,00646.439105,E,1,06,2.6,95.0,M,,,,*34 -$GPRMC,145026.0,A,5112.942689,N,00646.439105,E,11.8,102.9,070709,,,A*50 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.0,2.6,4.3*3C -$GPVTG,102.9,T,,M,11.8,N,21.9,K*68 -$GPGSV,3,1,11,22,14,274,17,18,06,243,,17,24,045,30,15,12,168,14*7C -$GPGSV,3,2,11,12,61,241,34,30,26,244,22,14,28,312,28,26,59,222,35*70 -$GPGSV,3,3,11,04,06,097,19,09,76,108,38,27,61,113,34*41 -$GPGGA,145027.0,5112.942000,N,00646.444486,E,1,06,2.8,95.0,M,,,,*38 -$GPRMC,145027.0,A,5112.942000,N,00646.444486,E,12.7,99.6,070709,,,A*62 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,4.9,2.8,3.9*37 -$GPVTG,99.6,T,,M,12.7,N,23.5,K*56 -$GPGSV,3,1,11,22,14,274,17,18,06,243,,17,24,045,30,15,12,168,14*7C -$GPGSV,3,2,11,12,61,241,35,30,26,244,22,14,28,312,24,26,59,222,35*7D -$GPGSV,3,3,11,04,06,097,19,09,76,108,39,27,60,113,34*41 -$GPGGA,145028.0,5112.941178,N,00646.450139,E,1,06,3.1,95.5,M,,,,*33 -$GPRMC,145028.0,A,5112.941178,N,00646.450139,E,14.7,96.7,070709,,,A*6C -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.0,3.1,3.8*36 -$GPVTG,96.7,T,,M,14.7,N,27.2,K*5D -$GPGSV,3,1,11,22,14,274,17,18,06,243,,17,24,045,30,15,11,168,14*7F -$GPGSV,3,2,11,12,61,241,35,30,26,244,22,14,28,312,22,26,59,222,36*78 -$GPGSV,3,3,11,04,06,097,19,09,76,108,39,27,60,113,34*41 -$GPGGA,145029.0,5112.940718,N,00646.457059,E,1,06,3.2,95.0,M,,,,*35 -$GPRMC,145029.0,A,5112.940718,N,00646.457059,E,16.2,95.7,070709,,,A*68 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.0,3.2,3.8*35 -$GPVTG,95.7,T,,M,16.2,N,30.0,K*5D -$GPGSV,3,1,11,22,14,274,17,18,06,243,,17,24,045,31,15,11,168,14*7E -$GPGSV,3,2,11,12,61,241,34,30,26,244,28,14,28,312,23,26,59,222,35*71 -$GPGSV,3,3,11,04,06,097,19,09,76,108,38,27,60,113,34*40 -$GPGGA,145030.0,5112.940232,N,00646.464492,E,1,07,2.8,95.0,M,,,,*39 -$GPRMC,145030.0,A,5112.940232,N,00646.464492,E,17.0,95.5,070709,,,A*6F -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.0,2.8,2.9*3C -$GPVTG,95.5,T,,M,17.0,N,31.6,K*5B -$GPGSV,3,1,11,22,14,274,17,18,06,243,,17,24,045,30,15,11,168,14*7F -$GPGSV,3,2,11,12,61,241,36,30,26,244,29,14,28,312,26,26,59,222,36*74 -$GPGSV,3,3,11,04,06,097,19,09,76,108,38,27,60,113,34*40 -$GPGGA,145031.0,5112.939722,N,00646.472192,E,1,07,2.5,95.0,M,,,,*3D -$GPRMC,145031.0,A,5112.939722,N,00646.472192,E,17.5,94.9,070709,,,A*6E -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.9,2.5,3.0*37 -$GPVTG,94.9,T,,M,17.5,N,32.5,K*53 -$GPGSV,3,1,11,22,14,274,17,18,06,243,,17,24,045,34,15,11,168,14*7B -$GPGSV,3,2,11,12,61,241,35,30,26,244,29,14,28,312,26,26,59,222,35*74 -$GPGSV,3,3,11,04,06,097,19,09,76,108,38,27,60,113,34*40 -$GPGGA,145032.0,5112.939236,N,00646.479972,E,1,07,2.6,94.5,M,,,,*34 -$GPRMC,145032.0,A,5112.939236,N,00646.479972,E,17.4,96.3,070709,,,A*69 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.9,2.6,2.9*3C -$GPVTG,96.3,T,,M,17.4,N,32.3,K*5C -$GPGSV,3,1,11,22,14,274,17,18,06,243,,17,24,045,35,15,11,168,14*7A -$GPGSV,3,2,11,12,61,241,36,30,26,244,31,14,28,312,28,26,59,222,36*73 -$GPGSV,3,3,11,04,06,097,19,09,76,108,38,27,60,113,34*40 -$GPGGA,145033.0,5112.939096,N,00646.487863,E,1,07,2.4,94.5,M,,,,*3F -$GPRMC,145033.0,A,5112.939096,N,00646.487863,E,17.3,92.3,070709,,,A*63 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.8,2.4,2.9*3F -$GPVTG,92.3,T,,M,17.3,N,32.1,K*5D -$GPGSV,3,1,11,22,14,274,17,18,06,243,,17,24,045,35,15,11,168,14*7A -$GPGSV,3,2,11,12,61,241,36,30,26,244,31,14,28,312,28,26,59,222,35*70 -$GPGSV,3,3,11,04,06,095,19,09,76,108,38,27,60,113,34*42 -$GPGGA,145034.0,5112.938945,N,00646.495909,E,1,07,2.4,94.0,M,,,,*35 -$GPRMC,145034.0,A,5112.938945,N,00646.495909,E,17.8,90.9,070709,,,A*6F -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.7,2.4,2.8*31 -$GPVTG,90.9,T,,M,17.8,N,33.0,K*5E -$GPGSV,3,1,11,22,14,274,17,18,06,243,,17,24,045,35,15,11,168,14*7A -$GPGSV,3,2,11,12,61,241,36,30,26,244,31,14,28,312,33,26,59,222,34*7B -$GPGSV,3,3,11,04,06,095,19,09,76,108,38,27,60,113,34*42 -$GPGGA,145035.0,5112.938573,N,00646.504313,E,1,07,2.3,93.5,M,,,,*30 -$GPRMC,145035.0,A,5112.938573,N,00646.504313,E,18.4,91.8,070709,,,A*6C -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.6,2.3,2.8*37 -$GPVTG,91.8,T,,M,18.4,N,34.1,K*5B -$GPGSV,3,1,11,22,14,274,17,18,06,243,,17,24,045,23,15,11,168,*78 -$GPGSV,3,2,11,12,61,241,36,30,26,244,32,14,28,312,32,26,59,222,36*7B -$GPGSV,3,3,11,04,06,095,19,09,76,108,38,27,60,113,34*42 -$GPGGA,145036.0,5112.938205,N,00646.512832,E,1,07,2.2,94.0,M,,,,*39 -$GPRMC,145036.0,A,5112.938205,N,00646.512832,E,19.2,90.7,070709,,,A*6F -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.0,2.2,3.3*3D -$GPVTG,90.7,T,,M,19.2,N,35.5,K*57 -$GPGSV,3,1,11,22,14,274,17,18,06,243,,17,24,045,27,15,11,168,24*7A -$GPGSV,3,2,11,12,61,241,36,30,26,244,25,14,28,312,30,26,59,222,35*7C -$GPGSV,3,3,11,04,07,095,19,09,76,108,39,27,60,113,34*42 -$GPGGA,145037.0,5112.937924,N,00646.521216,E,1,07,2.3,94.0,M,,,,*32 -$GPRMC,145037.0,A,5112.937924,N,00646.521216,E,19.4,91.5,070709,,,A*60 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.4,2.3,3.7*3C -$GPVTG,91.5,T,,M,19.4,N,35.9,K*5E -$GPGSV,3,1,11,22,14,274,17,18,06,243,,17,24,045,28,15,11,168,16*74 -$GPGSV,3,2,11,12,61,241,36,30,26,244,25,14,28,312,29,26,59,222,35*74 -$GPGSV,3,3,11,04,07,095,19,09,76,108,38,27,60,113,34*43 -$GPGGA,145038.0,5112.937758,N,00646.529891,E,1,08,2.0,94.0,M,,,,*39 -$GPRMC,145038.0,A,5112.937758,N,00646.529891,E,19.5,91.7,070709,,,A*64 -$GPGSA,A,3,09,12,14,15,17,26,27,30,,,,,3.6,2.0,3.0*39 -$GPVTG,91.7,T,,M,19.5,N,36.1,K*56 -$GPGSV,3,1,11,22,14,274,34,18,06,243,,17,24,045,30,15,11,168,16*7C -$GPGSV,3,2,11,12,61,241,36,30,26,244,22,14,28,312,27,26,59,222,36*7E -$GPGSV,3,3,11,04,07,095,19,09,76,108,38,27,60,113,33*44 -$GPGGA,145039.0,5112.937612,N,00646.538400,E,1,08,2.1,94.0,M,,,,*32 -$GPRMC,145039.0,A,5112.937612,N,00646.538400,E,18.9,91.4,070709,,,A*60 -$GPGSA,A,3,09,12,14,15,17,26,27,30,,,,,3.6,2.1,2.9*30 -$GPVTG,91.4,T,,M,18.9,N,35.1,K*5B -$GPGSV,3,1,11,22,14,274,34,18,06,243,,17,24,045,25,15,11,168,16*78 -$GPGSV,3,2,11,12,61,241,36,30,26,244,23,14,28,312,26,26,59,222,37*7F -$GPGSV,3,3,11,04,07,095,19,09,76,108,38,27,60,113,35*42 -$GPGGA,145040.0,5112.937486,N,00646.546603,E,1,08,2.2,94.0,M,,,,*38 -$GPRMC,145040.0,A,5112.937486,N,00646.546603,E,18.0,92.0,070709,,,A*67 -$GPGSA,A,3,09,12,14,15,17,26,27,30,,,,,4.0,2.2,3.3*39 -$GPVTG,92.0,T,,M,18.0,N,33.3,K*51 -$GPGSV,3,1,11,22,14,274,33,18,06,243,,17,24,045,28,15,11,168,16*72 -$GPGSV,3,2,11,12,61,241,35,30,26,244,23,14,28,312,28,26,59,222,36*73 -$GPGSV,3,3,11,04,07,095,19,09,76,108,38,27,60,113,34*43 -$GPGGA,145041.0,5112.937237,N,00646.554564,E,1,08,2.4,94.0,M,,,,*32 -$GPRMC,145041.0,A,5112.937237,N,00646.554564,E,18.0,92.3,070709,,,A*68 -$GPGSA,A,3,09,12,14,15,17,26,27,30,,,,,4.5,2.4,3.7*3E -$GPVTG,92.3,T,,M,18.0,N,33.3,K*52 -$GPGSV,3,1,11,22,14,274,33,18,06,243,,17,24,045,26,15,11,168,16*7C -$GPGSV,3,2,11,12,61,241,35,30,26,244,23,14,28,312,26,26,59,222,36*7D -$GPGSV,3,3,11,04,07,095,19,09,76,108,38,27,60,113,34*43 -$GPGGA,145042.0,5112.937021,N,00646.562550,E,1,08,2.5,93.5,M,,,,*35 -$GPRMC,145042.0,A,5112.937021,N,00646.562550,E,18.1,92.9,070709,,,A*67 -$GPGSA,A,3,09,12,14,15,17,26,27,30,,,,,4.6,2.5,3.8*33 -$GPVTG,92.9,T,,M,18.1,N,33.6,K*5C -$GPGSV,3,1,11,22,14,274,32,18,06,243,,17,24,045,24,15,11,168,16*7F -$GPGSV,3,2,11,12,61,241,35,30,26,244,23,14,28,312,24,26,59,222,29*71 -$GPGSV,3,3,11,04,07,095,19,09,76,108,36,27,60,113,30*49 -$GPGGA,145043.0,5112.936750,N,00646.570562,E,1,08,3.4,93.5,M,,,,*36 -$GPRMC,145043.0,A,5112.936750,N,00646.570562,E,18.1,93.4,070709,,,A*68 -$GPGSA,A,3,09,12,14,15,17,26,27,30,,,,,6.3,3.4,5.2*38 -$GPVTG,93.4,T,,M,18.1,N,33.6,K*50 -$GPGSV,3,1,11,22,14,274,33,18,06,243,,17,24,045,25,15,11,168,16*7F -$GPGSV,3,2,11,12,61,241,31,30,26,244,23,14,28,312,26,26,58,222,29*76 -$GPGSV,3,3,11,04,07,095,19,09,76,108,38,27,60,113,33*44 -$GPGGA,145044.0,5112.936448,N,00646.578302,E,1,08,3.0,93.5,M,,,,*37 -$GPRMC,145044.0,A,5112.936448,N,00646.578302,E,17.0,93.8,070709,,,A*6F -$GPGSA,A,3,09,12,14,15,17,26,27,30,,,,,5.4,3.0,4.4*3F -$GPVTG,93.8,T,,M,17.0,N,31.5,K*53 -$GPGSV,3,1,11,22,14,274,31,18,06,243,,17,24,045,29,15,11,168,16*71 -$GPGSV,3,2,11,12,61,241,36,30,26,244,23,14,28,312,26,26,58,222,35*7C -$GPGSV,3,3,11,04,07,095,19,09,76,108,38,27,60,113,34*43 -$GPGGA,145045.0,5112.936136,N,00646.585453,E,1,07,3.1,93.5,M,,,,*35 -$GPRMC,145045.0,A,5112.936136,N,00646.585453,E,15.5,93.3,070709,,,A*6F -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,5.1,3.1,4.0*3B -$GPVTG,93.3,T,,M,15.5,N,28.7,K*55 -$GPGSV,3,1,11,22,14,274,32,18,06,243,,17,24,045,27,15,11,168,16*7C -$GPGSV,3,2,11,12,61,241,38,30,26,244,26,14,28,312,30,26,58,222,24*70 -$GPGSV,3,3,11,04,07,095,19,09,76,108,39,27,60,113,35*43 -$GPGGA,145046.0,5112.936058,N,00646.591910,E,1,07,2.4,93.5,M,,,,*34 -$GPRMC,145046.0,A,5112.936058,N,00646.591910,E,13.4,90.5,070709,,,A*68 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.9,2.4,3.1*37 -$GPVTG,90.5,T,,M,13.4,N,24.8,K*54 -$GPGSV,3,1,11,22,14,274,33,18,06,243,,17,24,045,26,15,11,168,16*7C -$GPGSV,3,2,11,12,61,241,37,30,26,244,27,14,28,312,29,26,58,222,21*73 -$GPGSV,3,3,11,04,07,095,19,09,76,108,38,27,60,113,35*42 -$GPGGA,145047.0,5112.935867,N,00646.597075,E,1,07,2.2,94.0,M,,,,*3A -$GPRMC,145047.0,A,5112.935867,N,00646.597075,E,10.3,93.0,070709,,,A*60 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.8,2.2,3.1*30 -$GPVTG,93.0,T,,M,10.3,N,19.1,K*51 -$GPGSV,3,1,11,22,14,274,33,18,06,243,,17,24,045,23,15,11,168,16*79 -$GPGSV,3,2,11,12,61,241,36,30,26,244,26,14,28,312,31,26,58,222,21*7A -$GPGSV,3,3,11,04,07,095,19,09,76,108,37,27,60,113,34*4C -$GPGGA,145048.0,5112.935847,N,00646.601214,E,1,07,2.1,94.0,M,,,,*3D -$GPRMC,145048.0,A,5112.935847,N,00646.601214,E,8.8,91.4,070709,,,A*50 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.0,2.1,3.4*39 -$GPVTG,91.4,T,,M,8.8,N,16.3,K*68 -$GPGSV,3,1,11,22,14,274,28,18,06,243,,17,24,045,30,15,11,168,16*71 -$GPGSV,3,2,11,12,61,241,27,30,26,244,31,14,28,312,32,26,58,222,20*7E -$GPGSV,3,3,11,04,07,095,19,09,76,108,37,27,60,113,34*4C -$GPGGA,145049.0,5112.935859,N,00646.604418,E,1,07,1.6,95.0,M,,,,*39 -$GPRMC,145049.0,A,5112.935859,N,00646.604418,E,7.0,86.3,070709,,,A*57 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,2.7,1.6,2.1*38 -$GPVTG,86.3,T,,M,7.0,N,12.9,K*60 -$GPGSV,3,1,11,22,14,274,27,18,06,243,,17,24,045,28,15,11,168,16*77 -$GPGSV,3,2,11,12,61,241,27,30,26,244,31,14,28,312,31,26,58,222,24*79 -$GPGSV,3,3,11,04,07,095,19,09,76,108,37,27,60,113,35*4D -$GPGGA,145050.0,5112.935983,N,00646.607264,E,1,07,1.7,95.5,M,,,,*3D -$GPRMC,145050.0,A,5112.935983,N,00646.607264,E,6.8,89.0,070709,,,A*52 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.0,1.7,2.4*3A -$GPVTG,89.0,T,,M,6.8,N,12.6,K*6A -$GPGSV,3,1,11,22,14,274,21,18,06,243,,17,24,045,29,15,11,168,16*70 -$GPGSV,3,2,11,12,61,241,21,30,26,244,28,14,28,312,27,26,58,222,30*75 -$GPGSV,3,3,11,04,07,095,19,09,76,108,36,27,60,113,34*4D -$GPGGA,145051.0,5112.935741,N,00646.609829,E,1,07,1.9,96.0,M,,,,*39 -$GPRMC,145051.0,A,5112.935741,N,00646.609829,E,5.3,101.6,070709,,,A*61 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.1,1.9,2.4*35 -$GPVTG,101.6,T,,M,5.3,N,9.8,K*61 -$GPGSV,3,1,11,22,14,274,20,18,06,243,,17,24,045,27,15,11,168,16*7F -$GPGSV,3,2,11,12,61,241,28,30,26,244,26,14,28,312,23,26,58,222,36*70 -$GPGSV,3,3,11,04,07,095,19,09,76,108,34,27,60,113,32*49 -$GPGGA,145052.0,5112.934001,N,00646.609945,E,1,07,2.4,95.5,M,,,,*3B -$GPRMC,145052.0,A,5112.934001,N,00646.609945,E,4.1,182.1,070709,,,A*64 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.6,2.4,2.6*3E -$GPVTG,182.1,T,,M,4.1,N,7.5,K*6D -$GPGSV,3,1,11,22,14,274,21,18,06,243,,17,24,045,29,15,11,168,16*70 -$GPGSV,3,2,11,12,61,241,36,30,26,244,24,14,28,312,22,26,58,222,37*7D -$GPGSV,3,3,11,04,07,095,19,09,76,108,36,27,60,113,33*4A -$GPGGA,145053.0,5112.932412,N,00646.609754,E,1,07,2.5,95.5,M,,,,*35 -$GPRMC,145053.0,A,5112.932412,N,00646.609754,E,4.7,167.6,070709,,,A*61 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.8,2.5,2.8*3F -$GPVTG,167.6,T,,M,4.7,N,8.7,K*6A -$GPGSV,3,1,11,22,14,274,23,18,06,243,,17,24,045,29,15,11,168,16*72 -$GPGSV,3,2,11,12,61,241,34,30,26,244,23,14,28,312,24,26,58,222,36*7F -$GPGSV,3,3,11,04,07,095,19,09,76,108,37,27,60,113,35*4D -$GPGGA,145054.0,5112.930539,N,00646.610352,E,1,07,2.4,96.0,M,,,,*35 -$GPRMC,145054.0,A,5112.930539,N,00646.610352,E,6.2,159.1,070709,,,A*6B -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.9,2.4,3.1*37 -$GPVTG,159.1,T,,M,6.2,N,11.5,K*5D -$GPGSV,3,1,11,22,14,274,24,18,06,243,,17,24,045,31,15,11,168,16*7C -$GPGSV,3,2,11,12,61,241,35,30,26,244,23,14,28,312,23,26,58,222,35*7A -$GPGSV,3,3,11,04,07,095,19,09,76,108,37,27,60,113,36*4E -$GPGGA,145055.0,5112.928630,N,00646.611051,E,1,07,2.5,96.0,M,,,,*37 -$GPRMC,145055.0,A,5112.928630,N,00646.611051,E,6.4,160.4,070709,,,A*61 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.0,2.5,3.1*38 -$GPVTG,160.4,T,,M,6.4,N,11.8,K*59 -$GPGSV,3,1,11,22,14,274,26,18,06,243,,17,24,045,29,15,11,168,16*77 -$GPGSV,3,2,11,12,61,241,35,30,26,244,27,14,28,312,20,26,58,222,35*7D -$GPGSV,3,3,11,04,07,095,19,09,76,108,36,27,60,113,36*4F -$GPGGA,145056.0,5112.926985,N,00646.611745,E,1,07,2.6,97.0,M,,,,*3B -$GPRMC,145056.0,A,5112.926985,N,00646.611745,E,5.8,159.8,070709,,,A*66 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.9,2.6,2.9*3C -$GPVTG,159.8,T,,M,5.8,N,10.8,K*51 -$GPGSV,3,1,11,22,14,274,23,18,06,243,,17,24,045,28,15,11,168,16*73 -$GPGSV,3,2,11,12,61,241,35,30,27,244,21,14,28,312,26,26,58,222,36*7F -$GPGSV,3,3,11,04,07,095,19,09,76,108,37,27,60,113,36*4E -$GPGGA,145057.0,5112.925386,N,00646.612294,E,1,07,2.3,97.0,M,,,,*3F -$GPRMC,145057.0,A,5112.925386,N,00646.612294,E,4.8,162.3,070709,,,A*65 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.2,2.3,3.4*39 -$GPVTG,162.3,T,,M,4.8,N,8.9,K*6B -$GPGSV,3,1,11,22,14,274,22,18,06,243,,17,24,045,30,15,11,168,16*7B -$GPGSV,3,2,11,12,61,241,33,30,27,244,20,14,28,312,28,26,58,222,36*76 -$GPGSV,3,3,11,04,07,095,19,09,76,108,36,27,60,113,36*4F -$GPGGA,145058.0,5112.923965,N,00646.612636,E,1,07,2.4,97.0,M,,,,*3A -$GPRMC,145058.0,A,5112.923965,N,00646.612636,E,3.2,172.5,070709,,,A*6D -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.2,2.4,3.4*3E -$GPVTG,172.5,T,,M,3.2,N,5.9,K*6C -$GPGSV,3,1,11,22,14,274,22,18,06,243,,17,24,045,32,15,11,168,*7E -$GPGSV,3,2,11,12,61,241,33,30,27,244,21,14,28,312,24,26,58,222,35*78 -$GPGSV,3,3,11,04,07,095,19,09,76,108,36,27,60,113,34*4D -$GPGGA,145059.0,5112.923329,N,00646.612409,E,1,07,2.5,96.5,M,,,,*32 -$GPRMC,145059.0,A,5112.923329,N,00646.612409,E,,,070709,,,A*60 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.2,2.5,3.3*38 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,21,18,06,243,,17,24,045,32,15,11,168,*7D -$GPGSV,3,2,11,12,61,241,34,30,27,244,24,14,28,312,21,26,58,222,37*7D -$GPGSV,3,3,11,04,07,095,19,09,76,108,36,27,60,113,33*4A -$GPGGA,145100.0,5112.922942,N,00646.611987,E,1,07,2.7,96.0,M,,,,*36 -$GPRMC,145100.0,A,5112.922942,N,00646.611987,E,,,070709,,,A*63 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.2,2.7,3.2*3B -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,21,18,06,243,,17,24,045,29,15,11,168,*77 -$GPGSV,3,2,11,12,61,241,35,30,27,244,26,14,28,312,21,26,58,222,37*7E -$GPGSV,3,3,11,04,07,095,19,09,76,108,35,27,60,113,32*48 -$GPGGA,145101.0,5112.922675,N,00646.611559,E,1,07,2.9,96.0,M,,,,*3D -$GPRMC,145101.0,A,5112.922675,N,00646.611559,E,,,070709,,,A*66 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.3,2.9,3.1*37 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,23,18,06,243,,17,24,045,27,15,11,168,*7B -$GPGSV,3,2,11,12,61,241,34,30,27,244,25,14,28,312,24,26,58,222,38*76 -$GPGSV,3,3,11,04,07,095,19,09,76,108,36,27,60,113,31*48 -$GPGGA,145102.0,5112.922152,N,00646.611222,E,1,07,2.6,95.5,M,,,,*3E -$GPRMC,145102.0,A,5112.922152,N,00646.611222,E,1.1,172.3,070709,,,A*6B -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.4,2.6,3.5*3B -$GPVTG,172.3,T,,M,1.1,N,2.1,K*64 -$GPGSV,3,1,11,22,14,274,21,18,06,243,,17,24,045,24,15,11,168,*7A -$GPGSV,3,2,11,12,61,241,34,30,27,244,22,14,28,312,20,26,58,222,39*74 -$GPGSV,3,3,11,04,07,095,19,09,76,108,36,27,60,113,30*49 -$GPGGA,145103.0,5112.921956,N,00646.611011,E,1,07,3.0,95.5,M,,,,*35 -$GPRMC,145103.0,A,5112.921956,N,00646.611011,E,,,070709,,,A*60 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,5.1,3.0,4.2*38 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,21,18,06,243,,17,24,045,32,15,11,168,*7D -$GPGSV,3,2,11,12,61,241,34,30,27,244,28,14,28,312,28,26,58,222,39*76 -$GPGSV,3,3,11,04,07,095,19,09,76,108,36,27,60,113,31*48 -$GPGGA,145104.0,5112.921758,N,00646.610775,E,1,07,2.5,97.0,M,,,,*35 -$GPRMC,145104.0,A,5112.921758,N,00646.610775,E,,,070709,,,A*63 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.9,2.5,3.0*37 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,21,18,06,243,,17,24,045,32,15,11,168,*7D -$GPGSV,3,2,11,12,61,241,33,30,27,244,29,14,28,312,29,26,58,222,39*71 -$GPGSV,3,3,11,04,07,095,19,09,76,108,35,27,60,113,31*4B -$GPGGA,145105.0,5112.921486,N,00646.610508,E,1,07,2.5,98.5,M,,,,*36 -$GPRMC,145105.0,A,5112.921486,N,00646.610508,E,,,070709,,,A*6A -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.0,2.5,3.0*39 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,21,18,06,243,,17,24,045,33,15,11,168,*7C -$GPGSV,3,2,11,12,61,241,34,30,27,244,30,14,28,312,29,26,58,220,40*72 -$GPGSV,3,3,11,04,07,095,19,09,76,108,36,27,60,113,31*48 -$GPGGA,145106.0,5112.921144,N,00646.610186,E,1,07,2.5,99.5,M,,,,*3D -$GPRMC,145106.0,A,5112.921144,N,00646.610186,E,,,070709,,,A*60 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.0,2.5,3.1*38 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,21,18,06,243,,17,24,045,33,15,11,168,*7C -$GPGSV,3,2,11,12,61,241,35,30,27,244,30,14,28,312,29,26,58,220,39*7D -$GPGSV,3,3,11,04,07,095,19,09,76,108,37,27,60,113,32*4A -$GPGGA,145107.0,5112.920868,N,00646.609945,E,1,07,2.5,101.0,M,,,,*00 -$GPRMC,145107.0,A,5112.920868,N,00646.609945,E,,,070709,,,A*68 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.0,2.5,3.1*38 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,21,18,06,243,,17,24,045,33,15,11,168,*7C -$GPGSV,3,2,11,12,61,241,34,30,27,244,30,14,28,312,30,26,58,220,39*74 -$GPGSV,3,3,11,04,07,095,19,09,76,108,35,27,60,113,30*4A -$GPGGA,145108.0,5112.920659,N,00646.609955,E,1,07,2.5,102.0,M,,,,*01 -$GPRMC,145108.0,A,5112.920659,N,00646.609955,E,,,070709,,,A*6A -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.0,2.5,3.1*38 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,25,18,06,243,,17,24,045,32,15,11,168,*79 -$GPGSV,3,2,11,12,61,241,34,30,27,244,30,14,28,312,29,26,58,220,39*7C -$GPGSV,3,3,11,04,07,095,19,09,76,108,35,27,60,113,31*4B -$GPGGA,145109.0,5112.920372,N,00646.609895,E,1,07,2.4,102.5,M,,,,*05 -$GPRMC,145109.0,A,5112.920372,N,00646.609895,E,,,070709,,,A*6A -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.9,2.4,3.1*37 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,24,18,06,243,,17,24,045,31,15,11,168,*7B -$GPGSV,3,2,11,12,61,241,34,30,27,244,30,14,28,312,28,26,58,220,39*7D -$GPGSV,3,3,11,04,07,095,19,09,76,108,35,27,60,113,31*4B -$GPGGA,145110.0,5112.920128,N,00646.609764,E,1,07,2.5,103.5,M,,,,*01 -$GPRMC,145110.0,A,5112.920128,N,00646.609764,E,,,070709,,,A*6E -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.0,2.5,3.1*38 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,26,18,06,243,,17,24,045,32,15,11,168,*7A -$GPGSV,3,2,11,12,61,241,34,30,27,244,30,14,28,312,28,26,58,220,39*7D -$GPGSV,3,3,11,04,07,095,19,09,76,108,36,27,60,113,31*48 -$GPGGA,145111.0,5112.919872,N,00646.609663,E,1,07,2.5,104.0,M,,,,*08 -$GPRMC,145111.0,A,5112.919872,N,00646.609663,E,,,070709,,,A*65 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.0,2.5,3.1*38 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,29,18,06,243,,17,24,045,32,15,11,168,*75 -$GPGSV,3,2,11,12,61,241,34,30,27,244,30,14,28,312,29,26,58,220,40*72 -$GPGSV,3,3,11,04,07,095,19,09,76,108,36,27,60,113,30*49 -$GPGGA,145112.0,5112.919537,N,00646.609618,E,1,07,2.5,104.5,M,,,,*0E -$GPRMC,145112.0,A,5112.919537,N,00646.609618,E,,,070709,,,A*66 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.0,2.5,3.1*38 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,28,18,06,243,,17,24,045,31,15,11,168,*77 -$GPGSV,3,2,11,12,61,241,34,30,27,244,30,14,28,312,30,26,58,220,40*7A -$GPGSV,3,3,11,04,07,095,19,09,76,108,36,27,60,113,30*49 -$GPGGA,145113.0,5112.919298,N,00646.609764,E,1,07,2.4,105.5,M,,,,*07 -$GPRMC,145113.0,A,5112.919298,N,00646.609764,E,,,070709,,,A*6F -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.0,2.4,3.2*3A -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,28,18,06,243,,17,24,045,31,15,11,168,*77 -$GPGSV,3,2,11,12,61,241,34,30,27,244,31,14,28,312,30,26,58,220,39*75 -$GPGSV,3,3,11,04,07,095,19,09,76,108,36,27,60,113,31*48 -$GPGGA,145114.0,5112.919238,N,00646.609789,E,1,07,2.3,106.0,M,,,,*08 -$GPRMC,145114.0,A,5112.919238,N,00646.609789,E,,,070709,,,A*61 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.9,2.3,3.1*30 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,29,18,06,243,,17,24,045,31,15,11,168,*76 -$GPGSV,3,2,11,12,61,241,35,30,27,244,31,14,28,312,30,26,58,220,39*74 -$GPGSV,3,3,11,04,07,095,19,09,76,108,36,27,60,113,30*49 -$GPGGA,145115.0,5112.919220,N,00646.609824,E,1,07,2.3,106.0,M,,,,*08 -$GPRMC,145115.0,A,5112.919220,N,00646.609824,E,,,070709,,,A*61 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.9,2.3,3.1*30 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,29,18,06,243,,17,24,045,31,15,11,168,*76 -$GPGSV,3,2,11,12,61,241,35,30,27,244,31,14,28,312,30,26,58,220,39*74 -$GPGSV,3,3,11,04,07,095,19,09,76,108,36,27,60,113,30*49 -$GPGGA,145116.0,5112.919223,N,00646.609849,E,1,07,2.4,106.0,M,,,,*04 -$GPRMC,145116.0,A,5112.919223,N,00646.609849,E,,,070709,,,A*6A -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.9,2.4,3.1*37 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,28,18,06,243,,17,24,045,31,15,11,168,*77 -$GPGSV,3,2,11,12,61,241,36,30,27,244,30,14,28,312,29,26,58,220,39*7E -$GPGSV,3,3,11,04,07,095,19,09,76,108,36,27,60,113,30*49 -$GPGGA,145117.0,5112.919215,N,00646.609854,E,1,07,2.4,106.0,M,,,,*0C -$GPRMC,145117.0,A,5112.919215,N,00646.609854,E,,,070709,,,A*62 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.9,2.4,3.1*37 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,30,18,06,243,,17,24,045,30,15,11,168,*7F -$GPGSV,3,2,11,12,61,241,35,30,27,244,30,14,28,312,30,26,58,220,39*75 -$GPGSV,3,3,11,04,07,095,19,09,76,108,35,27,60,113,29*42 -$GPGGA,145118.0,5112.919210,N,00646.609860,E,1,07,2.3,106.0,M,,,,*06 -$GPRMC,145118.0,A,5112.919210,N,00646.609860,E,,,070709,,,A*6F -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.9,2.3,3.1*30 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,30,18,06,243,,17,24,045,31,15,11,168,*7E -$GPGSV,3,2,11,12,61,241,36,30,27,244,30,14,28,312,29,26,58,220,40*70 -$GPGSV,3,3,11,04,07,095,19,09,76,108,36,27,60,113,30*49 -$GPGGA,145119.0,5112.919208,N,00646.609865,E,1,07,2.5,106.0,M,,,,*0D -$GPRMC,145119.0,A,5112.919208,N,00646.609865,E,,,070709,,,A*62 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.0,2.5,3.1*38 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,26,18,06,243,,17,24,045,29,15,11,168,*70 -$GPGSV,3,2,11,12,61,241,34,30,27,244,31,14,28,312,26,26,58,220,39*72 -$GPGSV,3,3,11,04,07,095,19,09,76,108,36,27,60,113,29*41 -$GPGGA,145120.0,5112.919205,N,00646.609865,E,1,07,2.7,106.0,M,,,,*08 -$GPRMC,145120.0,A,5112.919205,N,00646.609865,E,,,070709,,,A*65 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.2,2.7,3.2*3B -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,21,18,06,243,,17,24,045,25,15,11,168,*7B -$GPGSV,3,2,11,12,61,241,34,30,27,244,24,14,28,312,22,26,58,220,39*72 -$GPGSV,3,3,11,04,07,095,19,09,76,108,36,27,60,113,27*4F -$GPGGA,145121.0,5112.919205,N,00646.609865,E,1,07,3.1,106.0,M,,,,*0E -$GPRMC,145121.0,A,5112.919205,N,00646.609865,E,,,070709,,,A*64 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,5.1,3.1,4.0*3B -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,22,18,06,243,,17,24,045,27,15,11,168,*7A -$GPGSV,3,2,11,12,61,241,35,30,27,244,20,14,28,312,22,26,58,220,34*7A -$GPGSV,3,3,11,04,07,095,19,09,76,108,34,27,60,113,24*4E -$GPGGA,145122.0,5112.918811,N,00646.609507,E,1,07,2.9,106.0,M,,,,*03 -$GPRMC,145122.0,A,5112.918811,N,00646.609507,E,2.0,228.1,070709,,,A*6B -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.5,2.9,3.4*34 -$GPVTG,228.1,T,,M,2.0,N,3.6,K*6E -$GPGSV,3,1,11,22,14,274,22,18,06,243,,17,24,045,33,15,11,168,*7F -$GPGSV,3,2,11,12,61,241,35,30,27,244,25,14,28,312,20,26,58,220,36*7F -$GPGSV,3,3,11,04,07,095,19,09,76,108,33,27,60,113,24*49 -$GPGGA,145123.0,5112.918700,N,00646.608959,E,1,07,3.0,106.0,M,,,,*03 -$GPRMC,145123.0,A,5112.918700,N,00646.608959,E,1.5,248.6,070709,,,A*64 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.4,3.0,3.1*38 -$GPVTG,248.6,T,,M,1.5,N,2.7,K*69 -$GPGSV,3,1,11,22,14,274,24,18,06,243,,17,24,045,33,15,11,168,*79 -$GPGSV,3,2,11,12,61,241,35,30,27,244,29,14,28,312,21,26,58,220,31*75 -$GPGSV,3,3,11,04,07,095,19,09,76,108,31,27,60,113,24*4B -$GPGGA,145124.0,5112.918650,N,00646.608612,E,1,07,3.1,106.5,M,,,,*04 -$GPRMC,145124.0,A,5112.918650,N,00646.608612,E,,,070709,,,A*6B -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.0,3.1,2.4*39 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,24,18,06,243,,17,24,045,33,15,11,168,*79 -$GPGSV,3,2,11,12,61,241,35,30,27,244,30,14,28,312,21,26,58,220,35*79 -$GPGSV,3,3,11,04,07,095,19,09,76,109,31,27,60,113,21*4F -$GPGGA,145125.0,5112.918783,N,00646.608250,E,1,07,3.1,107.0,M,,,,*0C -$GPRMC,145125.0,A,5112.918783,N,00646.608250,E,,,070709,,,A*67 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.9,3.1,2.4*37 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,24,18,06,243,,17,24,045,32,15,11,168,*78 -$GPGSV,3,2,11,12,61,241,35,30,27,244,30,14,28,312,21,26,58,220,33*7F -$GPGSV,3,3,11,04,07,095,19,09,76,109,30,27,60,113,20*4F -$GPGGA,145126.0,5112.918796,N,00646.607979,E,1,07,3.1,107.5,M,,,,*01 -$GPRMC,145126.0,A,5112.918796,N,00646.607979,E,,,070709,,,A*6F -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.9,3.1,2.5*36 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,24,18,06,243,,17,24,045,31,15,11,168,*7B -$GPGSV,3,2,11,12,61,241,33,30,27,244,24,14,28,312,21,26,58,220,34*7B -$GPGSV,3,3,11,04,07,095,19,09,76,109,31,27,60,113,20*4E -$GPGGA,145127.0,5112.918675,N,00646.607632,E,1,07,3.1,107.5,M,,,,*0C -$GPRMC,145127.0,A,5112.918675,N,00646.607632,E,,,070709,,,A*62 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.4,3.1,3.1*39 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,24,18,06,243,,17,24,045,31,15,11,168,*7B -$GPGSV,3,2,11,12,61,241,35,30,27,244,24,14,28,312,23,26,58,220,33*78 -$GPGSV,3,3,11,04,07,095,19,09,76,109,34,27,60,113,22*49 -$GPGGA,145128.0,5112.918730,N,00646.607003,E,1,07,2.7,108.0,M,,,,*0A -$GPRMC,145128.0,A,5112.918730,N,00646.607003,E,1.3,249.1,070709,,,A*65 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.1,2.7,3.0*3A -$GPVTG,249.1,T,,M,1.3,N,2.5,K*6B -$GPGSV,3,1,11,22,14,274,25,18,06,243,,17,24,045,27,15,11,168,*7D -$GPGSV,3,2,11,12,61,241,37,30,27,244,23,14,28,312,25,26,58,220,35*7D -$GPGSV,3,3,11,04,07,095,19,09,76,109,34,27,60,113,21*4A -$GPGGA,145129.0,5112.918200,N,00646.606892,E,1,07,2.4,107.5,M,,,,*05 -$GPRMC,145129.0,A,5112.918200,N,00646.606892,E,1.0,248.8,070709,,,A*68 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.2,2.4,3.4*3E -$GPVTG,248.8,T,,M,1.0,N,1.8,K*6E -$GPGSV,3,1,11,22,14,274,25,18,06,243,,17,24,045,29,15,11,168,*73 -$GPGSV,3,2,11,12,61,241,35,30,27,244,23,14,28,312,24,26,58,220,36*7D -$GPGSV,3,3,11,04,07,095,19,09,76,109,34,27,60,113,25*4E -$GPGGA,145130.0,5112.917790,N,00646.606867,E,1,07,2.7,107.0,M,,,,*02 -$GPRMC,145130.0,A,5112.917790,N,00646.606867,E,,,070709,,,A*6E -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.3,2.7,3.3*3B -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,26,18,06,243,,17,24,045,27,15,11,168,*7E -$GPGSV,3,2,11,12,61,241,28,30,27,244,27,14,28,312,24,26,58,220,35*76 -$GPGSV,3,3,11,04,07,095,19,09,76,109,34,27,60,113,29*42 -$GPGGA,145131.0,5112.917659,N,00646.606726,E,1,07,2.4,107.0,M,,,,*0E -$GPRMC,145131.0,A,5112.917659,N,00646.606726,E,,,070709,,,A*61 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.8,2.4,2.9*3F -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,30,18,06,243,,17,24,045,28,15,11,168,*76 -$GPGSV,3,2,11,12,61,241,24,30,27,244,32,14,28,312,24,26,58,220,31*7A -$GPGSV,3,3,11,04,07,095,19,09,76,109,35,27,60,113,31*4A -$GPGGA,145132.0,5112.917659,N,00646.606922,E,1,07,2.4,107.0,M,,,,*07 -$GPRMC,145132.0,A,5112.917659,N,00646.606922,E,,,070709,,,A*68 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.4,2.4,2.4*3E -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,31,18,06,243,,17,24,045,30,15,11,168,*7E -$GPGSV,3,2,11,12,61,241,22,30,27,244,32,14,28,312,24,26,58,220,31*7C -$GPGSV,3,3,11,04,07,095,19,09,76,109,35,27,60,113,33*48 -$GPGGA,145133.0,5112.917634,N,00646.607083,E,1,07,2.4,107.5,M,,,,*0B -$GPRMC,145133.0,A,5112.917634,N,00646.607083,E,,,070709,,,A*61 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.4,2.4,2.4*3E -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,30,18,06,243,,17,24,045,29,15,11,168,*77 -$GPGSV,3,2,11,12,61,241,26,30,27,244,27,14,28,312,22,26,58,220,30*7B -$GPGSV,3,3,11,04,07,095,19,09,76,109,35,27,60,113,31*4A -$GPGGA,145134.0,5112.917634,N,00646.607083,E,1,07,2.4,107.5,M,,,,*0C -$GPRMC,145134.0,A,5112.917634,N,00646.607083,E,,,070709,,,A*66 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.6,2.4,2.6*3E -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,25,18,06,243,,17,24,045,31,15,11,168,*7A -$GPGSV,3,2,11,12,61,241,31,30,27,244,26,14,28,312,23,26,58,220,34*79 -$GPGSV,3,3,11,04,07,095,19,09,76,109,34,27,60,113,25*4E -$GPGGA,145135.0,5112.917473,N,00646.607330,E,1,07,3.0,107.5,M,,,,*02 -$GPRMC,145135.0,A,5112.917473,N,00646.607330,E,,,070709,,,A*6D -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.1,3.0,2.8*35 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,21,18,06,243,,17,24,045,29,15,11,168,*77 -$GPGSV,3,2,11,12,61,241,37,30,27,244,27,14,28,312,26,26,58,220,32*7D -$GPGSV,3,3,11,04,07,095,19,09,76,109,34,27,60,113,21*4A -$GPGGA,145136.0,5112.917561,N,00646.607395,E,1,07,2.2,107.0,M,,,,*0A -$GPRMC,145136.0,A,5112.917561,N,00646.607395,E,,,070709,,,A*63 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.5,2.2,2.7*3A -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,27,18,06,243,,17,24,045,30,15,11,168,*79 -$GPGSV,3,2,11,12,61,241,36,30,27,244,26,14,28,312,27,26,58,220,34*7A -$GPGSV,3,3,11,04,07,095,19,09,76,109,34,27,60,113,21*4A -$GPGGA,145137.0,5112.917415,N,00646.607566,E,1,07,2.3,107.0,M,,,,*02 -$GPRMC,145137.0,A,5112.917415,N,00646.607566,E,,,070709,,,A*6A -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.7,2.3,2.9*37 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,24,18,06,243,,17,24,045,29,15,11,168,*72 -$GPGSV,3,2,11,12,61,241,35,30,27,244,24,14,28,312,24,26,58,220,31*7D -$GPGSV,3,3,11,04,07,095,19,09,76,109,34,27,60,113,21*4A -$GPGGA,145138.0,5112.917392,N,00646.607466,E,1,07,2.7,106.5,M,,,,*04 -$GPRMC,145138.0,A,5112.917392,N,00646.607466,E,,,070709,,,A*6C -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.1,2.7,3.1*3B -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,24,18,06,243,,17,24,045,30,15,11,168,*7A -$GPGSV,3,2,11,12,61,241,35,30,27,244,25,14,28,312,23,26,58,220,31*7B -$GPGSV,3,3,11,04,07,095,19,09,76,109,35,27,60,113,25*4F -$GPGGA,145139.0,5112.917636,N,00646.607823,E,1,07,3.0,106.0,M,,,,*00 -$GPRMC,145139.0,A,5112.917636,N,00646.607823,E,1.7,42.1,070709,,,A*5A -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.2,3.0,3.0*3F -$GPVTG,42.1,T,,M,1.7,N,3.1,K*53 -$GPGSV,3,1,11,22,14,274,22,18,06,243,,17,24,045,33,15,11,168,*7F -$GPGSV,3,2,11,12,61,241,35,30,27,244,23,14,28,312,22,26,58,220,30*7D -$GPGSV,3,3,11,04,07,095,19,09,76,109,33,27,60,113,30*4D -$GPGGA,145140.0,5112.918366,N,00646.608763,E,1,07,2.9,106.0,M,,,,*0D -$GPRMC,145140.0,A,5112.918366,N,00646.608763,E,3.9,44.4,070709,,,A*50 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.4,2.9,3.3*32 -$GPVTG,44.4,T,,M,3.9,N,7.1,K*58 -$GPGSV,3,1,11,22,14,274,25,18,06,243,,17,24,045,34,15,11,168,*7F -$GPGSV,3,2,11,12,61,241,34,30,27,244,24,14,28,312,21,26,58,220,36*7E -$GPGSV,3,3,11,04,07,095,19,09,76,109,33,27,60,113,34*49 -$GPGGA,145141.0,5112.919698,N,00646.610015,E,1,07,2.9,106.0,M,,,,*06 -$GPRMC,145141.0,A,5112.919698,N,00646.610015,E,5.5,39.3,070709,,,A*5C -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.5,2.9,3.5*35 -$GPVTG,39.3,T,,M,5.5,N,10.1,K*69 -$GPGSV,3,1,11,22,14,274,25,18,06,243,,17,24,045,34,15,11,168,*7F -$GPGSV,3,2,11,12,61,241,37,30,27,244,21,14,28,312,22,26,58,220,37*7A -$GPGSV,3,3,11,04,07,095,19,09,76,109,34,27,60,113,34*4E -$GPGGA,145142.0,5112.921428,N,00646.611338,E,1,07,2.8,105.5,M,,,,*0D -$GPRMC,145142.0,A,5112.921428,N,00646.611338,E,6.8,27.8,070709,,,A*5A -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.7,2.8,3.7*34 -$GPVTG,27.8,T,,M,6.8,N,12.6,K*66 -$GPGSV,3,1,11,22,14,274,23,18,06,243,,17,24,045,34,15,11,168,*79 -$GPGSV,3,2,11,12,61,241,35,30,27,246,21,14,28,312,23,26,58,220,36*7A -$GPGSV,3,3,11,04,07,095,19,09,76,109,33,27,60,113,33*4E -$GPGGA,145143.0,5112.923007,N,00646.612671,E,1,07,2.8,105.0,M,,,,*09 -$GPRMC,145143.0,A,5112.923007,N,00646.612671,E,6.3,21.1,070709,,,A*5F -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.6,2.8,3.7*35 -$GPVTG,21.1,T,,M,6.3,N,11.6,K*61 -$GPGSV,3,1,11,22,14,274,22,18,06,243,,17,24,045,31,15,11,168,*7D -$GPGSV,3,2,11,12,61,241,32,30,27,246,22,14,28,312,22,26,58,220,37*7E -$GPGSV,3,3,11,04,07,095,19,09,76,109,33,27,60,113,31*4C -$GPGGA,145144.0,5112.924765,N,00646.613385,E,1,07,2.6,105.0,M,,,,*0B -$GPRMC,145144.0,A,5112.924765,N,00646.613385,E,6.2,12.8,070709,,,A*5B -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.3,2.6,3.4*3D -$GPVTG,12.8,T,,M,6.2,N,11.4,K*6B -$GPGSV,3,1,11,22,14,274,22,18,06,243,,17,24,045,28,15,11,168,*75 -$GPGSV,3,2,11,12,61,241,32,30,27,246,21,14,28,312,25,26,58,220,36*7B -$GPGSV,3,3,11,04,07,095,19,09,76,109,33,27,60,113,31*4C -$GPGGA,145145.0,5112.926201,N,00646.613893,E,1,07,2.4,105.0,M,,,,*01 -$GPRMC,145145.0,A,5112.926201,N,00646.613893,E,5.4,7.6,070709,,,A*6C -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.2,2.4,3.5*3F -$GPVTG,7.6,T,,M,5.4,N,9.9,K*60 -$GPGSV,3,1,11,22,14,274,24,18,06,243,,17,24,045,28,15,11,168,*73 -$GPGSV,3,2,11,12,61,241,31,30,27,246,21,14,28,312,30,26,58,220,36*7C -$GPGSV,3,3,11,04,07,095,19,09,76,109,33,27,60,113,32*4F -$GPGGA,145146.0,5112.927458,N,00646.613918,E,1,07,2.1,104.5,M,,,,*0A -$GPRMC,145146.0,A,5112.927458,N,00646.613918,E,3.9,1.7,070709,,,A*6A -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.3,2.1,3.7*39 -$GPVTG,1.7,T,,M,3.9,N,7.2,K*69 -$GPGSV,3,1,11,22,14,274,24,18,06,243,,17,24,045,28,15,11,168,*73 -$GPGSV,3,2,11,12,61,241,30,30,27,246,23,14,28,312,31,26,58,220,35*7D -$GPGSV,3,3,11,04,07,095,19,09,76,109,31,27,60,113,31*4E -$GPGGA,145147.0,5112.928484,N,00646.613672,E,1,07,2.0,105.0,M,,,,*03 -$GPRMC,145147.0,A,5112.928484,N,00646.613672,E,2.4,2.8,070709,,,A*66 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.4,2.0,3.8*30 -$GPVTG,2.8,T,,M,2.4,N,4.5,K*6D -$GPGSV,3,1,11,22,14,274,23,18,06,243,,17,24,045,29,15,11,168,*75 -$GPGSV,3,2,11,12,61,241,31,30,27,246,26,14,28,312,32,26,58,220,36*79 -$GPGSV,3,3,11,04,07,095,19,09,76,109,35,27,60,113,31*4A -$GPGGA,145148.0,5112.929078,N,00646.613340,E,1,07,1.9,105.5,M,,,,*01 -$GPRMC,145148.0,A,5112.929078,N,00646.613340,E,,,070709,,,A*67 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.9,1.9,3.3*3B -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,23,18,06,243,,17,24,045,25,15,11,168,*79 -$GPGSV,3,2,11,12,61,243,33,30,27,246,25,14,28,312,33,26,58,220,35*78 -$GPGSV,3,3,11,04,07,095,19,09,76,109,33,27,60,113,32*4F -$GPGGA,145149.0,5112.929477,N,00646.613113,E,1,07,2.0,105.5,M,,,,*05 -$GPRMC,145149.0,A,5112.929477,N,00646.613113,E,,,070709,,,A*69 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.4,2.0,3.9*31 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,24,18,06,243,,17,23,045,25,15,11,168,*79 -$GPGSV,3,2,11,12,61,243,32,30,27,246,25,14,28,312,35,26,58,220,34*7E -$GPGSV,3,3,11,04,07,095,19,09,75,109,33,27,60,113,33*4D -$GPGGA,145150.0,5112.930111,N,00646.612540,E,1,07,2.0,106.5,M,,,,*00 -$GPRMC,145150.0,A,5112.930111,N,00646.612540,E,,,070709,,,A*6F -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.3,2.0,3.7*38 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,27,18,06,243,,17,23,045,26,15,11,168,*79 -$GPGSV,3,2,11,12,61,243,33,30,27,246,20,14,28,312,36,26,58,220,35*78 -$GPGSV,3,3,11,04,07,095,19,09,75,109,35,27,60,113,33*4B -$GPGGA,145151.0,5112.930104,N,00646.612500,E,1,07,2.1,106.0,M,,,,*05 -$GPRMC,145151.0,A,5112.930104,N,00646.612500,E,,,070709,,,A*6E -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.7,2.1,4.2*3F -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,27,18,06,243,,17,23,045,26,15,11,168,*79 -$GPGSV,3,2,11,12,61,243,33,30,27,246,23,14,28,312,36,26,58,220,35*7B -$GPGSV,3,3,11,04,07,095,19,09,75,109,35,27,60,113,32*4A -$GPGGA,145152.0,5112.930232,N,00646.612465,E,1,07,2.1,106.0,M,,,,*02 -$GPRMC,145152.0,A,5112.930232,N,00646.612465,E,,,070709,,,A*69 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.5,2.1,4.0*3F -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,27,18,06,243,,17,23,045,25,15,11,168,*7A -$GPGSV,3,2,11,12,61,243,32,30,27,246,21,14,28,312,35,26,58,220,35*7B -$GPGSV,3,3,11,04,07,095,19,09,75,109,35,27,60,113,33*4B -$GPGGA,145153.0,5112.930292,N,00646.612485,E,1,07,2.2,106.0,M,,,,*04 -$GPRMC,145153.0,A,5112.930292,N,00646.612485,E,,,070709,,,A*6C -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.8,2.2,4.3*32 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,28,18,06,243,,17,23,045,25,15,11,168,*75 -$GPGSV,3,2,11,12,61,243,33,30,27,246,21,14,28,312,36,26,58,220,34*78 -$GPGSV,3,3,11,04,07,095,19,09,75,109,34,27,60,113,32*4B -$GPGGA,145154.0,5112.930461,N,00646.612439,E,1,07,2.2,106.5,M,,,,*0B -$GPRMC,145154.0,A,5112.930461,N,00646.612439,E,,,070709,,,A*66 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.9,2.2,4.4*34 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,26,18,06,243,,17,23,045,24,15,11,168,*7A -$GPGSV,3,2,11,12,61,243,33,30,27,246,21,14,28,312,35,26,58,220,34*7B -$GPGSV,3,3,11,04,07,095,19,09,75,109,34,27,60,113,33*4A -$GPGGA,145155.0,5112.930624,N,00646.612253,E,1,07,2.2,106.0,M,,,,*06 -$GPRMC,145155.0,A,5112.930624,N,00646.612253,E,,,070709,,,A*6E -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,5.0,2.2,4.4*3C -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,14,274,26,18,06,243,,17,23,045,24,15,11,168,*7A -$GPGSV,3,2,11,12,61,243,32,30,27,246,21,14,28,312,34,26,58,220,34*7B -$GPGSV,3,3,11,04,07,095,19,09,75,109,34,27,60,113,33*4A -$GPGGA,145156.0,5112.930735,N,00646.612198,E,1,07,2.2,106.0,M,,,,*00 -$GPRMC,145156.0,A,5112.930735,N,00646.612198,E,,,070709,,,A*68 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,5.0,2.2,4.5*3D -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,13,274,26,18,06,243,,17,23,045,23,15,11,168,*7A -$GPGSV,3,2,11,12,61,243,32,30,27,246,21,14,28,312,35,26,58,220,34*7A -$GPGSV,3,3,11,04,07,095,19,09,75,109,35,27,60,113,32*4A -$GPGGA,145157.0,5112.930803,N,00646.612148,E,1,07,2.7,106.0,M,,,,*03 -$GPRMC,145157.0,A,5112.930803,N,00646.612148,E,,,070709,,,A*6E -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,6.2,2.7,5.6*3B -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,13,272,25,18,06,243,,17,23,045,23,15,11,168,*7F -$GPGSV,3,2,11,12,61,243,32,30,27,246,21,14,28,312,36,26,58,220,34*79 -$GPGSV,3,3,11,04,07,095,19,09,75,109,35,27,60,113,33*4B -$GPGGA,145158.0,5112.930906,N,00646.612082,E,1,07,2.6,105.5,M,,,,*08 -$GPRMC,145158.0,A,5112.930906,N,00646.612082,E,,,070709,,,A*62 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,6.0,2.6,5.4*3A -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,13,272,26,18,06,243,,17,23,045,23,15,11,168,*7C -$GPGSV,3,2,11,12,61,243,32,30,27,246,21,14,28,312,35,26,58,220,34*7A -$GPGSV,3,3,11,04,07,095,19,09,75,109,35,27,60,113,34*4C -$GPGGA,145159.0,5112.930908,N,00646.612037,E,1,07,2.6,105.5,M,,,,*09 -$GPRMC,145159.0,A,5112.930908,N,00646.612037,E,,,070709,,,A*63 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,6.0,2.6,5.4*3A -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,13,272,25,18,06,243,,17,23,045,25,15,11,168,*79 -$GPGSV,3,2,11,12,61,243,32,30,27,246,21,14,28,312,35,26,58,220,34*7A -$GPGSV,3,3,11,04,07,095,,09,75,109,35,27,60,113,34*44 -$GPGGA,145200.0,5112.930933,N,00646.612007,E,1,07,2.6,105.5,M,,,,*0D -$GPRMC,145200.0,A,5112.930933,N,00646.612007,E,,,070709,,,A*67 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,5.9,2.6,5.2*36 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,13,272,24,18,06,243,,17,23,045,24,15,11,168,*79 -$GPGSV,3,2,11,12,61,243,31,30,27,246,21,14,28,312,35,26,58,220,34*79 -$GPGSV,3,3,11,04,07,095,,09,75,109,35,27,60,113,34*44 -$GPGGA,145201.0,5112.930953,N,00646.611992,E,1,06,2.6,105.5,M,,,,*0D -$GPRMC,145201.0,A,5112.930953,N,00646.611992,E,,,070709,,,A*66 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.8,2.6,5.2*34 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,13,272,24,18,06,243,,17,23,045,26,15,11,168,*7B -$GPGSV,3,2,11,12,61,243,31,30,27,246,21,14,28,312,35,26,58,220,34*79 -$GPGSV,3,3,11,04,07,095,,09,75,109,34,27,60,113,34*45 -$GPGGA,145202.0,5112.930958,N,00646.611987,E,1,06,2.5,105.0,M,,,,*07 -$GPRMC,145202.0,A,5112.930958,N,00646.611987,E,,,070709,,,A*6A -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.5,2.5,4.9*30 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,13,272,26,18,06,243,,17,23,045,27,15,11,168,*78 -$GPGSV,3,2,11,12,61,243,31,30,27,246,21,14,28,312,35,26,58,220,35*78 -$GPGSV,3,3,11,04,07,095,,09,75,109,34,27,60,113,34*45 -$GPGGA,145203.0,5112.930971,N,00646.611972,E,1,06,2.5,105.5,M,,,,*02 -$GPRMC,145203.0,A,5112.930971,N,00646.611972,E,,,070709,,,A*6A -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.7,2.5,5.1*3B -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,13,272,25,18,06,243,19,17,23,045,28,15,11,168,*7C -$GPGSV,3,2,11,12,61,243,32,30,27,246,21,14,28,312,35,26,58,220,33*7D -$GPGSV,3,3,11,04,07,095,,09,75,109,34,27,60,113,34*45 -$GPGGA,145204.0,5112.930969,N,00646.611977,E,1,06,2.6,105.5,M,,,,*0A -$GPRMC,145204.0,A,5112.930969,N,00646.611977,E,,,070709,,,A*61 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.7,2.6,5.1*38 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,13,272,28,18,06,243,19,17,23,045,27,15,11,168,*7E -$GPGSV,3,2,11,12,61,243,31,30,27,246,21,14,28,312,35,26,58,220,33*7E -$GPGSV,3,3,11,04,07,095,,09,75,109,34,27,60,113,35*44 -$GPGGA,145205.0,5112.930966,N,00646.611977,E,1,06,2.5,105.0,M,,,,*02 -$GPRMC,145205.0,A,5112.930966,N,00646.611977,E,,,070709,,,A*6F -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.7,2.5,5.1*3B -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,13,272,27,18,06,243,19,17,23,045,28,15,11,168,*7E -$GPGSV,3,2,11,12,61,243,32,30,27,246,25,14,28,312,35,26,58,220,34*7E -$GPGSV,3,3,11,04,07,095,,09,75,109,33,27,59,113,34*48 -$GPGGA,145206.0,5112.930971,N,00646.611972,E,1,06,2.5,105.5,M,,,,*07 -$GPRMC,145206.0,A,5112.930971,N,00646.611972,E,,,070709,,,A*6F -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.7,2.5,5.1*3B -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,13,272,28,18,06,243,19,17,23,045,29,15,11,168,*70 -$GPGSV,3,2,11,12,61,243,31,30,27,246,28,14,28,312,35,26,58,220,34*70 -$GPGSV,3,3,11,04,07,095,,09,75,109,34,27,59,113,35*4E -$GPGGA,145207.0,5112.930969,N,00646.611972,E,1,06,2.6,105.0,M,,,,*09 -$GPRMC,145207.0,A,5112.930969,N,00646.611972,E,,,070709,,,A*67 -$GPGSA,A,3,09,12,14,17,26,27,,,,,,,5.8,2.6,5.1*37 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,13,272,26,18,06,243,19,17,23,045,30,15,11,168,*76 -$GPGSV,3,2,11,12,61,243,31,30,27,246,26,14,28,312,35,26,58,220,33*79 -$GPGSV,3,3,11,04,07,095,,09,75,109,33,27,59,113,33*4F -$GPGGA,145208.0,5112.930974,N,00646.611972,E,1,07,1.9,105.5,M,,,,*02 -$GPRMC,145208.0,A,5112.930974,N,00646.611972,E,,,070709,,,A*64 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.0,1.9,3.6*30 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,13,272,24,18,06,243,19,17,23,045,27,15,11,168,*72 -$GPGSV,3,2,11,12,61,243,30,30,27,246,25,14,28,312,32,26,58,220,34*7B -$GPGSV,3,3,11,04,07,095,,09,75,109,32,27,59,113,32*4F -$GPGGA,145209.0,5112.930974,N,00646.611972,E,1,07,1.9,105.5,M,,,,*03 -$GPRMC,145209.0,A,5112.930974,N,00646.611972,E,,,070709,,,A*65 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.1,1.9,3.5*32 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,13,272,24,18,06,243,19,17,23,045,33,15,11,168,*77 -$GPGSV,3,2,11,12,61,243,31,30,27,246,27,14,28,312,34,26,58,220,35*7F -$GPGSV,3,3,11,04,07,095,,09,75,109,32,27,59,113,32*4F -$GPGGA,145210.0,5112.931404,N,00646.611942,E,1,07,1.8,105.5,M,,,,*02 -$GPRMC,145210.0,A,5112.931404,N,00646.611942,E,1.2,2.9,070709,,,A*6D -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.7,1.8,3.2*35 -$GPVTG,2.9,T,,M,1.2,N,2.1,K*6B -$GPGSV,3,1,11,22,13,272,20,18,06,243,19,17,23,045,32,15,11,168,*72 -$GPGSV,3,2,11,12,61,243,32,30,27,246,29,14,28,312,33,26,58,220,35*75 -$GPGSV,3,3,11,04,07,095,,09,75,109,34,27,59,113,32*49 -$GPGGA,145211.0,5112.932095,N,00646.611871,E,1,07,1.7,106.5,M,,,,*01 -$GPRMC,145211.0,A,5112.932095,N,00646.611871,E,1.7,347.2,070709,,,A*6E -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.3,1.7,2.8*35 -$GPVTG,347.2,T,,M,1.7,N,3.2,K*65 -$GPGSV,3,1,11,22,13,272,20,18,06,243,19,17,23,045,30,15,11,168,*70 -$GPGSV,3,2,11,12,61,243,32,30,27,246,22,14,28,312,33,26,58,220,36*7D -$GPGSV,3,3,11,04,07,095,,09,75,109,34,27,59,113,29*43 -$GPGGA,145212.0,5112.932590,N,00646.611705,E,1,07,2.0,106.5,M,,,,*0A -$GPRMC,145212.0,A,5112.932590,N,00646.611705,E,1.8,353.5,070709,,,A*6C -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.2,2.0,3.7*39 -$GPVTG,353.5,T,,M,1.8,N,3.4,K*6E -$GPGSV,3,1,11,22,13,272,20,18,06,243,19,17,23,045,32,15,11,168,*72 -$GPGSV,3,2,11,12,61,243,31,30,27,246,21,14,28,312,34,26,58,220,36*7A -$GPGSV,3,3,11,04,07,095,,09,75,109,34,27,59,113,33*48 -$GPGGA,145213.0,5112.933136,N,00646.611464,E,1,07,2.0,107.0,M,,,,*02 -$GPRMC,145213.0,A,5112.933136,N,00646.611464,E,1.3,353.5,070709,,,A*6B -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.2,2.0,3.7*39 -$GPVTG,353.5,T,,M,1.3,N,2.4,K*64 -$GPGSV,3,1,11,22,13,272,21,18,06,243,19,17,23,045,30,15,11,168,*71 -$GPGSV,3,2,11,12,61,243,32,30,27,246,25,14,28,312,31,26,58,220,35*7B -$GPGSV,3,3,11,04,07,095,,09,75,109,34,27,59,113,32*49 -$GPGGA,145214.0,5112.933579,N,00646.611348,E,1,07,2.0,107.5,M,,,,*06 -$GPRMC,145214.0,A,5112.933579,N,00646.611348,E,1.2,353.0,070709,,,A*6E -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.9,2.0,3.4*36 -$GPVTG,353.0,T,,M,1.2,N,2.3,K*67 -$GPGSV,3,1,11,22,13,272,21,18,06,243,19,17,23,045,27,15,11,168,*77 -$GPGSV,3,2,11,12,61,243,33,30,27,246,28,14,28,312,34,26,58,220,35*72 -$GPGSV,3,3,11,04,07,095,,09,75,109,33,27,59,113,33*4F -$GPGGA,145215.0,5112.933863,N,00646.611157,E,1,07,1.8,108.0,M,,,,*0C -$GPRMC,145215.0,A,5112.933863,N,00646.611157,E,1.0,353.3,070709,,,A*64 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.7,1.8,3.2*35 -$GPVTG,353.3,T,,M,1.0,N,1.9,K*6F -$GPGSV,3,1,11,22,13,272,21,18,06,243,19,17,23,045,25,15,11,168,*75 -$GPGSV,3,2,11,12,61,243,31,30,27,246,30,14,28,312,31,26,58,220,34*7D -$GPGSV,3,3,11,04,07,095,,09,75,109,31,27,59,113,32*4C -$GPGGA,145216.0,5112.934112,N,00646.611077,E,1,07,1.8,108.0,M,,,,*04 -$GPRMC,145216.0,A,5112.934112,N,00646.611077,E,,,070709,,,A*6B -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.7,1.8,3.3*34 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,13,272,25,18,06,243,19,17,23,045,28,15,11,168,*7C -$GPGSV,3,2,11,12,61,243,33,30,27,246,28,14,28,312,32,26,58,220,36*77 -$GPGSV,3,3,11,04,07,095,,09,75,109,33,27,59,113,33*4F -$GPGGA,145217.0,5112.934434,N,00646.611046,E,1,07,1.8,109.0,M,,,,*07 -$GPRMC,145217.0,A,5112.934434,N,00646.611046,E,,,070709,,,A*69 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,3.7,1.8,3.2*35 -$GPVTG,,T,,M,0.0,N,0.0,K*4E -$GPGSV,3,1,11,22,13,272,22,18,06,243,19,17,23,045,23,15,11,168,*70 -$GPGSV,3,2,11,12,61,243,31,30,27,246,27,14,28,312,31,26,58,220,36*79 -$GPGSV,3,3,11,04,07,095,,09,75,109,33,27,59,113,32*4E -$GPGGA,145218.0,5112.934617,N,00646.611077,E,1,07,1.9,109.0,M,,,,*08 -$GPRMC,145218.0,A,5112.934617,N,00646.611077,E,,,070709,,,A*67 -$GPGSA,A,3,09,12,14,17,26,27,30,,,,,,4.2,1.9,3.7*33 -$GPVTG,,T,,M,0.0,N,0.0,K*4E +$GPGGA,054501.326,0000.0000,N,00000.0000,E,0,00,0.0,0.0,M,0.0,M,,*6F +$GPRMC,054501.326,V,0000.0000,N,00000.0000,E,0.0,0.0,150911,,,N*79 +$GPGLL,0000.0000,N,00000.0000,E,054501.326,V,N*43 +$GPGSA,A,1,,,,,,,,,,,,,,0.0,*30 +$GPVTG,0.0,T,,M,0.0,N,0.0,K,N*02 +$GPGSV,3,1,09,01,00,000,40,07,45,163,36,08,72,186,35,11,40,061,33*77 +$GPGSV,3,2,09,19,10,051,33,24,48,105,38,28,57,318,36,17,36,241,2*48 +$GPGSV,3,3,09,22,00,025,25*40 +$GPGGA,054502.326,0000.0000,N,00000.0000,E,0,00,0.0,0.0,M,0.0,M,,*6C +$GPRMC,054502.326,V,0000.0000,N,00000.0000,E,0.0,0.0,150911,,,N*7A +$GPGLL,0000.0000,N,00000.0000,E,054502.326,V,N*40 +$GPGSA,A,1,,,,,,,,,,,,,,0.0,*30 +$GPVTG,0.0,T,,M,0.0,N,0.0,K,N*02 +$GPGSV,3,1,09,01,00,000,40,07,45,163,36,08,72,186,35,11,40,061,33*77 +$GPGSV,3,2,09,19,10,051,33,24,48,105,38,28,57,318,36,17,36,241,2*48 +$GPGSV,3,3,09,22,00,025,24*41 +$GPGGA,054503.326,0000.0000,N,00000.0000,E,0,00,0.0,0.0,M,0.0,M,,*6D +$GPRMC,054503.326,V,0000.0000,N,00000.0000,E,0.0,0.0,150911,,,N*7B +$GPGLL,0000.0000,N,00000.0000,E,054503.326,V,N*41 +$GPGSA,A,1,,,,,,,,,,,,,,0.0,*30 +$GPVTG,0.0,T,,M,0.0,N,0.0,K,N*02 +$GPGSV,3,1,09,01,00,000,40,07,45,163,36,08,72,186,35,11,40,061,33*77 +$GPGSV,3,2,09,19,10,051,33,24,48,105,39,28,57,318,36,17,36,241,2*49 +$GPGSV,3,3,09,22,00,025,24*41 +$GPGGA,054504.324,3715.2199,N,12703.2972,E,1,05,1.6,37.8,M,19.9,M,,*6C +$GPRMC,054504.324,A,3715.2199,N,12703.2972,E,0.5,130.1,150911,,,A*6A +$GPGLL,3715.2199,N,12703.2972,E,054504.324,A,A*56 +$GPGSA,A,3,07,11,19,24,28,,,,,,,,,1.6,*36 +$GPVTG,130.1,T,,M,0.5,N,1.0,K,A*0A +$GPGSV,3,1,09,01,00,000,40,07,44,163,36,08,72,186,35,11,50,073,33*74 +$GPGSV,3,2,09,19,14,051,33,24,47,093,39,28,57,318,36,17,36,241,2*4C +$GPGSV,3,3,09,22,00,025,24*41 +$GPGGA,054505.324,3715.2202,N,12703.2978,E,1,05,1.6,29.6,M,19.9,M,,*67 +$GPRMC,054505.324,A,3715.2202,N,12703.2978,E,0.3,130.1,150911,,,A*66 +$GPGLL,3715.2202,N,12703.2978,E,054505.324,A,A*5C +$GPGSA,A,3,07,11,19,24,28,,,,,,,,,1.6,*36 +$GPVTG,130.1,T,,M,0.3,N,0.5,K,A*08 +$GPGSV,3,1,09,01,00,000,40,07,39,219,36,08,48,259,35,11,82,054,33*72 +$GPGSV,3,2,09,19,37,058,33,24,78,150,39,28,33,313,36,17,08,268,2*49 +$GPGSV,3,3,09,22,07,042,24*47 +$GPGGA,054506.000,3715.2201,N,12703.2978,E,1,05,1.6,29.6,M,19.9,M,,*62 +$GPRMC,054506.000,A,3715.2201,N,12703.2978,E,0.1,130.1,150911,,,A*61 +$GPGLL,3715.2201,N,12703.2978,E,054506.000,A,A*59 +$GPGSA,A,3,07,11,19,24,28,,,,,,,,,1.6,*36 +$GPVTG,130.1,T,,M,0.1,N,0.1,K,A*0E +$GPGSV,3,1,09,01,00,000,40,07,39,219,35,08,48,259,35,11,82,054,33*71 +$GPGSV,3,2,09,19,37,058,33,24,78,150,39,28,33,313,37,17,08,268,2*48 +$GPGSV,3,3,09,22,07,042,25*46 +$GPGGA,054507.000,3715.2199,N,12703.2981,E,1,05,1.6,28.3,M,19.9,M,,*63 +$GPRMC,054507.000,A,3715.2199,N,12703.2981,E,0.0,130.1,150911,,,A*65 +$GPGLL,3715.2199,N,12703.2981,E,054507.000,A,A*5C +$GPGSA,A,3,07,11,19,24,28,,,,,,,,,1.6,*36 +$GPVTG,130.1,T,,M,0.0,N,0.0,K,A*0E +$GPGSV,3,1,09,01,00,000,40,07,39,219,35,08,48,259,35,11,82,054,33*71 +$GPGSV,3,2,09,19,37,058,32,24,78,150,39,28,33,313,37,17,08,268,2*49 +$GPGSV,3,3,09,22,07,042,25*46 +$GPGGA,054508.000,3715.2199,N,12703.2981,E,1,05,1.6,28.3,M,19.9,M,,*6C +$GPRMC,054508.000,A,3715.2199,N,12703.2981,E,0.0,130.1,150911,,,A*6A +$GPGLL,3715.2199,N,12703.2981,E,054508.000,A,A*53 +$GPGSA,A,3,07,11,19,24,28,,,,,,,,,1.6,*36 +$GPVTG,130.1,T,,M,0.0,N,0.0,K,A*0E +$GPGSV,3,1,09,01,00,000,40,07,39,219,35,08,48,259,35,11,82,054,33*71 +$GPGSV,3,2,09,19,37,058,32,24,78,150,39,28,33,313,37,17,08,268,2*49 +$GPGSV,3,3,09,22,07,042,25*46 +$GPGGA,054509.000,3715.2199,N,12703.2981,E,1,05,1.6,28.3,M,19.9,M,,*6D +$GPRMC,054509.000,A,3715.2199,N,12703.2981,E,0.0,130.1,150911,,,A*6B +$GPGLL,3715.2199,N,12703.2981,E,054509.000,A,A*52 +$GPGSA,A,3,07,11,19,24,28,,,,,,,,,1.6,*36 +$GPVTG,130.1,T,,M,0.0,N,0.0,K,A*0E +$GPGSV,1,6,,,,,,,,,,,,,0.0*50 +$GPGGA,054510.000,3715.2199,N,12703.2981,E,1,05,1.6,28.3,M,19.9,M,,*65 +$GPRMC,054510.000,A,3715.2199,N,12703.2981,E,0.0,130.1,150911,,,A*63 +$GPGLL,3715.2199,N,12703.2981,E,054510.000,A,A*5A +$GPGSA,A,3,07,11,19,24,28,,,,,,,,,1.6,*36 +$GPVTG,130.1,T,,M,0.0,N,0.0,K,A*0E +$GPGSV,3,1,09,01,00,000,40,07,39,219,38,08,48,259,35,11,82,054,34*7B +$GPGSV,3,2,09,19,37,058,31,24,78,150,38,28,33,313,38,17,08,268,3*45 +$GPGSV,3,3,09,22,07,042,25*46 +$GPGGA,054511.000,3715.2199,N,12703.2981,E,1,05,1.6,28.3,M,19.9,M,,*64 +$GPRMC,054511.000,A,3715.2199,N,12703.2981,E,0.0,130.1,150911,,,A*62 +$GPGLL,3715.2199,N,12703.2981,E,054511.000,A,A*5B +$GPGSA,A,3,07,11,19,24,28,,,,,,,,,1.6,*36 +$GPVTG,130.1,T,,M,0.0,N,0.0,K,A*0E +$GPGSV,1,6,,,,,,,,,,,,,0.0*50 +$GPGGA,054512.000,3715.2199,N,12703.2981,E,1,05,1.6,28.3,M,19.9,M,,*67 +$GPRMC,054512.000,A,3715.2199,N,12703.2981,E,0.0,130.1,150911,,,A*61 +$GPGLL,3715.2199,N,12703.2981,E,054512.000,A,A*58 +$GPGSA,A,3,07,11,19,24,28,,,,,,,,,1.6,*36 +$GPVTG,130.1,T,,M,0.0,N,0.0,K,A*0E +$GPGSV,3,1,10,01,00,000,40,07,39,219,34,08,48,259,37,11,82,054,35*7C +$GPGSV,3,2,10,19,37,058,31,24,78,150,37,28,33,313,35,03,11,081,2*46 +$GPGSV,3,3,10,17,08,268,31,22,07,042,24*7F +$GPGGA,054513.000,3715.2199,N,12703.2981,E,1,05,1.6,28.3,M,19.9,M,,*66 +$GPRMC,054513.000,A,3715.2199,N,12703.2981,E,0.0,130.1,150911,,,A*60 +$GPGLL,3715.2199,N,12703.2981,E,054513.000,A,A*59 +$GPGSA,A,3,07,11,19,24,28,,,,,,,,,1.6,*36 +$GPVTG,130.1,T,,M,0.0,N,0.0,K,A*0E +$GPGSV,3,1,10,01,00,000,40,07,39,219,35,08,48,259,36,11,82,054,35*7C +$GPGSV,3,2,10,19,37,058,31,24,78,150,37,28,33,313,34,03,11,081,2*47 +$GPGSV,3,3,10,17,08,268,30,22,07,042,25*7F +$GPGGA,054514.000,3715.2199,N,12703.2981,E,1,05,1.6,28.3,M,19.9,M,,*61 +$GPRMC,054514.000,A,3715.2199,N,12703.2981,E,0.0,130.1,150911,,,A*67 +$GPGLL,3715.2199,N,12703.2981,E,054514.000,A,A*5E +$GPGSA,A,3,07,11,19,24,28,,,,,,,,,1.6,*36 +$GPVTG,130.1,T,,M,0.0,N,0.0,K,A*0E +$GPGSV,3,1,10,01,00,000,40,07,39,219,36,08,48,259,36,11,82,054,35*7F +$GPGSV,3,2,10,19,37,058,32,24,78,150,37,28,33,313,35,03,11,081,2*45 +$GPGSV,3,3,10,17,08,268,30,22,07,042,26*7C +$GPGGA,054515.000,3715.2199,N,12703.2981,E,1,05,1.6,28.3,M,19.9,M,,*60 +$GPRMC,054515.000,A,3715.2199,N,12703.2981,E,0.0,130.1,150911,,,A*66 +$GPGLL,3715.2199,N,12703.2981,E,054515.000,A,A*5F +$GPGSA,A,3,07,11,19,24,28,,,,,,,,,1.6,*36 +$GPVTG,130.1,T,,M,0.0,N,0.0,K,A*0E +$GPGSV,3,1,10,01,00,000,40,07,39,219,36,08,48,259,36,11,82,054,35*7F +$GPGSV,3,2,10,19,37,058,33,24,78,150,37,28,33,313,35,03,11,081,2*44 +$GPGSV,3,3,10,17,08,268,30,22,07,042,27*7D +$GPGGA,054516.000,3715.2199,N,12703.2981,E,1,05,1.6,28.3,M,19.9,M,,*63 +$GPRMC,054516.000,A,3715.2199,N,12703.2981,E,0.0,130.1,150911,,,A*65 +$GPGLL,3715.2199,N,12703.2981,E,054516.000,A,A*5C +$GPGSA,A,3,07,11,19,24,28,,,,,,,,,1.6,*36 +$GPVTG,130.1,T,,M,0.0,N,0.0,K,A*0E +$GPGSV,3,1,10,01,00,000,40,07,39,219,37,08,48,259,36,11,82,054,35*7E +$GPGSV,3,2,10,19,37,058,33,24,78,150,36,28,33,313,35,03,11,081,2*45 +$GPGSV,3,3,10,17,08,268,31,22,07,042,27*7C +$GPGGA,054517.000,3715.2199,N,12703.2981,E,1,05,1.6,28.3,M,19.9,M,,*62 +$GPRMC,054517.000,A,3715.2199,N,12703.2981,E,0.0,130.1,150911,,,A*64 +$GPGLL,3715.2199,N,12703.2981,E,054517.000,A,A*5D +$GPGSA,A,3,07,11,19,24,28,,,,,,,,,1.6,*36 +$GPVTG,130.1,T,,M,0.0,N,0.0,K,A*0E +$GPGSV,3,1,10,01,00,000,40,07,39,219,37,08,48,259,36,11,82,054,35*7E +$GPGSV,3,2,10,19,37,058,33,24,78,150,36,28,33,313,35,03,11,081,2*45 +$GPGSV,3,3,10,17,08,268,31,22,07,042,27*7C +$GPGGA,054518.000,3715.2199,N,12703.2981,E,1,05,1.6,28.3,M,19.9,M,,*6D +$GPRMC,054518.000,A,3715.2199,N,12703.2981,E,0.0,130.1,150911,,,A*6B +$GPGLL,3715.2199,N,12703.2981,E,054518.000,A,A*52 +$GPGSA,A,3,07,11,19,24,28,,,,,,,,,1.6,*36 +$GPVTG,130.1,T,,M,0.0,N,0.0,K,A*0E +$GPGSV,3,1,10,01,00,000,40,07,39,219,37,08,48,259,35,11,82,054,35*7D +$GPGSV,3,2,10,19,37,058,33,24,78,150,36,28,33,313,35,03,11,081,2*45 +$GPGSV,3,3,10,17,08,268,31,22,07,042,27*7C +$GPGGA,054519.000,3715.2199,N,12703.2981,E,1,05,1.6,28.3,M,19.9,M,,*6C +$GPRMC,054519.000,A,3715.2199,N,12703.2981,E,0.0,130.1,150911,,,A*6A +$GPGLL,3715.2199,N,12703.2981,E,054519.000,A,A*53 +$GPGSA,A,3,07,11,19,24,28,,,,,,,,,1.6,*36 +$GPVTG,130.1,T,,M,0.0,N,0.0,K,A*0E +$GPGSV,3,1,10,01,00,000,40,07,39,219,37,08,48,259,35,11,82,054,35*7D +$GPGSV,3,2,10,19,37,058,33,24,78,150,36,28,33,313,35,03,11,081,2*45 +$GPGSV,3,3,10,17,08,268,31,22,07,042,27*7C +$GPGGA,054520.000,3715.2199,N,12703.2981,E,1,05,1.6,28.3,M,19.9,M,,*66 +$GPRMC,054520.000,A,3715.2199,N,12703.2981,E,0.0,130.1,150911,,,A*60 +$GPGLL,3715.2199,N,12703.2981,E,054520.000,A,A*59 +$GPGSA,A,3,07,11,19,24,28,,,,,,,,,1.6,*36 +$GPVTG,130.1,T,,M,0.0,N,0.0,K,A*0E +$GPGSV,3,1,10,01,00,000,40,07,39,219,37,08,48,259,35,11,82,054,35*7D +$GPGSV,3,2,10,19,37,058,34,24,78,150,36,28,33,313,35,03,11,081,2*42 +$GPGSV,3,3,10,17,08,268,31,22,07,042,27*7C diff --git a/packaging/libslp-lbs-plugin-replay.spec b/packaging/libslp-lbsplugin-replay.spec similarity index 51% rename from packaging/libslp-lbs-plugin-replay.spec rename to packaging/libslp-lbsplugin-replay.spec index 5be35bf..87e864a 100644 --- a/packaging/libslp-lbs-plugin-replay.spec +++ b/packaging/libslp-lbsplugin-replay.spec @@ -1,36 +1,36 @@ -Name: libslp-lbs-plugin-replay -Summary: gps-manager plugin library for replay mode -Version: 0.1.3 +Name: libslp-lbsplugin-replay +Summary: lbs-server plugin library for replay mode +Version: 0.2.0 Release: 1 -Group: TO_BE/FILLED_IN -License: Apache-2.0 +Group: System/Libraries +License: Apache Licensc, Version 2.0 Source0: %{name}-%{version}.tar.gz BuildRequires: cmake BuildRequires: pkgconfig(glib-2.0) BuildRequires: pkgconfig(vconf) BuildRequires: pkgconfig(dlog) -BuildRequires: pkgconfig(gps-manager-plugin) +BuildRequires: pkgconfig(lbs-server-plugin) +BuildRequires: pkgconfig(deviced) %description -gps-manager plugin library for replay mode +lbs-server plugin library for replay mode -%define DATADIR /etc/gps-manager +%define DATADIR /etc/lbs-server %prep -%setup -q +%setup -q ./autogen.sh ./configure --prefix=%{_prefix} --datadir=%{DATADIR} %build +./autogen.sh +./configure --prefix=%{_prefix} --datadir=%{DATADIR} make %{?jobs:-j%jobs} %install rm -rf %{buildroot} -mkdir -p %{buildroot}/usr/share/license -cp %{_builddir}/%{name}-%{version}/LICENSE %{buildroot}/usr/share/license/%{name} - %make_install mkdir -p %{buildroot}%{DATADIR}/replay @@ -41,9 +41,7 @@ rm -rf /usr/lib/libSLP-lbs-plugin.so ln -sf /usr/lib/libSLP-lbs-plugin-replay.so /usr/lib/libSLP-lbs-plugin.so %files -%manifest libslp-lbs-plugin-replay.manifest -/usr/share/license/%{name} +%manifest libslp-lbsplugin-replay.manifest %defattr(-,root,root,-) -%{_libdir}/libSLP-lbs-plugin-replay.so -%{_libdir}/libSLP-lbs-plugin-replay.so.* +%{_libdir}/libSLP-lbs-plugin-replay.so* %{DATADIR}/replay/* diff --git a/xps-plugin/Makefile.am b/xps-plugin/Makefile.am new file mode 100755 index 0000000..5a03dff --- /dev/null +++ b/xps-plugin/Makefile.am @@ -0,0 +1,15 @@ +################# Build library ################ +lib_LTLIBRARIES = libSLP-xps-plugin-replay.la + +libSLP_xps_plugin_replay_la_SOURCES = \ + $(srcdir)/src/geoclue_xps_plugin_replay.c + +libSLP_xps_plugin_replay_la_CFLAGS = -Wall -fPIC -fvisibility=hidden -DEXPORT_API="__attribute__((visibility(\"default\")))" \ + -I$(srcdir)/include \ + $(GEOCLUE_XPS_PLUGIN_CFLAGS) \ + $(VCONF_CFLAGS) \ + $(DLOG_CFLAGS) + +libSLP_xps_plugin_replay_la_LDFLAGS = -Wl,--hash-style=both -Wl,--as-needed \ + $(VCONF_LIBS) \ + $(DLOG_LIBS) diff --git a/replay-plugin/include/gps_plugin_debug.h b/xps-plugin/include/geoclue_plugin_debug.h old mode 100644 new mode 100755 similarity index 73% rename from replay-plugin/include/gps_plugin_debug.h rename to xps-plugin/include/geoclue_plugin_debug.h index 4e38254..930cbe0 --- a/replay-plugin/include/gps_plugin_debug.h +++ b/xps-plugin/include/geoclue_plugin_debug.h @@ -4,7 +4,7 @@ * Copyright (c) 2011-2013 Samsung Electronics Co., Ltd. All rights reserved. * * Contact: Youngae Kang , Minjune Kim - * Genie Kim + * Genie Kim * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -31,17 +31,17 @@ extern "C" { #ifdef GPS_DLOG #include -#define TAG_GPS_PLUGIN "gps-plugin" +#define TAG_GPS_PLUGIN "xps-plugin" -#define DBG_LOW LOG_DEBUG -#define DBG_INFO LOG_INFO -#define DBG_WARN LOG_WARN -#define DBG_ERR LOG_ERROR +#define DBG_LOW LOG_DEBUG +#define DBG_INFO LOG_INFO +#define DBG_WARN LOG_WARN +#define DBG_ERR LOG_ERROR #ifdef GPS_DLOG_DEBUG // Debug mode -#define LOG_PLUGIN(dbg_lvl,fmt,args...) SLOG(dbg_lvl, TAG_GPS_PLUGIN, "[%-40s: %-4d] "fmt, __FILE__, __LINE__, ##args) +#define LOG_PLUGIN(dbg_lvl,fmt,args...) SLOG(dbg_lvl, TAG_GPS_PLUGIN, "[%-40s: %-4d] "fmt, __FILE__, __LINE__, ##args) #else // Release(commercial) mode -#define LOG_PLUGIN(dbg_lvl,fmt,args...) SLOG(dbg_lvl, TAG_GPS_PLUGIN, fmt, ##args) +#define LOG_PLUGIN(dbg_lvl,fmt,args...) SLOG(dbg_lvl, TAG_GPS_PLUGIN, fmt, ##args) #endif #endif diff --git a/xps-plugin/src/geoclue_xps_plugin_replay.c b/xps-plugin/src/geoclue_xps_plugin_replay.c new file mode 100755 index 0000000..dd6b01d --- /dev/null +++ b/xps-plugin/src/geoclue_xps_plugin_replay.c @@ -0,0 +1,271 @@ +/* + * gps-manager replay plugin + * + * Copyright (c) 2011-2013 Samsung Electronics Co., Ltd. All rights reserved. + * + * Contact: Youngae Kang , Minjune Kim + * Genie Kim + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include +#include +#include +#include +#include +#include + +#include + +#include "geoclue_plugin_debug.h" + + +int geoclue_plugin_test_load(void); +int geoclue_plugin_test_unload(void); +int geoclue_plugin_test_location(unsigned long period, LocationCallback cb, void *arg, void **handle); +int geoclue_plugin_test_cancel(void *handle, CancelCallback cb, void *arg); +void geoclue_plugin_test_get_offline_token(const unsigned char *key, + unsigned int keyLengh, + OfflineTokenCallback cb, + void *arg); +int geoclue_plugin_test_offline_location(const unsigned char *key, + unsigned int keyLength, + const unsigned char *token, + unsigned int tokenSize, + LocationCallback cb, + void *arg); + +static const geoclue_plugin_interface g_geoclue_plugin_interface_test_interface = { + geoclue_plugin_test_load, + geoclue_plugin_test_unload, + geoclue_plugin_test_location, + geoclue_plugin_test_cancel, + geoclue_plugin_test_get_offline_token, + geoclue_plugin_test_offline_location +}; + +typedef struct { + int index; // used for handle + plugin_LocationInfo *location; + unsigned long period; + LocationCallback location_cb; // save from location + void *arg; // save from location +} GeoclueXpsPluginTest; + +static GeoclueXpsPluginTest *xps_plugint_test = NULL; + +static gboolean update_fake_position(gpointer data) +{ + GeoclueXpsPluginTest *xps_plugin = data; + + if (xps_plugin) { + if (xps_plugin->location) { + if (xps_plugin->location->latitude < 90) { + xps_plugin->location->latitude++; + } else { + xps_plugin->location->latitude = 0; + } + if (xps_plugin->location->longitude< 180) { + xps_plugin->location->longitude++; + } else { + xps_plugin->location->longitude = 0; + } + if (xps_plugin->location->age < 10000) { + xps_plugin->location->age++; + } else { + xps_plugin->location->age = 0; + } + if (xps_plugin->location->altitude < 5000) { + xps_plugin->location->altitude++; + } else { + xps_plugin->location->altitude = 0; + } + if (xps_plugin->location->bearing < 90) { + xps_plugin->location->bearing++; + } else { + xps_plugin->location->bearing = 0; + } + if (xps_plugin->location->hpe < 100) { + xps_plugin->location->hpe++; + } else { + xps_plugin->location->hpe = 0; + } + if (xps_plugin->location->speed < 250) { + xps_plugin->location->speed++; + } else { + xps_plugin->location->speed = 0; + } + } + + // called intervals + if (xps_plugin->location_cb) { + xps_plugin->location_cb(xps_plugin->arg, xps_plugin->location, NULL); + } + } + + return TRUE; +} + +int geoclue_plugin_test_load(void) +{ + LOG_PLUGIN(LOG_DEBUG, "geoclue_plugin_test_load called"); + + + // create plugin_LocationInfo *location + if (NULL == xps_plugint_test) { + xps_plugint_test = g_new0(GeoclueXpsPluginTest, 1); + if (NULL == xps_plugint_test) { + LOG_PLUGIN(LOG_ERROR, "[ERROR] GeoclueXpsPluginTest create fail"); + return FALSE; + } else { + xps_plugint_test->index = 0; + xps_plugint_test->period = 5000; // 5s + xps_plugint_test->location = g_new0(plugin_LocationInfo, 1); + if (NULL == xps_plugint_test->location) { + LOG_PLUGIN(LOG_ERROR, "[ERROR] plugin_LocationInfo create fail"); + g_free(xps_plugint_test); + return FALSE; + } + xps_plugint_test->location->latitude = 10; + xps_plugint_test->location->longitude = 10; + xps_plugint_test->location->hpe = 10; + xps_plugint_test->location->altitude= 10; + xps_plugint_test->location->age = 10; + xps_plugint_test->location->speed = 10; + xps_plugint_test->location->bearing = 10; + } + } + + // create the timer + //g_timeout_add (xps_plugint_test->period, update_fake_position, xps_plugint_test); + g_timeout_add (5000, update_fake_position, xps_plugint_test); + + return TRUE; +} +int geoclue_plugin_test_unload(void) +{ + LOG_PLUGIN(LOG_DEBUG, "geoclue_plugin_test_unload called"); + + // free plugin_LocationInfo *location + if (xps_plugint_test) { + if (xps_plugint_test->location) { + g_free(xps_plugint_test->location); + xps_plugint_test->location = NULL; + } + g_free(xps_plugint_test); + xps_plugint_test = NULL; + } + + // kill the timer + return TRUE; +} +int geoclue_plugin_test_location(unsigned long period, LocationCallback cb, void *arg, void **handle) +{ + LOG_PLUGIN(LOG_DEBUG, "geoclue_plugin_test_location called"); + + // update the plugin_LocationInfo *location in the timer + + // update handle + if (xps_plugint_test) { + LOG_PLUGIN(LOG_DEBUG, "geoclue_plugin_test_location: before set handle"); + xps_plugint_test->index++; + gchar *tmp = g_strdup_printf("%d", xps_plugint_test->index); + *handle = (void *)tmp; + LOG_PLUGIN(LOG_DEBUG, "geoclue_plugin_test_location: after set handle, set[%s], handle[%s]", tmp, *handle); + + // call LocationCallback + if (cb) { + cb(arg, xps_plugint_test->location, NULL); + xps_plugint_test->location_cb = cb; + xps_plugint_test->arg = arg; + } + + LOG_PLUGIN(LOG_DEBUG, "geoclue_plugin_test_location after call callback"); + } + + return TRUE; // to test online + //return FALSE; // to test the offline +} +int geoclue_plugin_test_cancel(void *handle, CancelCallback cb, void *arg) +{ + LOG_PLUGIN(LOG_DEBUG, "geoclue_plugin_test_cancel called"); + // check handle + if (handle) { + LOG_PLUGIN(LOG_DEBUG, "canel handle %s", handle); + g_free(handle); + handle = NULL; + } + + // call CancelCallback + if (cb) { + cb(arg); + } + return TRUE; +} + +void geoclue_plugin_test_get_offline_token(const unsigned char *key, + unsigned int keyLengh, + OfflineTokenCallback cb, + void *arg) +{ + LOG_PLUGIN(LOG_DEBUG, "geoclue_plugin_test_get_offline_token called"); + + unsigned char *key_copied = NULL; + if (key && keyLengh > 0) { + key_copied = g_memdup(key, keyLengh); + key_copied[keyLengh - 1] = '\0'; + if (key_copied) { + LOG_PLUGIN(LOG_DEBUG, "key_copied [%s]", key_copied); + + // call OfflineTokenCallback + if (cb) { + char *token = g_strdup("samsung_token"); + LOG_PLUGIN(LOG_DEBUG, "geoclue_plugin_test_get_offline_token: before callback"); + cb(arg, token, strlen(token)); + LOG_PLUGIN(LOG_DEBUG, "geoclue_plugin_test_get_offline_token: after callback"); + } + } else { + LOG_PLUGIN(LOG_ERROR, "[ERROR] key copy fail"); + } + } else { + LOG_PLUGIN(LOG_ERROR, "[ERROR] key or keyLengh parameter error"); + } + +} +int geoclue_plugin_test_offline_location(const unsigned char *key, + unsigned int keyLength, + const unsigned char *token, + unsigned int tokenSize, + LocationCallback cb, + void *arg) +{ + LOG_PLUGIN(LOG_DEBUG, "geoclue_plugin_test_offline_location called"); + + if (cb) { + if (xps_plugint_test) { + LOG_PLUGIN(LOG_DEBUG, "geoclue_plugin_test_offline_location: before callback"); + cb(arg, xps_plugint_test->location, NULL); + LOG_PLUGIN(LOG_DEBUG, "geoclue_plugin_test_offline_location: before callback"); + xps_plugint_test->location_cb = cb; + xps_plugint_test->arg = arg; + } + } + return TRUE; +} + +EXPORT_API const geoclue_plugin_interface *get_geoclue_plugin_interface() +{ + LOG_PLUGIN(LOG_DEBUG, "get_geoclue_plugin_interface called"); + return &g_geoclue_plugin_interface_test_interface; +} diff --git a/xps-plugin/src/geoclue_xps_plugin_test.c b/xps-plugin/src/geoclue_xps_plugin_test.c new file mode 100755 index 0000000..9e5c8a6 --- /dev/null +++ b/xps-plugin/src/geoclue_xps_plugin_test.c @@ -0,0 +1,271 @@ +/* + * gps-manager replay plugin + * + * Copyright (c) 2011-2013 Samsung Electronics Co., Ltd. All rights reserved. + * + * Contact: Youngae Kang , Minjune Kim + * Genie Kim + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include +#include +#include +#include +#include +#include + +#include + +#include "geoclue_plugin_debug.h" + + +int geoclue_plugin_test_load(void); +int geoclue_plugin_test_unload(void); +int geoclue_plugin_test_location(unsigned long period, LocationCallback cb, void *arg, void **handle); +int geoclue_plugin_test_cancel(void *handle, CancelCallback cb, void *arg); +void geoclue_plugin_test_get_offline_token(const unsigned char *key, + unsigned int keyLengh, + OfflineTokenCallback cb, + void *arg); +int geoclue_plugin_test_offline_location(const unsigned char *key, + unsigned int keyLength, + const unsigned char *token, + unsigned int tokenSize, + LocationCallback cb, + void *arg); + +static const geoclue_plugin_interface g_geoclue_plugin_interface_test_interface = { + geoclue_plugin_test_load, + geoclue_plugin_test_unload, + geoclue_plugin_test_location, + geoclue_plugin_test_cancel, + geoclue_plugin_test_get_offline_token, + geoclue_plugin_test_offline_location +}; + +typedef struct { + int index; // used for handle + plugin_LocationInfo *location; + unsigned long period; + LocationCallback location_cb; // save from location + void *arg; // save from location +} GeoclueXpsPluginTest; + +static GeoclueXpsPluginTest *xps_plugint_test = NULL; + +static gboolean update_fake_position(gpointer data) +{ + GeoclueXpsPluginTest *xps_plugin = data; + + if (xps_plugin) { + if (xps_plugin->location) { + if (xps_plugin->location->latitude < 90) { + xps_plugin->location->latitude++; + } else { + xps_plugin->location->latitude = 0; + } + if (xps_plugin->location->longitude< 180) { + xps_plugin->location->longitude++; + } else { + xps_plugin->location->longitude = 0; + } + if (xps_plugin->location->age < 10000) { + xps_plugin->location->age++; + } else { + xps_plugin->location->age = 0; + } + if (xps_plugin->location->altitude < 5000) { + xps_plugin->location->altitude++; + } else { + xps_plugin->location->altitude = 0; + } + if (xps_plugin->location->bearing < 90) { + xps_plugin->location->bearing++; + } else { + xps_plugin->location->bearing = 0; + } + if (xps_plugin->location->hpe < 100) { + xps_plugin->location->hpe++; + } else { + xps_plugin->location->hpe = 0; + } + if (xps_plugin->location->speed < 250) { + xps_plugin->location->speed++; + } else { + xps_plugin->location->speed = 0; + } + } + + // called intervals + if (xps_plugin->location_cb) { + xps_plugin->location_cb(xps_plugin->arg, xps_plugin->location, NULL); + } + } + + return TRUE; +} + +int geoclue_plugin_test_load(void) +{ + LOG_PLUGIN(LOG_DEBUG, "geoclue_plugin_test_load called"); + + + // create plugin_LocationInfo *location + if (NULL == xps_plugint_test) { + xps_plugint_test = g_new0(GeoclueXpsPluginTest, 1); + if (NULL == xps_plugint_test) { + LOG_PLUGIN(LOG_ERROR, "[ERROR] GeoclueXpsPluginTest create fail"); + return FALSE; + } else { + xps_plugint_test->index = 0; + xps_plugint_test->period = 5000; // 5s + xps_plugint_test->location = g_new0(plugin_LocationInfo, 1); + if (NULL == xps_plugint_test->location) { + LOG_PLUGIN(LOG_ERROR, "[ERROR] plugin_LocationInfo create fail"); + g_free(xps_plugint_test); + return FALSE; + } + xps_plugint_test->location->latitude = 10; + xps_plugint_test->location->longitude = 10; + xps_plugint_test->location->hpe = 10; + xps_plugint_test->location->altitude= 10; + xps_plugint_test->location->age = 10; + xps_plugint_test->location->speed = 10; + xps_plugint_test->location->bearing = 10; + } + } + + // create the timer + //g_timeout_add (xps_plugint_test->period, update_fake_position, xps_plugint_test); + g_timeout_add (5000, update_fake_position, xps_plugint_test); + + return TRUE; +} +int geoclue_plugin_test_unload(void) +{ + LOG_PLUGIN(LOG_DEBUG, "geoclue_plugin_test_unload called"); + + // free plugin_LocationInfo *location + if (xps_plugint_test) { + if (xps_plugint_test->location) { + g_free(xps_plugint_test->location); + xps_plugint_test->location = NULL; + } + g_free(xps_plugint_test); + xps_plugint_test = NULL; + } + + // kill the timer + return TRUE; +} +int geoclue_plugin_test_location(unsigned long period, LocationCallback cb, void *arg, void **handle) +{ + LOG_PLUGIN(LOG_DEBUG, "geoclue_plugin_test_location called"); + + // update the plugin_LocationInfo *location in the timer + + // update handle + if (xps_plugint_test) { + LOG_PLUGIN(LOG_DEBUG, "geoclue_plugin_test_location: before set handle"); + xps_plugint_test->index++; + gchar *tmp = g_strdup_printf("%d", xps_plugint_test->index); + *handle = (void *)tmp; + LOG_PLUGIN(LOG_DEBUG, "geoclue_plugin_test_location: after set handle, set[%s], handle[%s]", tmp, *handle); + + // call LocationCallback + if (cb) { + cb(arg, xps_plugint_test->location, NULL); + xps_plugint_test->location_cb = cb; + xps_plugint_test->arg = arg; + } + + LOG_PLUGIN(LOG_DEBUG, "geoclue_plugin_test_location after call callback"); + } + + return TRUE; // to test online + //return FALSE; // to test the offline +} +int geoclue_plugin_test_cancel(void *handle, CancelCallback cb, void *arg) +{ + LOG_PLUGIN(LOG_DEBUG, "geoclue_plugin_test_cancel called"); + // check handle + if (handle) { + LOG_PLUGIN(LOG_DEBUG, "canel handle %s", handle); + g_free(handle); + handle = NULL; + } + + // call CancelCallback + if (cb) { + cb(arg); + } + return TRUE; +} + +void geoclue_plugin_test_get_offline_token(const unsigned char *key, + unsigned int keyLengh, + OfflineTokenCallback cb, + void *arg) +{ + LOG_PLUGIN(LOG_DEBUG, "geoclue_plugin_test_get_offline_token called"); + + unsigned char *key_copied = NULL; + if (key && keyLengh > 0) { + key_copied = g_memdup(key, keyLengh); + key_copied[keyLengh - 1] = '\0'; + if (key_copied) { + LOG_PLUGIN(LOG_DEBUG, "key_copied [%s]", key_copied); + + // call OfflineTokenCallback + if (cb) { + char *token = g_strdup("samsung_token"); + LOG_PLUGIN(LOG_DEBUG, "geoclue_plugin_test_get_offline_token: before callback"); + cb(arg, token, strlen(token)); + LOG_PLUGIN(LOG_DEBUG, "geoclue_plugin_test_get_offline_token: after callback"); + } + } else { + LOG_PLUGIN(LOG_ERROR, "[ERROR] key copy fail"); + } + } else { + LOG_PLUGIN(LOG_ERROR, "[ERROR] key or keyLengh parameter error"); + } + +} +int geoclue_plugin_test_offline_location(const unsigned char *key, + unsigned int keyLength, + const unsigned char *token, + unsigned int tokenSize, + LocationCallback cb, + void *arg) +{ + LOG_PLUGIN(LOG_DEBUG, "geoclue_plugin_test_offline_location called"); + + if (cb) { + if (xps_plugint_test) { + LOG_PLUGIN(LOG_DEBUG, "geoclue_plugin_test_offline_location: before callback"); + cb(arg, xps_plugint_test->location, NULL); + LOG_PLUGIN(LOG_DEBUG, "geoclue_plugin_test_offline_location: before callback"); + xps_plugint_test->location_cb = cb; + xps_plugint_test->arg = arg; + } + } + return TRUE; +} + +EXPORT_API const geoclue_plugin_interface *get_geoclue_plugin_interface() +{ + LOG_PLUGIN(LOG_DEBUG, "get_geoclue_plugin_interface called"); + return &g_geoclue_plugin_interface_test_interface; +} -- 2.7.4