107 lines
2.9 KiB
C++
107 lines
2.9 KiB
C++
/**********************************************************************
|
|
*
|
|
* GEOS - Geometry Engine Open Source
|
|
* http://geos.osgeo.org
|
|
*
|
|
* Copyright (C) 2005-2006 Refractions Research Inc.
|
|
* Copyright (C) 2001-2002 Vivid Solutions Inc.
|
|
*
|
|
* 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.
|
|
*
|
|
**********************************************************************
|
|
*
|
|
* Last port: linearref/LinearGeometryBuilder.java rev. 1.1
|
|
*
|
|
**********************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include <geos/geom/Coordinate.h>
|
|
#include <geos/geom/CoordinateList.h>
|
|
#include <geos/geom/Geometry.h>
|
|
#include <geos/geom/GeometryFactory.h>
|
|
#include <geos/linearref/LinearLocation.h>
|
|
|
|
#include <vector>
|
|
|
|
namespace geos {
|
|
namespace linearref { // geos::linearref
|
|
|
|
/** \brief
|
|
* Builds a linear geometry ([LineString](@ref geom::LineString) or
|
|
* [MultiLineString](@ref geom::MultiLineString)) incrementally (point-by-point).
|
|
*
|
|
* @version 1.7
|
|
*/
|
|
class LinearGeometryBuilder {
|
|
private:
|
|
const geom::GeometryFactory* geomFact;
|
|
|
|
typedef std::vector<std::unique_ptr<geom::Geometry>> GeomPtrVect;
|
|
|
|
// Geometry elements owned by this class
|
|
GeomPtrVect lines;
|
|
|
|
bool ignoreInvalidLines;
|
|
bool fixInvalidLines;
|
|
std::unique_ptr<geom::CoordinateSequence> coordList;
|
|
|
|
geom::Coordinate lastPt;
|
|
|
|
public:
|
|
LinearGeometryBuilder(const geom::GeometryFactory* geomFact);
|
|
|
|
~LinearGeometryBuilder();
|
|
|
|
/** \brief
|
|
* Allows invalid lines to be ignored rather than causing Exceptions.
|
|
*
|
|
* An invalid line is one which has only one unique point.
|
|
*
|
|
* @param ignoreInvalidLines `true` if short lines are
|
|
* to be ignored
|
|
*/
|
|
void setIgnoreInvalidLines(bool ignoreInvalidLines);
|
|
|
|
/** \brief
|
|
* Allows invalid lines to be ignored rather than causing Exceptions.
|
|
*
|
|
* An invalid line is one which has only one unique point.
|
|
*
|
|
* @param fixInvalidLines `true` if short lines are
|
|
* to be ignored
|
|
*/
|
|
void setFixInvalidLines(bool fixInvalidLines);
|
|
|
|
/** \brief
|
|
* Adds a point to the current line.
|
|
*
|
|
* @param pt the Coordinate to add
|
|
*/
|
|
void add(const geom::Coordinate& pt);
|
|
|
|
/** \brief
|
|
* Adds a point to the current line.
|
|
*
|
|
* @param pt the Coordinate to add
|
|
* @param allowRepeatedPoints if set to `false`, repeated coordinates are
|
|
* collapsed
|
|
*/
|
|
void add(const geom::Coordinate& pt, bool allowRepeatedPoints);
|
|
|
|
// NOTE strk: why return by value ?
|
|
geom::Coordinate getLastCoordinate() const;
|
|
|
|
/// Terminate the current LineString.
|
|
void endLine();
|
|
|
|
std::unique_ptr<geom::Geometry> getGeometry();
|
|
};
|
|
|
|
} // namespace geos.linearref
|
|
} // namespace geos
|
|
|