QGIS API Documentation  3.16.0-Hannover (43b64b13f3)
qgsrastermatrix.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgsrastermatrix.cpp
3  -------------------
4  begin : 2010-10-23
5  copyright : (C) 20010 by Marco Hugentobler
6  email : marco dot hugentobler at sourcepole dot ch
7 ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 
18 #include "qgsrastermatrix.h"
19 #include <cstring>
20 #include <cmath>
21 #include <algorithm>
22 
23 QgsRasterMatrix::QgsRasterMatrix( int nCols, int nRows, double *data, double nodataValue )
24  : mColumns( nCols )
25  , mRows( nRows )
26  , mData( data )
27  , mNodataValue( nodataValue )
28 {
29 }
30 
32 {
33  operator=( m );
34 }
35 
37 {
38  delete[] mData;
39 }
40 
42 {
43  if ( this != &m )
44  {
45  delete[] mData;
46  mColumns = m.nColumns();
47  mRows = m.nRows();
48  int nEntries = mColumns * mRows;
49  mData = new double[nEntries];
50  memcpy( mData, m.mData, sizeof( double ) * nEntries );
51  mNodataValue = m.nodataValue();
52  }
53  return *this;
54 }
55 
56 void QgsRasterMatrix::setData( int cols, int rows, double *data, double nodataValue )
57 {
58  delete[] mData;
59  mColumns = cols;
60  mRows = rows;
61  mData = data;
62  mNodataValue = nodataValue;
63 }
64 
66 {
67  double *data = mData;
68  mData = nullptr;
69  mColumns = 0;
70  mRows = 0;
71  return data;
72 }
73 
75 {
76  return twoArgumentOperation( opPLUS, other );
77 }
78 
80 {
81  return twoArgumentOperation( opMINUS, other );
82 }
83 
85 {
86  return twoArgumentOperation( opMUL, other );
87 }
88 
90 {
91  return twoArgumentOperation( opDIV, other );
92 }
93 
95 {
96  return twoArgumentOperation( opPOW, other );
97 }
98 
100 {
101  return twoArgumentOperation( opEQ, other );
102 }
103 
105 {
106  return twoArgumentOperation( opNE, other );
107 }
108 
110 {
111  return twoArgumentOperation( opGT, other );
112 }
113 
115 {
116  return twoArgumentOperation( opLT, other );
117 }
118 
120 {
121  return twoArgumentOperation( opGE, other );
122 }
123 
125 {
126  return twoArgumentOperation( opLE, other );
127 }
128 
130 {
131  return twoArgumentOperation( opAND, other );
132 }
133 
135 {
136  return twoArgumentOperation( opOR, other );
137 }
138 
140 {
141  return twoArgumentOperation( opMAX, other );
142 }
143 
145 {
146  return twoArgumentOperation( opMIN, other );
147 }
148 
150 {
151  return oneArgumentOperation( opSQRT );
152 }
153 
155 {
156  return oneArgumentOperation( opSIN );
157 }
158 
160 {
161  return oneArgumentOperation( opASIN );
162 }
163 
165 {
166  return oneArgumentOperation( opCOS );
167 }
168 
170 {
171  return oneArgumentOperation( opACOS );
172 }
173 
175 {
176  return oneArgumentOperation( opTAN );
177 }
178 
180 {
181  return oneArgumentOperation( opATAN );
182 }
183 
185 {
186  return oneArgumentOperation( opSIGN );
187 }
188 
190 {
191  return oneArgumentOperation( opLOG );
192 }
193 
195 {
196  return oneArgumentOperation( opLOG10 );
197 }
198 
200 {
201  return oneArgumentOperation( opABS );
202 }
203 
204 bool QgsRasterMatrix::oneArgumentOperation( OneArgOperator op )
205 {
206  if ( !mData )
207  {
208  return false;
209  }
210 
211  int nEntries = mColumns * mRows;
212  double value;
213  for ( int i = 0; i < nEntries; ++i )
214  {
215  value = mData[i];
216  if ( value != mNodataValue )
217  {
218  switch ( op )
219  {
220  case opSQRT:
221  if ( value < 0 ) //no complex numbers
222  {
223  mData[i] = mNodataValue;
224  }
225  else
226  {
227  mData[i] = std::sqrt( value );
228  }
229  break;
230  case opSIN:
231  mData[i] = std::sin( value );
232  break;
233  case opCOS:
234  mData[i] = std::cos( value );
235  break;
236  case opTAN:
237  mData[i] = std::tan( value );
238  break;
239  case opASIN:
240  mData[i] = std::asin( value );
241  break;
242  case opACOS:
243  mData[i] = std::acos( value );
244  break;
245  case opATAN:
246  mData[i] = std::atan( value );
247  break;
248  case opSIGN:
249  mData[i] = -value;
250  break;
251  case opLOG:
252  if ( value <= 0 )
253  {
254  mData[i] = mNodataValue;
255  }
256  else
257  {
258  mData[i] = ::log( value );
259  }
260  break;
261  case opLOG10:
262  if ( value <= 0 )
263  {
264  mData[i] = mNodataValue;
265  }
266  else
267  {
268  mData[i] = ::log10( value );
269  }
270  break;
271  case opABS:
272  mData[i] = ::fabs( value );
273  break;
274  }
275  }
276  }
277  return true;
278 }
279 
280 double QgsRasterMatrix::calculateTwoArgumentOp( TwoArgOperator op, double arg1, double arg2 ) const
281 {
282  switch ( op )
283  {
284  case opPLUS:
285  return arg1 + arg2;
286  case opMINUS:
287  return arg1 - arg2;
288  case opMUL:
289  return arg1 * arg2;
290  case opDIV:
291  if ( arg2 == 0 )
292  {
293  return mNodataValue;
294  }
295  else
296  {
297  return arg1 / arg2;
298  }
299  case opPOW:
300  if ( !testPowerValidity( arg1, arg2 ) )
301  {
302  return mNodataValue;
303  }
304  else
305  {
306  return std::pow( arg1, arg2 );
307  }
308  case opEQ:
309  return ( arg1 == arg2 ? 1.0 : 0.0 );
310  case opNE:
311  return ( arg1 == arg2 ? 0.0 : 1.0 );
312  case opGT:
313  return ( arg1 > arg2 ? 1.0 : 0.0 );
314  case opLT:
315  return ( arg1 < arg2 ? 1.0 : 0.0 );
316  case opGE:
317  return ( arg1 >= arg2 ? 1.0 : 0.0 );
318  case opLE:
319  return ( arg1 <= arg2 ? 1.0 : 0.0 );
320  case opAND:
321  return ( arg1 && arg2 ? 1.0 : 0.0 );
322  case opOR:
323  return ( arg1 || arg2 ? 1.0 : 0.0 );
324  case opMAX:
325  return std::max( arg1, arg2 );
326  case opMIN:
327  return std::min( arg1, arg2 );
328  }
329  return mNodataValue;
330 }
331 
332 bool QgsRasterMatrix::twoArgumentOperation( TwoArgOperator op, const QgsRasterMatrix &other )
333 {
334  if ( isNumber() && other.isNumber() ) //operation on two 1x1 matrices
335  {
336  //operations with nodata values always generate nodata
337  if ( mData[0] == mNodataValue || other.number() == other.nodataValue() )
338  {
339  mData[0] = mNodataValue;
340  }
341  else
342  {
343  mData[0] = calculateTwoArgumentOp( op, mData[0], other.number() );
344  }
345  return true;
346  }
347 
348  //two matrices
349  if ( !isNumber() && !other.isNumber() )
350  {
351  double *matrix = other.mData;
352  int nEntries = mColumns * mRows;
353  double value1, value2;
354 
355  for ( int i = 0; i < nEntries; ++i )
356  {
357  value1 = mData[i];
358  value2 = matrix[i];
359  if ( value1 == mNodataValue || value2 == other.mNodataValue )
360  {
361  mData[i] = mNodataValue;
362  }
363  else
364  {
365  mData[i] = calculateTwoArgumentOp( op, value1, value2 );
366  }
367  }
368  return true;
369  }
370 
371  //this matrix is a single number and the other one a real matrix
372  if ( isNumber() )
373  {
374  double *matrix = other.mData;
375  int nEntries = other.nColumns() * other.nRows();
376  double value = mData[0];
377  delete[] mData;
378  mData = new double[nEntries];
379  mColumns = other.nColumns();
380  mRows = other.nRows();
381  mNodataValue = other.nodataValue();
382 
383  if ( value == mNodataValue )
384  {
385  for ( int i = 0; i < nEntries; ++i )
386  {
387  mData[i] = mNodataValue;
388  }
389  return true;
390  }
391 
392  for ( int i = 0; i < nEntries; ++i )
393  {
394  if ( matrix[i] == other.mNodataValue )
395  {
396  mData[i] = mNodataValue;
397  continue;
398  }
399 
400  mData[i] = calculateTwoArgumentOp( op, value, matrix[i] );
401  }
402  return true;
403  }
404  else //this matrix is a real matrix and the other a number
405  {
406  double value = other.number();
407  int nEntries = mColumns * mRows;
408 
409  if ( other.number() == other.mNodataValue )
410  {
411  for ( int i = 0; i < nEntries; ++i )
412  {
413  mData[i] = mNodataValue;
414  }
415  return true;
416  }
417 
418  for ( int i = 0; i < nEntries; ++i )
419  {
420  if ( mData[i] == mNodataValue )
421  {
422  continue;
423  }
424 
425  mData[i] = calculateTwoArgumentOp( op, mData[i], value );
426  }
427  return true;
428  }
429 }
430 
431 bool QgsRasterMatrix::testPowerValidity( double base, double power ) const
432 {
433  return !( ( base == 0 && power < 0 ) || ( base < 0 && ( power - std::floor( power ) ) > 0 ) );
434 }
QgsRasterMatrix::~QgsRasterMatrix
~QgsRasterMatrix()
Definition: qgsrastermatrix.cpp:36
QgsRasterMatrix::opMINUS
@ opMINUS
Definition: qgsrastermatrix.h:35
QgsRasterMatrix::squareRoot
bool squareRoot()
Definition: qgsrastermatrix.cpp:149
QgsRasterMatrix::isNumber
bool isNumber() const
Returns true if matrix is 1x1 (=scalar number)
Definition: qgsrastermatrix.h:75
QgsRasterMatrix::min
bool min(const QgsRasterMatrix &other)
Calculates the minimum value between two matrices.
Definition: qgsrastermatrix.cpp:144
QgsRasterMatrix::number
double number() const
Definition: qgsrastermatrix.h:76
QgsRasterMatrix::add
bool add(const QgsRasterMatrix &other)
Adds another matrix to this one.
Definition: qgsrastermatrix.cpp:74
QgsRasterMatrix::multiply
bool multiply(const QgsRasterMatrix &other)
Definition: qgsrastermatrix.cpp:84
QgsRasterMatrix::cosinus
bool cosinus()
Definition: qgsrastermatrix.cpp:164
QgsRasterMatrix::equal
bool equal(const QgsRasterMatrix &other)
Definition: qgsrastermatrix.cpp:99
QgsRasterMatrix::opLE
@ opLE
Definition: qgsrastermatrix.h:44
QgsRasterMatrix::opLOG
@ opLOG
Definition: qgsrastermatrix.h:61
QgsRasterMatrix::greaterThan
bool greaterThan(const QgsRasterMatrix &other)
Definition: qgsrastermatrix.cpp:109
QgsRasterMatrix::opNE
@ opNE
Definition: qgsrastermatrix.h:40
QgsRasterMatrix::data
double * data()
Returns data array (but not ownership)
Definition: qgsrastermatrix.h:82
QgsRasterMatrix::nRows
int nRows() const
Definition: qgsrastermatrix.h:93
QgsRasterMatrix::log
bool log()
Definition: qgsrastermatrix.cpp:189
QgsRasterMatrix::divide
bool divide(const QgsRasterMatrix &other)
Definition: qgsrastermatrix.cpp:89
QgsRasterMatrix::lesserThan
bool lesserThan(const QgsRasterMatrix &other)
Definition: qgsrastermatrix.cpp:114
QgsRasterMatrix::opAND
@ opAND
Definition: qgsrastermatrix.h:45
QgsRasterMatrix::notEqual
bool notEqual(const QgsRasterMatrix &other)
Definition: qgsrastermatrix.cpp:104
QgsRasterMatrix::setData
void setData(int cols, int rows, double *data, double nodataValue)
Definition: qgsrastermatrix.cpp:56
QgsRasterMatrix::opASIN
@ opASIN
Definition: qgsrastermatrix.h:57
QgsRasterMatrix::opMAX
@ opMAX
Definition: qgsrastermatrix.h:48
QgsRasterMatrix::tangens
bool tangens()
Definition: qgsrastermatrix.cpp:174
QgsRasterMatrix::opSIN
@ opSIN
Definition: qgsrastermatrix.h:54
qgsrastermatrix.h
QgsRasterMatrix::opMIN
@ opMIN
Definition: qgsrastermatrix.h:47
QgsRasterMatrix::opCOS
@ opCOS
Definition: qgsrastermatrix.h:55
QgsRasterMatrix::opSIGN
@ opSIGN
Definition: qgsrastermatrix.h:60
QgsRasterMatrix::max
bool max(const QgsRasterMatrix &other)
Calculates the maximum value between two matrices.
Definition: qgsrastermatrix.cpp:139
QgsRasterMatrix::nodataValue
double nodataValue() const
Definition: qgsrastermatrix.h:95
QgsRasterMatrix::power
bool power(const QgsRasterMatrix &other)
Definition: qgsrastermatrix.cpp:94
QgsRasterMatrix::opSQRT
@ opSQRT
Definition: qgsrastermatrix.h:53
QgsRasterMatrix::lesserEqual
bool lesserEqual(const QgsRasterMatrix &other)
Definition: qgsrastermatrix.cpp:124
QgsRasterMatrix::QgsRasterMatrix
QgsRasterMatrix()=default
Takes ownership of data array.
QgsRasterMatrix::takeData
double * takeData()
Returns data and ownership.
Definition: qgsrastermatrix.cpp:65
QgsRasterMatrix::subtract
bool subtract(const QgsRasterMatrix &other)
Subtracts another matrix from this one.
Definition: qgsrastermatrix.cpp:79
QgsRasterMatrix::absoluteValue
bool absoluteValue()
Calculates the absolute value.
Definition: qgsrastermatrix.cpp:199
QgsRasterMatrix
Definition: qgsrastermatrix.h:29
QgsRasterMatrix::operator=
QgsRasterMatrix & operator=(const QgsRasterMatrix &m)
Definition: qgsrastermatrix.cpp:41
QgsRasterMatrix::opGE
@ opGE
Definition: qgsrastermatrix.h:43
QgsRasterMatrix::asinus
bool asinus()
Definition: qgsrastermatrix.cpp:159
QgsRasterMatrix::log10
bool log10()
Definition: qgsrastermatrix.cpp:194
QgsRasterMatrix::opDIV
@ opDIV
Definition: qgsrastermatrix.h:37
QgsRasterMatrix::opPLUS
@ opPLUS
Definition: qgsrastermatrix.h:34
QgsRasterMatrix::opLT
@ opLT
Definition: qgsrastermatrix.h:42
QgsRasterMatrix::opACOS
@ opACOS
Definition: qgsrastermatrix.h:58
QgsRasterMatrix::atangens
bool atangens()
Definition: qgsrastermatrix.cpp:179
QgsRasterMatrix::logicalAnd
bool logicalAnd(const QgsRasterMatrix &other)
Definition: qgsrastermatrix.cpp:129
QgsRasterMatrix::opABS
@ opABS
Definition: qgsrastermatrix.h:63
QgsRasterMatrix::opGT
@ opGT
Definition: qgsrastermatrix.h:41
QgsRasterMatrix::opEQ
@ opEQ
Definition: qgsrastermatrix.h:39
QgsRasterMatrix::logicalOr
bool logicalOr(const QgsRasterMatrix &other)
Definition: qgsrastermatrix.cpp:134
QgsRasterMatrix::changeSign
bool changeSign()
Definition: qgsrastermatrix.cpp:184
QgsRasterMatrix::opTAN
@ opTAN
Definition: qgsrastermatrix.h:56
QgsRasterMatrix::greaterEqual
bool greaterEqual(const QgsRasterMatrix &other)
Definition: qgsrastermatrix.cpp:119
QgsRasterMatrix::sinus
bool sinus()
Definition: qgsrastermatrix.cpp:154
QgsRasterMatrix::opLOG10
@ opLOG10
Definition: qgsrastermatrix.h:62
QgsRasterMatrix::opATAN
@ opATAN
Definition: qgsrastermatrix.h:59
QgsRasterMatrix::opPOW
@ opPOW
Definition: qgsrastermatrix.h:38
QgsRasterMatrix::acosinus
bool acosinus()
Definition: qgsrastermatrix.cpp:169
QgsRasterMatrix::nColumns
int nColumns() const
Definition: qgsrastermatrix.h:92
QgsRasterMatrix::opOR
@ opOR
Definition: qgsrastermatrix.h:46
QgsRasterMatrix::opMUL
@ opMUL
Definition: qgsrastermatrix.h:36