-
Notifications
You must be signed in to change notification settings - Fork 2
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
Link to libkml for improved KML support and compatibility with Google Earth #2
Comments
😂 "become" familiar, I know a little about what that feels like Your work looks more thorough than what I found after a quick google; we'd probably want to move the steps into formulas and trigger files but the steps will likely look similar. If you want to take a crack at formulize-ing it, go for it 💯 |
Hey @thclark I have added libkml support in this commit - 7330193 Could you give it a test and let me know how you get on? If you are already using this buildpack in an application the new binary should get pulled down the next time you do a build. I have done it slightly differently than you have in your PR (#4) as it is faster and easier to just compile libkml and its dependencies to a custom prefix and shipping that over with the gdal binary rather than trying to apt-get during the build phase. |
Getting there! Great work @KevinBrolly - thanks for your efforts on this. This builds and releases, but unfortunately, the libraries aren't found at runtime... I have an error that looks like:
I've just made my test app public which deploys successfully to heroku (use this buildpack and heroku/python), so you're welcome to use that to help. I shelled in to that deployed app, and found the other libraries hd been deployed by the buildpack, but not |
Hey @thclark - Sorry, looks like I forgot to include the libkml files in the gdal package at runtime 🤦♂ Thanks for the test app, that's really helpful. I will let you know when |
Hey @thclark I have updated the gdal packages for the heroku-18 stack (gdal takes an age to build!). I spun up a dyno with your test app and it looks good:
Let me know if that is working for you now. |
Woohooo! This is great, working well. Thankyou so much @KevinBrolly - this issue has been completely killing my project. Perhaps the following will be useful to add to the README (maybe edited slightly ;) ): Notes for switching over from using the GDAL that gets vendored with
|
Thanks for the README suggestions @thclark that will be really useful for people switching over, I will get that in the README now. You are right that the Heroku CI cache functionality could be documented better. Heroku CI does have a separate build cache for CI builds. The way the "Run Again Without Cache" works in Heroku CI is that there is a single cache for your test run, if you click "Run Again Without Cache" then at the end of that run the build cache from that run replaces the previous build cache. This is why you have to wait for the tests to fail, then run again without cache, then after that run the new cache from that build will be used and your tests then pass. I will make a note to document this better. |
Hi @KevinBrolly great work!
About this new buildpack: Thankyou! If we can get this issue solved, it'll keep me on heroku (I hate to leave, but have been really struggling to get GDAL installed with libkml linked, so have been dockerizing and moving to Google Cloud, which is a nightmare to set up!).
WHAT I'D LOVE
If the version of GDAL vendored into this buildpack was linked against google's libkml library
WHY
GDAL already has a default
KML
file parser, so why build it with an additional engine for parsing KML files?HOW
If it helps, here are relevant parts of a
Dockerfile
that adds a version of GDAL with libkml included to the heroku stack (it'll obviously be a bit different for you, since you'll build proj and geos etc, but hopefully is useful):AN OFFER
I'm not that familiar with heroku buildpacks, but have ahem "become" familiar with building GDAL. If it'll save me porting everything to google cloud, I'll happily spend a day of dev time helping with this in any way I can. Just ping me.
The text was updated successfully, but these errors were encountered: