GEOS 3.14.0dev
GeometryDistanceClusterFinder.h
1/**********************************************************************
2 *
3 * GEOS - Geometry Engine Open Source
4 * http://geos.osgeo.org
5 *
6 * Copyright (C) 2020-2021 Daniel Baston
7 *
8 * This is free software; you can redistribute and/or modify it under
9 * the terms of the GNU Lesser General Public Licence as published
10 * by the Free Software Foundation.
11 * See the COPYING file for more information.
12 *
13 **********************************************************************/
14
15#pragma once
16
17#include <geos/operation/cluster/AbstractClusterFinder.h>
18#include <geos/geom/prep/PreparedGeometry.h>
19#include <geos/geom/prep/PreparedGeometryFactory.h>
20
21namespace geos {
22namespace operation {
23namespace cluster {
24
30public:
31 explicit GeometryDistanceClusterFinder(double distance) : m_distance(distance) {}
32
33protected:
34 bool shouldJoin(const geom::Geometry* a, const geom::Geometry *b) override {
35 if (m_prep == nullptr || &(m_prep->getGeometry()) != a) {
36 m_prep = geom::prep::PreparedGeometryFactory::prepare(a);
37 }
38
39 return m_prep->isWithinDistance(b, m_distance);
40 }
41
42 const geom::Envelope& queryEnvelope(const geom::Geometry* a) override {
43 m_envelope = *a->getEnvelopeInternal();
44 m_envelope.expandBy(m_distance);
45 return m_envelope;
46 }
47
48private:
49 std::unique_ptr<geom::prep::PreparedGeometry> m_prep;
50 double m_distance;
51 geom::Envelope m_envelope;
52};
53
54}
55}
56}
An Envelope defines a rectangulare region of the 2D coordinate plane.
Definition Envelope.h:59
void expandBy(double deltaX, double deltaY)
Expands this envelope by a given distance in all directions. Both positive and negative distances are...
Basic implementation of Geometry, constructed and destructed by GeometryFactory.
Definition Geometry.h:197
virtual const Envelope * getEnvelopeInternal() const =0
Returns the minimum and maximum x and y values in this Geometry, or a null Envelope if this Geometry ...
Definition AbstractClusterFinder.h:45
Definition GeometryDistanceClusterFinder.h:29
bool shouldJoin(const geom::Geometry *a, const geom::Geometry *b) override
Definition GeometryDistanceClusterFinder.h:34
const geom::Envelope & queryEnvelope(const geom::Geometry *a) override
Definition GeometryDistanceClusterFinder.h:42
Basic namespace for all GEOS functionalities.
Definition geos.h:39