[BUG] Wrong location on map #1414

Closed
opened 2026-02-05 01:43:19 +03:00 by OVERLORD · 3 comments
Owner

Originally created by @MrColumbo on GitHub (Oct 4, 2023).

The bug

Some pictures with Exif date from Chile show close to India - even on the demo instance from immich
P1260658

The OS that Immich Server is running on

Debian

Version of Immich Server

v1.18

Version of Immich Mobile App

v1.18

Platform with the issue

  • Server
  • Web
  • Mobile

Your docker-compose.yml content

error is even on demo instance

Your .env content

error is even on demo instance

Reproduction steps

1.upload photo (see attachment) or see here: blob:https://demo.immich.app/a3d0236c-47a5-429b-8f96-fbaad00f7947
2.look on info and map
3.
...

Additional information

No response

Originally created by @MrColumbo on GitHub (Oct 4, 2023). ### The bug Some pictures with Exif date from Chile show close to India - even on the demo instance from immich ![P1260658](https://github.com/immich-app/immich/assets/5223590/d8606c45-f86a-42bb-9cb8-31242c3a04a3) ### The OS that Immich Server is running on Debian ### Version of Immich Server v1.18 ### Version of Immich Mobile App v1.18 ### Platform with the issue - [X] Server - [X] Web - [ ] Mobile ### Your docker-compose.yml content ```YAML error is even on demo instance ``` ### Your .env content ```Shell error is even on demo instance ``` ### Reproduction steps ```bash 1.upload photo (see attachment) or see here: blob:https://demo.immich.app/a3d0236c-47a5-429b-8f96-fbaad00f7947 2.look on info and map 3. ... ``` ### Additional information _No response_
Author
Owner

@MrColumbo commented on GitHub (Oct 4, 2023):

in my example the exif is like that

GPS Latitude : 18 deg 32' 43.53" S
GPS Longitude : 70 deg 19' 52.40" W

=> GPS Position : 18 deg 32' 43.53" S, 70 deg 19' 52.40" W

should be close to Arica in Chile but not India

@MrColumbo commented on GitHub (Oct 4, 2023): in my example the exif is like that GPS Latitude : 18 deg 32' 43.53" S GPS Longitude : 70 deg 19' 52.40" W => GPS Position : 18 deg 32' 43.53" S, 70 deg 19' 52.40" W should be close to Arica in Chile but not India
Author
Owner

@waclaw66 commented on GitHub (Oct 4, 2023):

Probably duplicate of https://github.com/immich-app/immich/issues/3540. Caused by separate GPS coordinate fields (GPSLatitudeRef, GPSLongitudeRef) within XMP.

<x:xmpmeta xmlns:x='adobe:ns:meta/' x:xmptk='Image::ExifTool 10.80'>
<rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#'>

 <rdf:Description rdf:about=''
  xmlns:exif='http://ns.adobe.com/exif/1.0/'>
  <exif:GPSLatitude>18,32.725541N</exif:GPSLatitude>
  <exif:GPSLatitudeRef>S</exif:GPSLatitudeRef>
  <exif:GPSLongitude>70,19.873308E</exif:GPSLongitude>
  <exif:GPSLongitudeRef>W</exif:GPSLongitudeRef>
  <exif:GPSMapDatum>WGS-84</exif:GPSMapDatum>
  <exif:GPSVersionID>2 2 0 0</exif:GPSVersionID>
 </rdf:Description>

 <rdf:Description rdf:about=''
  xmlns:tiff='http://ns.adobe.com/tiff/1.0/'>
  <tiff:Software>digiKam-5.9.0</tiff:Software>
 </rdf:Description>

 <rdf:Description rdf:about=''
  xmlns:xmp='http://ns.adobe.com/xap/1.0/'>
  <xmp:CreatorTool>digiKam-5.9.0</xmp:CreatorTool>
 </rdf:Description>
</rdf:RDF>
</x:xmpmeta>
@waclaw66 commented on GitHub (Oct 4, 2023): Probably duplicate of https://github.com/immich-app/immich/issues/3540. Caused by separate GPS coordinate fields (GPSLatitudeRef, GPSLongitudeRef) within XMP. ```xml <x:xmpmeta xmlns:x='adobe:ns:meta/' x:xmptk='Image::ExifTool 10.80'> <rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <rdf:Description rdf:about='' xmlns:exif='http://ns.adobe.com/exif/1.0/'> <exif:GPSLatitude>18,32.725541N</exif:GPSLatitude> <exif:GPSLatitudeRef>S</exif:GPSLatitudeRef> <exif:GPSLongitude>70,19.873308E</exif:GPSLongitude> <exif:GPSLongitudeRef>W</exif:GPSLongitudeRef> <exif:GPSMapDatum>WGS-84</exif:GPSMapDatum> <exif:GPSVersionID>2 2 0 0</exif:GPSVersionID> </rdf:Description> <rdf:Description rdf:about='' xmlns:tiff='http://ns.adobe.com/tiff/1.0/'> <tiff:Software>digiKam-5.9.0</tiff:Software> </rdf:Description> <rdf:Description rdf:about='' xmlns:xmp='http://ns.adobe.com/xap/1.0/'> <xmp:CreatorTool>digiKam-5.9.0</xmp:CreatorTool> </rdf:Description> </rdf:RDF> </x:xmpmeta> ```
Author
Owner

@jrasm91 commented on GitHub (Oct 9, 2023):

Duplicate of #3540

@jrasm91 commented on GitHub (Oct 9, 2023): Duplicate of #3540
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#1414