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 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438
|
/**********************************************************************
* $Id: mitab_geometry.cpp,v 1.5 2004-06-30 20:29:04 dmorissette Exp $
*
* Name: mitab_geometry.cpp
* Project: MapInfo TAB Read/Write library
* Language: C++
* Purpose: Geometry manipulation functions.
* Author: Daniel Morissette, dmorissette@dmsolutions.ca
* Based on functions from mapprimitive.c/mapsearch.c in the source
* of UMN MapServer by Stephen Lime (http://mapserver.gis.umn.edu/)
**********************************************************************
* Copyright (c) 1999-2001, Daniel Morissette
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
**********************************************************************
*
* $Log: mitab_geometry.cpp,v $
* Revision 1.5 2004-06-30 20:29:04 dmorissette
* Fixed refs to old address danmo@videotron.ca
*
* Revision 1.4 2001/12/18 23:42:28 daniel
* Added a test in OGRPolygonLabelPoint() to prevent returning a point
* outside of the polygon MBR (bug 673).
*
* Revision 1.3 2001/01/22 16:03:58 warmerda
* expanded tabs
*
* Revision 1.2 2000/09/28 16:39:44 warmerda
* avoid warnings for unused, and unitialized variables
*
* Revision 1.1 2000/09/19 17:19:40 daniel
* Initial Revision
*
**********************************************************************/
#include "ogr_geometry.h"
#define OGR_NUM_RINGS(poly) (poly->getNumInteriorRings()+1)
#define OGR_GET_RING(poly, i) (i==0?poly->getExteriorRing():poly->getInteriorRing(i-1))
/**********************************************************************
* OGRPointInRing()
*
* Returns TRUE is point is inside ring, FALSE otherwise
*
* Adapted version of msPointInPolygon() from MapServer's mapsearch.c
**********************************************************************/
GBool OGRPointInRing(OGRPoint *poPoint, OGRLineString *poRing)
{
int i, j, numpoints;
GBool status = FALSE;
double x, y;
numpoints = poRing->getNumPoints();
x = poPoint->getX();
y = poPoint->getY();
for (i = 0, j = numpoints-1; i < numpoints; j = i++)
{
if ((((poRing->getY(i)<=y) && (y<poRing->getY(j))) ||
((poRing->getY(j)<=y) && (y<poRing->getY(i)))) &&
(x < (poRing->getX(j) - poRing->getX(i)) * (y - poRing->getY(i)) /
(poRing->getY(j) - poRing->getY(i)) + poRing->getX(i)))
status = !status;
}
return status;
}
/**********************************************************************
* OGRIntersectPointPolygon()
*
* Instead of using ring orientation we count the number of parts the
* point falls in. If odd the point is in the polygon, if 0 or even
* then the point is in a hole or completely outside.
*
* Returns TRUE is point is inside polygon, FALSE otherwise
*
* Adapted version of msIntersectPointPolygon() from MapServer's mapsearch.c
**********************************************************************/
GBool OGRIntersectPointPolygon(OGRPoint *poPoint, OGRPolygon *poPoly)
{
int i;
GBool status = FALSE;
for(i=0; i<OGR_NUM_RINGS(poPoly); i++)
{
if (OGRPointInRing(poPoint, OGR_GET_RING(poPoly, i)))
{
/* ok, the point is in a line */
status = !status;
}
}
return status;
}
/**********************************************************************
* OGRPolygonLabelPoint()
*
* Generate a label point on the surface of a polygon.
*
* The function is based on a scanline conversion routine used for polygon
* fills. Instead of processing each line the as with drawing, the
* polygon is sampled. The center of the longest sample is chosen for the
* label point. The label point is guaranteed to be in the polygon even if
* it has holes assuming the polygon is properly formed.
*
* Returns OGRERR_NONE if it succeeds or OGRERR_FAILURE otherwise.
*
* Adapted version of msPolygonLabelPoint() from MapServer's mapprimitive.c
**********************************************************************/
typedef enum {CLIP_LEFT, CLIP_MIDDLE, CLIP_RIGHT} CLIP_STATE;
#define CLIP_CHECK(min, a, max) ((a) < (min) ? CLIP_LEFT : ((a) > (max) ? CLIP_RIGHT : CLIP_MIDDLE));
#define ROUND(a) ( (a) + 0.5 )
#define SWAP( a, b, t) ( (t) = (a), (a) = (b), (b) = (t) )
#define EDGE_CHECK( x0, x, x1) ((x) < MIN( (x0), (x1)) ? CLIP_LEFT : ((x) > MAX( (x0), (x1)) ? CLIP_RIGHT : CLIP_MIDDLE ))
#define NUM_SCANLINES 5
int OGRPolygonLabelPoint(OGRPolygon *poPoly, OGRPoint *poLabelPoint)
{
double slope;
OGRRawPoint point1, point2;
int i, j, k, nfound;
double x, y, *xintersect, temp;
double hi_y, lo_y;
int wrong_order, n;
double len, max_len=0;
double skip;
OGREnvelope oEnv;
if (poPoly == NULL)
return OGRERR_FAILURE;
poPoly->getEnvelope(&oEnv);
poLabelPoint->setX((oEnv.MaxX + oEnv.MinX)/2.0);
poLabelPoint->setY((oEnv.MaxY + oEnv.MinY)/2.0);
//if(get_centroid(p, lp, &miny, &maxy) == -1) return(-1);
if(OGRIntersectPointPolygon(poLabelPoint, poPoly) == TRUE) /* cool, done */
return OGRERR_NONE;
/* do it the hard way - scanline */
skip = (oEnv.MaxY - oEnv.MinY)/NUM_SCANLINES;
n=0;
for(j=0; j<OGR_NUM_RINGS(poPoly); j++)
{
/* count total number of points */
n += OGR_GET_RING(poPoly, j)->getNumPoints();
}
xintersect = (double *)calloc(n, sizeof(double));
if (xintersect == NULL)
return OGRERR_FAILURE;
for(k=1; k<=NUM_SCANLINES; k++)
{
/* sample the shape in the y direction */
y = oEnv.MaxY - k*skip;
/* need to find a y that won't intersect any vertices exactly */
hi_y = y - 1; /* first initializing lo_y, hi_y to be any 2 pnts on either side of lp->y */
lo_y = y + 1;
for(j=0; j<OGR_NUM_RINGS(poPoly); j++)
{
OGRLinearRing *poRing = OGR_GET_RING(poPoly,j);
if((lo_y < y) && (hi_y >= y))
break; /* already initialized */
for(i=0; i < poRing->getNumPoints(); i++)
{
if((lo_y < y) && (hi_y >= y))
break; /* already initialized */
if(poRing->getY(i) < y)
lo_y = poRing->getY(i);
if(poRing->getY(i) >= y)
hi_y = poRing->getY(i);
}
}
n=0;
for(j=0; j<OGR_NUM_RINGS(poPoly); j++)
{
OGRLinearRing *poRing = OGR_GET_RING(poPoly,j);
for(i=0; i < poRing->getNumPoints(); i++)
{
if((poRing->getY(i) < y) &&
((y - poRing->getY(i)) < (y - lo_y)))
lo_y = poRing->getY(i);
if((poRing->getY(i) >= y) &&
((poRing->getY(i) - y) < (hi_y - y)))
hi_y = poRing->getY(i);
}
}
if(lo_y == hi_y)
return OGRERR_FAILURE;
else
y = (hi_y + lo_y)/2.0;
nfound = 0;
for(j=0; j<OGR_NUM_RINGS(poPoly); j++) /* for each line */
{
OGRLinearRing *poRing = OGR_GET_RING(poPoly,j);
point1.x = poRing->getX(poRing->getNumPoints()-1);
point1.y = poRing->getY(poRing->getNumPoints()-1);
for(i=0; i < poRing->getNumPoints(); i++)
{
point2.x = poRing->getX(i);
point2.y = poRing->getY(i);
if(EDGE_CHECK(point1.y, y, point2.y) == CLIP_MIDDLE)
{
if(point1.y == point2.y)
continue; /* ignore horizontal edges */
else
slope = (point2.x - point1.x) / (point2.y - point1.y);
x = point1.x + (y - point1.y)*slope;
xintersect[nfound++] = x;
} /* End of checking this edge */
point1 = point2; /* Go on to next edge */
}
} /* Finished the scanline */
/* First, sort the intersections */
do
{
wrong_order = 0;
for(i=0; i < nfound-1; i++)
{
if(xintersect[i] > xintersect[i+1])
{
wrong_order = 1;
SWAP(xintersect[i], xintersect[i+1], temp);
}
}
} while(wrong_order);
/* Great, now find longest span */
point1.y = point2.y = y;
for(i=0; i < nfound; i += 2)
{
point1.x = xintersect[i];
point2.x = xintersect[i+1];
/* len = length(point1, point2); */
len = ABS((point2.x - point1.x));
if(len > max_len)
{
max_len = len;
poLabelPoint->setX( (point1.x + point2.x)/2 );
poLabelPoint->setY( y );
}
}
}
free(xintersect);
/* __TODO__ Bug 673
* There seem to be some polygons for which the label is returned
* completely outside of the polygon's MBR and this messes the
* file bounds, etc.
* Until we find the source of the problem, we'll at least validate
* the label point to make sure that it overlaps the polygon MBR.
*/
if( poLabelPoint->getX() < oEnv.MinX
|| poLabelPoint->getY() < oEnv.MinY
|| poLabelPoint->getX() > oEnv.MaxX
|| poLabelPoint->getY() > oEnv.MaxY )
{
// Reset label coordinates to center of MBR, just in case
poLabelPoint->setX((oEnv.MaxX + oEnv.MinX)/2.0);
poLabelPoint->setY((oEnv.MaxY + oEnv.MinY)/2.0);
// And return an error
return OGRERR_FAILURE;
}
if(max_len > 0)
return OGRERR_NONE;
else
return OGRERR_FAILURE;
}
/**********************************************************************
* OGRGetCentroid()
*
* Calculate polygon gravity center.
*
* Returns OGRERR_NONE if it succeeds or OGRERR_FAILURE otherwise.
*
* Adapted version of get_centroid() from MapServer's mapprimitive.c
**********************************************************************/
int OGRGetCentroid(OGRPolygon *poPoly, OGRPoint *poCentroid)
{
int i,j;
double cent_weight_x=0.0, cent_weight_y=0.0;
double len, total_len=0;
for(i=0; i<OGR_NUM_RINGS(poPoly); i++)
{
double x1, y1, x2, y2;
OGRLinearRing *poRing = OGR_GET_RING(poPoly, i);
x2 = poRing->getX(0);
y2 = poRing->getY(0);
for(j=1; j<poRing->getNumPoints(); j++)
{
x1 = x2;
y1 = y2;
x2 = poRing->getX(j);
y2 = poRing->getY(j);
len = sqrt( pow((x2-x1),2) + pow((y2-y1),2) );
cent_weight_x += len * ((x1 + x2)/2.0);
cent_weight_y += len * ((y1 + y2)/2.0);
total_len += len;
}
}
if(total_len == 0)
return(OGRERR_FAILURE);
poCentroid->setX( cent_weight_x / total_len );
poCentroid->setY( cent_weight_y / total_len );
return OGRERR_NONE;
}
/**********************************************************************
* OGRPolylineCenterPoint()
*
* Return the center point of a polyline.
*
* In MapInfo, for a simple or multiple polyline (pline), the center point
* in the object definition is supposed to be either the center point of
* the pline or the first section of a multiple pline (if an odd number of
* points in the pline or first section), or the midway point between the
* two central points (if an even number of points involved).
*
* Returns OGRERR_NONE if it succeeds or OGRERR_FAILURE otherwise.
**********************************************************************/
int OGRPolylineCenterPoint(OGRLineString *poLine, OGRPoint *poLabelPoint)
{
if (poLine == NULL || poLine->getNumPoints() < 2)
return OGRERR_FAILURE;
if (poLine->getNumPoints() % 2 == 0)
{
// Return the midway between the 2 center points
int i = poLine->getNumPoints()/2;
poLabelPoint->setX( (poLine->getX(i-1) + poLine->getX(i))/2.0 );
poLabelPoint->setY( (poLine->getY(i-1) + poLine->getY(i))/2.0 );
}
else
{
// Return the center point
poLine->getPoint(poLine->getNumPoints()/2, poLabelPoint);
}
return OGRERR_NONE;
}
/**********************************************************************
* OGRPolylineLabelPoint()
*
* Generate a label point on a polyline: The center of the longest segment.
*
* Returns OGRERR_NONE if it succeeds or OGRERR_FAILURE otherwise.
**********************************************************************/
int OGRPolylineLabelPoint(OGRLineString *poLine, OGRPoint *poLabelPoint)
{
double segment_length, max_segment_length = 0.0;
double x1, y1, x2, y2;
if (poLine == NULL || poLine->getNumPoints() < 2)
return OGRERR_FAILURE;
max_segment_length = -1.0;
x2 = poLine->getX(0);
y2 = poLine->getY(0);
for(int i=1; i<poLine->getNumPoints(); i++)
{
x1 = x2;
y1 = y2;
x2 = poLine->getX(i);
y2 = poLine->getY(i);
segment_length = pow((x2-x1),2) + pow((y2-y1),2);
if (segment_length > max_segment_length)
{
max_segment_length = segment_length;
poLabelPoint->setX( (x1 + x2)/2.0 );
poLabelPoint->setY( (y1 + y2)/2.0 );
}
}
return OGRERR_NONE;
}
|