mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
core: add downloaded GPS to existing dive site
If we download a first dive computer and add a dive site to the dive (by setting a location name for example), and then download from another dive computer that provides us with GPS data, we should keep the existing dive site information, but add the GPS data from the freshly downloaded dive computer. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
67769235e7
commit
75fdb8676b
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,4 @@
|
|||
- add GPS fix downloaded from a dive comuter to existing dive site
|
||||
- fix broken curser left/right shortcut for showing multiple dive computers
|
||||
- allow editing the profile for dives imported without samples (via CSV)
|
||||
- fix potential crash (and other errors) importing DL7 dives
|
||||
|
|
|
@ -2639,6 +2639,12 @@ struct dive *merge_dives(const struct dive *a, const struct dive *b, int offset,
|
|||
|
||||
/* we take the first dive site, unless it's empty */
|
||||
*site = a->dive_site && !dive_site_is_empty(a->dive_site) ? a->dive_site : b->dive_site;
|
||||
if (!dive_site_has_gps_location(*site) && dive_site_has_gps_location(b->dive_site)) {
|
||||
/* we picked the first dive site and that didn't have GPS data, but the new dive has
|
||||
* GPS data (that could be a download from a GPS enabled dive computer).
|
||||
* Keep the dive site, but add the GPS data */
|
||||
(*site)->location = b->dive_site->location;
|
||||
}
|
||||
fixup_dive(res);
|
||||
free(cylinders_map_a);
|
||||
free(cylinders_map_b);
|
||||
|
|
Loading…
Reference in a new issue