QGIS API Documentation 3.99.0-Master (d270888f95f)
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#define SIP_NO_FILE
20
21#include <gdal.h>
22
23#include "qgis_core.h"
24#include "qgsfeedback.h"
25#include "qgsogrutils.h"
26
27class QgsRasterBlock;
28
37class CORE_EXPORT QgsGdalOption
38{
39 public:
40
44 enum class Type
45 {
46 Invalid,
47 Select,
48 Boolean,
49 Text,
50 Int,
51 Double,
52 };
53
55 QString name;
56
59
61 QString description;
62
64 QStringList options;
65
67 QVariant defaultValue;
68
70 QVariant minimum;
71
73 QVariant maximum;
74
76 QString scope;
77
84 static QgsGdalOption fromXmlNode( const CPLXMLNode *node );
85
89 static QList< QgsGdalOption > optionsFromXml( const CPLXMLNode *node );
90};
91
92
101class CORE_EXPORT QgsGdalUtils
102{
103 public:
104
110 static bool supportsRasterCreate( GDALDriverH driver );
111
116 static gdal::dataset_unique_ptr createSingleBandMemoryDataset( GDALDataType dataType, const QgsRectangle &extent, int width, int height, const QgsCoordinateReferenceSystem &crs );
117
122 static gdal::dataset_unique_ptr createMultiBandMemoryDataset( GDALDataType dataType, int bands, const QgsRectangle &extent, int width, int height, const QgsCoordinateReferenceSystem &crs );
123
128 static gdal::dataset_unique_ptr createSingleBandTiffDataset( const QString &filename, GDALDataType dataType, const QgsRectangle &extent, int width, int height, const QgsCoordinateReferenceSystem &crs );
129
140 static bool resampleSingleBandRaster( GDALDatasetH hSrcDS, GDALDatasetH hDstDS, GDALResampleAlg resampleAlg, const char *pszCoordinateOperation );
141
153 static bool resampleSingleBandRaster( GDALDatasetH hSrcDS,
154 GDALDatasetH hDstDS,
155 GDALResampleAlg resampleAlg,
156 const QgsCoordinateReferenceSystem &sourceCrs,
157 const QgsCoordinateReferenceSystem &destinationCrs );
158
163 static QImage resampleImage( const QImage &image, QSize outputSize, GDALRIOResampleAlg resampleAlg );
164
169 static QString helpCreationOptionsFormat( const QString &format );
170
175 static QString validateCreationOptionsFormat( const QStringList &creationOptions, const QString &format );
176
181 static char **papszFromStringList( const QStringList &list );
182
190 static gdal::dataset_unique_ptr imageToMemoryDataset( const QImage &image );
191
199 static gdal::dataset_unique_ptr blockToSingleBandMemoryDataset( int pixelWidth, int pixelHeight, const QgsRectangle &extent, void *block, GDALDataType dataType );
200
209
218 static gdal::dataset_unique_ptr blockToSingleBandMemoryDataset( double rotation, const QgsPointXY &origin, double gridXSize, double gridYSize, QgsRasterBlock *block );
219
229 GDALDatasetH hSrcDS,
230 const char *pszSrcWKT,
231 const char *pszDstWKT,
232 GDALResampleAlg eResampleAlg,
233 double dfMaxError,
234 const GDALWarpOptions *psOptionsIn );
235
244 static void *rpcAwareCreateTransformer( GDALDatasetH hSrcDS, GDALDatasetH hDstDS = nullptr, char **papszOptions = nullptr );
245
251 static GDALDataType gdalDataTypeFromQgisDataType( Qgis::DataType dataType );
252
258 static GDALResampleAlg gdalResamplingAlgorithm( Qgis::RasterResamplingMethod method );
259
260#ifndef QT_NO_NETWORKPROXY
262 static void setupProxy();
263#endif
264
279 static bool pathIsCheapToOpen( const QString &path, int smallFileSizeLimit = 50000 );
280
287 static QStringList multiLayerFileExtensions();
288
295 static QString vsiPrefixForPath( const QString &path );
296
302 static QStringList vsiArchivePrefixes();
303
310 {
312 QString identifier;
313
315 QString name;
316 };
317
323 static QList< VsiNetworkFileSystemDetails > vsiNetworkFileSystems();
324
330 static bool isVsiArchivePrefix( const QString &prefix );
331
337 static QStringList vsiArchiveFileExtensions();
338
344 static bool isVsiArchiveFileExtension( const QString &extension );
345
351 static Qgis::VsiHandlerType vsiHandlerType( const QString &prefix );
352
363 static bool applyVsiCredentialOptions( const QString &prefix, const QString &path, const QVariantMap &options );
364
371 static bool vrtMatchesLayerType( const QString &vrtPath, Qgis::LayerType type );
372
378 static QString gdalDocumentationUrlForDriver( GDALDriverH hDriver );
379
380 friend class TestQgsGdalUtils;
381};
382
397class CORE_EXPORT QgsGdalProgressAdapter
398{
399 public:
400
407 explicit QgsGdalProgressAdapter( QgsFeedback *feedback, double startPercentage = 0.0, double endPercentage = 100.0 );
408
412 static int CPL_STDCALL progressCallback( double dfComplete, const char *pszMessage, void *pProgressArg );
413
414 private:
415 QgsFeedback *mFeedback = nullptr;
416 double mStartPercentage;
417 double mEndPercentage;
418};
419
420#endif // QGSGDALUTILS_H
VsiHandlerType
GDAL VSI handler types.
Definition qgis.h:6010
RasterResamplingMethod
Resampling method for raster provider-level resampling.
Definition qgis.h:1542
DataType
Raster data types.
Definition qgis.h:379
LayerType
Types of layers that can be added to a map.
Definition qgis.h:193
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".