65 lines
1.4 KiB
C++
65 lines
1.4 KiB
C++
/**********************************************************************
|
|
*
|
|
* GEOS - Geometry Engine Open Source
|
|
* http://geos.osgeo.org
|
|
*
|
|
* Copyright (C) 2020 Paul Ramsey <pramsey@cleverelephant.ca>
|
|
*
|
|
* This is free software; you can redistribute and/or modify it under
|
|
* the terms of the GNU Lesser General Public Licence as published
|
|
* by the Free Software Foundation.
|
|
* See the COPYING file for more information.
|
|
*
|
|
**********************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include <geos/export.h>
|
|
#include <geos/algorithm/locate/PointOnGeometryLocator.h>
|
|
#include <geos/geom/Location.h>
|
|
|
|
|
|
|
|
// Forward declarations
|
|
namespace geos {
|
|
namespace geom {
|
|
class Geometry;
|
|
class Coordinate;
|
|
}
|
|
}
|
|
|
|
namespace geos { // geos.
|
|
namespace operation { // geos.operation
|
|
namespace overlayng { // geos.operation.overlayng
|
|
|
|
/**
|
|
* Locates points on a linear geometry,
|
|
* using a spatial index to provide good performance.
|
|
*
|
|
* @author mdavis
|
|
*/
|
|
class IndexedPointOnLineLocator : public algorithm::locate::PointOnGeometryLocator {
|
|
|
|
private:
|
|
|
|
// Members
|
|
const geom::Geometry& inputGeom;
|
|
|
|
|
|
|
|
public:
|
|
|
|
IndexedPointOnLineLocator(const geom::Geometry& geomLinear)
|
|
: inputGeom(geomLinear)
|
|
{}
|
|
|
|
geom::Location locate(const geom::CoordinateXY* p) override;
|
|
|
|
};
|
|
|
|
|
|
} // namespace geos.operation.overlayng
|
|
} // namespace geos.operation
|
|
} // namespace geos
|
|
|