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 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901
|
/*
****************************************************************************
*
* MODULE: Vector library
*
* AUTHOR(S): Radim Blazek
*
* PURPOSE: Higher level functions for reading/writing/manipulating vectors.
*
* COPYRIGHT: (C) 2001 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.
*
*****************************************************************************/
#include <stdlib.h>
#include <string.h>
#include "gis.h"
#include "dbmi.h"
#include "Vect.h"
static int From_node; /* from node set in SP and used by clipper for first arc */
static int clipper ( dglGraph_s *pgraph ,
dglSPClipInput_s * pargIn ,
dglSPClipOutput_s * pargOut ,
void * pvarg ) /* caller's pointer */
{
dglInt32_t cost;
dglInt32_t from;
G_debug ( 3, "Net: clipper()" );
from = dglNodeGet_Id(pgraph, pargIn->pnNodeFrom);
G_debug ( 3, " Edge = %d NodeFrom = %d NodeTo = %d edge cost = %d",
dglEdgeGet_Id (pgraph, pargIn->pnEdge),
from, dglNodeGet_Id(pgraph, pargIn->pnNodeTo),
pargOut->nEdgeCost);
if ( from != From_node ) { /* do not clip first */
if ( dglGet_NodeAttrSize(pgraph) > 0 ) {
memcpy( &cost, dglNodeGet_Attr(pgraph, pargIn->pnNodeFrom), sizeof(cost) );
if ( cost == -1 ) { /* closed, cannot go from this node except it is 'from' node */
G_debug ( 3, " closed node" );
return 1;
} else {
G_debug ( 3, " EdgeCost += %d (node)", cost );
pargOut->nEdgeCost += cost;
}
}
} else {
G_debug ( 3, " don't clip first node" );
}
return 0;
}
/*!
\fn Vect_net_build_graph ( struct Map_info *Map,
int ltype,
int afield,
int nfield,
char *afcol,
char *abcol,
char *ncol,
int geo,
int algorithm )
\brief Build network graph. Internal format for edge costs is integer, costs are multiplied
before conversion to int by 1000 and for lenghts LL without geo flag by 1000000.
The same multiplication factor is used for nodes.
Costs in database column may be 'integer' or 'double precision' number >= 0
or -1 for infinity i.e. arc or node is closed and cannot be traversed
If record in table is not found for arcs, arc is skip.
If record in table is not found for node, costs for node are set to 0.
\return 0 on success, 1 on error
\param Map_info structure,
line type for arcs,
arc costs field,
node costs field,
column with forward costs for arc (if NULL use length),
column with backward costs for arc (if NULL, back costs = forward costs),
column with costs for nodes (if NULL, do not use node costs),
use geodesic calculation for length (LL),
not used (in future code for algorithm)
*/
int
Vect_net_build_graph ( struct Map_info *Map,
int ltype, /* line type for arcs */
int afield, /* arc costs field (if 0, use length) */
int nfield, /* node costs field (if 0, do not use node costs) */
char *afcol, /* column with forward costs for arc */
char *abcol, /* column with backward costs for arc (if NULL, back = forward) */
char *ncol, /* column with costs for nodes */
int geo, /* use geodesic calculation for length (LL) */
int algorithm ) /* not used, in future code for algorithm */
{
int i, j, from, to, line, nlines, nnodes, ret, type, cat, skipped, cfound;
int dofw, dobw;
struct line_pnts *Points;
struct line_cats *Cats;
double dcost, bdcost, ll;
int cost, bcost;
dglGraph_s *gr;
dglInt32_t opaqueset[ 16 ] = { 360000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
struct field_info *Fi;
dbDriver *driver;
dbHandle handle;
dbString stmt;
dbColumn *Column;
dbCatValArray fvarr, bvarr;
int fctype, bctype, nrec;
/* TODO int costs -> double (waiting for dglib) */
G_debug (1, "Vect_build_graph(): ltype = %d, afield = %d, nfield = %d", ltype, afield, nfield);
G_debug (1, " afcol = %s, abcol = %s, ncol = %s", afcol, abcol, ncol);
fprintf ( stderr, "Building graph:\n");
Map->graph_line_type = ltype;
Points = Vect_new_line_struct ();
Cats = Vect_new_cats_struct ();
ll = 0;
if( G_projection() == 3) ll = 1; /* LL */
if ( afcol == NULL && ll && !geo ) Map->cost_multip = 1000000;
else Map->cost_multip = 1000;
nlines = Vect_get_num_lines ( Map );
nnodes = Vect_get_num_nodes ( Map );
gr = &(Map->graph);
/* Allocate space for costs, later replace by functions reading costs from graph */
Map->edge_fcosts = (double*) G_malloc ( (nlines+1) * sizeof(double) );
Map->edge_bcosts = (double*) G_malloc ( (nlines+1) * sizeof(double) );
Map->node_costs = (double*) G_malloc ( (nnodes+1) * sizeof(double) );
/* Set to -1 initialy */
for ( i = 1; i <= nlines; i++ ) {
Map->edge_fcosts[i] = -1; /* forward */
Map->edge_bcosts[i] = -1; /* backward */
}
for ( i = 1; i <= nnodes; i++ ) {
Map->node_costs[i] = 0;
}
if ( ncol != NULL ) dglInitialize ( gr, 1, sizeof(dglInt32_t), 0, opaqueset );
else dglInitialize ( gr, 1, 0, 0, opaqueset );
if ( gr == NULL ) G_fatal_error ("Cannot build network graph");
db_init_handle (&handle);
db_init_string ( &stmt);
if ( abcol != NULL && afcol == NULL )
G_fatal_error ("Forward costs column not specified");
/* --- Add arcs --- */
/* Open db connection */
if ( afcol != NULL ) {
/* Get field info */
if ( afield < 1 ) G_fatal_error ("Arc field < 1");
Fi = Vect_get_field( Map, afield);
if ( Fi == NULL ) G_fatal_error ("Cannot get field info");
/* Open database */
driver = db_start_driver_open_database ( Fi->driver, Fi->database );
if ( driver == NULL )
G_fatal_error("Cannot open database %s by driver %s", Fi->database, Fi->driver) ;
/* Load costs to array */
if ( db_get_column ( driver, Fi->table, afcol, &Column ) != DB_OK)
G_fatal_error("Cannot get column info");
fctype = db_sqltype_to_Ctype ( db_get_column_sqltype(Column) );
if ( fctype != DB_C_TYPE_INT && fctype != DB_C_TYPE_DOUBLE )
G_fatal_error ( "Column type not supported" );
db_CatValArray_init ( &fvarr );
nrec = db_select_CatValArray ( driver, Fi->table, Fi->key, afcol, NULL, &fvarr );
G_debug (1, "forward costs: nrec = %d", nrec );
if ( abcol != NULL ) {
if ( db_get_column ( driver, Fi->table, abcol, &Column ) != DB_OK)
G_fatal_error("Cannot get column info");
bctype = db_sqltype_to_Ctype ( db_get_column_sqltype(Column) );
if ( bctype != DB_C_TYPE_INT && bctype != DB_C_TYPE_DOUBLE )
G_fatal_error ( "Column type not supported" );
db_CatValArray_init ( &bvarr );
nrec = db_select_CatValArray ( driver, Fi->table, Fi->key, abcol, NULL, &bvarr );
G_debug (1, "backward costs: nrec = %d", nrec );
}
}
skipped = 0;
fprintf ( stderr, "Registering arcs ... ");
for ( i = 1; i <= nlines; i++ ) {
G_percent ( i, nlines, 1 ); /* must be before any continue */
dofw = dobw = 1;
Vect_get_line_nodes ( Map, i, &from, &to );
type = Vect_read_line ( Map, Points, Cats, i );
if ( !(type & ltype & (GV_LINE | GV_BOUNDARY) ) ) continue;
if ( afcol != NULL ) {
if ( !(Vect_cat_get(Cats, afield, &cat) ) ) {
G_debug ( 2, "Category of field %d not attached to the line %d -> line skipped", afield, i);
skipped += 2; /* Both directions */
continue;
} else {
if ( fctype == DB_C_TYPE_INT ) {
ret = db_CatValArray_get_value_int ( &fvarr, cat, &cost );
dcost = cost;
} else { /* DB_C_TYPE_DOUBLE */
ret = db_CatValArray_get_value_double ( &fvarr, cat, &dcost );
}
if ( ret != DB_OK ) {
G_warning ("Database record for line %d (cat = %d, forward/both direction(s)) not found "
"(forward/both direction(s) of line skipped)", i, cat);
dofw = 0;
}
if ( abcol != NULL ) {
if ( bctype == DB_C_TYPE_INT ) {
ret = db_CatValArray_get_value_int ( &bvarr, cat, &bcost );
bdcost = bcost;
} else { /* DB_C_TYPE_DOUBLE */
ret = db_CatValArray_get_value_double ( &bvarr, cat, &bdcost );
}
if ( ret != DB_OK ) {
G_warning ( "Database record for line %d (cat = %d, backword direction) not found"
"(direction of line skipped)", i, cat);
dobw = 0;
}
} else {
if (dofw) bdcost = dcost;
else dobw = 0;
}
}
} else {
if ( ll ) {
if ( geo ) dcost = Vect_line_geodesic_length ( Points );
else dcost = Vect_line_length ( Points );
} else
dcost = Vect_line_length ( Points );
bdcost = dcost;
}
if ( dofw && dcost != -1 ) {
cost = (dglInt32_t) Map->cost_multip * dcost;
G_debug (5, "Add arc %d from %d to %d cost = %d", i, from, to, cost);
ret = dglAddEdge ( gr, from, to, cost, i );
Map->edge_fcosts[i] = dcost;
if ( ret < 0 ) G_fatal_error ("Cannot add network arc");
}
G_debug (5, "bdcost = %f edge_bcosts = %f", bdcost, Map->edge_bcosts[i]);
if ( dobw && bdcost != -1 ) {
bcost = (dglInt32_t) Map->cost_multip * bdcost;
G_debug (5, "Add arc %d from %d to %d bcost = %d", -i, to, from, bcost);
ret = dglAddEdge ( gr, to, from, bcost, -i );
Map->edge_bcosts[i] = bdcost;
if ( ret < 0 ) G_fatal_error ("Cannot add network arc");
}
}
if ( afcol != NULL && skipped > 0 )
G_debug ( 2, "%d lines missing category of field %d skipped", skipped, afield);
if ( afcol != NULL ) {
db_close_database_shutdown_driver ( driver );
db_CatValArray_free ( &fvarr);
if ( abcol != NULL ) {
db_CatValArray_free ( &bvarr);
}
}
/* Set node attributes */
G_debug ( 2, "Register nodes");
if ( ncol != NULL ) {
G_debug ( 2, "Set nodes' costs");
if ( nfield < 1 ) G_fatal_error ("Node field < 1");
fprintf ( stderr, "Setting node costs ... ");
Fi = Vect_get_field( Map, nfield);
if ( Fi == NULL ) G_fatal_error ("Cannot get field info");
driver = db_start_driver_open_database ( Fi->driver, Fi->database );
if ( driver == NULL )
G_fatal_error("Cannot open database %s by driver %s", Fi->database, Fi->driver) ;
/* Load costs to array */
if ( db_get_column ( driver, Fi->table, ncol, &Column ) != DB_OK)
G_fatal_error("Cannot get column info");
fctype = db_sqltype_to_Ctype ( db_get_column_sqltype(Column) );
if ( fctype != DB_C_TYPE_INT && fctype != DB_C_TYPE_DOUBLE )
G_fatal_error ( "Column type not supported" );
db_CatValArray_init ( &fvarr );
nrec = db_select_CatValArray ( driver, Fi->table, Fi->key, ncol, NULL, &fvarr );
G_debug (1, "node costs: nrec = %d", nrec );
for ( i = 1; i <= nnodes; i++ ) {
/* TODO: what happens if we set attributes of not existing node (skipped lines,
* nodes without lines) */
nlines = Vect_get_node_n_lines ( Map, i );
G_debug ( 2, " node = %d nlines = %d", i, nlines );
cfound = 0;
dcost = 0;
for ( j = 0; j < nlines; j++ ) {
line = Vect_get_node_line ( Map, i, j );
G_debug ( 2, " line (%d) = %d", j, line );
type = Vect_read_line ( Map, NULL, Cats, line);
if ( !(type & GV_POINT) ) continue;
if ( Vect_cat_get(Cats, nfield, &cat) ) { /* point with category of field found */
/* Set costs */
if ( fctype == DB_C_TYPE_INT ) {
ret = db_CatValArray_get_value_int ( &fvarr, cat, &cost );
dcost = cost;
} else { /* DB_C_TYPE_DOUBLE */
ret = db_CatValArray_get_value_double ( &fvarr, cat, &dcost );
}
if ( ret != DB_OK ) {
G_warning ( "Database record for node %d (cat = %d) not found "
"(cost set to 0)", i, cat);
}
cfound = 1;
break;
}
}
if ( !cfound ) {
G_debug ( 2, "Category of field %d not attached to any points in node %d"
"(costs set to 0)", nfield, i);
}
if ( dcost == -1 ) { /* closed */
cost = -1;
} else {
cost = (dglInt32_t) Map->cost_multip * dcost;
}
G_debug ( 3, "Set node's cost to %d", cost);
dglNodeSet_Attr(gr, dglGetNode(gr,i), (dglInt32_t *) &cost);
Map->node_costs[i] = dcost;
}
db_close_database_shutdown_driver ( driver );
db_CatValArray_free ( &fvarr);
fprintf ( stderr, "done.\n");
}
fprintf ( stderr, "Flattening the graph ... ");
ret = dglFlatten ( gr );
if ( ret < 0 ) G_fatal_error ("GngFlatten error");
fprintf ( stderr, "done.\n");
/* init SP cache */
/* Disabled because of BUG1 in dglib. Without cache it is terribly slow, but with cache there
* are too many errors. */
/* dglInitializeSPCache( gr, &(Map->spCache) ); */
fprintf ( stderr, "Graph was built.\n");
return 0;
}
/*!
\fn int Vect_net_shortest_path ( struct Map_info *Map, int from, int to, struct ilist *List, double *cost )
\brief Find shortest path. Costs for 'from' and 'to' nodes are not considered (SP found even if
'from' or 'to' are 'closed' (costs = -1) and costs of these nodes are not added to SP costs result.
\return number of segments : ( 0 is correct for from = to, or List == NULL ),
? sum of costs is better return value,
-1 : destination unreachable
\param Map_info structure, from?, to?, ilist? cost
*/
#include<fcntl.h>
int
Vect_net_shortest_path ( struct Map_info *Map, int from, int to, struct ilist *List, double *cost )
{
int i, line, *pclip, cArc, nRet;
dglSPReport_s * pSPReport;
dglInt32_t nDistance;
G_debug (3, "Vect_net_shortest_path(): from = %d, to = %d", from, to );
/* Note : if from == to dgl goes to nearest node and returns back (dgl feature) =>
* check here for from == to */
if ( List != NULL ) Vect_reset_list ( List);
/* Check if from and to are identical, otherwise dglib returns path to neares node and back! */
if ( from == to ) {
if ( cost != NULL ) *cost = 0;
return 0;
}
From_node = from;
pclip = NULL;
if ( List != NULL ) {
/*nRet = dglShortestPath ( &(Map->graph), &pSPReport, from, to, clipper, pclip, &(Map->spCache));*/
nRet = dglShortestPath ( &(Map->graph), &pSPReport, from, to, clipper, pclip, NULL);
} else {
/*nRet = dglShortestDistance ( &(Map->graph), &nDistance, from, to, clipper, pclip, &(Map->spCache));*/
nRet = dglShortestDistance ( &(Map->graph), &nDistance, from, to, clipper, pclip, NULL);
}
if ( nRet == 0 ) {
/* G_warning( "Destination node %d is unreachable from node %d\n" , to , from ); */
if ( cost != NULL )
*cost = PORT_DOUBLE_MAX;
return -1;
}
else if ( nRet < 0 ) {
fprintf( stderr , "dglShortestPath error: %s\n", dglStrerror( &(Map->graph) ) );
return -1;
}
if ( List != NULL ) {
for( i = 0 ; i < pSPReport->cArc ; i ++ ) {
line = dglEdgeGet_Id(&(Map->graph), pSPReport->pArc[i].pnEdge);
G_debug( 2, "From %ld to %ld - cost %ld user %d distance %ld" ,
pSPReport->pArc[i].nFrom,
pSPReport->pArc[i].nTo,
dglEdgeGet_Cost(&(Map->graph),
pSPReport->pArc[i].pnEdge) / Map->cost_multip, /* this is the cost from clip() */
line,
pSPReport->pArc[i].nDistance );
Vect_list_append ( List, line );
}
}
if ( cost != NULL ) {
if ( List != NULL )
*cost = (double) pSPReport->nDistance / Map->cost_multip;
else
*cost = (double) nDistance / Map->cost_multip;
}
if ( List != NULL ) {
cArc = pSPReport->cArc;
dglFreeSPReport( &(Map->graph), pSPReport );
} else
cArc = 0;
return (cArc);
}
/*
* Returns in cost for given direction (GV_FORWARD,GV_BACKWARD) in *cost.
* cost is set to -1 if closed.
* Return : 1 : OK
* 0 : does not exist (was not inserted)
*/
int
Vect_net_get_line_cost ( struct Map_info *Map, int line, int direction, double *cost )
{
/* dglInt32_t *pEdge; */
G_debug (5, "Vect_net_get_line_cost(): line = %d, dir = %d", line, direction );
if ( direction == GV_FORWARD ) {
/* V1 has no index by line-id -> array used */
/*
pEdge = dglGetEdge ( &(Map->graph), line );
if ( pEdge == NULL ) return 0;
*cost = (double) dglEdgeGet_Cost ( &(Map->graph), pEdge );
*/
if ( Map->edge_fcosts[line] == -1 ) {
*cost = -1;
return 0;
} else *cost = Map->edge_fcosts[line];
} else if ( direction == GV_BACKWARD ) {
/*
pEdge = dglGetEdge ( &(Map->graph), -line );
if ( pEdge == NULL ) return 0;
*cost = (double) dglEdgeGet_Cost ( &(Map->graph), pEdge );
*/
if ( Map->edge_bcosts[line] == -1 ) {
*cost = -1;
return 0;
} else *cost = Map->edge_bcosts[line];
G_debug (5, "Vect_net_get_line_cost(): edge_bcosts = %f", Map->edge_bcosts[line] );
} else {
G_fatal_error ("Wrong line direction in Vect_net_get_line_cost()" );
}
return 1;
}
/*
* Returns in cost for given node in *cost.
* Return : 1 : OK
*/
int
Vect_net_get_node_cost ( struct Map_info *Map, int node, double *cost )
{
G_debug (3, "Vect_net_get_node_cost(): node = %d", node );
*cost = Map->node_costs[node];
G_debug (3, " -> cost = %f", *cost );
return 1;
}
/*!
\fn int Vect_net_nearest_nodes ( struct Map_info *Map, double x, double y, double z,
int direction, double maxdist,
int *node1, int *node2, int *ln, double *costs1, double costs2,
struct line_pnts *Points1, struct line_pnts *Points1 )
\brief Find nearest node(s) on network.
\return number of nodes found (0,1,2)
\param Map
\param x point x coordinate
\param y point y coordinate
\param z point z coordinate (NOT USED !)
\param direction (GV_FORWARD - from point to net, GV_BACKWARD - from net to point)
\param maxdist maximum distance to the network
\param node1 pointer where to store the node number (or NULL)
\param node2 pointer where to store the node number (or NULL)
\param ln pointer where to store the nearest line number (or NULL)
\param costs1 pointer where to store costs on nearest line to node1 (not costs from x,y,z to the line) (or NULL)
\param costs2 pointer where to store costs on nearest line to node2 (not costs from x,y,z to the line) (or NULL)
\param Points1 pointer to structure where to store vertices on nearest line to node1 (or NULL)
\param Points2 pointer to structure where to store vertices on nearest line to node2 (or NULL)
\param pointer where to distance to the line (or NULL)
*/
int Vect_net_nearest_nodes ( struct Map_info *Map,
double x, double y, double z,
int direction, double maxdist,
int *node1, int *node2, int *ln, double *costs1, double *costs2,
struct line_pnts *Points1, struct line_pnts *Points2,
double *distance )
{
int line, n1, n2, nnodes;
int npoints;
int segment; /* nearest line segment (first is 1) */
static struct line_pnts *Points = NULL;
double cx, cy, cz, c1, c2;
double along; /* distance along the line to nearest point */
double length;
G_debug (3, "Vect_net_nearest_nodes() x = %f y = %f", x, y );
/* Reset */
if ( node1 ) *node1 = 0;
if ( node2 ) *node2 = 0;
if ( ln ) *ln = 0;
if ( costs1 ) *costs1 = PORT_DOUBLE_MAX;
if ( costs2 ) *costs2 = PORT_DOUBLE_MAX;
if ( Points1 ) Vect_reset_line ( Points1 );
if ( Points2 ) Vect_reset_line ( Points2 );
if ( distance ) *distance = PORT_DOUBLE_MAX;
if ( !Points ) Points = Vect_new_line_struct();
/* Find nearest line */
line = Vect_find_line ( Map, x, y, z, Map->graph_line_type, maxdist, 0, 0 );
if ( line < 1 ) return 0;
Vect_read_line ( Map, Points, NULL, line );
npoints = Points->n_points;
Vect_get_line_nodes ( Map, line, &n1, &n2);
segment = Vect_line_distance ( Points, x, y, z, 0, &cx, &cy, &cz, distance, NULL, &along);
G_debug (4, "line = %d n1 = %d n2 = %d segment = %d", line, n1, n2, segment );
/* Check first or last point and return one node in that case */
G_debug (4, "cx = %f cy = %f first = %f %f last = %f %f", cx, cy, Points->x[0], Points->y[0],
Points->x[npoints-1], Points->y[npoints-1] );
if ( Points->x[0] == cx && Points->y[0] == cy ) {
if ( node1 ) *node1 = n1;
if ( ln ) *ln = line;
if ( costs1 ) *costs1 = 0;
if ( Points1 ) {
Vect_append_point ( Points1, x, y, z );
Vect_append_point ( Points1, cx, cy, cz );
}
G_debug (3, "first node nearest");
return 1;
}
if ( Points->x[npoints-1] == cx && Points->y[npoints-1] == cy ) {
if ( node1 ) *node1 = n2;
if ( ln ) *ln = line;
if ( costs1 ) *costs1 = 0;
if ( Points1 ) {
Vect_append_point ( Points1, x, y, z );
Vect_append_point ( Points1, cx, cy, cz );
}
G_debug (3, "last node nearest");
return 1;
}
nnodes = 2;
/* c1 - costs to get from/to the first vertex */
/* c2 - costs to get from/to the last vertex */
if ( direction == GV_FORWARD ) { /* from point to net */
Vect_net_get_line_cost ( Map, line, GV_BACKWARD, &c1 );
Vect_net_get_line_cost ( Map, line, GV_FORWARD, &c2 );
} else {
Vect_net_get_line_cost ( Map, line, GV_FORWARD, &c1 );
Vect_net_get_line_cost ( Map, line, GV_BACKWARD, &c2 );
}
if ( c1 < 0 ) nnodes--;
if ( c2 < 0 ) nnodes--;
if ( nnodes == 0 ) return 0; /* both directions closed */
length = Vect_line_length ( Points );
if ( ln ) *ln = line;
if ( nnodes == 1 && c1 < 0 ) { /* first direction is closed, return node2 as node1 */
if ( node1 ) *node1 = n2;
if ( costs1 ) { /* to node 2, i.e. forward */
*costs1 = c2 * (length - along) / length;
}
if ( Points1 ) { /* to node 2, i.e. forward */
int i;
if ( direction == GV_FORWARD ) { /* from point to net */
Vect_append_point ( Points1, x, y, z );
Vect_append_point ( Points1, cx, cy, cz );
for ( i = segment; i < npoints; i++ )
Vect_append_point ( Points1, Points->x[i], Points->y[i], Points->z[i] );
} else {
for ( i = npoints - 1; i >= segment; i-- )
Vect_append_point ( Points1, Points->x[i], Points->y[i], Points->z[i] );
Vect_append_point ( Points1, cx, cy, cz );
Vect_append_point ( Points1, x, y, z );
}
}
} else {
if ( node1 ) *node1 = n1;
if ( node2 ) *node2 = n2;
if ( costs1 ) { /* to node 1, i.e. backward */
*costs1 = c1 * along / length;
}
if ( costs2 ) { /* to node 2, i.e. forward */
*costs2 = c2 * (length - along) / length;
}
if ( Points1 ) { /* to node 1, i.e. backward */
int i;
if ( direction == GV_FORWARD ) { /* from point to net */
Vect_append_point ( Points1, x, y, z );
Vect_append_point ( Points1, cx, cy, cz );
for ( i = segment - 1; i >= 0; i-- )
Vect_append_point ( Points1, Points->x[i], Points->y[i], Points->z[i] );
} else {
for ( i = 0; i < segment; i++ )
Vect_append_point ( Points1, Points->x[i], Points->y[i], Points->z[i] );
Vect_append_point ( Points1, cx, cy, cz );
Vect_append_point ( Points1, x, y, z );
}
}
if ( Points2 ) { /* to node 2, i.e. forward */
int i;
if ( direction == GV_FORWARD ) { /* from point to net */
Vect_append_point ( Points2, x, y, z );
Vect_append_point ( Points2, cx, cy, cz );
for ( i = segment; i < npoints; i++ )
Vect_append_point ( Points2, Points->x[i], Points->y[i], Points->z[i] );
} else {
for ( i = npoints - 1; i >= segment; i-- )
Vect_append_point ( Points2, Points->x[i], Points->y[i], Points->z[i] );
Vect_append_point ( Points2, cx, cy, cz );
Vect_append_point ( Points2, x, y, z );
}
}
}
return nnodes;
}
/*!
\fn int Vect_net_shortest_path_coor ( struct Map_info *Map,
double fx, double fy, double fz, double tx, double ty, double tz,
double fmax, double tmax,
double *costs, struct line_pnts *Points,
double *fdist, double *tdist )
\brief Find shortest path on network between 2 points given by coordinates.
\return 1 OK, 0 not reachable
\param Map
\param fx from point x coordinate
\param fy from point y coordinate
\param fz from point z coordinate (ignored)
\param tx to point x coordinate
\param ty to point y coordinate
\param tz to point z coordinate (ignored)
\param fmax maximum distance to the network from 'from'
\param tmax maximum distance to the network from 'to'
\param costs pointer where to store costs on the network (or NULL)
\param Points pointer to the structure where to store vertices of shortest path (or NULL)
\param List pointer to the structure where list of lines on the network is stored (or NULL)
\param FPoints pointer to the structure where to store line from 'from' to first network node (or NULL)
\param TPoints pointer to the structure where to store line from last network node to 'to' (or NULL)
\param fdist distance from 'from' to the net (or NULL)
\param tdist distance from 'to' to the net (or NULL)
*/
int
Vect_net_shortest_path_coor ( struct Map_info *Map,
double fx, double fy, double fz, double tx, double ty, double tz,
double fmax, double tmax,
double *costs, struct line_pnts *Points,
struct ilist *List, struct line_pnts *FPoints, struct line_pnts *TPoints,
double *fdist, double *tdist )
{
int fnode[2], tnode[2]; /* nearest nodes, *node[1] is 0 if only one was found */
double fcosts[2], tcosts[2], cur_cst; /* costs to nearest nodes on the network */
int nfnodes, ntnodes, fline, tline;
static struct line_pnts *APoints, *SPoints, *fPoints[2], *tPoints[2];
static struct ilist *LList;
static int first = 1;
int reachable, shortcut;
int i, j, fn, tn;
G_debug (3, "Vect_net_shortest_path_coor()");
if ( first ) {
APoints = Vect_new_line_struct();
SPoints = Vect_new_line_struct();
fPoints[0] = Vect_new_line_struct();
fPoints[1] = Vect_new_line_struct();
tPoints[0] = Vect_new_line_struct();
tPoints[1] = Vect_new_line_struct();
LList = Vect_new_list ();
first = 0;
}
/* Reset */
if ( costs ) *costs = PORT_DOUBLE_MAX;
if ( Points ) Vect_reset_line ( Points );
if ( fdist ) *fdist = 0;
if ( tdist ) *tdist = 0;
if ( List ) List->n_values = 0;
if ( FPoints ) Vect_reset_line ( FPoints );
if ( TPoints ) Vect_reset_line ( TPoints );
/* Find nearest nodes */
fnode[0] = fnode[1] = tnode[0] = tnode[1] = 0;
nfnodes = Vect_net_nearest_nodes ( Map, fx, fy, fz, GV_FORWARD, fmax, &(fnode[0]), &(fnode[1]), &fline,
&(fcosts[0]), &(fcosts[1]), fPoints[0], fPoints[1], fdist );
if ( nfnodes == 0 ) return 0;
ntnodes = Vect_net_nearest_nodes ( Map, tx, ty, tz, GV_BACKWARD, tmax, &(tnode[0]), &(tnode[1]), &tline,
&(tcosts[0]), &(tcosts[1]), tPoints[0], tPoints[1], tdist );
if ( ntnodes == 0 ) return 0;
G_debug (3, "fline = %d tline = %d", fline, tline);
reachable = shortcut = 0;
cur_cst = PORT_DOUBLE_MAX;
/* It may happen, that 2 points are at the same line. */
if ( fline == tline && (nfnodes > 1 || ntnodes > 1) ) {
double len, flen, tlen, c, fseg, tseg;
double fcx, fcy, fcz, tcx, tcy, tcz;
Vect_read_line ( Map, APoints, NULL, fline );
len = Vect_line_length ( APoints );
/* distance along the line */
fseg = Vect_line_distance ( APoints, fx, fy, fz, 0, &fcx, &fcy, &fcz, NULL, NULL, &flen);
tseg = Vect_line_distance ( APoints, tx, ty, tz, 0, &tcx, &tcy, &tcz, NULL, NULL, &tlen);
Vect_reset_line ( SPoints );
if ( flen == tlen ) {
cur_cst = 0;
reachable = shortcut = 1;
} else if ( flen < tlen ) {
Vect_net_get_line_cost ( Map, fline, GV_FORWARD, &c );
if ( c >= 0 ) {
cur_cst = c * (tlen - flen) / len;
Vect_append_point (SPoints, fx, fy, fz);
Vect_append_point (SPoints, fcx, fcy, fcz);
for ( i = fseg; i < tseg; i++ )
Vect_append_point (SPoints, APoints->x[i], APoints->y[i], APoints->z[i]);
Vect_append_point (SPoints, tcx, tcy, tcz);
Vect_append_point (SPoints, tx, ty, tz);
reachable = shortcut = 1;
}
} else { /* flen > tlen */
Vect_net_get_line_cost ( Map, fline, GV_BACKWARD, &c );
if ( c >= 0 ) {
cur_cst = c * (flen - tlen) / len;
Vect_append_point (SPoints, fx, fy, fz);
Vect_append_point (SPoints, fcx, fcy, fcz);
for ( i = fseg - 1; i >= tseg; i-- )
Vect_append_point (SPoints, APoints->x[i], APoints->y[i], APoints->z[i]);
Vect_append_point (SPoints, tcx, tcy, tcz);
Vect_append_point (SPoints, tx, ty, tz);
reachable = shortcut = 1;
}
}
}
/* Find the shortest variant from maximum 4 */
for ( i = 0; i < nfnodes; i++ ) {
for ( j = 0; j < ntnodes; j++ ) {
double ncst, cst;
int ret;
G_debug (3, "i = %d fnode = %d j = %d tnode = %d", i, fnode[i], j, tnode[j]);
ret = Vect_net_shortest_path ( Map, fnode[i], tnode[j], NULL, &ncst);
if ( ret == -1 ) continue; /* not reachable */
cst = fcosts[i] + ncst + tcosts[j];
if ( reachable == 0 || cst < cur_cst ) {
cur_cst = cst;
fn = i;
tn = j;
shortcut = 0;
}
reachable = 1;
}
}
G_debug (3, "reachable = %d shortcut = %d cur_cst = %f", reachable, shortcut, cur_cst);
if ( reachable ) {
int ret;
if ( shortcut) {
if ( Points )
Vect_append_points ( Points, SPoints, GV_FORWARD );
} else {
ret = Vect_net_shortest_path ( Map, fnode[fn], tnode[tn], LList, NULL);
G_debug (3, "Number of lines %d", LList->n_values);
if ( Points )
Vect_append_points ( Points, fPoints[fn], GV_FORWARD );
if ( FPoints )
Vect_append_points ( FPoints, fPoints[fn], GV_FORWARD );
for ( i = 0; i < LList->n_values; i++ ) {
int line;
line = LList->value[i];
G_debug (3, "i = %d line = %d", i, line);
if ( Points ) {
Vect_read_line ( Map, APoints, NULL, abs(line) );
if ( line > 0 )
Vect_append_points ( Points, APoints, GV_FORWARD );
else
Vect_append_points ( Points, APoints, GV_BACKWARD );
}
if ( List ) Vect_list_append ( List, line );
}
if ( Points )
Vect_append_points ( Points, tPoints[tn], GV_FORWARD );
if ( TPoints )
Vect_append_points ( TPoints, tPoints[tn], GV_FORWARD );
}
if ( costs ) *costs = cur_cst;
}
return reachable;
}
|