forked from OSGeo/gdal
-
Notifications
You must be signed in to change notification settings - Fork 4
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
Doc: add a thanks page #59
Open
rouault
wants to merge
49
commits into
master
Choose a base branch
from
thanks
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…views Fixes OSGeo#10873 Uniformize logic with the one of GDALBandGetBestOverviewLevel2()
Fixes OSGeo#10878 Note: only available in utilities-as-binaries, not utilities-as-libraries... Returns drivers in the order of their registration. Example ```shell $ gdalinfo --formats -json [ { "short_name":"VRT", "long_name":"Virtual Raster", "scopes":[ "raster", "multidimensional_raster" ], "capabilities":[ "open", "create", "create_copy", "virtual_io" ], "file_extensions":[ "vrt" ] }, ... ] ``` ```shell $ ogrinfo --formats -json [ { "short_name":"FITS", "long_name":"Flexible Image Transport System", "scopes":[ "raster", "vector" ], "capabilities":[ "open", "create" ], "file_extensions":[ "fits" ] }, ... ] ```
…special field in all cases
…ENABLE_DRIVER_NAS=OFF; make CSW and WFS drivers plugin capable too
…spectus [doc] fix link to GDAL sponsorship prospectus
…rgument of gdal.Warp() Fixes OSGeo#10919
port: Fix minor typos
…create event trigger for metadata table Fixes OSGeo#10925
gdalwarp: be more robust to numerical instability when selecting overviews
PG/PGDump: properly truncates identifiers exactly of 64 characters
Python bindings: fix passing a dict value to the transformerOptions argument of gdal.Warp()
Doc: SQLite dialect: remove erroneous mention about GEOMETRY being a special field in all cases
The -q parameter to wget makes it completely silent, even on faliure which gives build errors that are difficult to diagnose. Someone else had the same problem 15 years ago: https://serverfault.com/questions/70889/wget-to-print-errors-but-nothing-otherwise and the easiest way to robustly print errors but nothing else seems to be to use curl instead. Since the docker images already include curl, switch them to use that instead.
…PEG2000 QUALITY when JPEG2000_DRIVER=JP2OpenJPEG Fixes OSGeo#10927
PG: ensure current user has superuser priviledge beore attemption to create event trigger for metadata table
docker: print HTTP errors on failure
DIMAP: emit verbose error message if not able to open image file
359e582
to
4da9d7a
Compare
NITF: properly take into account comma-separated list of values for JPEG2000 QUALITY
…json Make gdalinfo/ogrinfo --formats -json work
Build: enable -DOGR_ENABLE_DRIVER_GML_PLUGIN=ON, …
CI: add a workflow to build docker/ images
CI: do not trigger builds for changes in docker/
Modern docker warns about different casing on FROM and AS. Use uppercase for both of them to keep docker happy.
There are some nice features in CMake that are limited to Ninja only, for example JOB_POOL_LINK and Multi-config: https://cmake.org/cmake/help/latest/prop_tgt/JOB_POOL_LINK.html https://cmake.org/cmake/help/latest/generator/Ninja%20Multi-Config.html https://www.scivision.dev/cmake-ninja-multi-config/ The first limits the number of linking processes running concurrently, and the second avoids having to re-generate the build files to make a debug/release build. Ninja is also rumored to be slightly faster than make, and that seems to hold for GDAL as well, a simple benchmark (time -p) with a warm cache (second time image is built) for ubuntu-small on a 48 core machine (3 GHz dual Xeon Gold 6136): PROJ: make: real 65.39 user 400.61 sys 34.91 ninja: real 64.84 user 413.17 sys 34.97 GDAL: make: real 86.40 user 2466.07 sys 180.64 ninja: real 82.43 user 2471.69 sys 169.74
The rsync commands use the wrong directory, so the commands fail and print an error message, but the build continues. Fix the commands so they work, but leave the missing error detection as is.
docker: use ninja as build system
docker: fix ccache
P.S., be sure to add at least one example of usage of '@filename'. Apparently it is meant to be the equivalent of Unix \`cat filename\`.
Update ogrinfo.rst
…recated by sphinx-rtd-theme 3.0.0
Doc: use 'version_selector' instead of 'display_version' which is deprecated by sphinx-rtd-theme 3.0.0
Co-authored-by: Alessandro Pasotti <[email protected]>
Co-authored-by: Dan Baston <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.