Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ our [code of conduct](CODE_OF_CONDUCT.md).

[issues-url]: https://github.com/mapillary/mapillary-python-sdk/issues

[license-url]: https://github.com/mapillary/mapillary-python-sdk/blob/master/LICENSE.txt
[license-url]: https://github.com/mapillary/mapillary-python-sdk/blob/main/LICENSE

[linkedin-url]: https://www.linkedin.com/company/mapillary/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ Fields:
10. computed_rotation - enum, corrected orientation of the image
11. creator - the username and user ID who owns and uploaded the image
12. exif_orientation - enum, orientation of the camera as given by the exif tag
(see: https://sylvana.net/jpegcrop/exif_orientation.html)
(see: https://web.archive.org/web/2026/https://sylvana.net/jpegcrop/exif_orientation.html)
13. geometry - GeoJSON Point geometry
14. height - int, height of the original image uploaded
15. make - string, the manufacturer name of the camera device
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/mapillary/mapillary.interface.md
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ Gets an image for the given key argument


12. exif_orientation - enum, orientation of the camera as given by the exif tag
(see: [https://sylvana.net/jpegcrop/exif_orientation.html](https://sylvana.net/jpegcrop/exif_orientation.html))
(see: [https://web.archive.org/web/2026/https://sylvana.net/jpegcrop/exif_orientation.html](https://web.archive.org/web/2026/https://sylvana.net/jpegcrop/exif_orientation.html))


13. geometry - GeoJSON Point geometry
Expand Down
6 changes: 4 additions & 2 deletions src/mapillary/config/api/entities.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ def get_image(image_id: str, fields: list) -> str:
10. computed_rotation - enum, corrected orientation of the image
11. creator - the username and user ID who owns and uploaded the image
12. exif_orientation - enum, orientation of the camera as given by the exif tag
(see: https://sylvana.net/jpegcrop/exif_orientation.html)
(see
https://web.archive.org/web/2026/https://sylvana.net/jpegcrop/exif_orientation.html)
13. geometry - GeoJSON Point geometry
14. height - int, height of the original image uploaded
15. make - string, the manufacturer name of the camera device
Expand Down Expand Up @@ -133,7 +134,8 @@ def get_images(
10. computed_rotation - enum, corrected orientation of the image
11. creator - the username and user ID who owns and uploaded the image
12. exif_orientation - enum, orientation of the camera as given by the exif tag
(see: https://sylvana.net/jpegcrop/exif_orientation.html)
(see
https://web.archive.org/web/2026/https://sylvana.net/jpegcrop/exif_orientation.html)
13. geometry - GeoJSON Point geometry
14. height - int, height of the original image uploaded
15. make - string, the manufacturer name of the camera device
Expand Down
3 changes: 2 additions & 1 deletion src/mapillary/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -929,7 +929,8 @@ def image_from_key(key: str, fields: list = []) -> str:
10. computed_rotation - enum, corrected orientation of the image
11. creator - the username and user ID who owns and uploaded the image
12. exif_orientation - enum, orientation of the camera as given by the exif tag
(see: https://sylvana.net/jpegcrop/exif_orientation.html)
(see
https://web.archive.org/web/2026/https://sylvana.net/jpegcrop/exif_orientation.html)
13. geometry - GeoJSON Point geometry
14. height - int, height of the original image uploaded
15. make - string, the manufacturer name of the camera device
Expand Down
Loading