geopic-tag-reader 1.4.2__py3-none-any.whl → 1.6.0__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 (36) hide show
  1. geopic_tag_reader/__init__.py +1 -1
  2. geopic_tag_reader/camera.py +6 -5
  3. geopic_tag_reader/cameras.csv +4 -2
  4. geopic_tag_reader/reader.py +30 -12
  5. geopic_tag_reader/translations/br/LC_MESSAGES/geopic_tag_reader.mo +0 -0
  6. geopic_tag_reader/translations/br/LC_MESSAGES/geopic_tag_reader.po +196 -0
  7. geopic_tag_reader/translations/da/LC_MESSAGES/geopic_tag_reader.mo +0 -0
  8. geopic_tag_reader/translations/da/LC_MESSAGES/geopic_tag_reader.po +1 -1
  9. geopic_tag_reader/translations/de/LC_MESSAGES/geopic_tag_reader.mo +0 -0
  10. geopic_tag_reader/translations/de/LC_MESSAGES/geopic_tag_reader.po +3 -2
  11. geopic_tag_reader/translations/en/LC_MESSAGES/geopic_tag_reader.mo +0 -0
  12. geopic_tag_reader/translations/en/LC_MESSAGES/geopic_tag_reader.po +22 -22
  13. geopic_tag_reader/translations/eo/LC_MESSAGES/geopic_tag_reader.mo +0 -0
  14. geopic_tag_reader/translations/eo/LC_MESSAGES/geopic_tag_reader.po +1 -1
  15. geopic_tag_reader/translations/es/LC_MESSAGES/geopic_tag_reader.mo +0 -0
  16. geopic_tag_reader/translations/es/LC_MESSAGES/geopic_tag_reader.po +3 -2
  17. geopic_tag_reader/translations/fr/LC_MESSAGES/geopic_tag_reader.mo +0 -0
  18. geopic_tag_reader/translations/fr/LC_MESSAGES/geopic_tag_reader.po +3 -2
  19. geopic_tag_reader/translations/geopic_tag_reader.pot +21 -21
  20. geopic_tag_reader/translations/hu/LC_MESSAGES/geopic_tag_reader.mo +0 -0
  21. geopic_tag_reader/translations/hu/LC_MESSAGES/geopic_tag_reader.po +3 -2
  22. geopic_tag_reader/translations/it/LC_MESSAGES/geopic_tag_reader.mo +0 -0
  23. geopic_tag_reader/translations/it/LC_MESSAGES/geopic_tag_reader.po +3 -3
  24. geopic_tag_reader/translations/ja/LC_MESSAGES/geopic_tag_reader.mo +0 -0
  25. geopic_tag_reader/translations/ja/LC_MESSAGES/geopic_tag_reader.po +53 -42
  26. geopic_tag_reader/translations/nl/LC_MESSAGES/geopic_tag_reader.mo +0 -0
  27. geopic_tag_reader/translations/nl/LC_MESSAGES/geopic_tag_reader.po +18 -6
  28. geopic_tag_reader/translations/pl/LC_MESSAGES/geopic_tag_reader.mo +0 -0
  29. geopic_tag_reader/translations/pl/LC_MESSAGES/geopic_tag_reader.po +3 -2
  30. geopic_tag_reader/translations/sv/LC_MESSAGES/geopic_tag_reader.mo +0 -0
  31. geopic_tag_reader/translations/sv/LC_MESSAGES/geopic_tag_reader.po +216 -0
  32. {geopic_tag_reader-1.4.2.dist-info → geopic_tag_reader-1.6.0.dist-info}/METADATA +14 -13
  33. {geopic_tag_reader-1.4.2.dist-info → geopic_tag_reader-1.6.0.dist-info}/RECORD +36 -32
  34. {geopic_tag_reader-1.4.2.dist-info → geopic_tag_reader-1.6.0.dist-info}/WHEEL +1 -1
  35. {geopic_tag_reader-1.4.2.dist-info → geopic_tag_reader-1.6.0.dist-info}/entry_points.txt +0 -0
  36. {geopic_tag_reader-1.4.2.dist-info → geopic_tag_reader-1.6.0.dist-info/licenses}/LICENSE +0 -0
