geopic-tag-reader 1.3.0__py3-none-any.whl → 1.3.1__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.
- geopic_tag_reader/__init__.py +1 -1
- geopic_tag_reader/reader.py +4 -1
- geopic_tag_reader/translations/en/LC_MESSAGES/geopic_tag_reader.mo +0 -0
- geopic_tag_reader/translations/en/LC_MESSAGES/geopic_tag_reader.po +17 -17
- geopic_tag_reader/translations/es/LC_MESSAGES/geopic_tag_reader.mo +0 -0
- geopic_tag_reader/translations/es/LC_MESSAGES/geopic_tag_reader.po +58 -22
- geopic_tag_reader/translations/fr/LC_MESSAGES/geopic_tag_reader.mo +0 -0
- geopic_tag_reader/translations/fr/LC_MESSAGES/geopic_tag_reader.po +10 -2
- geopic_tag_reader/translations/geopic_tag_reader.pot +16 -16
- geopic_tag_reader/translations/ko/LC_MESSAGES/geopic_tag_reader.mo +0 -0
- geopic_tag_reader/translations/ko/LC_MESSAGES/geopic_tag_reader.po +158 -0
- {geopic_tag_reader-1.3.0.dist-info → geopic_tag_reader-1.3.1.dist-info}/LICENSE +1 -1
- {geopic_tag_reader-1.3.0.dist-info → geopic_tag_reader-1.3.1.dist-info}/METADATA +4 -3
- {geopic_tag_reader-1.3.0.dist-info → geopic_tag_reader-1.3.1.dist-info}/RECORD +16 -14
- {geopic_tag_reader-1.3.0.dist-info → geopic_tag_reader-1.3.1.dist-info}/WHEEL +0 -0
- {geopic_tag_reader-1.3.0.dist-info → geopic_tag_reader-1.3.1.dist-info}/entry_points.txt +0 -0
geopic_tag_reader/__init__.py
CHANGED
geopic_tag_reader/reader.py
CHANGED
|
@@ -174,7 +174,10 @@ def readPictureMetadata(picture: bytes, lang_code: str = "en") -> GeoPicTags:
|
|
|
174
174
|
img = pyexiv2.ImageData(picture)
|
|
175
175
|
data = {}
|
|
176
176
|
data.update(img.read_exif())
|
|
177
|
+
data.update(img.read_iptc())
|
|
177
178
|
data.update(img.read_xmp())
|
|
179
|
+
width = img.get_pixel_width()
|
|
180
|
+
height = img.get_pixel_height()
|
|
178
181
|
|
|
179
182
|
imgComment = img.read_comment()
|
|
180
183
|
if imgComment is not None and len(imgComment.strip()) > 0:
|
|
@@ -352,7 +355,7 @@ def readPictureMetadata(picture: bytes, lang_code: str = "en") -> GeoPicTags:
|
|
|
352
355
|
if isExifTagUsable(data, "Xmp.GPano.ProjectionType"):
|
|
353
356
|
pic_type = data["Xmp.GPano.ProjectionType"]
|
|
354
357
|
# 360° based on known models
|
|
355
|
-
elif camera.is_360(make, model,
|
|
358
|
+
elif camera.is_360(make, model, width, height):
|
|
356
359
|
pic_type = "equirectangular"
|
|
357
360
|
# Flat by default
|
|
358
361
|
else:
|
|
Binary file
|
|
@@ -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-09
|
|
11
|
-
"PO-Revision-Date: 2024-09
|
|
10
|
+
"POT-Creation-Date: 2024-10-09 10:49+0200\n"
|
|
11
|
+
"PO-Revision-Date: 2024-10-09 10:49+0200\n"
|
|
12
12
|
"Last-Translator: Automatically generated\n"
|
|
13
13
|
"Language-Team: none\n"
|
|
14
14
|
"Language: en\n"
|
|
@@ -81,48 +81,48 @@ msgstr "Yaw:"
|
|
|
81
81
|
msgid "Warnings raised by reader:"
|
|
82
82
|
msgstr "Warnings raised by reader:"
|
|
83
83
|
|
|
84
|
-
#: geopic_tag_reader/reader.py:
|
|
84
|
+
#: geopic_tag_reader/reader.py:218
|
|
85
85
|
msgid "Read latitude is out of WGS84 bounds (should be in [-90, 90])"
|
|
86
86
|
msgstr "Read latitude is out of WGS84 bounds (should be in [-90, 90])"
|
|
87
87
|
|
|
88
|
-
#: geopic_tag_reader/reader.py:
|
|
88
|
+
#: geopic_tag_reader/reader.py:220
|
|
89
89
|
msgid "Read longitude is out of WGS84 bounds (should be in [-180, 180])"
|
|
90
90
|
msgstr "Read longitude is out of WGS84 bounds (should be in [-180, 180])"
|
|
91
91
|
|
|
92
|
-
#: geopic_tag_reader/reader.py:
|
|
92
|
+
#: geopic_tag_reader/reader.py:248
|
|
93
93
|
#, python-brace-format
|
|
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:
|
|
97
|
+
#: geopic_tag_reader/reader.py:374
|
|
98
98
|
msgid "No GPS coordinates or broken coordinates in picture EXIF tags"
|
|
99
99
|
msgstr "No GPS coordinates or broken coordinates in picture EXIF tags"
|
|
100
100
|
|
|
101
|
-
#: geopic_tag_reader/reader.py:
|
|
101
|
+
#: geopic_tag_reader/reader.py:380
|
|
102
102
|
msgid "No valid date in picture EXIF tags"
|
|
103
103
|
msgstr "No valid date in picture EXIF tags"
|
|
104
104
|
|
|
105
|
-
#: geopic_tag_reader/reader.py:
|
|
105
|
+
#: geopic_tag_reader/reader.py:385
|
|
106
106
|
msgid "The picture is missing mandatory metadata:"
|
|
107
107
|
msgstr "The picture is missing mandatory metadata:"
|
|
108
108
|
|
|
109
|
-
#: geopic_tag_reader/reader.py:
|
|
109
|
+
#: geopic_tag_reader/reader.py:476 geopic_tag_reader/reader.py:505
|
|
110
110
|
msgid "GPSLatitudeRef not found, assuming GPSLatitudeRef is North"
|
|
111
111
|
msgstr "GPSLatitudeRef not found, assuming GPSLatitudeRef is North"
|
|
112
112
|
|
|
113
|
-
#: geopic_tag_reader/reader.py:
|
|
113
|
+
#: geopic_tag_reader/reader.py:484
|
|
114
114
|
msgid "Broken GPS coordinates in picture EXIF tags"
|
|
115
115
|
msgstr "Broken GPS coordinates in picture EXIF tags"
|
|
116
116
|
|
|
117
|
-
#: geopic_tag_reader/reader.py:
|
|
117
|
+
#: geopic_tag_reader/reader.py:487 geopic_tag_reader/reader.py:511
|
|
118
118
|
msgid "GPSLongitudeRef not found, assuming GPSLongitudeRef is East"
|
|
119
119
|
msgstr "GPSLongitudeRef not found, assuming GPSLongitudeRef is East"
|
|
120
120
|
|
|
121
|
-
#: geopic_tag_reader/reader.py:
|
|
121
|
+
#: geopic_tag_reader/reader.py:572
|
|
122
122
|
msgid "Precise timezone information not found, fallback to UTC"
|
|
123
123
|
msgstr "Precise timezone information not found, fallback to UTC"
|
|
124
124
|
|
|
125
|
-
#: geopic_tag_reader/reader.py:
|
|
125
|
+
#: geopic_tag_reader/reader.py:577
|
|
126
126
|
msgid ""
|
|
127
127
|
"Precise timezone information not found (and no GPS coordinates to help), "
|
|
128
128
|
"fallback to UTC"
|
|
@@ -130,14 +130,14 @@ msgstr ""
|
|
|
130
130
|
"Precise timezone information not found (and no GPS coordinates to help), "
|
|
131
131
|
"fallback to UTC"
|
|
132
132
|
|
|
133
|
-
#: geopic_tag_reader/reader.py:
|
|
133
|
+
#: geopic_tag_reader/reader.py:581
|
|
134
134
|
#, python-brace-format
|
|
135
135
|
msgid ""
|
|
136
136
|
"Skipping original date/time (from {datefield}) as it was not recognized: {v}"
|
|
137
137
|
msgstr ""
|
|
138
138
|
"Skipping original date/time (from {datefield}) as it was not recognized: {v}"
|
|
139
139
|
|
|
140
|
-
#: geopic_tag_reader/reader.py:
|
|
140
|
+
#: geopic_tag_reader/reader.py:613
|
|
141
141
|
#, python-brace-format
|
|
142
142
|
msgid ""
|
|
143
143
|
"GPSTimeStamp and GPSDateTime don't contain supported time format (in {group} "
|
|
@@ -146,12 +146,12 @@ msgstr ""
|
|
|
146
146
|
"GPSTimeStamp and GPSDateTime don't contain supported time format (in {group} "
|
|
147
147
|
"group)"
|
|
148
148
|
|
|
149
|
-
#: geopic_tag_reader/reader.py:
|
|
149
|
+
#: geopic_tag_reader/reader.py:644
|
|
150
150
|
#, python-brace-format
|
|
151
151
|
msgid "Skipping GPS date/time ({group} group) as it was not recognized: {v}"
|
|
152
152
|
msgstr "Skipping GPS date/time ({group} group) as it was not recognized: {v}"
|
|
153
153
|
|
|
154
|
-
#: geopic_tag_reader/reader.py:
|
|
154
|
+
#: geopic_tag_reader/reader.py:670
|
|
155
155
|
#, python-brace-format
|
|
156
156
|
msgid ""
|
|
157
157
|
"Microseconds read from decimal seconds value ({microsecondsFromSeconds}) is "
|
|
Binary file
|
|
@@ -8,74 +8,82 @@ 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:
|
|
12
|
-
"Last-Translator:
|
|
13
|
-
"Language-Team:
|
|
11
|
+
"PO-Revision-Date: 2024-10-02 08:07+0000\n"
|
|
12
|
+
"Last-Translator: DaniCS <daniel.callejas.sevilla@gmail.com>\n"
|
|
13
|
+
"Language-Team: Spanish <http://weblate.panoramax.xyz/projects/panoramax/"
|
|
14
|
+
"tag-reader/es/>\n"
|
|
14
15
|
"Language: es\n"
|
|
15
16
|
"MIME-Version: 1.0\n"
|
|
16
17
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
17
18
|
"Content-Transfer-Encoding: 8bit\n"
|
|
19
|
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
20
|
+
"X-Generator: Weblate 5.4.3\n"
|
|
18
21
|
|
|
19
22
|
#: geopic_tag_reader/main.py:26
|
|
20
23
|
msgid "Latitude:"
|
|
21
|
-
msgstr ""
|
|
24
|
+
msgstr "Latitud:"
|
|
22
25
|
|
|
23
26
|
#: geopic_tag_reader/main.py:27
|
|
24
27
|
msgid "Longitude:"
|
|
25
|
-
msgstr ""
|
|
28
|
+
msgstr "Longitud:"
|
|
26
29
|
|
|
27
30
|
#: geopic_tag_reader/main.py:28
|
|
28
31
|
msgid "Timestamp:"
|
|
29
|
-
msgstr ""
|
|
32
|
+
msgstr "Fecha y hora:"
|
|
30
33
|
|
|
31
34
|
#: geopic_tag_reader/main.py:29
|
|
32
35
|
msgid "Heading:"
|
|
33
|
-
msgstr ""
|
|
36
|
+
msgstr "Orientación:"
|
|
34
37
|
|
|
35
38
|
#: geopic_tag_reader/main.py:30
|
|
36
39
|
msgid "Type:"
|
|
37
|
-
msgstr ""
|
|
40
|
+
msgstr "Tipo:"
|
|
38
41
|
|
|
39
42
|
#: geopic_tag_reader/main.py:31
|
|
40
43
|
msgid "Make:"
|
|
41
|
-
msgstr ""
|
|
44
|
+
msgstr "Marca:"
|
|
42
45
|
|
|
43
46
|
#: geopic_tag_reader/main.py:32
|
|
44
47
|
msgid "Model:"
|
|
45
|
-
msgstr ""
|
|
48
|
+
msgstr "Modelo:"
|
|
46
49
|
|
|
47
50
|
#: geopic_tag_reader/main.py:33
|
|
48
51
|
msgid "Focal length:"
|
|
49
|
-
msgstr ""
|
|
52
|
+
msgstr "Distancia focal:"
|
|
50
53
|
|
|
51
54
|
#: geopic_tag_reader/main.py:34
|
|
52
55
|
msgid "Crop parameters:"
|
|
53
|
-
msgstr ""
|
|
56
|
+
msgstr "Parámetros de recorte:"
|
|
54
57
|
|
|
55
58
|
#: geopic_tag_reader/main.py:35
|
|
56
59
|
msgid "Pitch:"
|
|
57
|
-
msgstr ""
|
|
60
|
+
msgstr "Ángulo de cabeceo:"
|
|
58
61
|
|
|
59
62
|
#: geopic_tag_reader/main.py:36
|
|
60
63
|
msgid "Roll:"
|
|
61
|
-
msgstr ""
|
|
64
|
+
msgstr "Ángulo de alabeo:"
|
|
62
65
|
|
|
63
66
|
#: geopic_tag_reader/main.py:39
|
|
64
67
|
msgid "Warnings raised by reader:"
|
|
65
|
-
msgstr ""
|
|
68
|
+
msgstr "Avisos del lector:"
|
|
66
69
|
|
|
67
70
|
#: geopic_tag_reader/reader.py:183
|
|
68
71
|
msgid "Read latitude is out of WGS84 bounds (should be in [-90, 90])"
|
|
69
72
|
msgstr ""
|
|
73
|
+
"La latitud está fuera del rango WGS84 (debería estar comprendida en [-90, "
|
|
74
|
+
"90])"
|
|
70
75
|
|
|
71
76
|
#: geopic_tag_reader/reader.py:185
|
|
72
77
|
msgid "Read longitude is out of WGS84 bounds (should be in [-180, 180])"
|
|
73
78
|
msgstr ""
|
|
79
|
+
"La longitud está fuera del rango WGS84 (debería estar comprendida en [-180, "
|
|
80
|
+
"180])"
|
|
74
81
|
|
|
75
82
|
#: geopic_tag_reader/reader.py:227
|
|
76
83
|
#, python-brace-format
|
|
77
84
|
msgid "Skipping Mapillary date/time as it was not recognized: {v}"
|
|
78
85
|
msgstr ""
|
|
86
|
+
"No se tiene en cuenta la fecha/hora Mapillary porque no se reconoce: {v}"
|
|
79
87
|
|
|
80
88
|
#: geopic_tag_reader/reader.py:240
|
|
81
89
|
msgid "Contradicting heading values found, GPSImgDirection value is used"
|
|
@@ -83,43 +91,48 @@ msgstr ""
|
|
|
83
91
|
|
|
84
92
|
#: geopic_tag_reader/reader.py:351
|
|
85
93
|
msgid "No GPS coordinates or broken coordinates in picture EXIF tags"
|
|
86
|
-
msgstr ""
|
|
94
|
+
msgstr "Las etiquetas EXIF no incluyen coordenadas GPS, o no son utilizables"
|
|
87
95
|
|
|
88
96
|
#: geopic_tag_reader/reader.py:357
|
|
89
97
|
msgid "No valid date in picture EXIF tags"
|
|
90
|
-
msgstr ""
|
|
98
|
+
msgstr "Las etiquetas EXIF de la imagen no proporcionan una fecha válida"
|
|
91
99
|
|
|
92
100
|
#: geopic_tag_reader/reader.py:362
|
|
93
101
|
msgid "The picture is missing mandatory metadata:"
|
|
94
|
-
msgstr ""
|
|
102
|
+
msgstr "Faltan metadatos obligatorios en la imagen:"
|
|
95
103
|
|
|
96
104
|
#: geopic_tag_reader/reader.py:449 geopic_tag_reader/reader.py:478
|
|
97
105
|
msgid "GPSLatitudeRef not found, assuming GPSLatitudeRef is North"
|
|
98
|
-
msgstr ""
|
|
106
|
+
msgstr "No se encuentra GPSLatitudeRef, se asume que es Norte"
|
|
99
107
|
|
|
100
108
|
#: geopic_tag_reader/reader.py:457
|
|
101
109
|
msgid "Broken GPS coordinates in picture EXIF tags"
|
|
102
|
-
msgstr ""
|
|
110
|
+
msgstr "Las coordenadas GPS en la etiqueta EXIF no son válidas"
|
|
103
111
|
|
|
104
112
|
#: geopic_tag_reader/reader.py:460 geopic_tag_reader/reader.py:484
|
|
105
113
|
msgid "GPSLongitudeRef not found, assuming GPSLongitudeRef is East"
|
|
106
|
-
msgstr ""
|
|
114
|
+
msgstr "No se encuentra GPSLongitudeRef, se asume que GPSLongitudeRef es este"
|
|
107
115
|
|
|
108
116
|
#: geopic_tag_reader/reader.py:537
|
|
109
117
|
msgid "Precise timezone information not found, fallback to UTC"
|
|
110
118
|
msgstr ""
|
|
119
|
+
"No se encuentra información de huso horario, se utiliza hora UTC en su lugar"
|
|
111
120
|
|
|
112
121
|
#: geopic_tag_reader/reader.py:542
|
|
113
122
|
msgid ""
|
|
114
123
|
"Precise timezone information not found (and no GPS coordinates to help), "
|
|
115
124
|
"fallback to UTC"
|
|
116
125
|
msgstr ""
|
|
126
|
+
"No se encuentra información de huso horario (y no hay coordenadas GPS para "
|
|
127
|
+
"deducirla), se utiliza hora UTC en su lugar"
|
|
117
128
|
|
|
118
129
|
#: geopic_tag_reader/reader.py:546
|
|
119
130
|
#, python-brace-format
|
|
120
131
|
msgid ""
|
|
121
132
|
"Skipping original date/time (from {datefield}) as it was not recognized: {v}"
|
|
122
133
|
msgstr ""
|
|
134
|
+
"Se deja sin procesar la fecha/hora original (de {datefield}) porque no se "
|
|
135
|
+
"puede leer: {v}"
|
|
123
136
|
|
|
124
137
|
#: geopic_tag_reader/reader.py:580
|
|
125
138
|
#, python-brace-format
|
|
@@ -127,11 +140,15 @@ msgid ""
|
|
|
127
140
|
"GPSTimeStamp and GPSDateTime don't contain supported time format (in {group} "
|
|
128
141
|
"group)"
|
|
129
142
|
msgstr ""
|
|
143
|
+
"GPSTimeStamp y GPSDateTime no contienen un formato de hora admitido (en el "
|
|
144
|
+
"grup {group})"
|
|
130
145
|
|
|
131
146
|
#: geopic_tag_reader/reader.py:611
|
|
132
147
|
#, python-brace-format
|
|
133
148
|
msgid "Skipping GPS date/time ({group} group) as it was not recognized: {v}"
|
|
134
149
|
msgstr ""
|
|
150
|
+
"Se deja sin procesar la fecha/hora GPS (grupo {group}) porque no se puede "
|
|
151
|
+
"leer: {v}"
|
|
135
152
|
|
|
136
153
|
#: geopic_tag_reader/reader.py:637
|
|
137
154
|
#, python-brace-format
|
|
@@ -139,8 +156,27 @@ msgid ""
|
|
|
139
156
|
"Microseconds read from decimal seconds value ({microsecondsFromSeconds}) is "
|
|
140
157
|
"not matching value from EXIF field ({microseconds}). Max value will be kept."
|
|
141
158
|
msgstr ""
|
|
159
|
+
"Los microsegundos en el valor de segundos decimales "
|
|
160
|
+
"({microsecondsFromSeconds}) no concuerdan con el valor del campo EXIF "
|
|
161
|
+
"({microseconds}). Se toma el valor más grande."
|
|
142
162
|
|
|
143
163
|
#: geopic_tag_reader/writer.py:132
|
|
144
164
|
#, python-brace-format
|
|
145
165
|
msgid "Unsupported key in additional tags ({k})"
|
|
146
|
-
msgstr ""
|
|
166
|
+
msgstr "La clave {k} en las etiquetas adicionales no está admitida"
|
|
167
|
+
|
|
168
|
+
#: geopic_tag_reader/main.py:30 geopic_tag_reader/main.py:31
|
|
169
|
+
msgid "not set"
|
|
170
|
+
msgstr "no definido"
|
|
171
|
+
|
|
172
|
+
#: geopic_tag_reader/main.py:30
|
|
173
|
+
msgid "(GPS)"
|
|
174
|
+
msgstr "(GPS)"
|
|
175
|
+
|
|
176
|
+
#: geopic_tag_reader/main.py:31
|
|
177
|
+
msgid "(Camera)"
|
|
178
|
+
msgstr "(Cámara)"
|
|
179
|
+
|
|
180
|
+
#: geopic_tag_reader/main.py:40
|
|
181
|
+
msgid "Yaw:"
|
|
182
|
+
msgstr "Ángulo de deriva:"
|
|
Binary file
|
|
@@ -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-06-18 09:12+0200\n"
|
|
11
|
-
"PO-Revision-Date: 2024-
|
|
12
|
-
"Last-Translator:
|
|
11
|
+
"PO-Revision-Date: 2024-10-03 14:07+0000\n"
|
|
12
|
+
"Last-Translator: operon <operon@sfr.fr>\n"
|
|
13
13
|
"Language-Team: French <http://weblate.panoramax.xyz/projects/panoramax/"
|
|
14
14
|
"tag-reader/fr/>\n"
|
|
15
15
|
"Language: fr\n"
|
|
@@ -192,3 +192,11 @@ msgstr ""
|
|
|
192
192
|
#: geopic_tag_reader/main.py:37
|
|
193
193
|
msgid "Yaw:"
|
|
194
194
|
msgstr "Lacet :"
|
|
195
|
+
|
|
196
|
+
#: geopic_tag_reader/main.py:31
|
|
197
|
+
msgid "(Camera)"
|
|
198
|
+
msgstr "(Caméra)"
|
|
199
|
+
|
|
200
|
+
#: geopic_tag_reader/main.py:30
|
|
201
|
+
msgid "(GPS)"
|
|
202
|
+
msgstr "(GPS)"
|
|
@@ -8,7 +8,7 @@ msgid ""
|
|
|
8
8
|
msgstr ""
|
|
9
9
|
"Project-Id-Version: PACKAGE VERSION\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
|
11
|
-
"POT-Creation-Date: 2024-09
|
|
11
|
+
"POT-Creation-Date: 2024-10-09 10:49+0200\n"
|
|
12
12
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
13
13
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
14
14
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
@@ -81,72 +81,72 @@ msgstr ""
|
|
|
81
81
|
msgid "Warnings raised by reader:"
|
|
82
82
|
msgstr ""
|
|
83
83
|
|
|
84
|
-
#: geopic_tag_reader/reader.py:
|
|
84
|
+
#: geopic_tag_reader/reader.py:218
|
|
85
85
|
msgid "Read latitude is out of WGS84 bounds (should be in [-90, 90])"
|
|
86
86
|
msgstr ""
|
|
87
87
|
|
|
88
|
-
#: geopic_tag_reader/reader.py:
|
|
88
|
+
#: geopic_tag_reader/reader.py:220
|
|
89
89
|
msgid "Read longitude is out of WGS84 bounds (should be in [-180, 180])"
|
|
90
90
|
msgstr ""
|
|
91
91
|
|
|
92
|
-
#: geopic_tag_reader/reader.py:
|
|
92
|
+
#: geopic_tag_reader/reader.py:248
|
|
93
93
|
#, python-brace-format
|
|
94
94
|
msgid "Skipping Mapillary date/time as it was not recognized: {v}"
|
|
95
95
|
msgstr ""
|
|
96
96
|
|
|
97
|
-
#: geopic_tag_reader/reader.py:
|
|
97
|
+
#: geopic_tag_reader/reader.py:374
|
|
98
98
|
msgid "No GPS coordinates or broken coordinates in picture EXIF tags"
|
|
99
99
|
msgstr ""
|
|
100
100
|
|
|
101
|
-
#: geopic_tag_reader/reader.py:
|
|
101
|
+
#: geopic_tag_reader/reader.py:380
|
|
102
102
|
msgid "No valid date in picture EXIF tags"
|
|
103
103
|
msgstr ""
|
|
104
104
|
|
|
105
|
-
#: geopic_tag_reader/reader.py:
|
|
105
|
+
#: geopic_tag_reader/reader.py:385
|
|
106
106
|
msgid "The picture is missing mandatory metadata:"
|
|
107
107
|
msgstr ""
|
|
108
108
|
|
|
109
|
-
#: geopic_tag_reader/reader.py:
|
|
109
|
+
#: geopic_tag_reader/reader.py:476 geopic_tag_reader/reader.py:505
|
|
110
110
|
msgid "GPSLatitudeRef not found, assuming GPSLatitudeRef is North"
|
|
111
111
|
msgstr ""
|
|
112
112
|
|
|
113
|
-
#: geopic_tag_reader/reader.py:
|
|
113
|
+
#: geopic_tag_reader/reader.py:484
|
|
114
114
|
msgid "Broken GPS coordinates in picture EXIF tags"
|
|
115
115
|
msgstr ""
|
|
116
116
|
|
|
117
|
-
#: geopic_tag_reader/reader.py:
|
|
117
|
+
#: geopic_tag_reader/reader.py:487 geopic_tag_reader/reader.py:511
|
|
118
118
|
msgid "GPSLongitudeRef not found, assuming GPSLongitudeRef is East"
|
|
119
119
|
msgstr ""
|
|
120
120
|
|
|
121
|
-
#: geopic_tag_reader/reader.py:
|
|
121
|
+
#: geopic_tag_reader/reader.py:572
|
|
122
122
|
msgid "Precise timezone information not found, fallback to UTC"
|
|
123
123
|
msgstr ""
|
|
124
124
|
|
|
125
|
-
#: geopic_tag_reader/reader.py:
|
|
125
|
+
#: geopic_tag_reader/reader.py:577
|
|
126
126
|
msgid ""
|
|
127
127
|
"Precise timezone information not found (and no GPS coordinates to help), "
|
|
128
128
|
"fallback to UTC"
|
|
129
129
|
msgstr ""
|
|
130
130
|
|
|
131
|
-
#: geopic_tag_reader/reader.py:
|
|
131
|
+
#: geopic_tag_reader/reader.py:581
|
|
132
132
|
#, python-brace-format
|
|
133
133
|
msgid ""
|
|
134
134
|
"Skipping original date/time (from {datefield}) as it was not recognized: {v}"
|
|
135
135
|
msgstr ""
|
|
136
136
|
|
|
137
|
-
#: geopic_tag_reader/reader.py:
|
|
137
|
+
#: geopic_tag_reader/reader.py:613
|
|
138
138
|
#, python-brace-format
|
|
139
139
|
msgid ""
|
|
140
140
|
"GPSTimeStamp and GPSDateTime don't contain supported time format (in {group} "
|
|
141
141
|
"group)"
|
|
142
142
|
msgstr ""
|
|
143
143
|
|
|
144
|
-
#: geopic_tag_reader/reader.py:
|
|
144
|
+
#: geopic_tag_reader/reader.py:644
|
|
145
145
|
#, python-brace-format
|
|
146
146
|
msgid "Skipping GPS date/time ({group} group) as it was not recognized: {v}"
|
|
147
147
|
msgstr ""
|
|
148
148
|
|
|
149
|
-
#: geopic_tag_reader/reader.py:
|
|
149
|
+
#: geopic_tag_reader/reader.py:670
|
|
150
150
|
#, python-brace-format
|
|
151
151
|
msgid ""
|
|
152
152
|
"Microseconds read from decimal seconds value ({microsecondsFromSeconds}) is "
|
|
Binary file
|
|
@@ -0,0 +1,158 @@
|
|
|
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: 2024-09-30 11:02+0200\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: ko\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 "Timestamp:"
|
|
29
|
+
msgstr ""
|
|
30
|
+
|
|
31
|
+
#: geopic_tag_reader/main.py:30 geopic_tag_reader/main.py:31
|
|
32
|
+
msgid "not set"
|
|
33
|
+
msgstr ""
|
|
34
|
+
|
|
35
|
+
#: geopic_tag_reader/main.py:30
|
|
36
|
+
msgid "(GPS)"
|
|
37
|
+
msgstr ""
|
|
38
|
+
|
|
39
|
+
#: geopic_tag_reader/main.py:31
|
|
40
|
+
msgid "(Camera)"
|
|
41
|
+
msgstr ""
|
|
42
|
+
|
|
43
|
+
#: geopic_tag_reader/main.py:32
|
|
44
|
+
msgid "Heading:"
|
|
45
|
+
msgstr ""
|
|
46
|
+
|
|
47
|
+
#: geopic_tag_reader/main.py:33
|
|
48
|
+
msgid "Type:"
|
|
49
|
+
msgstr ""
|
|
50
|
+
|
|
51
|
+
#: geopic_tag_reader/main.py:34
|
|
52
|
+
msgid "Make:"
|
|
53
|
+
msgstr ""
|
|
54
|
+
|
|
55
|
+
#: geopic_tag_reader/main.py:35
|
|
56
|
+
msgid "Model:"
|
|
57
|
+
msgstr ""
|
|
58
|
+
|
|
59
|
+
#: geopic_tag_reader/main.py:36
|
|
60
|
+
msgid "Focal length:"
|
|
61
|
+
msgstr ""
|
|
62
|
+
|
|
63
|
+
#: geopic_tag_reader/main.py:37
|
|
64
|
+
msgid "Crop parameters:"
|
|
65
|
+
msgstr ""
|
|
66
|
+
|
|
67
|
+
#: geopic_tag_reader/main.py:38
|
|
68
|
+
msgid "Pitch:"
|
|
69
|
+
msgstr ""
|
|
70
|
+
|
|
71
|
+
#: geopic_tag_reader/main.py:39
|
|
72
|
+
msgid "Roll:"
|
|
73
|
+
msgstr ""
|
|
74
|
+
|
|
75
|
+
#: geopic_tag_reader/main.py:40
|
|
76
|
+
msgid "Yaw:"
|
|
77
|
+
msgstr ""
|
|
78
|
+
|
|
79
|
+
#: geopic_tag_reader/main.py:43
|
|
80
|
+
msgid "Warnings raised by reader:"
|
|
81
|
+
msgstr ""
|
|
82
|
+
|
|
83
|
+
#: geopic_tag_reader/reader.py:215
|
|
84
|
+
msgid "Read latitude is out of WGS84 bounds (should be in [-90, 90])"
|
|
85
|
+
msgstr ""
|
|
86
|
+
|
|
87
|
+
#: geopic_tag_reader/reader.py:217
|
|
88
|
+
msgid "Read longitude is out of WGS84 bounds (should be in [-180, 180])"
|
|
89
|
+
msgstr ""
|
|
90
|
+
|
|
91
|
+
#: geopic_tag_reader/reader.py:245
|
|
92
|
+
#, python-brace-format
|
|
93
|
+
msgid "Skipping Mapillary date/time as it was not recognized: {v}"
|
|
94
|
+
msgstr ""
|
|
95
|
+
|
|
96
|
+
#: geopic_tag_reader/reader.py:371
|
|
97
|
+
msgid "No GPS coordinates or broken coordinates in picture EXIF tags"
|
|
98
|
+
msgstr ""
|
|
99
|
+
|
|
100
|
+
#: geopic_tag_reader/reader.py:377
|
|
101
|
+
msgid "No valid date in picture EXIF tags"
|
|
102
|
+
msgstr ""
|
|
103
|
+
|
|
104
|
+
#: geopic_tag_reader/reader.py:382
|
|
105
|
+
msgid "The picture is missing mandatory metadata:"
|
|
106
|
+
msgstr ""
|
|
107
|
+
|
|
108
|
+
#: geopic_tag_reader/reader.py:473 geopic_tag_reader/reader.py:502
|
|
109
|
+
msgid "GPSLatitudeRef not found, assuming GPSLatitudeRef is North"
|
|
110
|
+
msgstr ""
|
|
111
|
+
|
|
112
|
+
#: geopic_tag_reader/reader.py:481
|
|
113
|
+
msgid "Broken GPS coordinates in picture EXIF tags"
|
|
114
|
+
msgstr ""
|
|
115
|
+
|
|
116
|
+
#: geopic_tag_reader/reader.py:484 geopic_tag_reader/reader.py:508
|
|
117
|
+
msgid "GPSLongitudeRef not found, assuming GPSLongitudeRef is East"
|
|
118
|
+
msgstr ""
|
|
119
|
+
|
|
120
|
+
#: geopic_tag_reader/reader.py:569
|
|
121
|
+
msgid "Precise timezone information not found, fallback to UTC"
|
|
122
|
+
msgstr ""
|
|
123
|
+
|
|
124
|
+
#: geopic_tag_reader/reader.py:574
|
|
125
|
+
msgid ""
|
|
126
|
+
"Precise timezone information not found (and no GPS coordinates to help), "
|
|
127
|
+
"fallback to UTC"
|
|
128
|
+
msgstr ""
|
|
129
|
+
|
|
130
|
+
#: geopic_tag_reader/reader.py:578
|
|
131
|
+
#, python-brace-format
|
|
132
|
+
msgid ""
|
|
133
|
+
"Skipping original date/time (from {datefield}) as it was not recognized: {v}"
|
|
134
|
+
msgstr ""
|
|
135
|
+
|
|
136
|
+
#: geopic_tag_reader/reader.py:610
|
|
137
|
+
#, python-brace-format
|
|
138
|
+
msgid ""
|
|
139
|
+
"GPSTimeStamp and GPSDateTime don't contain supported time format (in {group} "
|
|
140
|
+
"group)"
|
|
141
|
+
msgstr ""
|
|
142
|
+
|
|
143
|
+
#: geopic_tag_reader/reader.py:641
|
|
144
|
+
#, python-brace-format
|
|
145
|
+
msgid "Skipping GPS date/time ({group} group) as it was not recognized: {v}"
|
|
146
|
+
msgstr ""
|
|
147
|
+
|
|
148
|
+
#: geopic_tag_reader/reader.py:667
|
|
149
|
+
#, python-brace-format
|
|
150
|
+
msgid ""
|
|
151
|
+
"Microseconds read from decimal seconds value ({microsecondsFromSeconds}) is "
|
|
152
|
+
"not matching value from EXIF field ({microseconds}). Max value will be kept."
|
|
153
|
+
msgstr ""
|
|
154
|
+
|
|
155
|
+
#: geopic_tag_reader/writer.py:132
|
|
156
|
+
#, python-brace-format
|
|
157
|
+
msgid "Unsupported key in additional tags ({k})"
|
|
158
|
+
msgstr ""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: geopic-tag-reader
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.1
|
|
4
4
|
Summary: GeoPicTagReader
|
|
5
5
|
Author-email: Adrien PAVIE <panieravide@riseup.net>
|
|
6
6
|
Requires-Python: >=3.8
|
|
@@ -8,10 +8,11 @@ Description-Content-Type: text/markdown
|
|
|
8
8
|
Classifier: License :: OSI Approved :: MIT License
|
|
9
9
|
Requires-Dist: typer ~= 0.12
|
|
10
10
|
Requires-Dist: xmltodict ~= 0.13
|
|
11
|
-
Requires-Dist: pyexiv2 == 2.
|
|
11
|
+
Requires-Dist: pyexiv2 == 2.15.0
|
|
12
12
|
Requires-Dist: timezonefinder == 6.2.0
|
|
13
13
|
Requires-Dist: pytz ~= 2023.3
|
|
14
14
|
Requires-Dist: types-pytz ~= 2023.3.0.1
|
|
15
|
+
Requires-Dist: types-python-dateutil ~= 2.9.0
|
|
15
16
|
Requires-Dist: flit ~= 3.8.0 ; extra == "build"
|
|
16
17
|
Requires-Dist: black ~= 24.3 ; extra == "dev"
|
|
17
18
|
Requires-Dist: mypy ~= 1.9 ; extra == "dev"
|
|
@@ -36,7 +37,7 @@ __Panoramax__ is a digital resource for sharing and using 📍📷 field photos.
|
|
|
36
37
|
|
|
37
38
|
# 📷 GeoPic Tag Reader
|
|
38
39
|
|
|
39
|
-
This repository only contains the Python library to __read and write standardized metadata__ from geolocated pictures EXIF metadata. It can be used completely apart from all
|
|
40
|
+
This repository only contains the Python library to __read and write standardized metadata__ from geolocated pictures EXIF metadata. It can be used completely apart from all Panoramax components for your own projects and needs.
|
|
40
41
|
|
|
41
42
|
## Features
|
|
42
43
|
|
|
@@ -1,25 +1,27 @@
|
|
|
1
|
-
geopic_tag_reader/__init__.py,sha256=
|
|
1
|
+
geopic_tag_reader/__init__.py,sha256=QI8Hrx0Lw4UoUSLBIPQPuGERSOY9BfR1P96fekycjKg,47
|
|
2
2
|
geopic_tag_reader/camera.py,sha256=Nw6dQjnrUCCOXujjk8Y7IwjJPMuDf4DAGCmHk0LDfEg,1975
|
|
3
3
|
geopic_tag_reader/i18n.py,sha256=LOLBj7eB_hpHTc5XdMP97EoWdD2kgmkP_uvJJDKEVsU,342
|
|
4
4
|
geopic_tag_reader/main.py,sha256=6Jf2VJCVAyAu-P3HltYMY7ZGXVziJrZguAnHU4bNA9I,3793
|
|
5
5
|
geopic_tag_reader/model.py,sha256=rsWVE3T1kpNsKXX8iv6xb_3PCVY6Ea7iU9WOqUgXklU,129
|
|
6
6
|
geopic_tag_reader/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
geopic_tag_reader/reader.py,sha256=
|
|
7
|
+
geopic_tag_reader/reader.py,sha256=D6sztaJcNDxO3UwQJQXitalVgZzRpccwlYpHdZmWulA,26784
|
|
8
8
|
geopic_tag_reader/sequence.py,sha256=5jQKnYDVQq4VDa09e8xTW9Gf-CvqsijEtx5OCSnvGMU,11180
|
|
9
9
|
geopic_tag_reader/writer.py,sha256=HdZenoY_5Qv1Kq0jedCJhVFDYsv0iQaCzB6necU_LrY,8793
|
|
10
|
-
geopic_tag_reader/translations/geopic_tag_reader.pot,sha256=
|
|
10
|
+
geopic_tag_reader/translations/geopic_tag_reader.pot,sha256=mso3GeJz5WySK1j0V1AcmTGoucCHObxkmB5Ed_Rrp44,3731
|
|
11
11
|
geopic_tag_reader/translations/de/LC_MESSAGES/geopic_tag_reader.mo,sha256=qxexGigWSIfEn4yIdtqQgd3w15oUc-SsHUScbCe6FDc,3924
|
|
12
12
|
geopic_tag_reader/translations/de/LC_MESSAGES/geopic_tag_reader.po,sha256=QbzpTqoutNRGRMeUa7MZHXnfD92KVMVtxDt-3FUovfQ,5359
|
|
13
|
-
geopic_tag_reader/translations/en/LC_MESSAGES/geopic_tag_reader.mo,sha256=
|
|
14
|
-
geopic_tag_reader/translations/en/LC_MESSAGES/geopic_tag_reader.po,sha256=
|
|
15
|
-
geopic_tag_reader/translations/es/LC_MESSAGES/geopic_tag_reader.mo,sha256=
|
|
16
|
-
geopic_tag_reader/translations/es/LC_MESSAGES/geopic_tag_reader.po,sha256=
|
|
13
|
+
geopic_tag_reader/translations/en/LC_MESSAGES/geopic_tag_reader.mo,sha256=3EE6KpT7G7wdvSRbxCG2dFhxXuD4rtDIAfwuU2EaYVU,3486
|
|
14
|
+
geopic_tag_reader/translations/en/LC_MESSAGES/geopic_tag_reader.po,sha256=uA__mk-m9HJh03TOqFQ3U81LYzSMr0qaV2k_pp366Jk,4970
|
|
15
|
+
geopic_tag_reader/translations/es/LC_MESSAGES/geopic_tag_reader.mo,sha256=MXMSCqwwP6HEs8R2NuLPA3YBENij2dK8jSsTExPeOrI,3883
|
|
16
|
+
geopic_tag_reader/translations/es/LC_MESSAGES/geopic_tag_reader.po,sha256=U9ko5JAVz9ZrfUCh2vPLzwoy66--9n3g9Rpg5BOtldk,5511
|
|
17
17
|
geopic_tag_reader/translations/fi/LC_MESSAGES/geopic_tag_reader.mo,sha256=X_KeDXDlO50JFKNCkh6TKjQcvuGH48CKbmKjK-o2cfU,321
|
|
18
18
|
geopic_tag_reader/translations/fi/LC_MESSAGES/geopic_tag_reader.po,sha256=2Gz8bcblT976JFPd0Q_FRq45__on0Fi1GIw6ocY-I64,3499
|
|
19
|
-
geopic_tag_reader/translations/fr/LC_MESSAGES/geopic_tag_reader.mo,sha256=
|
|
20
|
-
geopic_tag_reader/translations/fr/LC_MESSAGES/geopic_tag_reader.po,sha256=
|
|
21
|
-
geopic_tag_reader
|
|
22
|
-
geopic_tag_reader
|
|
23
|
-
geopic_tag_reader-1.3.
|
|
24
|
-
geopic_tag_reader-1.3.
|
|
25
|
-
geopic_tag_reader-1.3.
|
|
19
|
+
geopic_tag_reader/translations/fr/LC_MESSAGES/geopic_tag_reader.mo,sha256=dWd1_G_hoVFTPGin1E5qfhNEHcB6Ivo1Qj9ZN7CAB4Y,4620
|
|
20
|
+
geopic_tag_reader/translations/fr/LC_MESSAGES/geopic_tag_reader.po,sha256=0C2az512LN-CmenWFwhOoNMakQv1YB0mwou6TYDnSys,6335
|
|
21
|
+
geopic_tag_reader/translations/ko/LC_MESSAGES/geopic_tag_reader.mo,sha256=2QPpe5bgqntybugUG53YzUzfLmsgcFupeJv-kz05LWs,321
|
|
22
|
+
geopic_tag_reader/translations/ko/LC_MESSAGES/geopic_tag_reader.po,sha256=ct7bi-IQJ1Fsosfe41ACu0jf5nfV8cmmEFJWaMPguoQ,3704
|
|
23
|
+
geopic_tag_reader-1.3.1.dist-info/entry_points.txt,sha256=c9YwjCNhxveDf-61_aSRlzcpoutvM6KQCerlzaVt_JU,64
|
|
24
|
+
geopic_tag_reader-1.3.1.dist-info/LICENSE,sha256=OCZiFd7ok-n5jly2LwP7hEjuUukkvSt5iMkK_cY_00o,1076
|
|
25
|
+
geopic_tag_reader-1.3.1.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
|
26
|
+
geopic_tag_reader-1.3.1.dist-info/METADATA,sha256=0XnzC3WaWmeK2JAk8N-lf7dK1aKd6US3hVpxWJclM0Y,4616
|
|
27
|
+
geopic_tag_reader-1.3.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|