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 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830
|
/*!
\file line.c
\brief Vector library - geometry manipulation
(C) 2001-2008 by the GRASS Development Team
This program is free software under the
GNU General Public License (>=v2).
Read the file COPYING that comes with GRASS
for details.
\author Original author CERL, probably Dave Gerdes or Mike Higgins.
Update to GRASS 5.7 Radim Blazek and David D. Gray.
\date 2001-2008
*/
#include <stdlib.h>
#include <math.h>
#include <grass/gis.h>
#include <grass/Vect.h>
#include <grass/glocale.h>
/*!
\brief Creates and initializes a struct line_pnts.
Use Vect_new_line_struct() instead.
This structure is used for reading and writing vector lines and
polygons. The library routines handle all memory allocation. If
3 lines in memory are needed at the same time, then simply 3
line_pnts structures have to be used.
\param void
\return pointer to line_pnts
\return NULL on error
*/
struct line_pnts *Vect__new_line_struct(void);
/*!
\brief Creates and initializes a struct line_pnts.
This structure is used for reading and writing vector lines and
polygons. The library routines handle all memory allocation. If 3
lines in memory are needed at the same time, then simply 3
line_pnts structures have to be used.
To free allocated memory call Vect_destroy_line_struct().
\param void
\return pointer to line_pnts
\return NULL on error
*/
struct line_pnts *Vect_new_line_struct()
{
struct line_pnts *p;
if (NULL == (p = Vect__new_line_struct()))
G_fatal_error("Vect_new_line_struct(): %s", _("Out of memory"));
return p;
}
struct line_pnts *Vect__new_line_struct()
{
struct line_pnts *p;
p = (struct line_pnts *)malloc(sizeof(struct line_pnts));
/* alloc_points MUST be initialized to zero */
if (p)
p->alloc_points = p->n_points = 0;
if (p)
p->x = p->y = p->z = NULL;
return p;
}
/*!
\brief Frees all memory associated with a struct line_pnts, including the struct itself
\param p pointer to line_pnts structure
\return 0
*/
int Vect_destroy_line_struct(struct line_pnts *p)
{
if (p) { /* probably a moot test */
if (p->alloc_points) {
G_free((char *)p->x);
G_free((char *)p->y);
G_free((char *)p->z);
}
G_free((char *)p);
}
return 0;
}
/*!
\brief Copy points from array to line structure
\param Points line structure
\param x,y,z coordinates
\param number of points to be copied
\return 0 on success
\return -1 on out of memory
*/
int
Vect_copy_xyz_to_pnts(struct line_pnts *Points, double *x, double *y,
double *z, int n)
{
register int i;
if (0 > dig_alloc_points(Points, n))
return (-1);
for (i = 0; i < n; i++) {
Points->x[i] = x[i];
Points->y[i] = y[i];
if (z != NULL)
Points->z[i] = z[i];
else
Points->z[i] = 0;
Points->n_points = n;
}
return (0);
}
/*!
\brief Reset line
Make sure line structure is clean to be re-used, i.e. it
has no points associated with it Points must have previously been
created with Vect_new_line_struct().
\param Points line to be reset
\return 0
*/
int Vect_reset_line(struct line_pnts *Points)
{
Points->n_points = 0;
return 0;
}
/*!
\brief Appends one point to the end of a line.
Returns new number of points or -1 on out of memory Note, this will
append to whatever is in line struct. If you are re-using a line
struct, be sure to clear out old data first by calling
Vect_reset_line().
\param Points line
\param x,y,z point coordinates to be added
\return number of points
*/
int Vect_append_point(struct line_pnts *Points, double x, double y, double z)
{
register int n;
if (0 > dig_alloc_points(Points, Points->n_points + 1))
return (-1);
n = Points->n_points;
Points->x[n] = x;
Points->y[n] = y;
Points->z[n] = z;
return ++(Points->n_points);
}
/*!
\brief Insert new point at index position and move all old points at that position and above up
\param Points line
\param index (from 0 to Points->n_points-1)
\param x,y,z point coordinates
\return number of points
\return -1 on error (alocation)
*/
int
Vect_line_insert_point(struct line_pnts *Points, int index, double x,
double y, double z)
{
register int n;
if (index < 0 || index > Points->n_points - 1)
G_fatal_error("%s Vect_line_insert_point()",
_("Index out of range in"));
if (0 > dig_alloc_points(Points, Points->n_points + 1))
return (-1);
/* move up */
for (n = Points->n_points; n > index; n--) {
Points->x[n] = Points->x[n - 1];
Points->y[n] = Points->y[n - 1];
Points->z[n] = Points->z[n - 1];
}
Points->x[index] = x;
Points->y[index] = y;
Points->z[index] = z;
return ++(Points->n_points);
}
/*!
\brief Delete point at given index and move all points above down
\param Points line
\param index (from 0 to Points->n_points-1)
\return number of points
*/
int Vect_line_delete_point(struct line_pnts *Points, int index)
{
register int n;
if (index < 0 || index > Points->n_points - 1)
G_fatal_error("%s Vect_line_insert_point()",
_("Index out of range in"));
if (Points->n_points == 0)
return 0;
/* move down */
for (n = index; n < Points->n_points - 1; n++) {
Points->x[n] = Points->x[n + 1];
Points->y[n] = Points->y[n + 1];
Points->z[n] = Points->z[n + 1];
}
return --(Points->n_points);
}
/*!
\brief Remove duplicate points, i.e. zero length segments
\param Points line
\return number of points
*/
int Vect_line_prune(struct line_pnts *Points)
{
int i, j;
if (Points->n_points > 0) {
j = 1;
for (i = 1; i < Points->n_points; i++) {
if (Points->x[i] != Points->x[j - 1] ||
Points->y[i] != Points->y[j - 1]
|| Points->z[i] != Points->z[j - 1]) {
Points->x[j] = Points->x[i];
Points->y[j] = Points->y[i];
Points->z[j] = Points->z[i];
j++;
}
}
Points->n_points = j;
}
return (Points->n_points);
}
/*!
\brief Remove points in threshold
\param Points line
\param threshold threshold value
\return number of points in result
*/
int Vect_line_prune_thresh(struct line_pnts *Points, double threshold)
{
int ret;
ret = dig_prune(Points, threshold);
if (ret < Points->n_points)
Points->n_points = ret;
return (Points->n_points);
}
/*!
\brief Appends points to the end of a line.
Note, this will append to whatever is in line struct. If you are
re-using a line struct, be sure to clear out old data first by
calling Vect_reset_line().
\param Points line
\param APoints points to be included
\param direction direction (GV_FORWARD, GV_BACKWARD)
\return new number of points
\return -1 on out of memory
*/
int
Vect_append_points(struct line_pnts *Points, struct line_pnts *APoints,
int direction)
{
int i, n, on, an;
on = Points->n_points;
an = APoints->n_points;
n = on + an;
/* Should be OK, dig_alloc_points calls realloc */
if (0 > dig_alloc_points(Points, n))
return (-1);
if (direction == GV_FORWARD) {
for (i = 0; i < an; i++) {
Points->x[on + i] = APoints->x[i];
Points->y[on + i] = APoints->y[i];
Points->z[on + i] = APoints->z[i];
}
}
else {
for (i = 0; i < an; i++) {
Points->x[on + i] = APoints->x[an - i - 1];
Points->y[on + i] = APoints->y[an - i - 1];
Points->z[on + i] = APoints->z[an - i - 1];
}
}
Points->n_points = n;
return n;
}
/*!
\brief Copy points from line structure to array
x/y/z arrays MUST be at least as large as Points->n_points
Also note that n is a pointer to int.
\param Points line
\param x,y,z coordinates arrays
\param n number of points
\return number of points copied
*/
int
Vect_copy_pnts_to_xyz(struct line_pnts *Points, double *x, double *y,
double *z, int *n)
{
register int i;
for (i = 0; i < *n; i++) {
x[i] = Points->x[i];
y[i] = Points->y[i];
if (z != NULL)
z[i] = Points->z[i];
*n = Points->n_points;
}
return (Points->n_points);
}
/*!
\brief Find point on line in the specified distance.
From the begining, measured along line.
If the distance is greater than line length or negative, error is returned.
\param Points line
\param distance distance value
\param x,y,z pointers to point coordinates or NULL
\param angle pointer to angle of line in that point (radians, counter clockwise from x axis) or NULL
\param slope pointer to slope angle in radians (positive up)
\return number of segment the point is on (first is 1),
\return 0 error when point is outside the line
*/
int
Vect_point_on_line(struct line_pnts *Points, double distance,
double *x, double *y, double *z, double *angle,
double *slope)
{
int j, np, seg = 0;
double dist = 0, length;
double xp = 0, yp = 0, zp = 0, dx = 0, dy = 0, dz = 0, dxy =
0, dxyz, k, rest;
G_debug(3, "Vect_point_on_line(): distance = %f", distance);
if ((distance < 0) || (Points->n_points < 2))
return 0;
/* Check if first or last */
length = Vect_line_length(Points);
G_debug(3, " length = %f", length);
if (distance < 0 || distance > length) {
G_debug(3, " -> outside line");
return 0;
}
np = Points->n_points;
if (distance == 0) {
G_debug(3, " -> first point");
xp = Points->x[0];
yp = Points->y[0];
zp = Points->z[0];
dx = Points->x[1] - Points->x[0];
dy = Points->y[1] - Points->y[0];
dz = Points->z[1] - Points->z[0];
dxy = hypot(dx, dy);
seg = 1;
}
else if (distance == length) {
G_debug(3, " -> last point");
xp = Points->x[np - 1];
yp = Points->y[np - 1];
zp = Points->z[np - 1];
dx = Points->x[np - 1] - Points->x[np - 2];
dy = Points->y[np - 1] - Points->y[np - 2];
dz = Points->z[np - 1] - Points->z[np - 2];
dxy = hypot(dx, dy);
seg = np - 1;
}
else {
for (j = 0; j < Points->n_points - 1; j++) {
/* dxyz = G_distance(Points->x[j], Points->y[j],
Points->x[j+1], Points->y[j+1]); */
dx = Points->x[j + 1] - Points->x[j];
dy = Points->y[j + 1] - Points->y[j];
dz = Points->z[j + 1] - Points->z[j];
dxy = hypot(dx, dy);
dxyz = hypot(dxy, dz);
dist += dxyz;
if (dist >= distance) { /* point is on the current line part */
rest = distance - dist + dxyz; /* from first point of segment to point */
k = rest / dxyz;
xp = Points->x[j] + k * dx;
yp = Points->y[j] + k * dy;
zp = Points->z[j] + k * dz;
seg = j + 1;
break;
}
}
}
if (x != NULL)
*x = xp;
if (y != NULL)
*y = yp;
if (z != NULL)
*z = zp;
/* calculate angle */
if (angle != NULL)
*angle = atan2(dy, dx);
/* calculate slope */
if (slope != NULL)
*slope = atan2(dz, dxy);
return seg;
}
/*!
\brief Create line segment.
Creates segment of InPoints from start to end measured along the
line and write it to OutPoints.
If the distance is greater than line length or negative, error is
returned.
\param InPoints input line
\param start segment number
\param end segment number
\param OutPoints output line
\return 1 success
\return 0 error when start > length or end < 0 or start < 0 or end > length
*/
int
Vect_line_segment(struct line_pnts *InPoints, double start, double end,
struct line_pnts *OutPoints)
{
int i, seg1, seg2;
double length, tmp;
double x1, y1, z1, x2, y2, z2;
G_debug(3, "Vect_line_segment(): start = %f, end = %f, n_points = %d",
start, end, InPoints->n_points);
Vect_reset_line(OutPoints);
if (start > end) {
tmp = start;
start = end;
end = tmp;
}
/* Check start/end */
if (end < 0)
return 0;
length = Vect_line_length(InPoints);
if (start > length)
return 0;
/* Find coordinates and segments of start/end */
seg1 = Vect_point_on_line(InPoints, start, &x1, &y1, &z1, NULL, NULL);
seg2 = Vect_point_on_line(InPoints, end, &x2, &y2, &z2, NULL, NULL);
G_debug(3, " -> seg1 = %d seg2 = %d", seg1, seg2);
if (seg1 == 0 || seg2 == 0) {
G_warning(_("Segment outside line, no segment created"));
return 0;
}
Vect_append_point(OutPoints, x1, y1, z1);
for (i = seg1; i < seg2; i++) {
Vect_append_point(OutPoints, InPoints->x[i], InPoints->y[i],
InPoints->z[i]);
};
Vect_append_point(OutPoints, x2, y2, z2);
Vect_line_prune(OutPoints);
return 1;
}
/*!
\brief Calculate line length, 3D-length in case of 3D vector line
For Lat-Long use Vect_line_geodesic_length() instead.
\param Points line
\return line length
*/
double Vect_line_length(struct line_pnts *Points)
{
int j;
double dx, dy, dz, len = 0;
if (Points->n_points < 2)
return 0;
for (j = 0; j < Points->n_points - 1; j++) {
dx = Points->x[j + 1] - Points->x[j];
dy = Points->y[j + 1] - Points->y[j];
dz = Points->z[j + 1] - Points->z[j];
len += hypot(hypot(dx, dy), dz);
}
return len;
}
/*!
\brief Calculate line length.
If projection is LL, the length is measured along the geodesic.
\param Points line
\return line length
*/
double Vect_line_geodesic_length(struct line_pnts *Points)
{
int j, dc;
double dx, dy, dz, dxy, len = 0;
dc = G_begin_distance_calculations();
if (Points->n_points < 2)
return 0;
for (j = 0; j < Points->n_points - 1; j++) {
if (dc == 2)
dxy =
G_geodesic_distance(Points->x[j], Points->y[j],
Points->x[j + 1], Points->y[j + 1]);
else {
dx = Points->x[j + 1] - Points->x[j];
dy = Points->y[j + 1] - Points->y[j];
dxy = hypot(dx, dy);
}
dz = Points->z[j + 1] - Points->z[j];
len += hypot(dxy, dz);
}
return len;
}
/*!
\brief calculate line distance.
Sets (if not null):
- px, py - point on line,
- dist - distance to line,
- spdist - distance to point on line from segment beginning,
- sldist - distance to point on line form line beginning along line
\param points line
\param ux,uy,uz point coordinates
\param with_z flag if to use z coordinate (3D calculation)
\param[out] px,py,pz point on line
\param[out] dist distance to line,
\param[out] spdist distance of point from segment beginning
\param[out] lpdist distance of point from line
\return nearest segment (first is 1)
*/
int
Vect_line_distance(struct line_pnts *points,
double ux, double uy, double uz,
int with_z,
double *px, double *py, double *pz,
double *dist, double *spdist, double *lpdist)
{
register int i;
register double distance;
register double new_dist;
double tpx, tpy, tpz, tdist, tspdist, tlpdist = 0;
double dx, dy, dz;
register int n_points;
int segment;
n_points = points->n_points;
if (n_points == 1) {
distance =
dig_distance2_point_to_line(ux, uy, uz, points->x[0],
points->y[0], points->z[0],
points->x[0], points->y[0],
points->z[0], with_z, NULL, NULL,
NULL, NULL, NULL);
tpx = points->x[0];
tpy = points->y[0];
tpz = points->z[0];
tdist = sqrt(distance);
tspdist = 0;
tlpdist = 0;
segment = 0;
}
else {
distance =
dig_distance2_point_to_line(ux, uy, uz, points->x[0],
points->y[0], points->z[0],
points->x[1], points->y[1],
points->z[1], with_z, NULL, NULL,
NULL, NULL, NULL);
segment = 1;
for (i = 1; i < n_points - 1; i++) {
new_dist = dig_distance2_point_to_line(ux, uy, uz,
points->x[i], points->y[i],
points->z[i],
points->x[i + 1],
points->y[i + 1],
points->z[i + 1], with_z,
NULL, NULL, NULL, NULL,
NULL);
if (new_dist < distance) {
distance = new_dist;
segment = i + 1;
}
}
/* we have segment and now we can recalculate other values (speed) */
new_dist = dig_distance2_point_to_line(ux, uy, uz,
points->x[segment - 1],
points->y[segment - 1],
points->z[segment - 1],
points->x[segment],
points->y[segment],
points->z[segment], with_z,
&tpx, &tpy, &tpz, &tspdist,
NULL);
/* calculate distance from beginning of line */
if (lpdist) {
tlpdist = 0;
for (i = 0; i < segment - 1; i++) {
dx = points->x[i + 1] - points->x[i];
dy = points->y[i + 1] - points->y[i];
if (with_z)
dz = points->z[i + 1] - points->z[i];
else
dz = 0;
tlpdist += hypot(hypot(dx, dy), dz);
}
tlpdist += tspdist;
}
tdist = sqrt(distance);
}
if (px)
*px = tpx;
if (py)
*py = tpy;
if (pz && with_z)
*pz = tpz;
if (dist)
*dist = tdist;
if (spdist)
*spdist = tspdist;
if (lpdist)
*lpdist = tlpdist;
return (segment);
}
/*!
\brief Calculate distance of 2 points
Simply uses Pythagoras.
\param x1,y1,z1 first point
\param x2,y2,z2 second point
\param with_z use z coordinate
\return distance
*/
double Vect_points_distance(double x1, double y1, double z1, /* point 1 */
double x2, double y2, double z2, /* point 2 */
int with_z)
{
double dx, dy, dz;
dx = x2 - x1;
dy = y2 - y1;
dz = z2 - z1;
if (with_z)
return hypot(hypot(dx, dy), dz);
else
return hypot(dx, dy);
}
/*!
\brief Get bounding box of line
\param Points line
\param[out] Box bounding box
\return 0
*/
int Vect_line_box(struct line_pnts *Points, BOUND_BOX * Box)
{
dig_line_box(Points, Box);
return 0;
}
/*!
\brief Reverse the order of vertices
\param Points line to be changed
\return void
*/
void Vect_line_reverse(struct line_pnts *Points)
{
int i, j, np;
double x, y, z;
np = (int)Points->n_points / 2;
for (i = 0; i < np; i++) {
j = Points->n_points - i - 1;
x = Points->x[i];
y = Points->y[i];
z = Points->z[i];
Points->x[i] = Points->x[j];
Points->y[i] = Points->y[j];
Points->z[i] = Points->z[j];
Points->x[j] = x;
Points->y[j] = y;
Points->z[j] = z;
}
}
/*!
\brief Fetches FIRST category number for given vector line and field
\param Map vector map
\param line line id
\param field layer number
\return -1 no category
\return category number (>=0)
*/
int Vect_get_line_cat(struct Map_info *Map, int line, int field)
{
static struct line_cats *cats = NULL;
int cat, ltype;
if (cats == NULL)
cats = Vect_new_cats_struct();
ltype = Vect_read_line(Map, NULL, cats, line);
Vect_cat_get(cats, field, &cat);
G_debug(3, "Vect_get_line_cat: display line %d, ltype %d, cat %d", line,
ltype, cat);
return cat;
}
|