Skip to content
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

[pull] master from OSGeo:master #112

Merged
merged 12 commits into from
Feb 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ XODR driver:
* Fix typo in handling of Translate widthPct, heightPct
* add relatedFieldNameMatch parameter to gdal.VectorTranslate()

# GDAL/OGR 3.10.2 Release Notes
# GDAL/OGR 3.10.2 "Gulf of Mexico" Release Notes

GDAL 3.10.2 is a bugfix release.

Expand Down
31 changes: 16 additions & 15 deletions alg/gdaltransformer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -524,11 +524,11 @@ CPLErr CPL_STDCALL GDALSuggestedWarpOutput2(GDALDatasetH hSrcDS,
/* -------------------------------------------------------------------- */
/* Transform them to the output coordinate system. */
/* -------------------------------------------------------------------- */
CPLTurnFailureIntoWarning(true);
pfnTransformer(pTransformArg, FALSE, nSamplePoints, padfX, padfY, padfZ,
pabSuccess);
CPLTurnFailureIntoWarning(false);

{
CPLTurnFailureIntoWarningBackuper oErrorsToWarnings{};
pfnTransformer(pTransformArg, FALSE, nSamplePoints, padfX, padfY, padfZ,
pabSuccess);
}
constexpr int SIGN_FINAL_UNINIT = -2;
constexpr int SIGN_FINAL_INVALID = 0;
int iSignDiscontinuity = SIGN_FINAL_UNINIT;
Expand Down Expand Up @@ -588,15 +588,14 @@ CPLErr CPL_STDCALL GDALSuggestedWarpOutput2(GDALDatasetH hSrcDS,
double ayTemp[2] = {padfY[i], padfY[i]};
double azTemp[2] = {padfZ[i], padfZ[i]};
int abSuccess[2] = {FALSE, FALSE};
CPLTurnFailureIntoWarning(true);
CPLTurnFailureIntoWarningBackuper oErrorsToWarnings{};
if (pfnTransformer(pTransformArg, TRUE, 2, axTemp, ayTemp,
azTemp, abSuccess) &&
fabs(axTemp[0] - axTemp[1]) < 1e-8 &&
fabs(ayTemp[0] - ayTemp[1]) < 1e-8)
{
padfX[i] = iSignDiscontinuity * 180.0;
}
CPLTurnFailureIntoWarning(false);
}
}
}
Expand All @@ -615,10 +614,11 @@ CPLErr CPL_STDCALL GDALSuggestedWarpOutput2(GDALDatasetH hSrcDS,
memcpy(padfXRevert, padfX, nSamplePoints * sizeof(double));
memcpy(padfYRevert, padfY, nSamplePoints * sizeof(double));
memcpy(padfZRevert, padfZ, nSamplePoints * sizeof(double));
CPLTurnFailureIntoWarning(true);
pfnTransformer(pTransformArg, TRUE, nSamplePoints, padfXRevert,
padfYRevert, padfZRevert, pabSuccess);
CPLTurnFailureIntoWarning(false);
{
CPLTurnFailureIntoWarningBackuper oErrorsToWarnings{};
pfnTransformer(pTransformArg, TRUE, nSamplePoints, padfXRevert,
padfYRevert, padfZRevert, pabSuccess);
}

for (int i = 0; nFailedCount == 0 && i < nSamplePoints; i++)
{
Expand Down Expand Up @@ -693,10 +693,11 @@ CPLErr CPL_STDCALL GDALSuggestedWarpOutput2(GDALDatasetH hSrcDS,

CPLAssert(nSamplePoints == nSampleMax);

CPLTurnFailureIntoWarning(true);
pfnTransformer(pTransformArg, FALSE, nSamplePoints, padfX, padfY, padfZ,
pabSuccess);
CPLTurnFailureIntoWarning(false);
{
CPLTurnFailureIntoWarningBackuper oErrorsToWarnings{};
pfnTransformer(pTransformArg, FALSE, nSamplePoints, padfX, padfY,
padfZ, pabSuccess);
}
}

/* -------------------------------------------------------------------- */
Expand Down
1 change: 1 addition & 0 deletions apps/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ add_library(
gdalalg_pipeline.cpp
gdalalg_raster.cpp
gdalalg_raster_info.cpp
gdalalg_raster_calc.cpp
gdalalg_raster_clip.cpp
gdalalg_raster_convert.cpp
gdalalg_raster_edit.cpp
Expand Down
2 changes: 2 additions & 0 deletions apps/gdalalg_raster.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
#include "gdalalgorithm.h"

#include "gdalalg_raster_info.h"
#include "gdalalg_raster_calc.h"
#include "gdalalg_raster_clip.h"
#include "gdalalg_raster_convert.h"
#include "gdalalg_raster_edit.h"
Expand Down Expand Up @@ -41,6 +42,7 @@ class GDALRasterAlgorithm final : public GDALAlgorithm
GDALRasterAlgorithm() : GDALAlgorithm(NAME, DESCRIPTION, HELP_URL)
{
RegisterSubAlgorithm<GDALRasterInfoAlgorithm>();
RegisterSubAlgorithm<GDALRasterCalcAlgorithm>();
RegisterSubAlgorithm<GDALRasterConvertAlgorithm>();
RegisterSubAlgorithm<GDALRasterClipAlgorithmStandalone>();
RegisterSubAlgorithm<GDALRasterEditAlgorithmStandalone>();
Expand Down
Loading
Loading