Changeset 529
- Timestamp:
- 03/13/08 00:36:34 (16 months ago)
- Files:
-
- 1 modified
-
trunk/apps/las2las.c (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/apps/las2las.c
r528 r529 599 599 600 600 while (p) { 601 printf("fetching...");602 601 603 602 if (last_only && LASPoint_GetReturnNumber(p) != LASPoint_GetNumberOfReturns(p)) 604 603 { 605 printf("last_only...");606 604 p = LASReader_GetNextPoint(reader); 607 605 continue; … … 609 607 if (first_only && LASPoint_GetReturnNumber(p) != 1) 610 608 { 611 printf("first_only...");612 609 p = LASReader_GetNextPoint(reader); 613 610 continue; … … 616 613 if (clip_xy_min && (LASPoint_GetX(p) < clip_xy_min[0] || LASPoint_GetY(p) < clip_xy_min[1])) 617 614 { 618 printf("clip_xy_min...");619 615 p = LASReader_GetNextPoint(reader); 620 616 continue; … … 622 618 if (clip_xy_max && (LASPoint_GetX(p) > clip_xy_max[0] || LASPoint_GetY(p) > clip_xy_max[1])) 623 619 { 624 printf("\nclip_xy_max...");625 printf("LASPoint_GetX(p): %.2f ", LASPoint_GetX(p));626 printf("clip_xy_max[0] %.2f ", clip_xy_max[0]);627 printf("clip_xy_max[1] %.2f\n ", clip_xy_max[1]);628 620 p = LASReader_GetNextPoint(reader); 629 621 continue; … … 631 623 if (elim_return && (elim_return & (1 << LASPoint_GetReturnNumber(p)))) 632 624 { 633 printf("elim_return...");634 625 p = LASReader_GetNextPoint(reader); 635 626 continue; … … 637 628 if (elim_scan_angle_above && (LASPoint_GetScanAngleRank(p) > elim_scan_angle_above || LASPoint_GetScanAngleRank(p) < -elim_scan_angle_above)) 638 629 { 639 printf("elim_scan_anble...");640 630 p = LASReader_GetNextPoint(reader); 641 631 continue; … … 643 633 if (elim_intensity_below && LASPoint_GetIntensity(p) < elim_intensity_below) 644 634 { 645 printf("elim_intensity...");646 635 p = LASReader_GetNextPoint(reader); 647 636 continue; 648 637 } 649 638 LASWriter_WritePoint(writer,p); 650 printf("Writing point...");651 639 652 640 p = LASReader_GetNextPoint(reader);
