You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Which outputs {'latitude': -123.97116667, 'longitude': 45.4655}. You can already notice, that it is incorrect, since the latitude is measured within [-90, 90].
Now let's verify that the values are just swapped: check location returned for the same photo by the API (Bash with curl and python3 installed):
which outputs {'latitude': 45.4655, 'longitude': -123.97116667}.
Expected behavior
The entries in the dataset should contain the correct coordinates, meaning that the values of photo_location_latitude and photo_location_longitude keys should be swapped.
Additional context
N/A
The text was updated successfully, but these errors were encountered:
Describe the bug
Values of
photo_location_latitude
andphoto_location_longitude
entries inphotos.tsv
are swapped (both in Lite and Full versions).To Reproduce
Using a photo with id
gXSFnk2a9V4
as an example (currently indexed with1
in the Lite Dataset)Which outputs
{'latitude': -123.97116667, 'longitude': 45.4655}
. You can already notice, that it is incorrect, since the latitude is measured within[-90, 90]
.which outputs
{'latitude': 45.4655, 'longitude': -123.97116667}
.Expected behavior
The entries in the dataset should contain the correct coordinates, meaning that the values of
photo_location_latitude
andphoto_location_longitude
keys should be swapped.Additional context
N/A
The text was updated successfully, but these errors were encountered: