-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
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
problems with GDAL v.1.10.1 and some EXIF tags #74
Comments
Hmm, this could be problematic! Note that the gdal version in Ubuntu 16.04 LTS is 1.11.3 |
correct. the original version in the servers is 1.10. upgrading to latest (1.11) fixed one thing and broke another. I had to downgrade to 1.10 (had to learn how to downgrade in Ubuntu).
I wonder if this problem also occurs in 2.0. couldn't figure out how to upgrade to that. or maybe 1.11 has a flag that ignores the non-geo-ness in gdal_rasterize?
|
Could be worth reaching out to the GDAL mailing list to see if it's a bug. It's not in the changelog from what I could see. I was thinking of seeing if calling Python or Ruby bindings directly to rasterize gives the same error. |
contacted them to see if i can get permission to post. i didn't find any issues similar to this one (dealing with non-rectified images) |
a possible solution is clipping after rectifying but didn't want to mess up the current process |
I used ubuntuGIS repo to install 2.1.0 but got the same error :( |
crossing fingers |
If a TIFF file contains the
TransferFunction
EXIF tag, import from NYPL Repository fails since this tag produces an error in thegdal_translate
command inlib/nypl/fetch_repo.sh
that is being executed fromfetch_from_image_server
. The subsequent check for errors gets invoked and therefore the process fails.Upgrading GDAL to 1.11 solves this problem but then provokes another one: the
gdal_rasterize
command used for cropping fails for image files that do not have geodata (it doesn't in 1.10):Right now I don't know how to prevent
gdal_rasterize
from failing this process so the only alternative is to not import TIFFs withTransferFunction
EXIF tags while using GDAL 1.10.The text was updated successfully, but these errors were encountered: