QGIS API Documentation  3.10.0-A Coruña (6c816b4204)
qgsrasterlayerrenderer.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgsrasterlayerrenderer.cpp
3  --------------------------------------
4  Date : December 2013
5  Copyright : (C) 2013 by Martin Dobias
6  Email : wonder dot sk at gmail dot 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 #include "qgsrasterlayerrenderer.h"
17 
18 #include "qgsmessagelog.h"
19 #include "qgsrasterdataprovider.h"
20 #include "qgsrasterdrawer.h"
21 #include "qgsrasteriterator.h"
22 #include "qgsrasterlayer.h"
23 #include "qgsrasterprojector.h"
24 #include "qgsrendercontext.h"
25 #include "qgsproject.h"
26 #include "qgsexception.h"
27 
28 
30 
31 QgsRasterLayerRendererFeedback::QgsRasterLayerRendererFeedback( QgsRasterLayerRenderer *r )
32  : mR( r )
33  , mMinimalPreviewInterval( 250 )
34 {
35  setRenderPartialOutput( r->renderContext()->testFlag( QgsRenderContext::RenderPartialOutput ) );
36 }
37 
38 void QgsRasterLayerRendererFeedback::onNewData()
39 {
40  if ( !renderPartialOutput() )
41  return; // we were not asked for partial renders and we may not have a temporary image for overwriting...
42 
43  // update only once upon a time
44  // (preview itself takes some time)
45  if ( mLastPreview.isValid() && mLastPreview.msecsTo( QTime::currentTime() ) < mMinimalPreviewInterval )
46  return;
47 
48  // TODO: update only the area that got new data
49 
50  QgsDebugMsg( QStringLiteral( "new raster preview! %1" ).arg( mLastPreview.msecsTo( QTime::currentTime() ) ) );
51  QTime t;
52  t.start();
53  QgsRasterBlockFeedback feedback;
54  feedback.setPreviewOnly( true );
55  feedback.setRenderPartialOutput( true );
56  QgsRasterIterator iterator( mR->mPipe->last() );
57  QgsRasterDrawer drawer( &iterator );
58  drawer.draw( mR->renderContext()->painter(), mR->mRasterViewPort, &mR->renderContext()->mapToPixel(), &feedback );
59  QgsDebugMsg( QStringLiteral( "total raster preview time: %1 ms" ).arg( t.elapsed() ) );
60  mLastPreview = QTime::currentTime();
61 }
62 
66  : QgsMapLayerRenderer( layer->id(), &rendererContext )
67  , mFeedback( new QgsRasterLayerRendererFeedback( this ) )
68 {
69  QgsMapToPixel mapToPixel = rendererContext.mapToPixel();
70  if ( rendererContext.mapToPixel().mapRotation() )
71  {
72  // unset rotation for the sake of local computations.
73  // Rotation will be handled by QPainter later
74  // TODO: provide a method of QgsMapToPixel to fetch map center
75  // in geographical units
76  QgsPointXY center = mapToPixel.toMapCoordinates(
77  static_cast<int>( mapToPixel.mapWidth() / 2.0 ),
78  static_cast<int>( mapToPixel.mapHeight() / 2.0 )
79  );
80  mapToPixel.setMapRotation( 0, center.x(), center.y() );
81  }
82 
83  QgsRectangle myProjectedViewExtent;
84  QgsRectangle myProjectedLayerExtent;
85 
86  if ( rendererContext.coordinateTransform().isValid() )
87  {
88  QgsDebugMsgLevel( QStringLiteral( "coordinateTransform set -> project extents." ), 4 );
89  if ( rendererContext.extent().xMinimum() == std::numeric_limits<double>::lowest() &&
90  rendererContext.extent().yMinimum() == std::numeric_limits<double>::lowest() &&
91  rendererContext.extent().xMaximum() == std::numeric_limits<double>::max() &&
92  rendererContext.extent().yMaximum() == std::numeric_limits<double>::max() )
93  {
94  // We get in this situation if the view CRS is geographical and the
95  // extent goes beyond -180,-90,180,90. To avoid reprojection issues to the
96  // layer CRS, then this dummy extent is returned by QgsMapRendererJob::reprojectToLayerExtent()
97  // Don't try to reproject it now to view extent as this would return
98  // a null rectangle.
99  myProjectedViewExtent = rendererContext.extent();
100  }
101  else
102  {
103  try
104  {
105  myProjectedViewExtent = rendererContext.coordinateTransform().transformBoundingBox( rendererContext.extent() );
106  }
107  catch ( QgsCsException &cs )
108  {
109  QgsMessageLog::logMessage( QObject::tr( "Could not reproject view extent: %1" ).arg( cs.what() ), QObject::tr( "Raster" ) );
110  myProjectedViewExtent.setMinimal();
111  }
112  }
113 
114  try
115  {
116  myProjectedLayerExtent = rendererContext.coordinateTransform().transformBoundingBox( layer->extent() );
117  }
118  catch ( QgsCsException &cs )
119  {
120  QgsMessageLog::logMessage( QObject::tr( "Could not reproject layer extent: %1" ).arg( cs.what() ), QObject::tr( "Raster" ) );
121  myProjectedLayerExtent.setMinimal();
122  }
123  }
124  else
125  {
126  QgsDebugMsgLevel( QStringLiteral( "coordinateTransform not set" ), 4 );
127  myProjectedViewExtent = rendererContext.extent();
128  myProjectedLayerExtent = layer->extent();
129  }
130 
131  // clip raster extent to view extent
132  QgsRectangle myRasterExtent = layer->ignoreExtents() ? myProjectedViewExtent : myProjectedViewExtent.intersect( myProjectedLayerExtent );
133  if ( myRasterExtent.isEmpty() )
134  {
135  QgsDebugMsg( QStringLiteral( "draw request outside view extent." ) );
136  // nothing to do
137  return;
138  }
139 
140  QgsDebugMsgLevel( "theViewExtent is " + rendererContext.extent().toString(), 4 );
141  QgsDebugMsgLevel( "myProjectedViewExtent is " + myProjectedViewExtent.toString(), 4 );
142  QgsDebugMsgLevel( "myProjectedLayerExtent is " + myProjectedLayerExtent.toString(), 4 );
143  QgsDebugMsgLevel( "myRasterExtent is " + myRasterExtent.toString(), 4 );
144 
145  //
146  // The first thing we do is set up the QgsRasterViewPort. This struct stores all the settings
147  // relating to the size (in pixels and coordinate system units) of the raster part that is
148  // in view in the map window. It also stores the origin.
149  //
150  //this is not a class level member because every time the user pans or zooms
151  //the contents of the rasterViewPort will change
152  mRasterViewPort = new QgsRasterViewPort();
153 
154  mRasterViewPort->mDrawnExtent = myRasterExtent;
155  if ( rendererContext.coordinateTransform().isValid() )
156  {
157  mRasterViewPort->mSrcCRS = layer->crs();
158  mRasterViewPort->mDestCRS = rendererContext.coordinateTransform().destinationCrs();
159  mRasterViewPort->mTransformContext = rendererContext.transformContext();
160  }
161  else
162  {
163  mRasterViewPort->mSrcCRS = QgsCoordinateReferenceSystem(); // will be invalid
164  mRasterViewPort->mDestCRS = QgsCoordinateReferenceSystem(); // will be invalid
165  }
166 
167  // get dimensions of clipped raster image in device coordinate space (this is the size of the viewport)
168  mRasterViewPort->mTopLeftPoint = mapToPixel.transform( myRasterExtent.xMinimum(), myRasterExtent.yMaximum() );
169  mRasterViewPort->mBottomRightPoint = mapToPixel.transform( myRasterExtent.xMaximum(), myRasterExtent.yMinimum() );
170 
171  // align to output device grid, i.e. std::floor/ceil to integers
172  // TODO: this should only be done if paint device is raster - screen, image
173  // for other devices (pdf) it can have floating point origin
174  // we could use floating point for raster devices as well, but respecting the
175  // output device grid should make it more effective as the resampling is done in
176  // the provider anyway
177  mRasterViewPort->mTopLeftPoint.setX( std::floor( mRasterViewPort->mTopLeftPoint.x() ) );
178  mRasterViewPort->mTopLeftPoint.setY( std::floor( mRasterViewPort->mTopLeftPoint.y() ) );
179  mRasterViewPort->mBottomRightPoint.setX( std::ceil( mRasterViewPort->mBottomRightPoint.x() ) );
180  mRasterViewPort->mBottomRightPoint.setY( std::ceil( mRasterViewPort->mBottomRightPoint.y() ) );
181  // recalc myRasterExtent to aligned values
182  myRasterExtent.set(
183  mapToPixel.toMapCoordinates( mRasterViewPort->mTopLeftPoint.x(),
184  mRasterViewPort->mBottomRightPoint.y() ),
185  mapToPixel.toMapCoordinates( mRasterViewPort->mBottomRightPoint.x(),
186  mRasterViewPort->mTopLeftPoint.y() )
187  );
188 
189  //raster viewport top left / bottom right are already rounded to int
190  mRasterViewPort->mWidth = static_cast<int>( mRasterViewPort->mBottomRightPoint.x() - mRasterViewPort->mTopLeftPoint.x() );
191  mRasterViewPort->mHeight = static_cast<int>( mRasterViewPort->mBottomRightPoint.y() - mRasterViewPort->mTopLeftPoint.y() );
192 
193  //the drawable area can start to get very very large when you get down displaying 2x2 or smaller, this is because
194  //mapToPixel.mapUnitsPerPixel() is less then 1,
195  //so we will just get the pixel data and then render these special cases differently in paintImageToCanvas()
196 
197  QgsDebugMsgLevel( QStringLiteral( "mapUnitsPerPixel = %1" ).arg( mapToPixel.mapUnitsPerPixel() ), 3 );
198  QgsDebugMsgLevel( QStringLiteral( "mWidth = %1" ).arg( layer->width() ), 3 );
199  QgsDebugMsgLevel( QStringLiteral( "mHeight = %1" ).arg( layer->height() ), 3 );
200  QgsDebugMsgLevel( QStringLiteral( "myRasterExtent.xMinimum() = %1" ).arg( myRasterExtent.xMinimum() ), 3 );
201  QgsDebugMsgLevel( QStringLiteral( "myRasterExtent.xMaximum() = %1" ).arg( myRasterExtent.xMaximum() ), 3 );
202  QgsDebugMsgLevel( QStringLiteral( "myRasterExtent.yMinimum() = %1" ).arg( myRasterExtent.yMinimum() ), 3 );
203  QgsDebugMsgLevel( QStringLiteral( "myRasterExtent.yMaximum() = %1" ).arg( myRasterExtent.yMaximum() ), 3 );
204 
205  QgsDebugMsgLevel( QStringLiteral( "mTopLeftPoint.x() = %1" ).arg( mRasterViewPort->mTopLeftPoint.x() ), 3 );
206  QgsDebugMsgLevel( QStringLiteral( "mBottomRightPoint.x() = %1" ).arg( mRasterViewPort->mBottomRightPoint.x() ), 3 );
207  QgsDebugMsgLevel( QStringLiteral( "mTopLeftPoint.y() = %1" ).arg( mRasterViewPort->mTopLeftPoint.y() ), 3 );
208  QgsDebugMsgLevel( QStringLiteral( "mBottomRightPoint.y() = %1" ).arg( mRasterViewPort->mBottomRightPoint.y() ), 3 );
209 
210  QgsDebugMsgLevel( QStringLiteral( "mWidth = %1" ).arg( mRasterViewPort->mWidth ), 3 );
211  QgsDebugMsgLevel( QStringLiteral( "mHeight = %1" ).arg( mRasterViewPort->mHeight ), 3 );
212 
213  // /\/\/\ - added to handle zoomed-in rasters
214 
215  // TODO R->mLastViewPort = *mRasterViewPort;
216 
217  // TODO: is it necessary? Probably WMS only?
218  layer->dataProvider()->setDpi( 25.4 * rendererContext.scaleFactor() );
219 
220 
221  // copy the whole raster pipe!
222  mPipe = new QgsRasterPipe( *layer->pipe() );
223  QgsRasterRenderer *rasterRenderer = mPipe->renderer();
224  if ( rasterRenderer && !( rendererContext.flags() & QgsRenderContext::RenderPreviewJob ) )
225  layer->refreshRendererIfNeeded( rasterRenderer, rendererContext.extent() );
226 }
227 
229 {
230  delete mFeedback;
231 
232  delete mRasterViewPort;
233  delete mPipe;
234 }
235 
237 {
238  if ( !mRasterViewPort )
239  return true; // outside of layer extent - nothing to do
240 
241  //R->draw( mPainter, mRasterViewPort, &mMapToPixel );
242 
243  QTime time;
244  time.start();
245  //
246  //
247  // The goal here is to make as many decisions as possible early on (outside of the rendering loop)
248  // so that we can maximise performance of the rendering process. So now we check which drawing
249  // procedure to use :
250  //
251 
252  QgsRasterProjector *projector = mPipe->projector();
253 
254  // TODO add a method to interface to get provider and get provider
255  // params in QgsRasterProjector
256  if ( projector )
257  {
258  projector->setCrs( mRasterViewPort->mSrcCRS, mRasterViewPort->mDestCRS, mRasterViewPort->mTransformContext );
259  }
260 
261  // Drawer to pipe?
262  QgsRasterIterator iterator( mPipe->last() );
263  QgsRasterDrawer drawer( &iterator );
264  drawer.draw( renderContext()->painter(), mRasterViewPort, &renderContext()->mapToPixel(), mFeedback );
265 
266  const QStringList errors = mFeedback->errors();
267  for ( const QString &error : errors )
268  {
269  mErrors.append( error );
270  }
271 
272  QgsDebugMsgLevel( QStringLiteral( "total raster draw time (ms): %1" ).arg( time.elapsed(), 5 ), 4 );
273 
274  return true;
275 }
276 
278 {
279  return mFeedback;
280 }
281 
int width() const
Returns the width of the (unclipped) raster.
QgsFeedback * feedback() const override
Access to feedback object of the layer renderer (may be nullptr)
A rectangle specified with double values.
Definition: qgsrectangle.h:41
void setMapRotation(double degrees, double cx, double cy)
Set map rotation in degrees (clockwise)
void setMinimal()
Set a rectangle so that min corner is at max and max corner is at min.
Definition: qgsrectangle.h:151
Base class for processing modules.
Definition: qgsrasterpipe.h:46
Iterator for sequentially processing raster cells.
QgsCoordinateTransformContext transformContext() const
Returns the context&#39;s coordinate transform context, which stores various information regarding which ...
QgsRasterRenderer * renderer() const
#define QgsDebugMsg(str)
Definition: qgslogger.h:38
This class provides qgis with the ability to render raster datasets onto the mapcanvas.
double y
Definition: qgspointxy.h:48
QgsRasterPipe * pipe()
Returns the raster pipe.
A class to represent a 2D point.
Definition: qgspointxy.h:43
QgsRasterProjector * projector() const
QgsRasterInterface * last() const
QgsCoordinateReferenceSystem destinationCrs() const
Returns the destination coordinate reference system, which the transform will transform coordinates t...
void setRenderPartialOutput(bool enable)
Set whether our painter is drawing to a temporary image used just by this layer.
Flags flags() const
Returns combination of flags used for rendering.
int height() const
Returns the height of the (unclipped) raster.
Implementation of threaded rendering for raster layers.
bool render() override
Do the rendering (based on data stored in the class)
bool isValid() const
Returns true if the coordinate transform is valid, ie both the source and destination CRS have been s...
virtual QgsRectangle extent() const
Returns the extent of the layer.
double mapRotation() const
Returns current map rotation in degrees.
QgsCoordinateReferenceSystem mDestCRS
Target coordinate system.
QString what() const
Definition: qgsexception.h:48
Base class for feedback objects to be used for cancellation of something running in a worker thread...
Definition: qgsfeedback.h:44
Perform transforms between map coordinates and device coordinates.
Definition: qgsmaptopixel.h:37
The drawing pipe for raster layers.
QgsPointXY transform(const QgsPointXY &p) const
Transform the point from map (world) coordinates to device coordinates.
QgsRasterDataProvider * dataProvider() override
Returns the source data provider.
int mapWidth() const
Returns current map width in pixels The information is only known if setRotation was used...
QString id() const
Returns the layer&#39;s unique ID, which is used to access this layer from QgsProject.
int mapHeight() const
Returns current map height in pixels.
void setPreviewOnly(bool preview)
set flag whether the block request is for preview purposes only
#define QgsDebugMsgLevel(str, level)
Definition: qgslogger.h:39
bool isEmpty() const
Returns true if the rectangle is empty.
Definition: qgsrectangle.h:426
const QgsRectangle & extent() const
When rendering a map layer, calling this method returns the "clipping" extent for the layer (in the l...
QgsRasterLayerRenderer(QgsRasterLayer *layer, QgsRenderContext &rendererContext)
static void logMessage(const QString &message, const QString &tag=QString(), Qgis::MessageLevel level=Qgis::Warning, bool notifyUser=true)
Adds a message to the log instance (and creates it if necessary).
QgsRectangle intersect(const QgsRectangle &rect) const
Returns the intersection with the given rectangle.
Definition: qgsrectangle.h:312
QString toString(int precision=16) const
Returns a string representation of form xmin,ymin : xmax,ymax Coordinates will be truncated to the sp...
QgsCoordinateTransform coordinateTransform() const
Returns the current coordinate transform for the context.
double mapUnitsPerPixel() const
Returns current map units per pixel.
void setX(double x)
Sets the x value of the point.
Definition: qgspointxy.h:107
double x
Definition: qgspointxy.h:47
double yMinimum() const
Returns the y minimum value (bottom side of rectangle).
Definition: qgsrectangle.h:177
QgsCoordinateReferenceSystem mSrcCRS
Source coordinate system.
double xMaximum() const
Returns the x maximum value (right side of rectangle).
Definition: qgsrectangle.h:162
QgsRasterProjector implements approximate projection support for it calculates grid of points in sour...
Render is a &#39;canvas preview&#39; render, and shortcuts should be taken to ensure fast rendering...
Contains information about the context of a rendering operation.
const QgsMapToPixel & mapToPixel() const
Returns the context&#39;s map to pixel transform, which transforms between map coordinates and device coo...
QgsCoordinateTransformContext mTransformContext
Coordinate transform context.
Whether to make extra effort to update map image with partially rendered layers (better for interacti...
This class represents a coordinate reference system (CRS).
bool ignoreExtents() const
If the ignoreExtent flag is set, the layer will also render outside the bounding box reported by the ...
double xMinimum() const
Returns the x minimum value (left side of rectangle).
Definition: qgsrectangle.h:167
Base class for utility classes that encapsulate information necessary for rendering of map layers...
double yMaximum() const
Returns the y maximum value (top side of rectangle).
Definition: qgsrectangle.h:172
QStringList errors() const
Returns list of errors (problems) that happened during the rendering.
void refreshRendererIfNeeded(QgsRasterRenderer *rasterRenderer, const QgsRectangle &extent)
Refresh renderer with new extent, if needed.
Custom exception class for Coordinate Reference System related exceptions.
Definition: qgsexception.h:65
This class provides details of the viewable area that a raster will be rendered into.
bool testFlag(Flag flag) const
Check whether a particular flag is enabled.
QgsRenderContext * renderContext()
Returns the render context associated with the renderer.
double scaleFactor() const
Returns the scaling factor for the render to convert painter units to physical sizes.
Feedback object tailored for raster block reading.
QgsPointXY toMapCoordinates(int x, int y) const
Transform device coordinates to map (world) coordinates.
Raster renderer pipe that applies colors to a raster.
void setDpi(int dpi)
Sets the output device resolution.
void set(const QgsPointXY &p1, const QgsPointXY &p2)
Sets the rectangle from two QgsPoints.
Definition: qgsrectangle.h:105
QgsRectangle transformBoundingBox(const QgsRectangle &rectangle, TransformDirection direction=ForwardTransform, bool handle180Crossover=false) const SIP_THROW(QgsCsException)
Transforms a rectangle from the source CRS to the destination CRS.
QgsCoordinateReferenceSystem crs
Definition: qgsmaplayer.h:86
Q_DECL_DEPRECATED void setCrs(const QgsCoordinateReferenceSystem &srcCRS, const QgsCoordinateReferenceSystem &destCRS, int srcDatumTransform=-1, int destDatumTransform=-1)
Sets the source and destination CRS.