1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
|
/**********************************************************************
* $Id: BufferOp.cpp 1969 2007-02-06 01:57:23Z strk $
*
* GEOS - Geometry Engine Open Source
* http://geos.refractions.net
*
* Copyright (C) 2005-2007 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: operation/buffer/BufferOp.java rev. 1.35 (JTS-1.7)
*
**********************************************************************/
#include <algorithm>
#include <geos/profiler.h>
#include <geos/operation/buffer/BufferOp.h>
#include <geos/operation/buffer/BufferBuilder.h>
#include <geos/geom/Geometry.h>
#include <geos/geom/GeometryFactory.h>
#include <geos/geom/PrecisionModel.h>
#include <geos/noding/ScaledNoder.h>
#include <geos/noding/snapround/MCIndexSnapRounder.h>
#include <geos/noding/snapround/MCIndexPointSnapper.h>
//FIXME: for temporary use, see other FIXME in file
#include <geos/algorithm/LineIntersector.h>
#include <geos/noding/MCIndexNoder.h>
#include <geos/noding/IntersectionAdder.h>
#include <geos/noding/snapround/SimpleSnapRounder.h>
#ifndef GEOS_DEBUG
#define GEOS_DEBUG 0
#endif
//#define PROFILE 1
using namespace geos::noding;
using namespace geos::geom;
namespace geos {
namespace operation { // geos.operation
namespace buffer { // geos.operation.buffer
#if PROFILE
static Profiler *profiler = Profiler::instance();
#endif
/*private*/
double
BufferOp::precisionScaleFactor(const Geometry *g,
double distance,
int maxPrecisionDigits)
{
const Envelope *env=g->getEnvelopeInternal();
double envSize=std::max(env->getHeight(), env->getWidth());
double expandByDistance=distance > 0.0 ? distance : 0.0;
double bufEnvSize=envSize + 2 * expandByDistance;
// the smallest power of 10 greater than the buffer envelope
int bufEnvLog10=(int) (log(bufEnvSize) / log(10.0) + 1.0);
int minUnitLog10=bufEnvLog10 - maxPrecisionDigits;
// scale factor is inverse of min Unit size, so flip sign of exponent
double scaleFactor=pow(10.0,-minUnitLog10);
return scaleFactor;
}
/*public static*/
Geometry*
BufferOp::bufferOp(const Geometry *g, double distance,
int quadrantSegments,
int nEndCapStyle)
{
BufferOp bufOp(g);
bufOp.setQuadrantSegments(quadrantSegments);
bufOp.setEndCapStyle(nEndCapStyle);
return bufOp.getResultGeometry(distance);
}
/*public*/
Geometry*
BufferOp::getResultGeometry(double nDistance)
{
distance=nDistance;
computeGeometry();
return resultGeometry;
}
/*public*/
Geometry*
BufferOp::getResultGeometry(double nDistance, int nQuadrantSegments)
{
distance=nDistance;
setQuadrantSegments(nQuadrantSegments);
computeGeometry();
return resultGeometry;
}
/*private*/
void
BufferOp::computeGeometry()
{
#if GEOS_DEBUG
std::cerr<<"BufferOp::computeGeometry: trying with original precision"<<std::endl;
#endif
//bufferReducedPrecision(); return; // FIXME: remove this code
bufferOriginalPrecision();
if (resultGeometry!=NULL) return;
std::cerr << "bufferOriginalPrecision failed (" << saveException.what() << "), trying with reduced precision"
<< std::endl;
const PrecisionModel& argPM = *(argGeom->getFactory()->getPrecisionModel());
if ( argPM.getType() == PrecisionModel::FIXED )
bufferFixedPrecision(argPM);
else
bufferReducedPrecision();
}
/*private*/
void
BufferOp::bufferReducedPrecision()
{
// try and compute with decreasing precision
for (int precDigits=MAX_PRECISION_DIGITS; precDigits >= 0; precDigits--)
{
#if GEOS_DEBUG
std::cerr<<"BufferOp::computeGeometry: trying with precDigits "<<precDigits<<std::endl;
#endif
try {
bufferReducedPrecision(precDigits);
} catch (const util::TopologyException& ex) {
saveException=ex;
// don't propagate the exception - it will be detected by fact that resultGeometry is null
}
if (resultGeometry!=NULL) {
// debug
//if ( saveException ) std::cerr<<saveException->toString()<<std::endl;
return;
}
}
// tried everything - have to bail
throw saveException;
}
/*private*/
void
BufferOp::bufferOriginalPrecision()
{
BufferBuilder bufBuilder;
bufBuilder.setQuadrantSegments(quadrantSegments);
bufBuilder.setEndCapStyle(endCapStyle);
//std::cerr<<"computing with original precision"<<std::endl;
try
{
resultGeometry=bufBuilder.buffer(argGeom, distance);
}
catch (const util::TopologyException& ex)
{
// don't propagate the exception - it will be detected by
// fact that resultGeometry is null
saveException=ex;
//std::cerr<<ex->toString()<<std::endl;
}
//std::cerr<<"done"<<std::endl;
}
void
BufferOp::bufferReducedPrecision(int precisionDigits)
{
double sizeBasedScaleFactor=precisionScaleFactor(argGeom, distance, precisionDigits);
std::cerr << "recomputing with precision scale factor = "
<< sizeBasedScaleFactor
<< std::endl;
assert(sizeBasedScaleFactor>0);
PrecisionModel fixedPM(sizeBasedScaleFactor);
bufferFixedPrecision(fixedPM);
}
/*private*/
void
BufferOp::bufferFixedPrecision(const PrecisionModel& fixedPM)
{
PrecisionModel pm(1.0); // fixed as well
//
// FIXME: both MCIndexSnapRounder and SimpleSnapRounder
// makes buffer_snapround.xml test fail.
//
#if 0
snapround::MCIndexSnapRounder inoder(pm); // fail
snapround::SimpleSnapRounder inoder(pm); // fail
#else
algorithm::LineIntersector li(&fixedPM);
IntersectionAdder ia(li);
MCIndexNoder inoder(&ia); // This works fine (but does not snapround)
#endif
ScaledNoder noder(inoder, fixedPM.getScale());
BufferBuilder bufBuilder;
bufBuilder.setWorkingPrecisionModel(&fixedPM);
bufBuilder.setNoder(&noder);
bufBuilder.setQuadrantSegments(quadrantSegments);
bufBuilder.setEndCapStyle(endCapStyle);
// this may throw an exception, if robustness errors are encountered
resultGeometry=bufBuilder.buffer(argGeom, distance);
}
} // namespace geos.operation.buffer
} // namespace geos.operation
} // namespace geos
/**********************************************************************
* $Log$
* Revision 1.52 2006/05/04 15:49:39 strk
* updated all Geometry::getDimension() methods to return Dimension::DimensionType (closes bug#93)
*
* Revision 1.51 2006/05/03 10:26:56 strk
* Fixed misuse of precision model in noder (bufferFixedPrecision)
*
* Revision 1.50 2006/03/23 09:17:19 strk
* precision.h header split, minor optimizations
*
* Revision 1.49 2006/03/15 18:56:30 strk
* Temporary hack to avoid snapround:: Noders (still using ScaledNoder wrapper)
* to allow for buffer_snapround.xml test to succeed
**********************************************************************/
|