Changeset 834 for trunk/apps/lasinfo.c

Show
Ignore:
Timestamp:
08/17/08 03:01:31 (5 months ago)
Author:
hobu
Message:

better docs for lasinfo

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/apps/lasinfo.c

    r833 r834  
    4141 
    4242    fprintf(stderr,"Checking point information:\n"); 
    43     fprintf(stderr,"  lasinfo --check lidar.las\n"); 
    44     fprintf(stderr,"\n"); 
    45  
    46     fprintf(stderr,"Reading from stdin:\n"); 
    47     fprintf(stderr,"  lasinfo --stdin -c < lidar.las\n"); 
     43    fprintf(stderr,"  lasinfo --input lidar.las --check\n"); 
     44    fprintf(stderr,"\n"); 
     45 
     46    fprintf(stderr,"Print header info and point summary and redirect output to a file:\n"); 
     47    fprintf(stderr,"  lasinfo --check --input lidar.las 2> output.txt\n"); 
     48    fprintf(stderr,"\n"); 
     49     
     50    fprintf(stderr,"Read from stdin, scan the points, and skip printing VLR info:\n"); 
     51    fprintf(stderr,"  lasinfo --stdin --check --skip_vlr < lidar.las\n"); 
    4852    fprintf(stderr,"\n"); 
    4953 
    5054    fprintf(stderr,"Repairing header info to reflect point data:\n"); 
    5155    fprintf(stderr,"  lasinfo -i lidar.las --repair\n"); 
    52     fprintf(stderr,"  lasinfo -i lidar.las --repair_bounding_box\n"); 
    53     fprintf(stderr,"\n"); 
    54  
    55     fprintf(stderr,"Altering header inf:\n"); 
     56    fprintf(stderr,"\n"); 
     57 
     58    fprintf(stderr,"Altering header info:\n"); 
    5659    fprintf(stderr, "  lasinfo -i lidar.las --system_identifier \"hello world!\" " 
    5760                    "--generating_software \"this is a test (-:\"  --file_creation 8 2007\n");