QGIS API Documentation 3.99.0-Master (a8f284845db)
Loading...
Searching...
No Matches
qgsgdalutils.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsgdalutils.h
3 --------------
4 begin : September 2018
5 copyright : (C) 2018 Even Rouault
6 email : even.rouault at spatialys.com
7 ***************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 ***************************************************************************/
15
16#ifndef QGSGDALUTILS_H
17#define QGSGDALUTILS_H
18
19
20#include <gdal.h>
21
22#include "qgis_core.h"
23#include "qgsfeedback.h"
24#include "qgsogrutils.h"
25
26#define SIP_NO_FILE
27
28class QgsRasterBlock;
29
38class CORE_EXPORT QgsGdalOption
39{
40 public:
41
45 enum class Type
46 {
47 Invalid,
48 Select,
49 Boolean,
50 Text,
51 Int,
52 Double,
53 };
54
56 QString name;
57
60
62 QString description;
63
65 QStringList options;
66
68 QVariant defaultValue;
69
71 QVariant minimum;
72
74 QVariant maximum;
75
77 QString scope;
78
85 static QgsGdalOption fromXmlNode( const CPLXMLNode *node );
86
90 static QList< QgsGdalOption > optionsFromXml( const CPLXMLNode *node );
91};
92
93
102class CORE_EXPORT QgsGdalUtils
103{
104 public:
105
111 static bool supportsRasterCreate( GDALDriverH driver );
112
117 static gdal::dataset_unique_ptr createSingleBandMemoryDataset( GDALDataType dataType, const QgsRectangle &extent, int width, int height, const QgsCoordinateReferenceSystem &crs );
118
123 static gdal::dataset_unique_ptr createMultiBandMemoryDataset( GDALDataType dataType, int bands, const QgsRectangle &extent, int width, int height, const QgsCoordinateReferenceSystem &crs );
124
129 static gdal::dataset_unique_ptr createSingleBandTiffDataset( const QString &filename, GDALDataType dataType, const QgsRectangle &extent, int width, int height, const QgsCoordinateReferenceSystem &crs );
130
141 static bool resampleSingleBandRaster( GDALDatasetH hSrcDS, GDALDatasetH hDstDS, GDALResampleAlg resampleAlg, const char *pszCoordinateOperation );
142
154 static bool resampleSingleBandRaster( GDALDatasetH hSrcDS,
155 GDALDatasetH hDstDS,
156 GDALResampleAlg resampleAlg,
157 const QgsCoordinateReferenceSystem &sourceCrs,
158 const QgsCoordinateReferenceSystem &destinationCrs );
159
164 static QImage resampleImage( const QImage &image, QSize outputSize, GDALRIOResampleAlg resampleAlg );
165
170 static QString helpCreationOptionsFormat( const QString &format );
171
176 static QString validateCreationOptionsFormat( const QStringList &creationOptions, const QString &format );
177
182 static char **papszFromStringList( const QStringList &list );
183
191 static gdal::dataset_unique_ptr imageToMemoryDataset( const QImage &image );
192
200 static gdal::dataset_unique_ptr blockToSingleBandMemoryDataset( int pixelWidth, int pixelHeight, const QgsRectangle &extent, void *block, GDALDataType dataType );
201
210
219 static gdal::dataset_unique_ptr blockToSingleBandMemoryDataset( double rotation, const QgsPointXY &origin, double gridXSize, double gridYSize, QgsRasterBlock *block );
220
230 GDALDatasetH hSrcDS,
231 const char *pszSrcWKT,
232 const char *pszDstWKT,
233 GDALResampleAlg eResampleAlg,
234 double dfMaxError,
235 const GDALWarpOptions *psOptionsIn );
236
245 static void *rpcAwareCreateTransformer( GDALDatasetH hSrcDS, GDALDatasetH hDstDS = nullptr, char **papszOptions = nullptr );
246
252 static GDALDataType gdalDataTypeFromQgisDataType( Qgis::DataType dataType );
253
259 static GDALResampleAlg gdalResamplingAlgorithm( Qgis::RasterResamplingMethod method );
260
261#ifndef QT_NO_NETWORKPROXY
263 static void setupProxy();
264#endif
265
280 static bool pathIsCheapToOpen( const QString &path, int smallFileSizeLimit = 50000 );
281
288 static QStringList multiLayerFileExtensions();
289
296 static QString vsiPrefixForPath( const QString &path );
297
303 static QStringList vsiArchivePrefixes();
304
311 {
313 QString identifier;
314
316 QString name;
317 };
318
324 static QList< VsiNetworkFileSystemDetails > vsiNetworkFileSystems();
325
331 static bool isVsiArchivePrefix( const QString &prefix );
332
338 static QStringList vsiArchiveFileExtensions();
339
345 static bool isVsiArchiveFileExtension( const QString &extension );
346
352 static Qgis::VsiHandlerType vsiHandlerType( const QString &prefix );
353
364 static bool applyVsiCredentialOptions( const QString &prefix, const QString &path, const QVariantMap &options );
365
372 static bool vrtMatchesLayerType( const QString &vrtPath, Qgis::LayerType type );
373
379 static QString gdalDocumentationUrlForDriver( GDALDriverH hDriver );
380
381 friend class TestQgsGdalUtils;
382};
383
398class CORE_EXPORT QgsGdalProgressAdapter
399{
400 public:
401
408 explicit QgsGdalProgressAdapter( QgsFeedback *feedback, double startPercentage = 0.0, double endPercentage = 100.0 );
409
413 static int CPL_STDCALL progressCallback( double dfComplete, const char *pszMessage, void *pProgressArg );
414
415 private:
416 QgsFeedback *mFeedback = nullptr;
417 double mStartPercentage;
418 double mEndPercentage;
419};
420
421#endif // QGSGDALUTILS_H
VsiHandlerType
GDAL VSI handler types.
Definition qgis.h:6060
RasterResamplingMethod
Resampling method for raster provider-level resampling.
Definition qgis.h:1557
DataType
Raster data types.
Definition qgis.h:390
LayerType
Types of layers that can be added to a map.
Definition qgis.h:204
Represents a coordinate reference system (CRS).
Base class for feedback objects to be used for cancellation of something running in a worker thread.
Definition qgsfeedback.h:44
Encapsulates the definition of a GDAL configuration option.
QVariant defaultValue
Default value.
QVariant maximum
Maximum acceptable value.
QString name
Option name.
QStringList options
Available choices, for Select options.
QVariant minimum
Minimum acceptable value.
Type
Option types.
@ Invalid
Invalid option.
QString scope
Option scope.
static QList< QgsGdalOption > optionsFromXml(const CPLXMLNode *node)
Returns a list of all GDAL options from an XML node.
static QgsGdalOption fromXmlNode(const CPLXMLNode *node)
Creates a QgsGdalOption from an XML node.
QString description
Option description.
Type type
Option type.
QgsGdalProgressAdapter(QgsFeedback *feedback, double startPercentage=0.0, double endPercentage=100.0)
Constructor from feedback (which may be NULL).
static int CPL_STDCALL progressCallback(double dfComplete, const char *pszMessage, void *pProgressArg)
GDAL progress callback.
Utilities for working with GDAL.
static Qgis::VsiHandlerType vsiHandlerType(const QString &prefix)
Returns the VSI handler type for a given VSI prefix.
static bool applyVsiCredentialOptions(const QString &prefix, const QString &path, const QVariantMap &options)
Attempts to apply VSI credential options.
static bool pathIsCheapToOpen(const QString &path, int smallFileSizeLimit=50000)
Returns true if the dataset at the specified path is considered "cheap" to open.
static QString vsiPrefixForPath(const QString &path)
Returns a the vsi prefix which corresponds to a file path, or an empty string if the path is not asso...
static QString helpCreationOptionsFormat(const QString &format)
Gets creation options metadata for a given format.
static bool vrtMatchesLayerType(const QString &vrtPath, Qgis::LayerType type)
Returns true if the VRT file at the specified path is a VRT matching the given layer type.
static bool resampleSingleBandRaster(GDALDatasetH hSrcDS, GDALDatasetH hDstDS, GDALResampleAlg resampleAlg, const char *pszCoordinateOperation)
Resamples a single band raster to the destination dataset with different resolution (and possibly wit...
static GDALDatasetH rpcAwareAutoCreateWarpedVrt(GDALDatasetH hSrcDS, const char *pszSrcWKT, const char *pszDstWKT, GDALResampleAlg eResampleAlg, double dfMaxError, const GDALWarpOptions *psOptionsIn)
This is a copy of GDALAutoCreateWarpedVRT optimized for imagery using RPC georeferencing that also se...
static bool supportsRasterCreate(GDALDriverH driver)
Reads whether a driver supports GDALCreate() for raster purposes.
static bool isVsiArchiveFileExtension(const QString &extension)
Returns true if a file extension is a supported archive style container (e.g.
static GDALResampleAlg gdalResamplingAlgorithm(Qgis::RasterResamplingMethod method)
Returns the GDAL resampling method corresponding to the QGIS resampling method.
static gdal::dataset_unique_ptr createSingleBandTiffDataset(const QString &filename, GDALDataType dataType, const QgsRectangle &extent, int width, int height, const QgsCoordinateReferenceSystem &crs)
Creates a new single band TIFF dataset with given parameters.
static GDALDataType gdalDataTypeFromQgisDataType(Qgis::DataType dataType)
Returns the GDAL data type corresponding to the QGIS data type dataType.
static bool isVsiArchivePrefix(const QString &prefix)
Returns true if prefix is a supported archive style container prefix (e.g.
static QString gdalDocumentationUrlForDriver(GDALDriverH hDriver)
Returns the URL for the GDAL documentation for the specified driver.
static gdal::dataset_unique_ptr createSingleBandMemoryDataset(GDALDataType dataType, const QgsRectangle &extent, int width, int height, const QgsCoordinateReferenceSystem &crs)
Creates a new single band memory dataset with given parameters.
static gdal::dataset_unique_ptr blockToSingleBandMemoryDataset(int pixelWidth, int pixelHeight, const QgsRectangle &extent, void *block, GDALDataType dataType)
Converts a data block to a single band GDAL memory dataset.
static QList< VsiNetworkFileSystemDetails > vsiNetworkFileSystems()
Returns a list of available GDAL VSI network file systems.
static QString validateCreationOptionsFormat(const QStringList &creationOptions, const QString &format)
Validates creation options for a given format, regardless of layer.
static gdal::dataset_unique_ptr imageToMemoryDataset(const QImage &image)
Converts an image to a GDAL memory dataset by borrowing image data.
static void * rpcAwareCreateTransformer(GDALDatasetH hSrcDS, GDALDatasetH hDstDS=nullptr, char **papszOptions=nullptr)
This is a wrapper around GDALCreateGenImgProjTransformer2() that takes into account RPC georeferencin...
static void setupProxy()
Sets the gdal proxy variables.
friend class TestQgsGdalUtils
static QStringList vsiArchiveFileExtensions()
Returns a list of file extensions which correspond to archive style containers supported by GDAL (e....
static char ** papszFromStringList(const QStringList &list)
Helper function.
static QImage resampleImage(const QImage &image, QSize outputSize, GDALRIOResampleAlg resampleAlg)
Resamples a QImage image using GDAL resampler.
static gdal::dataset_unique_ptr createMultiBandMemoryDataset(GDALDataType dataType, int bands, const QgsRectangle &extent, int width, int height, const QgsCoordinateReferenceSystem &crs)
Creates a new multi band memory dataset with given parameters.
static QStringList multiLayerFileExtensions()
Returns a list of file extensions which potentially contain multiple layers representing GDAL raster ...
static QStringList vsiArchivePrefixes()
Returns a list of vsi prefixes which correspond to archive style containers (eg vsizip).
Represents a 2D point.
Definition qgspointxy.h:62
Raster data container.
A rectangle specified with double values.
std::unique_ptr< std::remove_pointer< GDALDatasetH >::type, GDALDatasetCloser > dataset_unique_ptr
Scoped GDAL dataset.
void * GDALDatasetH
Encapsulates details for a GDAL VSI network file system.
QString name
Translated, user-friendly name.
QString identifier
VSI handler identifier, eg "vsis3".