geopic-tag-reader 1.3.2__py3-none-any.whl → 1.3.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (22) hide show
  1. geopic_tag_reader/__init__.py +1 -1
  2. geopic_tag_reader/reader.py +24 -2
  3. geopic_tag_reader/translations/de/LC_MESSAGES/geopic_tag_reader.mo +0 -0
  4. geopic_tag_reader/translations/de/LC_MESSAGES/geopic_tag_reader.po +44 -1
  5. geopic_tag_reader/translations/en/LC_MESSAGES/geopic_tag_reader.mo +0 -0
  6. geopic_tag_reader/translations/en/LC_MESSAGES/geopic_tag_reader.po +44 -14
  7. geopic_tag_reader/translations/fr/LC_MESSAGES/geopic_tag_reader.mo +0 -0
  8. geopic_tag_reader/translations/fr/LC_MESSAGES/geopic_tag_reader.po +152 -119
  9. geopic_tag_reader/translations/geopic_tag_reader.pot +38 -13
  10. geopic_tag_reader/translations/hu/LC_MESSAGES/geopic_tag_reader.mo +0 -0
  11. geopic_tag_reader/translations/hu/LC_MESSAGES/geopic_tag_reader.po +4 -4
  12. geopic_tag_reader/translations/it/LC_MESSAGES/geopic_tag_reader.mo +0 -0
  13. geopic_tag_reader/translations/it/LC_MESSAGES/geopic_tag_reader.po +183 -0
  14. geopic_tag_reader/translations/nl/LC_MESSAGES/geopic_tag_reader.mo +0 -0
  15. geopic_tag_reader/translations/nl/LC_MESSAGES/geopic_tag_reader.po +213 -0
  16. geopic_tag_reader/translations/pl/LC_MESSAGES/geopic_tag_reader.mo +0 -0
  17. geopic_tag_reader/translations/pl/LC_MESSAGES/geopic_tag_reader.po +203 -0
  18. {geopic_tag_reader-1.3.2.dist-info → geopic_tag_reader-1.3.3.dist-info}/METADATA +2 -2
  19. {geopic_tag_reader-1.3.2.dist-info → geopic_tag_reader-1.3.3.dist-info}/RECORD +22 -16
  20. {geopic_tag_reader-1.3.2.dist-info → geopic_tag_reader-1.3.3.dist-info}/WHEEL +1 -1
  21. {geopic_tag_reader-1.3.2.dist-info → geopic_tag_reader-1.3.3.dist-info}/LICENSE +0 -0
  22. {geopic_tag_reader-1.3.2.dist-info → geopic_tag_reader-1.3.3.dist-info}/entry_points.txt +0 -0
@@ -2,4 +2,4 @@
2
2
  GeoPicTagReader
