QGIS/python/core/auto_generated/raster/qgsrasterdataprovider.sip.in

456 lines
12 KiB
Plaintext
Raw Normal View History

2017-06-01 15:39:31 +02:00
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/raster/qgsrasterdataprovider.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/
2015-02-03 02:21:52 +01:00
class QgsImageFetcher : QObject
{
2017-06-01 15:39:31 +02:00
%Docstring
Handles asynchronous download of images
2017-12-15 10:36:55 -04:00
2017-06-01 15:39:31 +02:00
.. versionadded:: 2.8
%End
2015-02-03 02:21:52 +01:00
%TypeHeaderCode
2017-06-01 15:39:31 +02:00
#include "qgsrasterdataprovider.h"
2015-02-03 02:21:52 +01:00
%End
public:
QgsImageFetcher( QObject *parent = 0 );
2017-06-01 15:39:31 +02:00
%Docstring
Constructor
%End
2015-02-03 02:21:52 +01:00
virtual void start() = 0;
2017-06-01 15:39:31 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
Starts the image download
2017-06-01 15:39:31 +02:00
.. note::
Make sure to connect to "finish" and "error" before starting *
%End
2015-02-03 02:21:52 +01:00
signals:
2017-06-01 15:39:31 +02:00
void finish( const QImage &legend );
2017-06-01 15:39:31 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
Emitted when the download completes
2017-12-15 21:36:08 -04:00
2017-12-15 10:36:55 -04:00
:param legend: The downloaded legend image *
2017-06-01 15:39:31 +02:00
%End
2015-02-03 02:21:52 +01:00
void progress( qint64 received, qint64 total );
2017-06-01 15:39:31 +02:00
%Docstring
Emitted to report progress
%End
void error( const QString &msg );
2017-06-01 15:39:31 +02:00
%Docstring
Emitted when an error occurs
%End
2015-02-03 02:21:52 +01:00
};
2017-06-01 15:39:31 +02:00
2012-09-13 13:38:39 +02:00
class QgsRasterDataProvider : QgsDataProvider, QgsRasterInterface
{
2017-06-01 15:39:31 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
Base class for raster data providers.
%End
2017-06-01 15:39:31 +02:00
%TypeHeaderCode
#include "qgsrasterdataprovider.h"
%End
public:
enum ProviderCapability
{
NoProviderCapabilities,
ReadLayerMetadata,
WriteLayerMetadata,
};
typedef QFlags<QgsRasterDataProvider::ProviderCapability> ProviderCapabilities;
QgsRasterDataProvider();
QgsRasterDataProvider( const QString &uri );
virtual QgsRasterInterface *clone() const = 0;
virtual QgsRasterDataProvider::ProviderCapabilities providerCapabilities() const;
%Docstring
Returns flags containing the supported capabilities of the data provider.
.. versionadded:: 3.0
%End
2017-06-01 15:39:31 +02:00
virtual bool setInput( QgsRasterInterface *input );
%Docstring
2017-12-15 10:36:55 -04:00
It makes no sense to set input on provider */
2017-06-01 15:39:31 +02:00
%End
virtual QgsRectangle extent() const = 0;
virtual Qgis::DataType dataType( int bandNo ) const = 0;
2017-06-01 15:39:31 +02:00
%Docstring
Returns data type for the band specified by number
%End
virtual Qgis::DataType sourceDataType( int bandNo ) const = 0;
2017-06-01 15:39:31 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
Returns source data type for the band specified by number,
source data type may be shorter than dataType
2017-06-01 15:39:31 +02:00
%End
virtual int colorInterpretation( int bandNo ) const;
2017-06-01 15:39:31 +02:00
%Docstring
Returns data type for the band specified by number
%End
QString colorName( int colorInterpretation ) const;
virtual bool reload();
2017-06-01 15:39:31 +02:00
%Docstring
Reload data (data could change)
%End
virtual QString colorInterpretationName( int bandNo ) const;
virtual double bandScale( int bandNo ) const;
2017-06-01 15:39:31 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
Read band scale for raster value
2017-06-01 15:39:31 +02:00
.. versionadded:: 2.3
%End
2017-06-01 15:39:31 +02:00
virtual double bandOffset( int bandNo ) const;
%Docstring
2017-12-15 10:36:55 -04:00
Read band offset for raster value
2017-06-01 15:39:31 +02:00
.. versionadded:: 2.3
%End
2017-06-01 15:39:31 +02:00
virtual QgsRasterBlock *block( int bandNo, const QgsRectangle &boundingBox, int width, int height, QgsRasterBlockFeedback *feedback = 0 );
2017-06-01 15:39:31 +02:00
%Docstring
Read block of data using given extent and size.
%End
virtual bool sourceHasNoDataValue( int bandNo ) const;
2017-06-01 15:39:31 +02:00
%Docstring
Return true if source band has no data value
%End
virtual bool useSourceNoDataValue( int bandNo ) const;
2017-06-01 15:39:31 +02:00
%Docstring
Get source nodata value usage
%End
virtual void setUseSourceNoDataValue( int bandNo, bool use );
2017-06-01 15:39:31 +02:00
%Docstring
Set source nodata value usage
%End
virtual double sourceNoDataValue( int bandNo ) const;
2017-06-01 15:39:31 +02:00
%Docstring
Value representing no data value.
%End
virtual void setUserNoDataValue( int bandNo, const QgsRasterRangeList &noData );
2014-05-27 23:22:50 +02:00
virtual QgsRasterRangeList userNoDataValues( int bandNo ) const;
2017-06-01 15:39:31 +02:00
%Docstring
Get list of user no data value ranges
%End
virtual QList<QgsColorRampShader::ColorRampItem> colorTable( int bandNo ) const;
virtual QStringList subLayers() const;
2017-06-01 15:39:31 +02:00
%Docstring
Returns the sublayers of this layer - useful for providers that manage
2017-12-15 10:36:55 -04:00
their own layers, such as WMS *
2017-06-01 15:39:31 +02:00
%End
virtual bool supportsLegendGraphic() const;
2017-06-01 15:39:31 +02:00
%Docstring
Returns whether the provider supplies a legend graphic
%End
virtual QgsImageFetcher *getLegendGraphicFetcher( const QgsMapSettings *mapSettings ) /Factory/;
2017-06-01 15:39:31 +02:00
%Docstring
Get an image downloader for the raster legend
2017-12-15 10:36:55 -04:00
:param mapSettings: map settings for legend providers supporting
contextual legends.
:return: a download handler or null if the provider does not support
legend at all. Ownership of the returned object is transferred
to caller.
2017-06-01 15:39:31 +02:00
2017-12-15 21:36:08 -04:00
2017-06-01 15:39:31 +02:00
.. versionadded:: 2.8
%End
virtual QString buildPyramids( const QList<QgsRasterPyramid> &pyramidList,
const QString &resamplingMethod = "NEAREST",
QgsRaster::RasterPyramidsFormat format = QgsRaster::PyramidsGTiff,
2017-06-01 15:39:31 +02:00
const QStringList &configOptions = QStringList(),
QgsRasterBlockFeedback *feedback = 0 );
2017-06-01 15:39:31 +02:00
%Docstring
Create pyramid overviews
%End
2017-06-01 15:39:31 +02:00
virtual QList<QgsRasterPyramid> buildPyramidList( QList<int> overviewList = QList<int>() );
%Docstring
Accessor for the raster layers pyramid list.
2017-12-15 21:36:08 -04:00
2017-12-15 10:36:55 -04:00
:param overviewList: used to construct the pyramid list (optional), when empty the list is defined by the provider.
A pyramid list defines the
POTENTIAL pyramids that can be in a raster. To know which of the pyramid layers
ACTUALLY exists you need to look at the existsFlag member in each struct stored in the
list.
2017-06-01 15:39:31 +02:00
%End
bool hasPyramids();
2017-06-01 15:39:31 +02:00
%Docstring
Returns true if raster has at least one populated histogram.
%End
virtual QString htmlMetadata() = 0;
2017-06-01 15:39:31 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
Get metadata in a format suitable for feeding directly
into a subset of the GUI raster properties "Metadata" tab.
2017-06-01 15:39:31 +02:00
%End
virtual QgsRasterIdentifyResult identify( const QgsPointXY &point, QgsRaster::IdentifyFormat format, const QgsRectangle &boundingBox = QgsRectangle(), int width = 0, int height = 0, int dpi = 96 );
virtual QString lastErrorTitle() = 0;
2017-06-01 15:39:31 +02:00
%Docstring
2017-12-16 10:38:54 -04:00
Returns the caption error text for the last error in this provider
2017-06-01 15:39:31 +02:00
2017-12-15 10:36:55 -04:00
If an operation returns 0 (e.g. draw()), this function
returns the text of the error associated with the failure.
Interactive users of this provider can then, for example,
call a QMessageBox to display the contents.
2017-06-01 15:39:31 +02:00
%End
virtual QString lastError() = 0;
2017-06-01 15:39:31 +02:00
%Docstring
Returns the verbose error text for the last error in this provider
2017-12-15 10:36:55 -04:00
If an operation returns 0 (e.g. draw()), this function
returns the text of the error associated with the failure.
Interactive users of this provider can then, for example,
call a QMessageBox to display the contents.
2017-06-01 15:39:31 +02:00
%End
virtual QString lastErrorFormat();
2017-06-01 15:39:31 +02:00
%Docstring
Returns the format of the error text for the last error in this provider
%End
int dpi() const;
2017-06-01 15:39:31 +02:00
%Docstring
Returns the dpi of the output device.
%End
void setDpi( int dpi );
2017-06-01 15:39:31 +02:00
%Docstring
Sets the output device resolution.
%End
2012-04-13 18:52:32 +02:00
virtual QDateTime timestamp() const;
2017-06-01 15:39:31 +02:00
%Docstring
Time stamp of data source in the moment when data/metadata were loaded by provider
%End
virtual QDateTime dataTimestamp() const;
2017-06-01 15:39:31 +02:00
%Docstring
Current time stamp of data source
%End
virtual bool isEditable() const;
2017-06-01 15:39:31 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
Checks whether the provider is in editing mode, i.e. raster write operations will be accepted.
By default providers are not editable. Use setEditable() method to enable/disable editing.
.. seealso:: :py:func:`setEditable`
2017-12-15 10:36:55 -04:00
2017-06-01 15:39:31 +02:00
.. versionadded:: 3.0
%End
virtual bool setEditable( bool enabled );
2017-06-01 15:39:31 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
Turns on/off editing mode of the provider. When in editing mode, it is possible
to overwrite data of the provider using writeBlock() calls.
2017-12-16 10:38:54 -04:00
:return: true if the switch to/from editing mode was successful
2017-06-01 15:39:31 +02:00
.. note::
Only some providers support editing mode and even those may fail to turn
2018-01-12 20:51:17 -04:00
the underlying data source into editing mode, so it is necessary to check the return
value whether the operation was successful.
2017-12-15 10:36:55 -04:00
.. seealso:: :py:func:`isEditable`
2017-12-15 10:36:55 -04:00
2017-06-01 15:39:31 +02:00
.. versionadded:: 3.0
%End
virtual bool write( void *data, int band, int width, int height, int xOffset, int yOffset );
bool writeBlock( QgsRasterBlock *block, int band, int xOffset = 0, int yOffset = 0 );
2017-06-01 15:39:31 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
Writes pixel data from a raster block into the provider data source.
This will override previously stored pixel values. It is assumed that cells in the passed
raster block are aligned with the cells of the data source. If raster block does not cover
the whole area of the data source, only a subset of pixels covered by the raster block
will be overwritten. By default, writing of raster data starts from the first cell
of the raster - it is possible to set offset in pixels by specifying non-zero
xOffset and yOffset values.
2017-06-01 15:39:31 +02:00
2017-12-15 10:36:55 -04:00
Writing is supported only by some data providers. Provider has to be in editing mode
in order to allow write operations.
.. seealso:: :py:func:`isEditable`
2017-12-15 10:36:55 -04:00
:return: true on success
2017-06-01 15:39:31 +02:00
.. versionadded:: 3.0
%End
2017-06-01 15:39:31 +02:00
static QgsRasterDataProvider *create( const QString &providerKey,
2014-05-18 15:22:26 +02:00
const QString &uri,
2017-06-01 15:39:31 +02:00
const QString &format, int nBands,
Qgis::DataType type,
2017-06-01 15:39:31 +02:00
int width, int height, double *geoTransform,
const QgsCoordinateReferenceSystem &crs,
const QStringList &createOptions = QStringList() );
2017-06-01 15:39:31 +02:00
%Docstring
Creates a new dataset with mDataSourceURI
%End
virtual bool setNoDataValue( int bandNo, double noDataValue );
2017-06-01 15:39:31 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
Set no data value on created dataset
2017-12-15 21:36:08 -04:00
2017-12-15 10:36:55 -04:00
:param bandNo: band number
:param noDataValue: no data value
2017-06-01 15:39:31 +02:00
%End
virtual bool remove();
2017-06-01 15:39:31 +02:00
%Docstring
Remove dataset
%End
static QList<QPair<QString, QString> > pyramidResamplingMethods( const QString &providerKey );
2017-06-01 15:39:31 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
Returns a list of pyramid resampling method name and label pairs
for given provider
2017-06-01 15:39:31 +02:00
%End
virtual QString validateCreationOptions( const QStringList &createOptions, const QString &format );
2017-06-01 15:39:31 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
Validates creation options for a specific dataset and destination format.
2017-06-01 15:39:31 +02:00
.. note::
used by GDAL provider only
2017-12-15 10:36:55 -04:00
2017-06-01 15:39:31 +02:00
.. note::
see also validateCreationOptionsFormat() in gdal provider for validating options based on format only
%End
virtual QString validatePyramidsConfigOptions( QgsRaster::RasterPyramidsFormat pyramidsFormat,
const QStringList &configOptions, const QString &fileFormat );
2017-06-01 15:39:31 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
Validates pyramid creation options for a specific dataset and destination format
2017-06-01 15:39:31 +02:00
.. note::
used by GDAL provider only
%End
2014-05-18 15:22:26 +02:00
static QString identifyFormatName( QgsRaster::IdentifyFormat format );
static QgsRaster::IdentifyFormat identifyFormatFromName( const QString &formatName );
2014-05-18 15:22:26 +02:00
static QString identifyFormatLabel( QgsRaster::IdentifyFormat format );
static Capability identifyFormatToCapability( QgsRaster::IdentifyFormat format );
virtual int stepWidth() const;
2017-06-01 15:39:31 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
Step width for raster iterations.
.. seealso:: :py:func:`stepHeight`
2017-12-15 10:36:55 -04:00
2017-06-01 15:39:31 +02:00
.. versionadded:: 3.0
%End
virtual int stepHeight() const;
2017-06-01 15:39:31 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
Step height for raster iterations.
.. seealso:: :py:func:`stepWidth`
2017-12-15 10:36:55 -04:00
2017-06-01 15:39:31 +02:00
.. versionadded:: 3.0
%End
2014-05-18 15:22:26 +02:00
signals:
2016-02-14 03:50:23 +01:00
2017-06-01 15:39:31 +02:00
void statusChanged( const QString & ) const;
%Docstring
2017-12-15 10:36:55 -04:00
Emit a message to be displayed on status bar, usually used by network providers (WMS,WCS)
2017-06-01 15:39:31 +02:00
.. versionadded:: 2.14
%End
protected:
2017-06-01 15:39:31 +02:00
bool userNoDataValuesContains( int bandNo, double value ) const;
2017-06-01 15:39:31 +02:00
%Docstring
Returns true if user no data contains value
%End
void copyBaseSettings( const QgsRasterDataProvider &other );
2017-06-01 15:39:31 +02:00
%Docstring
Copy member variables from other raster data provider. Useful for implementation of clone() method in subclasses
%End
2017-06-01 15:39:31 +02:00
};
2017-09-25 14:20:39 +10:00
QFlags<QgsRasterDataProvider::ProviderCapability> operator|(QgsRasterDataProvider::ProviderCapability f1, QFlags<QgsRasterDataProvider::ProviderCapability> f2);
2017-09-25 14:20:39 +10:00
2017-06-01 15:39:31 +02:00
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/raster/qgsrasterdataprovider.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/