QGIS API Documentation
3.99.0-Master (2fe06baccd8)
Loading...
Searching...
No Matches
src
core
qgsspatialindexutils.cpp
Go to the documentation of this file.
1
/***************************************************************************
2
qgsspatialindexutils.cpp
3
------------------------
4
Date : December 2019
5
Copyright : (C) 2019 by Nyall Dawson
6
Email : nyall dot dawson 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 "
qgsspatialindexutils.h
"
17
18
#include <spatialindex/SpatialIndex.h>
19
20
#include "
qgsrectangle.h
"
21
22
SpatialIndex::Region
QgsSpatialIndexUtils::rectangleToRegion
(
const
QgsRectangle
&rectangle )
23
{
24
double
pt1[2] = { rectangle.
xMinimum
(), rectangle.
yMinimum
() };
25
double
pt2[2] = { rectangle.
xMaximum
(), rectangle.
yMaximum
() };
26
return
SpatialIndex::Region( pt1, pt2, 2 );
27
}
QgsRectangle
A rectangle specified with double values.
Definition
qgsrectangle.h:44
QgsRectangle::xMinimum
double xMinimum
Definition
qgsrectangle.h:47
QgsRectangle::yMinimum
double yMinimum
Definition
qgsrectangle.h:49
QgsRectangle::xMaximum
double xMaximum
Definition
qgsrectangle.h:48
QgsRectangle::yMaximum
double yMaximum
Definition
qgsrectangle.h:50
QgsSpatialIndexUtils::rectangleToRegion
static SpatialIndex::Region rectangleToRegion(const QgsRectangle &rectangle)
Converts a QGIS rectangle to a SpatialIndex region.
Definition
qgsspatialindexutils.cpp:22
qgsrectangle.h
qgsspatialindexutils.h
Generated on
for QGIS API Documentation by
1.15.0