Gdal no alpha band fix#54
Gdal no alpha band fix#54wcmatthysen merged 5 commits intoWorldWindEarth:developfrom gbburkhardt:gdal-NoAlphaBand-fix
Conversation
…ile placement; revise for clarity; add note about GDAL 3.0.0 and PROJ_LIB
…d no alpha band. Previous code resulted in effective alpha bands that were all zero - completely transparent, so the raster image would never appear. Fixes bug in pull request 42.
…s not set. Better info messages.
…. Add explicit logging setting for WorldWind code
|
This change to GDALDataRaster can be tested by generating a test file with no alpha band. The InstallImagery sample application is a good one to use. Use this command to create a test file: One can see what the contents of the alpha band are after the reprojectimage at about line 1117 in GDALDataRaster using code like:
and then examine the contents of the alpha band in the destination dataset using a debugger. |
|
@gbburkhardt, looks good and ready to merge. |
|
Based on our discussion yesterday, I just revised the GDAL_README.txt file. Could you please pick up that change, too? |
|
@gbburkhardt, did you commit the change? I already merged this branch. I can revert the merge if you want so that you can still add to this pull-request and then we do a final merge. |
|
I made the commit minutes after you did the merge. But I must not have
pushed it. So yes, please revert the merge. I won't be able to do the
push for 6 hours or so. Thanks.
…On Tue, Jun 25, 2019, 08:06 Wiehann Matthysen ***@***.***> wrote:
Did you commit the change? I already merged this branch. I can revert the
merge if you want so that you can still add to this pull-request and then
we do a final merge.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#54?email_source=notifications&email_token=ABI6HFE457FGJHJTGMDHJXDP4IC5RA5CNFSM4H2ZIOSKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODYQAMKA#issuecomment-505415208>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABI6HFFFIGUTQURT63OGTVDP4IC5RANCNFSM4H2ZIOSA>
.
|
|
I looked at how to do this and I found this explanation on how to revert a Github pull-request. It looks as though we are going to have to create a new pull-request to revert the merge. I suggest that instead of us going that route you just pull the changes from so that you are up-to-date and then create a new branch and pull-request for the new changes that you want in. You can then just go ahead and merge it with develop. The amount of effort is going to be less that way than undoing the merge and redoing everything again. Sorry about that. |
Description of the Change
Pull request 42 introduced a bug. When source image file has no alpha band, the resulting dataset would have an alpha band that was all zeros, making it completely transparent. I believe that GDAL is handling alpha bands inconsistently in 'reprojectImage', but that's another investigation.
GDAL 3.0.0 has introduced a requirement for another environment variable to be set, due to its use of the PROJ.6 library. The GDAL_README.txt file has been updated to note this, and a check added to GDALUtils to warn the user if GDAL 3.0.0 is being used, and the required environment variable is not set.
GDAL_README.txt has been updated for clarity, and to remove the invalid reference to a NASA web page on WebStart.
There was a minor bug in the message formatting code that I've fixed. See Logging.java.
I've added a Netbeans configuration file that turns on logging when running sample applications using Gradle. I think it's important that logging be enabled by default so users can see what's happening. There's a JVM property that needs to be set. If anyone knows a better way to do this for Gradle, I'm open to it. Ideally it should be in the 'build.gradle' file, but I haven't been able to figure out how to do that for 'Run/Debug' file.
Why Should This Be In Core?
Bug fixes, better info/warning messages.
Benefits
Potential Drawbacks
Applicable Issues