3
3
  """
4
4
 
5
- __version__ = "1.3.2"
5
+ __version__ = "1.3.3"
@@ -274,6 +274,9 @@ def readPictureMetadata(picture: bytes, lang_code: str = "en") -> GeoPicTags:
274
274
  elif "MAPCompassHeading" in data and isExifTagUsable(data["MAPCompassHeading"], "TrueHeading", float):
275
275
  heading = int(round(float(data["MAPCompassHeading"]["TrueHeading"])))
276
276
 
277
+ if heading is None:
278
+ warnings.append(_("No heading value was found, this reduces usability of picture"))
279
+
277
280
  # Yaw / Pitch / roll
278
281
  yaw = None
279
282
  pitch = None
@@ -314,12 +317,17 @@ def readPictureMetadata(picture: bytes, lang_code: str = "en") -> GeoPicTags:
314
317
  if make is not None and model is not None and model.startswith(make) and len(model) > len(make):
315
318
  model = model.replace(make, "").strip()
316
319
 
320
+ if make is None and model is None:
321
+ warnings.append(_("No make and model value found, no assumption on focal length or GPS precision can be made"))
322
+
317
323
  # Focal length
318
324
  focalLength = None
319
325
  if isExifTagUsable(data, "Exif.Image.FocalLength", Fraction):
320
326
  focalLength = float(Fraction(data["Exif.Image.FocalLength"]))
321
327
  elif isExifTagUsable(data, "Exif.Photo.FocalLength", Fraction):
322
328
  focalLength = float(Fraction(data["Exif.Photo.FocalLength"]))
329
+ if focalLength is None:
330
+ warnings.append(_("No focal length value was found, this prevents calculating field of view"))
323
331
 
324
332
  # Cropped pano data
325
333
  crop = None
@@ -368,9 +376,23 @@ def readPictureMetadata(picture: bytes, lang_code: str = "en") -> GeoPicTags:
368
376
  ref = -1 if data.get("Exif.GPSInfo.GPSAltitudeRef") == "1" else 1
369
377
  altitude = altitude_raw * ref
370
378
 
379
+ # GPS accuracy (only for warning display)
380
+ gpshpos = isExifTagUsable(data, "Exif.GPSInfo.GPSHPositioningError", float) or isExifTagUsable(
381
+ data, "Xmp.exif.GPSHPositioningError", float
382
+ )
383
+ gpsdop = isExifTagUsable(data, "Exif.GPSInfo.GPSDOP", float) or isExifTagUsable(data, "Xmp.exif.GPSDOP", float)
384
+ gpsdiff = isExifTagUsable(data, "Exif.GPSInfo.GPSDifferential", int) or isExifTagUsable(data, "Xmp.exif.GPSDifferential", int)
385
+
386
+ if not gpshpos:
387
+ if not gpsdop and not gpsdiff:
388
+ warnings.append(_("No GPS accuracy value found, this prevents computing a quality score"))
389
+ else:
390
+ warnings.append(_("No GPS horizontal positioning error value found, GPS accuracy can only be estimated"))
391
+
371
392
  errors = []
372
393
  missing_fields = set()
373
- if not lat or not lon:
394
+ if lat is None or lon is None or (lat == 0 and lon == 0):
395
+ # Note: we consider that null island is not a valid position
374
396
  errors.append(_("No GPS coordinates or broken coordinates in picture EXIF tags"))
375
397
  if not lat:
376
398
  missing_fields.add("lat")
@@ -411,7 +433,7 @@ def readPictureMetadata(picture: bytes, lang_code: str = "en") -> GeoPicTags:
411
433
  ),
412
434
  )
413
435
 
414
- assert lon and lat and d # at this point all those fields cannot be null
436
+ assert lon is not None and lat is not None and d is not None # at this point all those fields cannot be null
415
437
  return GeoPicTags(
416
438
  lat,
417
439
  lon,
@@ -8,7 +8,7 @@ msgstr ""
8
8
  "Project-Id-Version: PACKAGE VERSION\n"
9
9
  "Report-Msgid-Bugs-To: \n"
10
10
  "POT-Creation-Date: 2024-07-10 13:05+0200\n"
11
- "PO-Revision-Date: 2024-08-07 13:42+0000\n"
11
+ "PO-Revision-Date: 2024-11-23 22:10+0000\n"
12
12
  "Last-Translator: Bastian Greshake Tzovaras <bastian@gedankenstuecke.de>\n"
13
13
  "Language-Team: German <http://weblate.panoramax.xyz/projects/panoramax/"
14
14
  "tag-reader/de/>\n"
@@ -167,3 +167,46 @@ msgstr "Nicht unterstützter Schlüssel in den zusätzlichen Attributen ({k})"
167
167
  #: geopic_tag_reader/main.py:37
168
168
  msgid "Yaw:"
169
169
  msgstr "Gierwinkel:"
170
+
171
+ #: geopic_tag_reader/main.py:30
172
+ msgid "(GPS)"
173
+ msgstr "(GPS)"
174
+
175
+ #: geopic_tag_reader/main.py:31
176
+ msgid "(Camera)"
177
+ msgstr "(Kamera)"
178
+
179
+ #: geopic_tag_reader/main.py:30 geopic_tag_reader/main.py:31
180
+ msgid "not set"
181
+ msgstr "nicht gesetzt"
182
+
183
+ #: geopic_tag_reader/reader.py:330
184
+ msgid ""
185
+ "No focal length value was found, this prevents calculating field of view"
186
+ msgstr "Keine Brennweite gefunden, dies verhindert den Blickwinkel zu berechnen"
187
+
188
+ #: geopic_tag_reader/reader.py:388
189
+ msgid ""
190
+ "No GPS horizontal positioning error value found, GPS accuracy can only be "
191
+ "estimated"
192
+ msgstr ""
193
+ "Kein horizontaler GPS-Positionierungsfehlerwert gefunden, GPS-Genauigkeit "
194
+ "kann nur geschätzt werden"
195
+
196
+ #: geopic_tag_reader/reader.py:278
197
+ msgid "No heading value was found, this reduces usability of picture"
198
+ msgstr "Kein Kompasskurs gefunden, dies reduziert die Nutzbarkeit des Fotos"
199
+
200
+ #: geopic_tag_reader/reader.py:386
201
+ msgid "No GPS accuracy value found, this prevents computing a quality score"
202
+ msgstr ""
203
+ "Keine GPS-Genauigkeit gefunden, dies verhindert das Berechnen eines "
204
+ "Qualitätswerts"
205
+
206
+ #: geopic_tag_reader/reader.py:321
207
+ msgid ""
208
+ "No make and model value found, no assumption on focal length or GPS "
209
+ "precision can be made"
210
+ msgstr ""
211
+ "Kein Hersteller und Modell gefunden, keine Annahmen zu Brennweite oder GPS-"
212
+ "Genauigkeit können angestellt werden"
@@ -7,8 +7,8 @@ msgid ""
7
7
  msgstr ""
8
8
  "Project-Id-Version: PACKAGE VERSION\n"
9
9
  "Report-Msgid-Bugs-To: \n"
10
- "POT-Creation-Date: 2024-10-22 15:05+0200\n"
11
- "PO-Revision-Date: 2024-10-22 15:05+0200\n"
10
+ "POT-Creation-Date: 2024-11-24 15:36+0100\n"
11
+ "PO-Revision-Date: 2024-11-24 15:36+0100\n"
12
12
  "Last-Translator: Automatically generated\n"
13
13
  "Language-Team: none\n"
14
14
  "Language: en\n"
@@ -94,35 +94,65 @@ msgstr "Read longitude is out of WGS84 bounds (should be in [-180, 180])"
94
94
  msgid "Skipping Mapillary date/time as it was not recognized: {v}"
95
95
  msgstr "Skipping Mapillary date/time as it was not recognized: {v}"
96
96
 
97
- #: geopic_tag_reader/reader.py:374
97
+ #: geopic_tag_reader/reader.py:278
98
+ msgid "No heading value was found, this reduces usability of picture"
99
+ msgstr "No heading value was found, this reduces usability of picture"
100
+
101
+ #: geopic_tag_reader/reader.py:321
102
+ msgid ""
103
+ "No make and model value found, no assumption on focal length or GPS "
104
+ "precision can be made"
105
+ msgstr ""
106
+ "No make and model value found, no assumption on focal length or GPS "
107
+ "precision can be made"
108
+
109
+ #: geopic_tag_reader/reader.py:330
110
+ msgid ""
111
+ "No focal length value was found, this prevents calculating field of view"
112
+ msgstr ""
113
+ "No focal length value was found, this prevents calculating field of view"
114
+
115
+ #: geopic_tag_reader/reader.py:388
116
+ msgid "No GPS accuracy value found, this prevents computing a quality score"
117
+ msgstr "No GPS accuracy value found, this prevents computing a quality score"
118
+
119
+ #: geopic_tag_reader/reader.py:390
120
+ msgid ""
121
+ "No GPS horizontal positioning error value found, GPS accuracy can only be "
122
+ "estimated"
123
+ msgstr ""
124
+ "No GPS horizontal positioning error value found, GPS accuracy can only be "
125
+ "estimated"
126
+
127
+ #: geopic_tag_reader/reader.py:396
98
128
  msgid "No GPS coordinates or broken coordinates in picture EXIF tags"
99
129
  msgstr "No GPS coordinates or broken coordinates in picture EXIF tags"
100
130
 
101
- #: geopic_tag_reader/reader.py:380
131
+ #: geopic_tag_reader/reader.py:402
102
132
  msgid "No valid date in picture EXIF tags"
103
133
  msgstr "No valid date in picture EXIF tags"
104
134
 
105
- #: geopic_tag_reader/reader.py:385
135
+ #: geopic_tag_reader/reader.py:407
106
136
  msgid "The picture is missing mandatory metadata:"
107
137
  msgstr "The picture is missing mandatory metadata:"
108
138
 
109
- #: geopic_tag_reader/reader.py:476 geopic_tag_reader/reader.py:505
139
+ #: geopic_tag_reader/reader.py:498 geopic_tag_reader/reader.py:527
110
140
  msgid "GPSLatitudeRef not found, assuming GPSLatitudeRef is North"
111
141
  msgstr "GPSLatitudeRef not found, assuming GPSLatitudeRef is North"
112
142
 
113
- #: geopic_tag_reader/reader.py:484
143
+ #: geopic_tag_reader/reader.py:506
114
144
  msgid "Broken GPS coordinates in picture EXIF tags"
115
145
  msgstr "Broken GPS coordinates in picture EXIF tags"
116
146
 
117
- #: geopic_tag_reader/reader.py:487 geopic_tag_reader/reader.py:511
147
+ #: geopic_tag_reader/reader.py:509 geopic_tag_reader/reader.py:533
118
148
  msgid "GPSLongitudeRef not found, assuming GPSLongitudeRef is East"
119
149
  msgstr "GPSLongitudeRef not found, assuming GPSLongitudeRef is East"
120
150
 
121
- #: geopic_tag_reader/reader.py:572
151
+ #: geopic_tag_reader/reader.py:594
122
152
  msgid "Precise timezone information not found, fallback to UTC"
123
153
  msgstr "Precise timezone information not found, fallback to UTC"
124
154
 
125
- #: geopic_tag_reader/reader.py:577
155
+ #: geopic_tag_reader/reader.py:599
126
156
  msgid ""
127
157
  "Precise timezone information not found (and no GPS coordinates to help), "
128
158
  "fallback to UTC"
@@ -130,14 +160,14 @@ msgstr ""
130
160
  "Precise timezone information not found (and no GPS coordinates to help), "
131
161
  "fallback to UTC"
132
162
 
133
- #: geopic_tag_reader/reader.py:581
163
+ #: geopic_tag_reader/reader.py:603
134
164
  #, python-brace-format
135
165
  msgid ""
136
166
  "Skipping original date/time (from {datefield}) as it was not recognized: {v}"
137
167
  msgstr ""
138
168
  "Skipping original date/time (from {datefield}) as it was not recognized: {v}"
139
169
 
140
- #: geopic_tag_reader/reader.py:613
170
+ #: geopic_tag_reader/reader.py:635
141
171
  #, python-brace-format
142
172
  msgid ""
143
173
  "GPSTimeStamp and GPSDateTime don't contain supported time format (in {group} "
@@ -146,12 +176,12 @@ msgstr ""
146
176
  "GPSTimeStamp and GPSDateTime don't contain supported time format (in {group} "
147
177
  "group)"
148
178
 
149
- #: geopic_tag_reader/reader.py:644
179
+ #: geopic_tag_reader/reader.py:666
150
180
  #, python-brace-format
151
181
  msgid "Skipping GPS date/time ({group} group) as it was not recognized: {v}"
152
182
  msgstr "Skipping GPS date/time ({group} group) as it was not recognized: {v}"
153
183
 
154
- #: geopic_tag_reader/reader.py:670
184
+ #: geopic_tag_reader/reader.py:692
155
185
  #, python-brace-format
156
186
  msgid ""
157
187
  "Microseconds read from decimal seconds value ({microsecondsFromSeconds}) is "
@@ -5,75 +5,165 @@
5
5
  #
6
6
  msgid ""
7
7
  msgstr ""
8
- "Project-Id-Version: PACKAGE VERSION\n"
8
+ "Project-Id-Version: \n"
9
9
  "Report-Msgid-Bugs-To: \n"
10
- "POT-Creation-Date: 2024-06-18 09:12+0200\n"
11
- "PO-Revision-Date: 2024-10-03 14:07+0000\n"
12
- "Last-Translator: operon <operon@sfr.fr>\n"
13
- "Language-Team: French <http://weblate.panoramax.xyz/projects/panoramax/"
14
- "tag-reader/fr/>\n"
10
+ "POT-Creation-Date: 2024-10-28 11:05+0100\n"
11
+ "PO-Revision-Date: 2024-10-28 11:11+0100\n"
12
+ "Last-Translator: iitomo <yannubuntu@protonmail.com>\n"
13
+ "Language-Team: French <http://weblate.panoramax.xyz/projects/panoramax/tag-"
14
+ "reader/fr/>\n"
15
15
  "Language: fr\n"
16
16
  "MIME-Version: 1.0\n"
17
17
  "Content-Type: text/plain; charset=UTF-8\n"
18
18
  "Content-Transfer-Encoding: 8bit\n"
19
19
  "Plural-Forms: nplurals=2; plural=n > 1;\n"
20
- "X-Generator: Weblate 5.4.3\n"
20
+ "X-Generator: Poedit 3.4.2\n"
21
21
 
22
- #: geopic_tag_reader/reader.py:177
22
+ #: geopic_tag_reader/main.py:26
23
+ msgid "Latitude:"
24
+ msgstr "Latitude :"
25
+
26
+ #: geopic_tag_reader/main.py:27
27
+ msgid "Longitude:"
28
+ msgstr "Longitude :"
29
+
30
+ #: geopic_tag_reader/main.py:28
31
+ msgid "Timestamp:"
32
+ msgstr "Date et heure :"
33
+
34
+ #: geopic_tag_reader/main.py:30 geopic_tag_reader/main.py:31
35
+ msgid "not set"
36
+ msgstr "pas défini"
37
+
38
+ #: geopic_tag_reader/main.py:30
39
+ msgid "(GPS)"
40
+ msgstr "(GPS)"
41
+
42
+ #: geopic_tag_reader/main.py:31
43
+ msgid "(Camera)"
44
+ msgstr "(Caméra)"
45
+
46
+ #: geopic_tag_reader/main.py:32
47
+ msgid "Heading:"
48
+ msgstr "Orientation :"
49
+
50
+ #: geopic_tag_reader/main.py:33
51
+ msgid "Type:"
52
+ msgstr "Type :"
53
+
54
+ #: geopic_tag_reader/main.py:34
55
+ msgid "Make:"
56
+ msgstr "Fabriquant :"
57
+
58
+ #: geopic_tag_reader/main.py:35
59
+ msgid "Model:"
60
+ msgstr "Modèle :"
61
+
62
+ #: geopic_tag_reader/main.py:36
63
+ msgid "Focal length:"
64
+ msgstr "Longueur focale :"
65
+
66
+ #: geopic_tag_reader/main.py:37
67
+ msgid "Crop parameters:"
68
+ msgstr "Paramètres de recadrage :"
69
+
70
+ #: geopic_tag_reader/main.py:38
71
+ msgid "Pitch:"
72
+ msgstr "Tangage :"
73
+
74
+ #: geopic_tag_reader/main.py:39
75
+ msgid "Roll:"
76
+ msgstr "Roulis :"
77
+
78
+ #: geopic_tag_reader/main.py:40
79
+ msgid "Yaw:"
80
+ msgstr "Lacet :"
81
+
82
+ #: geopic_tag_reader/main.py:43
83
+ msgid "Warnings raised by reader:"
84
+ msgstr "Avertissement lancés par le lecteur :"
85
+
86
+ #: geopic_tag_reader/reader.py:218
23
87
  msgid "Read latitude is out of WGS84 bounds (should be in [-90, 90])"
24
88
  msgstr ""
25
89
  "La latitude est hors des limites du WGS84 (devrait être entre [-90, 90])"
26
90
 
27
- #: geopic_tag_reader/reader.py:179
91
+ #: geopic_tag_reader/reader.py:220
28
92
  msgid "Read longitude is out of WGS84 bounds (should be in [-180, 180])"
29
93
  msgstr ""
30
94
  "La longitude est hors des limites du WGS84 (devrait être entre [-180, 180])"
31
95
 
32
- #: geopic_tag_reader/reader.py:221
33
- msgid "Skipping Mapillary date/time as it was not recognized:"
34
- msgstr "La date/heure de Mapillary est ignorée car non-reconnue :"
96
+ #: geopic_tag_reader/reader.py:248
97
+ #, python-brace-format
98
+ msgid "Skipping Mapillary date/time as it was not recognized: {v}"
99
+ msgstr "Date et heure de Mapillary ignorées car non-reconnues : {v}"
100
+
101
+ #: geopic_tag_reader/reader.py:278
102
+ msgid "No heading value was found, this reduces usability of picture"
103
+ msgstr ""
104
+ "Aucune valeur d'orientation (heading) trouvée, cela complique la "
105
+ "réutilisation de la photo"
106
+
107
+ #: geopic_tag_reader/reader.py:321
108
+ msgid ""
109
+ "No make and model value found, no assumption on focal length or GPS "
110
+ "precision can be made"
111
+ msgstr ""
112
+ "Aucune info sur le modèle de la caméra (make/model), aucune supposition ne "
113
+ "peut être faite sur la longueur focale ou la précision du GPS"
114
+
115
+ #: geopic_tag_reader/reader.py:330
116
+ msgid ""
117
+ "No focal length value was found, this prevents calculating field of view"
118
+ msgstr ""
119
+ "Aucune valeur pour la longueur focale (focal length) trouvée, cela empêche "
120
+ "de calculer l'angle de vue horizontal"
35
121
 
36
- #: geopic_tag_reader/reader.py:234
37
- msgid "Contradicting heading values found, GPSImgDirection value is used"
122
+ #: geopic_tag_reader/reader.py:386
123
+ msgid "No GPS accuracy value found, this prevents computing a quality score"
38
124
  msgstr ""
39
- "Valeurs d'orientation contradictoires, la valeur de GPSImgDirection est "
40
- "utilisée"
125
+ "Aucune valeur trouvée pour la précision du GPS, cela empêche de calculer le "
126
+ "score de qualité"
41
127
 
42
- #: geopic_tag_reader/reader.py:345
128
+ #: geopic_tag_reader/reader.py:388
129
+ msgid ""
130
+ "No GPS horizontal positioning error value found, GPS accuracy can only be "
131
+ "estimated"
132
+ msgstr ""
133
+ "Aucune valeur d'erreur du positionnement horizontal du GPS, la précision du "
134
+ "GPS pourra seulement être estimée"
135
+
136
+ #: geopic_tag_reader/reader.py:394
43
137
  msgid "No GPS coordinates or broken coordinates in picture EXIF tags"
44
138
  msgstr ""
45
139
  "Coordonnées GPS absentes ou invalides dans les attributs EXIF de l'image"
46
140
 
47
- #: geopic_tag_reader/reader.py:351
141
+ #: geopic_tag_reader/reader.py:400
48
142
  msgid "No valid date in picture EXIF tags"
49
143
  msgstr "Aucune date valide dans les attributs EXIF de l'image"
50
144
 
51
- #: geopic_tag_reader/reader.py:356
52
- msgid " and "
53
- msgstr " et "
54
-
55
- #: geopic_tag_reader/reader.py:423
56
- msgid "Not a valid list of fractions"
57
- msgstr "Liste de fractions invalide"
145
+ #: geopic_tag_reader/reader.py:405
146
+ msgid "The picture is missing mandatory metadata:"
147
+ msgstr "Des métadonnées obligatoires sont manquantes :"
58
148
 
59
- #: geopic_tag_reader/reader.py:436 geopic_tag_reader/reader.py:465
149
+ #: geopic_tag_reader/reader.py:496 geopic_tag_reader/reader.py:525
60
150
  msgid "GPSLatitudeRef not found, assuming GPSLatitudeRef is North"
61
151
  msgstr "GPSLatitudeRef non-trouvé, utilisation du Nord par défaut"
62
152
 
63
- #: geopic_tag_reader/reader.py:444
153
+ #: geopic_tag_reader/reader.py:504
64
154
  msgid "Broken GPS coordinates in picture EXIF tags"
65
155
  msgstr "Coordonnées GPS invalides dans les attributs EXIF de l'image"
66
156
 
67
- #: geopic_tag_reader/reader.py:447 geopic_tag_reader/reader.py:471
157
+ #: geopic_tag_reader/reader.py:507 geopic_tag_reader/reader.py:531
68
158
  msgid "GPSLongitudeRef not found, assuming GPSLongitudeRef is East"
69
159
  msgstr "GPSLongitudeRef non-trouvé, utilisation de l'Est par défaut"
70
160
 
71
- #: geopic_tag_reader/reader.py:522
161
+ #: geopic_tag_reader/reader.py:592
72
162
  msgid "Precise timezone information not found, fallback to UTC"
73
163
  msgstr ""
74
164
  "Aucune information précise de fuseau horaire trouvée, UTC utilisé par défaut"
75
165
 
76
- #: geopic_tag_reader/reader.py:527
166
+ #: geopic_tag_reader/reader.py:597
77
167
  msgid ""
78
168
  "Precise timezone information not found (and no GPS coordinates to help), "
79
169
  "fallback to UTC"
@@ -81,30 +171,29 @@ msgstr ""
81
171
  "Aucune information précise de fuseau horaire trouvée (ni de coordonnées GPS "
82
172
  "pour aider), UTC utilisé par défaut"
83
173
 
84
- #: geopic_tag_reader/reader.py:530
174
+ #: geopic_tag_reader/reader.py:601
85
175
  #, python-brace-format
86
176
  msgid ""
87
- "Skipping original date/time (from {datefield}) as it was not recognized:"
177
+ "Skipping original date/time (from {datefield}) as it was not recognized: {v}"
88
178
  msgstr ""
89
- "Date/heure originale (issue de {datefield}) ignorée car elle n'a pas été "
90
- "reconnue :"
179
+ "Date/heure originales (venant de {datefield}) ignorées car non-reconnues : "
180
+ "{v}"
91
181
 
92
- #: geopic_tag_reader/reader.py:559
182
+ #: geopic_tag_reader/reader.py:633
93
183
  #, python-brace-format
94
184
  msgid ""
95
185
  "GPSTimeStamp and GPSDateTime don't contain supported time format (in {group} "
96
186
  "group)"
97
187
  msgstr ""
98
- "GPSTimeStamp et GPSDateTime ne contiennent pas un format d'heure valide ("
99
- "dans le groupe {group})"
188
+ "GPSTimeStamp et GPSDateTime ne contiennent pas un format d'heure valide "
189
+ "(dans le groupe {group})"
100
190
 
101
- #: geopic_tag_reader/reader.py:587
191
+ #: geopic_tag_reader/reader.py:664
102
192
  #, python-brace-format
103
- msgid "Skipping GPS date/time ({group} group) as it was not recognized:"
104
- msgstr ""
105
- "Date/heure du GPS (groupe {group}) ignorée car elle n'a pas été reconnue :"
193
+ msgid "Skipping GPS date/time ({group} group) as it was not recognized: {v}"
194
+ msgstr "Date/heure du GPS (groupe {group}) ignorées car non-reconnues : {v}"
106
195
 
107
- #: geopic_tag_reader/reader.py:609
196
+ #: geopic_tag_reader/reader.py:690
108
197
  #, python-brace-format
109
198
  msgid ""
110
199
  "Microseconds read from decimal seconds value ({microsecondsFromSeconds}) is "
@@ -114,89 +203,33 @@ msgstr ""
114
203
  "({microsecondsFromSeconds}) ne correspond pas au champ EXIF dédié "
115
204
  "({microseconds}). La valeur la plus élevée est conservée."
116
205
 
117
- #: geopic_tag_reader/main.py:26
118
- msgid "Latitude:"
119
- msgstr "Latitude :"
120
-
121
- #: geopic_tag_reader/main.py:27
122
- msgid "Longitude:"
123
- msgstr "Longitude :"
124
-
125
- #: geopic_tag_reader/main.py:28
126
- msgid "Timestamp:"
127
- msgstr "Date et heure :"
128
-
129
- #: geopic_tag_reader/main.py:30
130
- msgid "Type:"
131
- msgstr "Type :"
132
-
133
- #: geopic_tag_reader/main.py:31
134
- msgid "Make:"
135
- msgstr "Fabriquant :"
136
-
137
- #: geopic_tag_reader/main.py:32
138
- msgid "Model:"
139
- msgstr "Modèle :"
140
-
141
- #: geopic_tag_reader/main.py:33
142
- msgid "Focal length:"
143
- msgstr "Longueur focale :"
144
-
145
- #: geopic_tag_reader/main.py:34
146
- msgid "Crop parameters:"
147
- msgstr "Paramètres de recadrage :"
148
-
149
- #: geopic_tag_reader/main.py:35
150
- msgid "Pitch:"
151
- msgstr "Tangage :"
152
-
153
- #: geopic_tag_reader/main.py:36
154
- msgid "Roll:"
155
- msgstr "Roulis :"
156
-
157
- #: geopic_tag_reader/main.py:29
158
- msgid "Heading:"
159
- msgstr "Orientation :"
160
-
161
- #: geopic_tag_reader/main.py:39
162
- msgid "Warnings raised by reader:"
163
- msgstr "Avertissement lancés par le lecteur :"
164
-
165
- #: geopic_tag_reader/reader.py:362
166
- msgid "The picture is missing mandatory metadata:"
167
- msgstr "Des métadonnées obligatoires sont manquantes :"
168
-
169
- #: geopic_tag_reader/reader.py:611
170
- #, python-brace-format
171
- msgid "Skipping GPS date/time ({group} group) as it was not recognized: {v}"
172
- msgstr "Date/heure du GPS (groupe {group}) ignorées car non-reconnues : {v}"
173
-
174
206
  #: geopic_tag_reader/writer.py:132
175
207
  #, python-brace-format
176
208
  msgid "Unsupported key in additional tags ({k})"
177
209
  msgstr "Clé non-supportée dans les attributs additionnels ({k})"
178
210
 
179
- #: geopic_tag_reader/reader.py:227
180
- #, python-brace-format
181
- msgid "Skipping Mapillary date/time as it was not recognized: {v}"
182
- msgstr "Date et heure de Mapillary ignorées car non-reconnues : {v}"
211
+ #~ msgid "Skipping Mapillary date/time as it was not recognized:"
212
+ #~ msgstr "La date/heure de Mapillary est ignorée car non-reconnue :"
183
213
 
184
- #: geopic_tag_reader/reader.py:546
185
- #, python-brace-format
186
- msgid ""
187
- "Skipping original date/time (from {datefield}) as it was not recognized: {v}"
188
- msgstr ""
189
- "Date/heure originales (venant de {datefield}) ignorées car non-reconnues : "
190
- "{v}"
214
+ #~ msgid "Contradicting heading values found, GPSImgDirection value is used"
215
+ #~ msgstr ""
216
+ #~ "Valeurs d'orientation contradictoires, la valeur de GPSImgDirection est "
217
+ #~ "utilisée"
191
218
 
192
- #: geopic_tag_reader/main.py:37
193
- msgid "Yaw:"
194
- msgstr "Lacet :"
219
+ #~ msgid " and "
220
+ #~ msgstr " et "
195
221
 
196
- #: geopic_tag_reader/main.py:31
197
- msgid "(Camera)"
198
- msgstr "(Caméra)"
222
+ #~ msgid "Not a valid list of fractions"
223
+ #~ msgstr "Liste de fractions invalide"
199
224
 
200
- #: geopic_tag_reader/main.py:30
201
- msgid "(GPS)"
202
- msgstr "(GPS)"
225
+ #, python-brace-format
226
+ #~ msgid ""
227
+ #~ "Skipping original date/time (from {datefield}) as it was not recognized:"
228
+ #~ msgstr ""
229
+ #~ "Date/heure originale (issue de {datefield}) ignorée car elle n'a pas été "
230
+ #~ "reconnue :"
231
+
232
+ #, python-brace-format
233
+ #~ msgid "Skipping GPS date/time ({group} group) as it was not recognized:"
234
+ #~ msgstr ""
235
+ #~ "Date/heure du GPS (groupe {group}) ignorée car elle n'a pas été reconnue :"