forked from freefoote/gpscorrelate
-
Notifications
You must be signed in to change notification settings - Fork 8
/
correlate.c
441 lines (396 loc) · 13.9 KB
/
correlate.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
/* correlate.c
* Originally written by Daniel Foote.
*
* The functions in this file match the timestamps on
* the photos to the GPS data, and then, if a match
* is found, writes the GPS data into the EXIF data
* in the photo. For future reference... */
/* Copyright 2005-2023 Daniel Foote, Dan Fandrich.
*
* This file is part of gpscorrelate.
*
* gpscorrelate is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* gpscorrelate is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with gpscorrelate; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#include <math.h>
#include "gpsstructure.h"
#include "exif-gps.h"
#include "correlate.h"
#include "unixtime.h"
#define MIN(a,b) (((a)<(b))?(a):(b))
/* Internal functions used to make it work. */
static void Round(const struct GPSPoint* First, struct GPSPoint* Result,
time_t PhotoTime, int HeadingOffset, int MaxHeadingDelta);
static void Interpolate(const struct GPSPoint* First, struct GPSPoint* Result,
time_t PhotoTime, int HeadingOffset, int MaxHeadingDelta);
static void Exact(const struct GPSPoint* First, struct GPSPoint* Result,
int HeadingOffset);
/* Ensure a heading is between 0..360 */
static double CanonicalHeading(double Heading)
{
Heading = remainder(Heading, 360.);
if (Heading < 0)
{
Heading += 360.;
}
return Heading;
}
/* Set the time zone parameters automatically based on this date. */
void SetAutoTimeZoneOptions(const char *Time,
struct CorrelateOptions* Options)
{
time_t RealTime;
/* PhotoTime isn't a true epoch time, but is rather out
* by the local offset from UTC */
time_t PhotoTime =
ConvertToUnixTime(Time, EXIF_DATE_FORMAT, 0, 0);
/* Extract the component time values */
struct tm *PhotoTm = gmtime(&PhotoTime);
/* Then create a true epoch-based local time, including DST */
PhotoTm->tm_isdst = -1;
RealTime = mktime(PhotoTm);
/* Finally, RealTime is the proper Epoch time of the photo.
* The difference from PhotoTime is the time zone offset. */
Options->TimeZoneHours = (PhotoTime - RealTime) / 3600;
Options->TimeZoneMins = ((PhotoTime - RealTime) % 3600) / 60;
}
/* Convert a time into Unixtime with the configured time zone conversion. */
time_t ConvertTimeToUnixTime(const char *Time, const char *TimeFormat,
const struct CorrelateOptions* Options)
{
time_t PhotoTime =
ConvertToUnixTime(Time, TimeFormat,
Options->TimeZoneHours, Options->TimeZoneMins);
/* Add the PhotoOffset time. This is to make the Photo time match
* the GPS time - ie, it is (GPS - Photo). */
PhotoTime += Options->PhotoOffset;
return PhotoTime;
}
/* This function returns a GPSPoint with the point selected for the
* file. This allows us to do funky stuff like not actually write
* the files - ie, just correlate and keep into memory... */
struct GPSPoint* CorrelatePhoto(const char* Filename,
struct CorrelateOptions* Options)
{
/* Read out the timestamp from the EXIF data. */
char* TimeTemp;
int IncludesGPS = 0;
TimeTemp = ReadExifDate(Filename, &IncludesGPS);
if (!TimeTemp)
{
/* Error reading the time from the file. Abort. */
/* If this was a read error, then a seperate message
* will appear on the console. Otherwise, we were
* returned here due to the lack of exif tags. */
Options->Result = CORR_NOEXIFINPUT;
return NULL;
}
if (IncludesGPS && !Options->OverwriteExisting)
{
/* Already have GPS data in the file!
* So we can't do this again... */
Options->Result = CORR_GPSDATAEXISTS;
free(TimeTemp);
return NULL;
}
if (Options->AutoTimeZone)
{
/* Use the local time zone as of the date of first picture
* as the time for correlating all the remainder. */
SetAutoTimeZoneOptions(TimeTemp, Options);
Options->AutoTimeZone = 0;
}
//printf("Using offset %02d:%02d\n", Options->TimeZoneHours, Options->TimeZoneMins);
/* Now convert the time into Unixtime with the configured time zone conversion. */
time_t PhotoTime = ConvertTimeToUnixTime(TimeTemp, EXIF_DATE_FORMAT, Options);
/* Free the memory for the time string - it won't otherwise
* be freed for us. */
free(TimeTemp);
/* Search the list of GPS tracks to find one containing the range
* we're interested in. Options points to an array with the last
* entry denoted by a NULL Points pointer. */
int TrackNum;
for (TrackNum = 0; Options->Track[TrackNum].Points; ++TrackNum)
{
/* Check that the photo is within the times that
* our tracks are for. Can't really match it if
* we were not logging when it was taken.
* Note: photos taken between logging sessions of the
* same file will still make it inside of this. In
* some cases, it won't matter, but if it does, then
* keep this in mind!! */
if ((PhotoTime >= Options->Track[TrackNum].MinTime) &&
(PhotoTime <= Options->Track[TrackNum].MaxTime))
break;
}
Options->Result = CORR_NOMATCH; /* For convenience later */
if (!Options->Track[TrackNum].Points) {
/* All tracks were outside the time range. Abort. */
return NULL;
}
/* Time to run through the list, and see if our PhotoTime
* is in between two points. Alternately, it might be
* exactly on a point... even better... */
const struct GPSPoint* Search;
struct GPSPoint* Actual = (struct GPSPoint*) malloc(sizeof(struct GPSPoint));
if (!Actual) {
Options->Result = CORR_EXIFWRITEFAIL;
return NULL;
}
for (Search = Options->Track[TrackNum].Points; Search; Search = Search->Next)
{
/* First test: is it exactly this point? */
if (PhotoTime == Search->Time)
{
/* This is the point, exactly.
* Copy out the data and return that. */
Exact(Search, Actual, Options->HeadingOffset);
if (!Options->WriteHeading)
{
Actual->MoveHeading = -1; // disabled
}
Options->Result = CORR_OK;
break;
}
/* Sanity check / track segment fix: is the photo time before
* the current point? If so, we've gone past it. Hrm. */
if (Search->Time > PhotoTime)
{
Options->Result = CORR_NOMATCH;
break;
}
/* Sanity check: we need to peek at the next point.
* Make sure we can. */
if (Search->Next == NULL) break;
/* Sanity check: does this point have the same
* timestamp as the next? If so, skip onward. */
if (Search->Time == Search->Next->Time) continue;
/* Sanity check: does this point have a later
* timestamp than the next point? If so, skip. */
if (Search->Time > Search->Next->Time) continue;
if (Options->DoBetweenTrkSeg)
{
/* Righto, we are interpolating between segments.
* So simply do nothing! Simple! */
} else {
/* Don't check between track segments.
* If the end of segment marker is set, then simply
* "jump" over this point. */
if (Search->EndOfSegment)
{
continue;
}
}
/* Sort of sanity check: is this photo inside our
* "feather" time? If not, abort. */
if (Options->FeatherTime)
{
/* Is the point between these two? */
if ((PhotoTime > Search->Time) &&
(PhotoTime < Search->Next->Time))
{
/* It is. Now is it too far
* from these two? */
if (((Search->Time + Options->FeatherTime) < PhotoTime) &&
((Search->Next->Time - Options->FeatherTime) > PhotoTime))
{
/* We are inside the feather
* time between two points.
* Abort. */
Options->Result = CORR_TOOFAR;
free(Actual);
return NULL;
}
}
} /* endif (Options->FeatherTime) */
/* Second test: is it between this and the
* next point? */
if ((PhotoTime > Search->Time) &&
(PhotoTime < Search->Next->Time))
{
/* It is between these points.
* Unless told otherwise, we interpolate.
* If not interpolating, we round to nearest.
* If points are equidistant, we round down. */
if (Options->NoInterpolate)
{
/* No interpolation. Round. */
Round(Search, Actual, PhotoTime,
Options->HeadingOffset, Options->MaxHeadingDelta);
if (!Options->WriteHeading)
{
Actual->MoveHeading = -1; // disabled
}
Options->Result = CORR_ROUND;
break;
} else {
/* Interpolate away! */
Interpolate(Search, Actual, PhotoTime,
Options->HeadingOffset, Options->MaxHeadingDelta);
if (!Options->WriteHeading)
{
Actual->MoveHeading = -1; // disabled
}
Options->Result = CORR_INTERPOLATED;
break;
}
}
} /* End for() loop to search. */
/* Did we actually match it at all? */
if (Options->Result == CORR_NOMATCH)
{
/* Nope, no match at all. */
/* Return with nothing. */
free(Actual);
return NULL;
}
/* Write the data back into the Exif info. If we're allowed. */
if (Options->NoWriteExif)
{
/* Don't write exif tags. Just return. */
return Actual;
} else {
/* Do write the exif tags. And then return. */
if (WriteGPSData(Filename, Actual, Options->Datum, Options->NoChangeMtime, Options->DegMinSecs))
{
/* All ok. Good! Return. */
return Actual;
} else {
/* Not good. Return point, but note failure. */
Options->Result = CORR_EXIFWRITEFAIL;
return Actual;
}
}
/* Looks like nothing matched. Free the prepared memory,
* and return nothing. */
free(Actual);
return NULL;
}
void Round(const struct GPSPoint* First, struct GPSPoint* Result,
time_t PhotoTime, int HeadingOffset, int MaxHeadingDelta)
{
/* Round the point between the two points - ie, it will end
* up being one or the other point. */
const struct GPSPoint* CopyFrom = NULL;
/* Determine the difference between the two points.
* We're using the scale function used by interpolate.
* This gives us a good view of where we are... */
double Scale = (double)First->Next->Time - (double)First->Time;
Scale = ((double)PhotoTime - (double)First->Time) / Scale;
/* Compare our scale. */
if (Scale <= 0.5)
{
/* Closer to the first point. */
CopyFrom = First;
} else {
/* Closer to the second point. */
CopyFrom = First->Next;
}
/* Copy the numbers over... */
Result->Lat = CopyFrom->Lat;
Result->LatDecimals = CopyFrom->LatDecimals;
Result->Long = CopyFrom->Long;
Result->LongDecimals = CopyFrom->LongDecimals;
Result->Elev = CopyFrom->Elev;
Result->ElevDecimals = CopyFrom->ElevDecimals;
Result->HeadingRef = CopyFrom->HeadingRef;
Result->MoveHeading = -1;
Result->Heading = -1;
// Drop this point if too large a change in direction
double DeltaHeading = First->Next->MoveHeading - First->MoveHeading;
if (MaxHeadingDelta < 0 || fabs(DeltaHeading) <= MaxHeadingDelta)
{
Result->MoveHeading = CopyFrom->MoveHeading;
if (HeadingOffset >= 0 && CopyFrom->MoveHeading >= 0)
{
Result->Heading = CanonicalHeading(CopyFrom->MoveHeading + HeadingOffset);
}
}
Result->Time = CopyFrom->Time;
/* Done! */
}
void Interpolate(const struct GPSPoint* First, struct GPSPoint* Result,
time_t PhotoTime, int HeadingOffset, int MaxHeadingDelta)
{
/* Interpolate between the two points. The first point
* is First, the other First->Next. Results into Result. */
/* Calculate the "scale": a decimal giving the relative distance
* in time between the two points. Ie, a number between 0 and 1 -
* 0 is the first point, 1 is the next point, and 0.5 would be
* half way. */
double Scale = (double)First->Next->Time - (double)First->Time;
Scale = ((double)PhotoTime - (double)First->Time) / Scale;
/* Now calculate the Latitude. */
Result->Lat = First->Lat + ((First->Next->Lat - First->Lat) * Scale);
Result->LatDecimals = MIN(First->LatDecimals, First->Next->LatDecimals);
/* And the longitude. */
Result->Long = First->Long + ((First->Next->Long - First->Long) * Scale);
Result->LongDecimals = MIN(First->LongDecimals, First->Next->LongDecimals);
/* And the elevation. If elevation wasn't set, it should be zero with
* a negative ElevDecimals, which will cause it to be dropped
* when written. */
Result->Elev = First->Elev + ((First->Next->Elev - First->Elev) * Scale);
Result->ElevDecimals = MIN(First->ElevDecimals, First->Next->ElevDecimals);
/* Heading and Direction */
Result->HeadingRef = First->HeadingRef;
Result->MoveHeading = -1;
Result->Heading = -1;
if (First->MoveHeading >= 0 && First->Next->MoveHeading >= 0)
{
/* Determine the smallest angle between the two headings, regardless
* of which way around the compass you need to go.
*/
double DeltaHeading1 = First->Next->MoveHeading - First->MoveHeading;
double DeltaHeading2 = (First->Next->MoveHeading > First->MoveHeading) ?
First->Next->MoveHeading - (360 + First->MoveHeading) :
(360 + First->Next->MoveHeading) - First->MoveHeading;
double DeltaHeading = fabs(DeltaHeading1) < fabs(DeltaHeading2) ?
DeltaHeading1 : DeltaHeading2;
// Drop this point unless the change in direction is small enough
if (MaxHeadingDelta < 0 || fabs(DeltaHeading) <= MaxHeadingDelta)
{
Result->MoveHeading = CanonicalHeading(
First->MoveHeading + DeltaHeading * Scale);
if (HeadingOffset >= 0)
{
Result->Heading = CanonicalHeading(Result->MoveHeading + HeadingOffset);
}
}
}
/* The time is not interpolated, but matches photo. */
Result->Time = PhotoTime;
/* And that should have fixed us... */
}
void Exact(const struct GPSPoint* First, struct GPSPoint* Result,
int HeadingOffset)
{
Result->Lat = First->Lat;
Result->LatDecimals = First->LatDecimals;
Result->Long = First->Long;
Result->LongDecimals = First->LongDecimals;
Result->Elev = First->Elev;
Result->ElevDecimals = First->ElevDecimals;
Result->HeadingRef = First->HeadingRef;
Result->MoveHeading = First->MoveHeading;
if (HeadingOffset >= 0 && First->MoveHeading >= 0)
{
Result->Heading = CanonicalHeading(First->MoveHeading + HeadingOffset);
} else {
Result->Heading = -1; // disabled or unknown
}
Result->Time = First->Time;
}