@@ -2,4 +2,4 @@
2
2
  GeoPicTagReader
3
3
  """
4
4
 
5
- __version__ = "1.4.2"
5
+ __version__ = "1.6.0"
@@ -19,6 +19,7 @@ GPS_ACCURACY_MAKE = {
19
19
  "blackvue": 4,
20
20
  "tectectec": 4,
21
21
  "arashi vision": 4,
22
+ "qoocam": 4,
22
23
  # Smartphone GPS
23
24
  "samsung": 5,
24
25
  "xiaomi": 5,
@@ -118,7 +119,7 @@ def find_camera(make: Optional[str] = None, model: Optional[str] = None) -> Opti
118
119
  return next((cameras[matchMake][matchModel] for matchModel in cameras[matchMake].keys() if model.lower().startswith(matchModel)), None)
119
120
 
120
121
 
121
- def is_360(make: Optional[str] = None, model: Optional[str] = None, width: Optional[str] = None, height: Optional[str] = None) -> bool:
122
+ def is_360(make: Optional[str] = None, model: Optional[str] = None, width: Optional[int] = None, height: Optional[int] = None) -> bool:
122
123
  """
123
124
  Checks if given camera is equirectangular (360°) based on its make, model and dimensions (width, height).
124
125
 
@@ -128,11 +129,11 @@ def is_360(make: Optional[str] = None, model: Optional[str] = None, width: Optio
128
129
  False
129
130
  >>> is_360("GoPro", "Max 360")
130
131
  True
131
- >>> is_360("GoPro", "Max 360", "2048", "1024")
132
+ >>> is_360("GoPro", "Max 360", 2048, 1024)
132
133
  True
133
- >>> is_360("GoPro", "Max 360", "1024", "768")
134
+ >>> is_360("GoPro", "Max 360", 1024, 768)
134
135
  False
135
- >>> is_360("RICOH", "THETA S", "5376", "2688")
136
+ >>> is_360("RICOH", "THETA S", 5376, 2688)
136
137
  True
137
138
  """
138
139
 
@@ -142,7 +143,7 @@ def is_360(make: Optional[str] = None, model: Optional[str] = None, width: Optio
142
143
  return False
143
144
 
144
145
  # Check width and height are equirectangular
145
- if not ((width is None or height is None) or int(width) == 2 * int(height)):
146
+ if not ((width is None or height is None) or width == 2 * height):
146
147
  return False
147
148
 
148
149
  return camera.is_360
@@ -1167,6 +1167,8 @@
1167
1167
  "Gopro";"HD3";"5.76";;
1168
1168
  "GoPro";"HERO10 Black";"6.17";;
1169
1169
  "GoPro";"HERO11 Black";"6.74";;
1170
+ "GoPro";"HERO12 Black";"6.74";;
1171
+ "GoPro";"HERO13 Black";"6.74";;
1170
1172
  "GoPro";"HERO4 Black";"6.17";;
1171
1173
  "GoPro";"HERO4 Silver";"6.17";;
1172
1174
  "GoPro";"HERO5 Black";"6.17";;
@@ -1309,8 +1311,8 @@
1309
1311
  "Jenoptik";"JD C 5.0 SL";"7.11";;
1310
1312
  "JVC";"GC-QX3HD";"7.11";;
1311
1313
  "JVC";"GC-QX5HD";"7.11";;
1312
- "Kandao";"Qoocam 3";;"1";
1313
- "Kandao";"Qoocam 3 Ultra";;"1";
1314
+ "Kandao";"Qoocam 3";;"1";"4"
1315
+ "Kandao";"Qoocam 3 Ultra";;"1";"4"
1314
1316
  "Kodak";"DC200";"7.27";;
1315
1317
  "Kodak";"DC200 plus";"7.27";;
1316
1318
  "Kodak";"DC210 plus";"7.27";;
@@ -179,20 +179,17 @@ def readPictureMetadata(picture: bytes, lang_code: str = "en") -> GeoPicTags:
179
179
  GeoPicTags: Extracted metadata from picture
180
180
  """
181
181
 
182
- _ = i18n_init(lang_code)
183
- warnings = []
184
- img = pyexiv2.ImageData(picture)
185
182
  data = {}
186
- data.update(img.read_exif())
187
- data.update(img.read_iptc())
188
- data.update(img.read_xmp())
189
- width = img.get_pixel_width()
190
- height = img.get_pixel_height()
183
+ with pyexiv2.ImageData(picture) as img:
184
+ data.update(img.read_exif())
185
+ data.update(img.read_iptc())
186
+ data.update(img.read_xmp())
187
+ width = img.get_pixel_width()
188
+ height = img.get_pixel_height()
191
189
 
192
- imgComment = img.read_comment()
193
- if imgComment is not None and len(imgComment.strip()) > 0:
194
- data["Exif.Photo.UserComment"] = imgComment
195
- img.close()
190
+ imgComment = img.read_comment()
191
+ if imgComment is not None and len(imgComment.strip()) > 0:
192
+ data["Exif.Photo.UserComment"] = imgComment
196
193
 
197
194
  # Read Mapillary tags
198
195
  if "Exif.Image.ImageDescription" in data:
@@ -204,6 +201,27 @@ def readPictureMetadata(picture: bytes, lang_code: str = "en") -> GeoPicTags:
204
201
  except:
205
202
  pass
206
203
 
204
+ return getPictureMetadata(data, width, height, lang_code)
205
+
206
+
207
+ def getPictureMetadata(data: dict, width: int, height: int, lang_code: str = "en") -> GeoPicTags:
208
+ """Extracts metadata from already read metadata.
209
+
210
+ This method is useful when you already have the metadata read by `readPictureMetadata` and you want to extract the metadata from it.
211
+
212
+ Args:
213
+ data (dict): Raw EXIF tags / iptc / xmp / description from picture. MUST be comming from a previsou parse by the `readPictureMetadata` method.
214
+ width (int): Picture width
215
+ height (int): Picture height
216
+ lang_code (str): Language code for translating error labels
217
+
218
+ Returns:
219
+ GeoPicTags: Extracted metadata from picture
220
+ """
221
+
222
+ _ = i18n_init(lang_code)
223
+ warnings = []
224
+
207
225
  # Sanitize charset information
208
226
  for k, v in data.items():
209
227
  if isinstance(v, str):
@@ -0,0 +1,196 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the PACKAGE package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: PACKAGE VERSION\n"
9
+ "Report-Msgid-Bugs-To: \n"
10
+ "POT-Creation-Date: 2025-02-10 11:04+0100\n"
11
+ "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
12
+ "Last-Translator: Automatically generated\n"
13
+ "Language-Team: none\n"
14
+ "Language: br\n"
15
+ "MIME-Version: 1.0\n"
16
+ "Content-Type: text/plain; charset=UTF-8\n"
17
+ "Content-Transfer-Encoding: 8bit\n"
18
+
19
+ #: geopic_tag_reader/main.py:26
20
+ msgid "Latitude:"
21
+ msgstr ""
22
+
23
+ #: geopic_tag_reader/main.py:27
24
+ msgid "Longitude:"
25
+ msgstr ""
26
+
27
+ #: geopic_tag_reader/main.py:28
28
+ msgid "GPS accuracy:"
29
+ msgstr ""
30
+
31
+ #: geopic_tag_reader/main.py:28 geopic_tag_reader/main.py:31
32
+ #: geopic_tag_reader/main.py:32
33
+ msgid "not set"
34
+ msgstr ""
35
+
36
+ #: geopic_tag_reader/main.py:29
37
+ msgid "Timestamp:"
38
+ msgstr ""
39
+
40
+ #: geopic_tag_reader/main.py:31
41
+ msgid "(GPS)"
42
+ msgstr ""
43
+
44
+ #: geopic_tag_reader/main.py:32
45
+ msgid "(Camera)"
46
+ msgstr ""
47
+
48
+ #: geopic_tag_reader/main.py:33
49
+ msgid "Heading:"
50
+ msgstr ""
51
+
52
+ #: geopic_tag_reader/main.py:34
53
+ msgid "Type:"
54
+ msgstr ""
55
+
56
+ #: geopic_tag_reader/main.py:35
57
+ msgid "Make:"
58
+ msgstr ""
59
+
60
+ #: geopic_tag_reader/main.py:36
61
+ msgid "Model:"
62
+ msgstr ""
63
+
64
+ #: geopic_tag_reader/main.py:37
65
+ msgid "Focal length:"
66
+ msgstr ""
67
+
68
+ #: geopic_tag_reader/main.py:38
69
+ msgid "Field of view:"
70
+ msgstr ""
71
+
72
+ #: geopic_tag_reader/main.py:39
73
+ msgid "Sensor width:"
74
+ msgstr ""
75
+
76
+ #: geopic_tag_reader/main.py:40
77
+ msgid "Crop parameters:"
78
+ msgstr ""
79
+
80
+ #: geopic_tag_reader/main.py:41
81
+ msgid "Pitch:"
82
+ msgstr ""
83
+
84
+ #: geopic_tag_reader/main.py:42
85
+ msgid "Roll:"
86
+ msgstr ""
87
+
88
+ #: geopic_tag_reader/main.py:43
89
+ msgid "Yaw:"
90
+ msgstr ""
91
+
92
+ #: geopic_tag_reader/main.py:46
93
+ msgid "Warnings raised by reader:"
94
+ msgstr ""
95
+
96
+ #: geopic_tag_reader/reader.py:228
97
+ msgid "Read latitude is out of WGS84 bounds (should be in [-90, 90])"
98
+ msgstr ""
99
+
100
+ #: geopic_tag_reader/reader.py:230
101
+ msgid "Read longitude is out of WGS84 bounds (should be in [-180, 180])"
102
+ msgstr ""
103
+
104
+ #: geopic_tag_reader/reader.py:258
105
+ #, python-brace-format
106
+ msgid "Skipping Mapillary date/time as it was not recognized: {v}"
107
+ msgstr ""
108
+
109
+ #: geopic_tag_reader/reader.py:288
110
+ msgid "No heading value was found, this reduces usability of picture"
111
+ msgstr ""
112
+
113
+ #: geopic_tag_reader/reader.py:331
114
+ msgid ""
115
+ "No make and model value found, no assumption on focal length or GPS "
116
+ "precision can be made"
117
+ msgstr ""
118
+
119
+ #: geopic_tag_reader/reader.py:381
120
+ msgid ""
121
+ "No focal length value was found, this prevents calculating field of view"
122
+ msgstr ""
123
+
124
+ #: geopic_tag_reader/reader.py:433
125
+ msgid "No GPS accuracy value found, this prevents computing a quality score"
126
+ msgstr ""
127
+
128
+ #: geopic_tag_reader/reader.py:435
129
+ msgid ""
130
+ "No GPS horizontal positioning error value found, GPS accuracy can only be "
131
+ "estimated"
132
+ msgstr ""
133
+
134
+ #: geopic_tag_reader/reader.py:442
135
+ msgid "No GPS coordinates or broken coordinates in picture EXIF tags"
136
+ msgstr ""
137
+
138
+ #: geopic_tag_reader/reader.py:448
139
+ msgid "No valid date in picture EXIF tags"
140
+ msgstr ""
141
+
142
+ #: geopic_tag_reader/reader.py:453
143
+ msgid "The picture is missing mandatory metadata:"
144
+ msgstr ""
145
+
146
+ #: geopic_tag_reader/reader.py:567 geopic_tag_reader/reader.py:596
147
+ msgid "GPSLatitudeRef not found, assuming GPSLatitudeRef is North"
148
+ msgstr ""
149
+
150
+ #: geopic_tag_reader/reader.py:575
151
+ msgid "Broken GPS coordinates in picture EXIF tags"
152
+ msgstr ""
153
+
154
+ #: geopic_tag_reader/reader.py:578 geopic_tag_reader/reader.py:602
155
+ msgid "GPSLongitudeRef not found, assuming GPSLongitudeRef is East"
156
+ msgstr ""
157
+
158
+ #: geopic_tag_reader/reader.py:663
159
+ msgid "Precise timezone information not found, fallback to UTC"
160
+ msgstr ""
161
+
162
+ #: geopic_tag_reader/reader.py:668
163
+ msgid ""
164
+ "Precise timezone information not found (and no GPS coordinates to help), "
165
+ "fallback to UTC"
166
+ msgstr ""
167
+
168
+ #: geopic_tag_reader/reader.py:672
169
+ #, python-brace-format
170
+ msgid ""
171
+ "Skipping original date/time (from {datefield}) as it was not recognized: {v}"
172
+ msgstr ""
173
+
174
+ #: geopic_tag_reader/reader.py:704
175
+ #, python-brace-format
176
+ msgid ""
177
+ "GPSTimeStamp and GPSDateTime don't contain supported time format (in {group} "
178
+ "group)"
179
+ msgstr ""
180
+
181
+ #: geopic_tag_reader/reader.py:735
182
+ #, python-brace-format
183
+ msgid "Skipping GPS date/time ({group} group) as it was not recognized: {v}"
184
+ msgstr ""
185
+
186
+ #: geopic_tag_reader/reader.py:761
187
+ #, python-brace-format
188
+ msgid ""
189
+ "Microseconds read from decimal seconds value ({microsecondsFromSeconds}) is "
190
+ "not matching value from EXIF field ({microseconds}). Max value will be kept."
191
+ msgstr ""
192
+
193
+ #: geopic_tag_reader/writer.py:132
194
+ #, python-brace-format
195
+ msgid "Unsupported key in additional tags ({k})"
196
+ msgstr ""
@@ -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-11-24 15:36+0100\n"
11
- "PO-Revision-Date: 2025-01-07 15:14+0000\n"
11
+ "PO-Revision-Date: 2025-04-16 08:21+0000\n"
12
12
  "Last-Translator: ERYpTION <eryption.ar9q2@slmail.me>\n"
13
13
  "Language-Team: Danish <http://weblate.panoramax.xyz/projects/panoramax/"
14
14
  "tag-reader/da/>\n"
@@ -8,8 +8,8 @@ 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: 2025-01-09 08:14+0000\n"
12
- "Last-Translator: mcliquid <weblate@mcliquid.de>\n"
11
+ "PO-Revision-Date: 2025-04-15 07:48+0000\n"
12
+ "Last-Translator: Anonymous <noreply@weblate.org>\n"
13
13
  "Language-Team: German <http://weblate.panoramax.xyz/projects/panoramax/"
14
14
  "tag-reader/de/>\n"
15
15
  "Language: de\n"
@@ -40,6 +40,7 @@ msgid "Type:"
40
40
  msgstr "Typ:"
41
41
 
42
42
  #: geopic_tag_reader/main.py:31
43
+ #, fuzzy
43
44
  msgid "Make:"
44
45
  msgstr "Hersteller:"
45
46
 
@@ -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: 2025-02-10 11:04+0100\n"
11
- "PO-Revision-Date: 2025-02-10 11:04+0100\n"
10
+ "POT-Creation-Date: 2025-05-09 12:12+0200\n"
11
+ "PO-Revision-Date: 2025-05-09 12:12+0200\n"
12
12
  "Last-Translator: Automatically generated\n"
13
13
  "Language-Team: none\n"
14
14
  "Language: en\n"
@@ -94,24 +94,24 @@ msgstr "Yaw:"
94
94
  msgid "Warnings raised by reader:"
95
95
  msgstr "Warnings raised by reader:"
96
96
 
97
- #: geopic_tag_reader/reader.py:228
97
+ #: geopic_tag_reader/reader.py:246
98
98
  msgid "Read latitude is out of WGS84 bounds (should be in [-90, 90])"
99
99
  msgstr "Read latitude is out of WGS84 bounds (should be in [-90, 90])"
100
100
 
101
- #: geopic_tag_reader/reader.py:230
101
+ #: geopic_tag_reader/reader.py:248
102
102
  msgid "Read longitude is out of WGS84 bounds (should be in [-180, 180])"
103
103
  msgstr "Read longitude is out of WGS84 bounds (should be in [-180, 180])"
104
104
 
105
- #: geopic_tag_reader/reader.py:258
105
+ #: geopic_tag_reader/reader.py:276
106
106
  #, python-brace-format
107
107
  msgid "Skipping Mapillary date/time as it was not recognized: {v}"
108
108
  msgstr "Skipping Mapillary date/time as it was not recognized: {v}"
109
109
 
110
- #: geopic_tag_reader/reader.py:288
110
+ #: geopic_tag_reader/reader.py:306
111
111
  msgid "No heading value was found, this reduces usability of picture"
112
112
  msgstr "No heading value was found, this reduces usability of picture"
113
113
 
114
- #: geopic_tag_reader/reader.py:331
114
+ #: geopic_tag_reader/reader.py:349
115
115
  msgid ""
116
116
  "No make and model value found, no assumption on focal length or GPS "
117
117
  "precision can be made"
@@ -119,17 +119,17 @@ msgstr ""
119
119
  "No make and model value found, no assumption on focal length or GPS "
120
120
  "precision can be made"
121
121
 
122
- #: geopic_tag_reader/reader.py:381
122
+ #: geopic_tag_reader/reader.py:399
123
123
  msgid ""
124
124
  "No focal length value was found, this prevents calculating field of view"
125
125
  msgstr ""
126
126
  "No focal length value was found, this prevents calculating field of view"
127
127
 
128
- #: geopic_tag_reader/reader.py:433
128
+ #: geopic_tag_reader/reader.py:451
129
129
  msgid "No GPS accuracy value found, this prevents computing a quality score"
130
130
  msgstr "No GPS accuracy value found, this prevents computing a quality score"
131
131
 
132
- #: geopic_tag_reader/reader.py:435
132
+ #: geopic_tag_reader/reader.py:453
133
133
  msgid ""
134
134
  "No GPS horizontal positioning error value found, GPS accuracy can only be "
135
135
  "estimated"
@@ -137,35 +137,35 @@ msgstr ""
137
137
  "No GPS horizontal positioning error value found, GPS accuracy can only be "
138
138
  "estimated"
139
139
 
140
- #: geopic_tag_reader/reader.py:442
140
+ #: geopic_tag_reader/reader.py:460
141
141
  msgid "No GPS coordinates or broken coordinates in picture EXIF tags"
142
142
  msgstr "No GPS coordinates or broken coordinates in picture EXIF tags"
143
143
 
144
- #: geopic_tag_reader/reader.py:448
144
+ #: geopic_tag_reader/reader.py:466
145
145
  msgid "No valid date in picture EXIF tags"
146
146
  msgstr "No valid date in picture EXIF tags"
147
147
 
148
- #: geopic_tag_reader/reader.py:453
148
+ #: geopic_tag_reader/reader.py:471
149
149
  msgid "The picture is missing mandatory metadata:"
150
150
  msgstr "The picture is missing mandatory metadata:"
151
151
 
152
- #: geopic_tag_reader/reader.py:567 geopic_tag_reader/reader.py:596
152
+ #: geopic_tag_reader/reader.py:585 geopic_tag_reader/reader.py:614
153
153
  msgid "GPSLatitudeRef not found, assuming GPSLatitudeRef is North"
154
154
  msgstr "GPSLatitudeRef not found, assuming GPSLatitudeRef is North"
155
155
 
156
- #: geopic_tag_reader/reader.py:575
156
+ #: geopic_tag_reader/reader.py:593
157
157
  msgid "Broken GPS coordinates in picture EXIF tags"
158
158
  msgstr "Broken GPS coordinates in picture EXIF tags"
159
159
 
160
- #: geopic_tag_reader/reader.py:578 geopic_tag_reader/reader.py:602
160
+ #: geopic_tag_reader/reader.py:596 geopic_tag_reader/reader.py:620
161
161
  msgid "GPSLongitudeRef not found, assuming GPSLongitudeRef is East"
162
162
  msgstr "GPSLongitudeRef not found, assuming GPSLongitudeRef is East"
163
163
 
164
- #: geopic_tag_reader/reader.py:663
164
+ #: geopic_tag_reader/reader.py:681
165
165
  msgid "Precise timezone information not found, fallback to UTC"
166
166
  msgstr "Precise timezone information not found, fallback to UTC"
167
167
 
168
- #: geopic_tag_reader/reader.py:668
168
+ #: geopic_tag_reader/reader.py:686
169
169
  msgid ""
170
170
  "Precise timezone information not found (and no GPS coordinates to help), "
171
171
  "fallback to UTC"
@@ -173,14 +173,14 @@ msgstr ""
173
173
  "Precise timezone information not found (and no GPS coordinates to help), "
174
174
  "fallback to UTC"
175
175
 
176
- #: geopic_tag_reader/reader.py:672
176
+ #: geopic_tag_reader/reader.py:690
177
177
  #, python-brace-format
178
178
  msgid ""
179
179
  "Skipping original date/time (from {datefield}) as it was not recognized: {v}"
180
180
  msgstr ""
181
181
  "Skipping original date/time (from {datefield}) as it was not recognized: {v}"
182
182
 
183
- #: geopic_tag_reader/reader.py:704
183
+ #: geopic_tag_reader/reader.py:722
184
184
  #, python-brace-format
185
185
  msgid ""
186
186
  "GPSTimeStamp and GPSDateTime don't contain supported time format (in {group} "
@@ -189,12 +189,12 @@ msgstr ""
189
189
  "GPSTimeStamp and GPSDateTime don't contain supported time format (in {group} "
190
190
  "group)"
191
191
 
192
- #: geopic_tag_reader/reader.py:735
192
+ #: geopic_tag_reader/reader.py:753
193
193
  #, python-brace-format
194
194
  msgid "Skipping GPS date/time ({group} group) as it was not recognized: {v}"
195
195
  msgstr "Skipping GPS date/time ({group} group) as it was not recognized: {v}"
196
196
 
197
- #: geopic_tag_reader/reader.py:761
197
+ #: geopic_tag_reader/reader.py:779
198
198
  #, python-brace-format
199
199
  msgid ""
200
200
  "Microseconds read from decimal seconds value ({microsecondsFromSeconds}) is "
@@ -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-11-24 15:36+0100\n"
11
- "PO-Revision-Date: 2025-01-17 15:11+0000\n"
11
+ "PO-Revision-Date: 2025-04-26 18:21+0000\n"
12
12
  "Last-Translator: Rémi Simonnin <remisimonnin@orange.fr>\n"
13
13
  "Language-Team: Esperanto <http://weblate.panoramax.xyz/projects/panoramax/"
14
14
  "tag-reader/eo/>\n"
@@ -8,8 +8,8 @@ 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-10-02 08:07+0000\n"
12
- "Last-Translator: DaniCS <daniel.callejas.sevilla@gmail.com>\n"
11
+ "PO-Revision-Date: 2025-02-27 12:33+0000\n"
12
+ "Last-Translator: PanierAvide <adrien@pavie.info>\n"
13
13
  "Language-Team: Spanish <http://weblate.panoramax.xyz/projects/panoramax/"
14
14
  "tag-reader/es/>\n"
15
15
  "Language: es\n"
@@ -40,6 +40,7 @@ msgid "Type:"
40
40
  msgstr "Tipo:"
41
41
 
42
42
  #: geopic_tag_reader/main.py:31
43
+ #, fuzzy
43
44
  msgid "Make:"
44
45
  msgstr "Marca:"
45
46
 
@@ -8,8 +8,8 @@ msgstr ""
8
8
  "Project-Id-Version: \n"
9
9
  "Report-Msgid-Bugs-To: \n"
10
10
  "POT-Creation-Date: 2024-10-28 11:05+0100\n"
11
- "PO-Revision-Date: 2025-01-10 14:14+0000\n"
12
- "Last-Translator: PanierAvide <adrien@pavie.info>\n"
11
+ "PO-Revision-Date: 2025-04-15 07:48+0000\n"
12
+ "Last-Translator: Anonymous <noreply@weblate.org>\n"
13
13
  "Language-Team: French <http://weblate.panoramax.xyz/projects/panoramax/"
14
14
  "tag-reader/fr/>\n"
15
15
  "Language: fr\n"
@@ -52,6 +52,7 @@ msgid "Type:"
52
52
  msgstr "Type :"
53
53
 
54
54
  #: geopic_tag_reader/main.py:34
55
+ #, fuzzy
55
56
  msgid "Make:"
56
57
  msgstr "Fabriquant :"
57
58