-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ensure temporal and elevation filters work correctly in conjunction
Fixes #56938
- Loading branch information
1 parent
5bc06fe
commit 94bef54
Showing
14 changed files
with
800 additions
and
27 deletions.
There are no files selected for viewing
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
53 changes: 53 additions & 0 deletions
53
python/PyQt6/core/auto_generated/raster/qgsrasterlayerutils.sip.in
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/************************************************************************ | ||
* This file has been generated automatically from * | ||
* * | ||
* src/core/raster/qgsrasterlayerutils.h * | ||
* * | ||
* Do not edit manually ! Edit header and run scripts/sipify.pl again * | ||
************************************************************************/ | ||
|
||
|
||
|
||
|
||
|
||
class QgsRasterLayerUtils | ||
{ | ||
%Docstring(signature="appended") | ||
Contains utility functions for working with raster layers. | ||
|
||
.. versionadded:: 3.38 | ||
%End | ||
|
||
%TypeHeaderCode | ||
#include "qgsrasterlayerutils.h" | ||
%End | ||
public: | ||
|
||
static int renderedBandForElevationAndTemporalRange( | ||
QgsRasterLayer *layer, | ||
const QgsDateTimeRange &temporalRange, | ||
const QgsDoubleRange &elevationRange, | ||
bool &matched /Out/ ); | ||
%Docstring | ||
Given a raster ``layer``, returns the band which should be used for | ||
rendering the layer for a specified temporal and elevation range, | ||
respecting any elevation and temporal settings which affect the rendered band. | ||
|
||
:param layer: Target raster layer | ||
:param temporalRange: temporal range for rendering | ||
:param elevationRange: elevation range for rendering | ||
|
||
:return: - Matched band, or -1 if the layer does not have any elevation | ||
- matched: will be set to ``True`` if a band matching the temporal and elevation range was found | ||
or temporal settings which affect the rendered band. | ||
%End | ||
|
||
}; | ||
|
||
/************************************************************************ | ||
* This file has been generated automatically from * | ||
* * | ||
* src/core/raster/qgsrasterlayerutils.h * | ||
* * | ||
* Do not edit manually ! Edit header and run scripts/sipify.pl again * | ||
************************************************************************/ |
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
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
53 changes: 53 additions & 0 deletions
53
python/core/auto_generated/raster/qgsrasterlayerutils.sip.in
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/************************************************************************ | ||
* This file has been generated automatically from * | ||
* * | ||
* src/core/raster/qgsrasterlayerutils.h * | ||
* * | ||
* Do not edit manually ! Edit header and run scripts/sipify.pl again * | ||
************************************************************************/ | ||
|
||
|
||
|
||
|
||
|
||
class QgsRasterLayerUtils | ||
{ | ||
%Docstring(signature="appended") | ||
Contains utility functions for working with raster layers. | ||
|
||
.. versionadded:: 3.38 | ||
%End | ||
|
||
%TypeHeaderCode | ||
#include "qgsrasterlayerutils.h" | ||
%End | ||
public: | ||
|
||
static int renderedBandForElevationAndTemporalRange( | ||
QgsRasterLayer *layer, | ||
const QgsDateTimeRange &temporalRange, | ||
const QgsDoubleRange &elevationRange, | ||
bool &matched /Out/ ); | ||
%Docstring | ||
Given a raster ``layer``, returns the band which should be used for | ||
rendering the layer for a specified temporal and elevation range, | ||
respecting any elevation and temporal settings which affect the rendered band. | ||
|
||
:param layer: Target raster layer | ||
:param temporalRange: temporal range for rendering | ||
:param elevationRange: elevation range for rendering | ||
|
||
:return: - Matched band, or -1 if the layer does not have any elevation | ||
- matched: will be set to ``True`` if a band matching the temporal and elevation range was found | ||
or temporal settings which affect the rendered band. | ||
%End | ||
|
||
}; | ||
|
||
/************************************************************************ | ||
* This file has been generated automatically from * | ||
* * | ||
* src/core/raster/qgsrasterlayerutils.h * | ||
* * | ||
* Do not edit manually ! Edit header and run scripts/sipify.pl again * | ||
************************************************************************/ |
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
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
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
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
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
Oops, something went wrong.