We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uploading a jpg image with Location exif will update the resource bbox and other metadata
The metadata of the document remains unchanged
The problem seems to come from the line https://github.com/GeoNode/geonode/blob/master/geonode/documents/exif/utils.py#L77 The filename should actually be doc.files[0] instead of doc.doc_file.path But to be compatible with the "StorageManager" maybe it should be:
img = Image.open(storage_manager.open(doc.files[0]))
The text was updated successfully, but these errors were encountered:
Hello, this issue is still present with 4.3.0
Does the exif metadata update is going to be dropped or is it planned to be kept in further releases ?
Thanks
Sorry, something went wrong.
No branches or pull requests
Expected Behavior
Uploading a jpg image with Location exif will update the resource bbox and other metadata
Actual Behavior
The metadata of the document remains unchanged
Steps to Reproduce the Problem
Specifications
The problem seems to come from the line https://github.com/GeoNode/geonode/blob/master/geonode/documents/exif/utils.py#L77
The filename should actually be doc.files[0] instead of doc.doc_file.path
But to be compatible with the "StorageManager" maybe it should be:
img = Image.open(storage_manager.open(doc.files[0]))
The text was updated successfully, but these errors were encountered: