-
Notifications
You must be signed in to change notification settings - Fork 29
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
enable arrow/parquet format in mapserver (full gdal) #668
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM ghcr.io/osgeo/gdal:ubuntu-small-3.7.3 as gdal | ||
FROM ghcr.io/osgeo/gdal:ubuntu-full-3.7.3 as gdal | ||
|
||
FROM gdal as builder | ||
LABEL maintainer Camptocamp "[email protected]" | ||
|
@@ -61,6 +61,7 @@ RUN if test "${WITH_ORACLE}" = "ON"; then \ | |
-DWITH_RSVG=1 \ | ||
-DUSE_PROJ=1 \ | ||
-DUSE_WFS_SVR=1 \ | ||
-DGDAL_USE_ARROW=1 \ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What's these build options? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Arrow/Parquet support is here: |
||
-DUSE_OGCAPI_SVR=1 \ | ||
-DWITH_ORACLESPATIAL=${WITH_ORACLE} | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This image is relay too big to be used by default. If you need that, you should create a separate image!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanx @sbrunner,
I agree the full image is too large.
I'm not aware how to build Arrow into GDAL separately (except via conda, is that an option?)
What is your suggestion here?