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 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469
|
#include "laskernel.hpp"
bool OptechScanAngleFixer::transform(liblas::Point& p)
{
boost::int8_t angle = p.GetScanAngleRank();
double a = static_cast<double>(angle);
double da = 1.944445 * a;
double rda = liblas::detail::sround(da);
boost::int32_t new_a = static_cast<boost::int32_t>(rda);
boost::int8_t output = 0;
if (new_a > (std::numeric_limits<boost::int8_t>::max)())
{
output = (std::numeric_limits<boost::int8_t>::max)();
}
else if (new_a < (std::numeric_limits<boost::int8_t>::min)())
{
output = (std::numeric_limits<boost::int8_t>::min)();
}
else
{
output = static_cast<boost::int8_t>(new_a);
}
p.SetScanAngleRank(output);
return true;
}
std::istream* OpenInput(std::string const& filename, bool bEnd)
{
std::ios::openmode mode = std::ios::in | std::ios::binary;
if (bEnd == true) {
mode = mode | std::ios::ate;
}
std::istream* istrm;
if (compare_no_case(filename.c_str(),"STDIN",5) == 0)
{
istrm = &std::cin;
}
else
{
istrm = new std::ifstream(filename.c_str(), mode);
}
if (!istrm->good())
{
delete istrm;
throw std::runtime_error("Reading stream was not able to be created");
}
return istrm;
}
std::string TryReadFileData(std::string const& filename)
{
std::vector<char> data = TryReadRawFileData(filename);
// FIXME: What is this construction supposed to grab? --mloskot
return std::string(&data[0], data.size());
}
std::vector<char> TryReadRawFileData(std::string const& filename)
{
std::istream* infile = OpenInput(filename.c_str(), true);
std::ifstream::pos_type size;
// char* data;
std::vector<char> data;
if (infile->good()){
size = infile->tellg();
data.resize(static_cast<std::vector<char>::size_type>(size));
// data = new char [size];
infile->seekg (0, std::ios::beg);
infile->read (&data.front(), size);
// infile->close();
// delete[] data;
delete infile;
return data;
}
else
{
delete infile;
return data;
}
}
bool term_progress(std::ostream& os, double complete)
{
static int lastTick = -1;
int tick = static_cast<int>(complete * 40.0);
tick = (std::min)(40, (std::max)(0, tick));
// Have we started a new progress run?
if (tick < lastTick && lastTick >= 39)
lastTick = -1;
if (tick <= lastTick)
return true;
while (tick > lastTick)
{
lastTick++;
if (lastTick % 4 == 0)
os << (lastTick / 4) * 10;
else
os << ".";
}
if( tick == 40 )
os << " - done.\n";
else
os.flush();
return true;
}
void SetStreamPrecision(std::ostream& os, double scale)
{
os.setf(std::ios_base::fixed, std::ios_base::floatfield);
double frac = 0;
double integer = 0;
frac = std::modf(scale, &integer);
boost::uint32_t prec = static_cast<boost::uint32_t>(std::fabs(std::floor(std::log10(frac))));
os.precision(prec);
}
void SetHeaderCompression(liblas::Header& header, std::string const& filename)
{
// our policy for determining the output format is this:
// if -compressed given, use LAZ
// else if we see .las or .laz, use LAS or LAZ (resp.)
// else just use LAS
liblas::WriterFactory::FileType output_file_type = liblas::WriterFactory::FileType_Unknown;
liblas::WriterFactory::FileType ext_type = liblas::WriterFactory::InferFileTypeFromExtension(filename);
if (ext_type != liblas::WriterFactory::FileType_Unknown)
{
output_file_type = ext_type;
}
else
{
output_file_type = liblas::WriterFactory::FileType_LAS;
}
switch (output_file_type)
{
case liblas::WriterFactory::FileType_LAS:
header.SetCompressed(false);
break;
case liblas::WriterFactory::FileType_LAZ:
#ifdef HAVE_LASZIP
header.SetCompressed(true);
#else
throw liblas::configuration_error("LASzip compression support not enabled in this libLAS configuration.");
#endif
break;
case liblas::WriterFactory::FileType_Unknown:
default:
throw liblas::liblas_error("Unknown output file type");
break;
}
}
liblas::Header FetchHeader(std::string const& filename)
{
std::ifstream ifs;
if (!liblas::Open(ifs, filename.c_str()))
{
std::ostringstream oss;
oss << "Cannot open " << filename << "for read. Exiting...";
throw std::runtime_error(oss.str());
}
liblas::ReaderFactory factory;
liblas::Reader reader = factory.CreateWithStream(ifs);
liblas::Header header = reader.GetHeader();
ifs.close();
return header;
}
void RewriteHeader(liblas::Header const& header, std::string const& filename)
{
std::ios::openmode m = std::ios::out | std::ios::in | std::ios::binary | std::ios::ate;
// Write a blank PointRecordsByReturnCount first
std::ofstream ofs(filename.c_str(), m);
{
// scope this, so the dtor can write to the stream before we close it
liblas::Writer writer(ofs, header);
}
ofs.close();
}
void RepairHeader(liblas::CoordinateSummary const& summary, liblas::Header& header)
{
for (boost::uint32_t i = 0; i < 5; i++)
{
header.SetPointRecordsByReturnCount(i, 0);
}
liblas::property_tree::ptree tree = summary.GetPTree();
try
{
header.SetMin(tree.get<double>("summary.points.minimum.x"),
tree.get<double>("summary.points.minimum.y"),
tree.get<double>("summary.points.minimum.z"));
header.SetMax(tree.get<double>("summary.points.maximum.x"),
tree.get<double>("summary.points.maximum.y"),
tree.get<double>("summary.points.maximum.z"));
} catch (liblas::property_tree::ptree_bad_path const& )
{
std::cerr << "Unable to write header bounds info. Does the outputted file have any points?";
return;
}
try
{
for (boost::uint32_t i = 0; i < 5; i++)
{
header.SetPointRecordsByReturnCount(i, 0);
}
BOOST_FOREACH(ptree::value_type &v,
tree.get_child("summary.points.points_by_return"))
{
boost::uint32_t i = v.second.get<boost::uint32_t>("id");
boost::uint32_t count = v.second.get<boost::uint32_t>("count");
header.SetPointRecordsByReturnCount(i-1, count);
}
} catch (liblas::property_tree::ptree_bad_path const& )
{
std::cerr << "Unable to write header point return count info. "
"Does the outputted file have any points?";
return;
}
}
bool IsDualRangeFilter(std::string parse_string)
{
string::size_type dash = parse_string.find_first_of("-");
if (dash != std::string::npos) {
return true;
}
return false;
}
liblas::FilterPtr MakeReturnFilter( std::vector<boost::uint16_t> const& returns,
liblas::FilterI::FilterType ftype)
{
typedef liblas::ReturnFilter filter;
filter* return_filter = new filter(returns, false);
return_filter->SetType(ftype);
return liblas::FilterPtr(return_filter);
}
liblas::FilterPtr MakeClassFilter(std::vector<liblas::Classification> const& classes,
liblas::FilterI::FilterType ftype)
{
typedef liblas::ClassificationFilter filter;
filter* class_filter = new filter(classes);
class_filter->SetType(ftype);
return liblas::FilterPtr(class_filter);
}
liblas::FilterPtr MakeBoundsFilter(liblas::Bounds<double> const& bounds,
liblas::FilterI::FilterType ftype)
{
typedef liblas::BoundsFilter filter;
filter* bounds_filter = new filter(bounds);
bounds_filter->SetType(ftype);
return liblas::FilterPtr(bounds_filter);
}
liblas::FilterPtr MakeIntensityFilter(std::string intensities,
liblas::FilterI::FilterType ftype)
{
typedef liblas::ContinuousValueFilter<boost::uint16_t> filter;
filter::filter_func f = &liblas::Point::GetIntensity;
filter* intensity_filter = new filter(f, intensities);
intensity_filter->SetType(ftype);
return liblas::FilterPtr(intensity_filter);
}
liblas::FilterPtr MakeTimeFilter(std::string times,
liblas::FilterI::FilterType ftype)
{
typedef liblas::ContinuousValueFilter<double> filter;
filter::filter_func f = &liblas::Point::GetTime;
filter* time_filter = new filter(f, times);
time_filter->SetType(ftype);
return liblas::FilterPtr(time_filter);
}
liblas::FilterPtr MakeScanAngleFilter(std::string intensities,
liblas::FilterI::FilterType ftype)
{
typedef liblas::ContinuousValueFilter<boost::int32_t> filter;
filter::filter_func f = &liblas::Point::GetScanAngleRank;
filter* intensity_filter = new filter(f, intensities);
intensity_filter->SetType(ftype);
return liblas::FilterPtr(intensity_filter);
}
liblas::FilterPtr MakeColorFilter(liblas::Color const& low,
liblas::Color const& high,
liblas::FilterI::FilterType ftype)
{
liblas::ColorFilter* filter = new liblas::ColorFilter(low, high);
filter->SetType(ftype);
return liblas::FilterPtr(filter);
}
po::options_description GetFilteringOptions()
{
po::options_description filtering_options("Filtering options");
filtering_options.add_options()
("extent,e", po::value< string >(), "Extent window that points must fall within to keep.\nUse a comma-separated or quoted, space-separated list, for example, \n -e minx, miny, maxx, maxy\n or \n -e minx, miny, minz, maxx, maxy, maxz\n -e \"minx miny minz maxx maxy maxz\"")
("minx", po::value< double >(), "Extent must be greater than or equal to minx to be kept. \n --minx 1234.0")
("miny", po::value< double >(), "Extent must be greater than or equal to miny to be kept. \n --miny 5678.0")
("minz", po::value< double >(), "Extent must be greater than or equal to minz to be kept. If maxx and maxy are set but not minz *and maxz, all z values are kept. \n --minz 0.0")
("maxx", po::value< double >(), "Extent must be less than or equal to maxx to be kept. \n --maxx 1234.0")
("maxy", po::value< double >(), "Extent must be less than or equal to maxy to be kept. \n --maxy 5678.0")
("maxz", po::value< double >(), "Extent must be less than or equal to maxz to be kept. If maxx and maxy are set but not maxz *and minz, all z values are kept. \n --maxz 10.0")
("thin,t", po::value<boost::uint32_t>()->default_value(0), "Simple decimation-style thinning.\nThin the file by removing every t'th point from the file.")
("last-return-only", po::value<bool>()->zero_tokens(), "Keep last returns (cannot be used with --first-return-only)")
("first-return-only", po::value<bool>()->zero_tokens(), "Keep first returns (cannot be used with --last-return-only")
("keep-returns", po::value< std::vector<boost::uint16_t> >()->multitoken(), "A list of return numbers to keep in the output file: \n--keep-returns 1 2 3")
("drop-returns", po::value< std::vector<boost::uint16_t> >()->multitoken(), "Return numbers to drop.\nFor example, --drop-returns 2 3 4 5")
("valid_only", po::value<bool>()->zero_tokens(), "Keep only valid points")
("keep-classes", po::value< std::vector<boost::uint32_t > >()->multitoken(), "A list of classifications to keep:\n--keep-classes 2 4 12\n--keep-classes 2")
("drop-classes", po::value< std::vector<boost::uint32_t > >()->multitoken(), "A list of classifications to drop:\n--drop-classes 1 7 8\n--drop-classes 2")
("keep-intensity", po::value< string >(), "Range in which to keep intensity.\nThe following expression types are supported: \n--keep-intensity 0-100 \n--keep-intensity <200 \n--keep-intensity >400 \n--keep-intensity >=200")
("drop-intensity", po::value< string >(), "Range in which to drop intensity.\nThe following expression types are supported: \n--drop-intensity <200 \n--drop-intensity >400 \n--drop-intensity >=200")
("keep-time", po::value< string >(), "Range in which to keep time.\nThe following expression types are supported: \n--keep-time 413665.2336-414092.8462 \n--keep-time <414094.8462 \n--keep-time >413665.2336 \n--keep-time >=413665.2336")
("drop-time", po::value< string >(), "Range in which to drop time.\nThe following expression types are supported: \n--drop-time <413666.2336 \n--drop-time >413665.2336 \n--drop-time >=413665.2336")
("keep-scan-angle", po::value< string >(), "Range in which to keep scan angle.\nThe following expression types are supported: \n--keep-scan-angle 0-100 \n--keep-scan-angle <100\n--keep-scan-angle <=100")
("drop-scan-angle", po::value< string >(), "Range in which to drop scan angle.\nThe following expression types are supported: \n--drop-scan-angle <30 \n--drop-scan-angle >100 \n--drop-scan-angle >=100")
("keep-color", po::value< string >(), "Range in which to keep colors.\nDefine colors as two 3-tuples (R,G,B-R,G,B): \n--keep-color '0,0,0-125,125,125'")
("drop-color", po::value< string >(), "Range in which to drop colors.\nDefine colors as two 3-tuples (R,G,B-R,G,B): \n--drop-color '255,255,255-65536,65536,65536'")
;
return filtering_options;
}
po::options_description GetTransformationOptions()
{
po::options_description transform_options("Transformation options");
transform_options.add_options()
("t_srs", po::value< string >(), "Coordinate system to reproject output LAS file to. Use --a_srs or verify that your input LAS file has a coordinate system according to lasinfo")
("add-wkt-srs", po::value<bool>()->zero_tokens(), "Reset the coordinate system of the input file to use both WKT and GeoTIFF VLR entries")
("point-translate", po::value<std::string>(), "An expression to translate the X, Y, Z values of the point. For example, converting Z units that are in meters to feet: --point-translate \"x*1.0 y*1.0 z*3.2808399\"")
("color-source", po::value<std::string>(), "A string to a GDAL-openable raster data source. Use GDAL VRTs if you want to adjust the data source or set its coordinate system, etc. \n--color-source \"afile.tif\" ")
("color-source-bands", po::value< std::vector<boost::uint32_t> >()->multitoken(), "A list of three bands from the --color-source to assign to the R, G, B values for the point \n--color-source-bands 1 2 3")
("color-source-scale", po::value< boost::uint32_t >(), "A number used by --color-source to scale the input R, G, B values for the point. For example, to scale the 8 bit color data from an input raster to 16 bit, the 8 bit data should be multiplied by 256. \n--color-source-scale 256")
;
return transform_options;
}
po::options_description GetHeaderOptions()
{
po::options_description transform_options("Header modification options");
transform_options.add_options()
("a_srs", po::value< string >(), "Coordinate system to assign to input LAS file")
("a_vertcs", po::value< std::vector<string> >()->multitoken(), "Override vertical coordinate system information. Use --a_vertcs \"verticalCSType [citation [verticalDatum [verticalUnits]]]\"\nFor example: --a_vertcs 5703 \"North American Vertical Datum of 1988 (NAVD88)\" 5103 9001")
("offset", po::value< string >(), "A comma-separated or quoted, space-separated list of offsets to set on the output file: \n--offset 0,0,0\n--offset \"1234 5678 91011\"")
("scale", po::value< std::vector<double> >()->multitoken(), "A list of scales to set on the output file. Scales *cannot* be negative, and should always be a negative power of 10 \n--scale 0.1 0.1 0.00001")
("file-format,f", po::value< string >(), "Set the LAS format of the new file (only 1.0-1.2 supported at this time): \n--file-format 1.2\n-f 1.1")
("point-format", po::value< boost::uint32_t >(), "Set the LAS point format of the new file (0, 1, 2, 3): \n--point-format 3\n")
("pad-header", po::value< string >(), "Add extra bytes to the existing header")
("min-offset", po::value<bool>()->zero_tokens(), "Set the offset of the header to the minimums of all values in the file. Note that this requires multiple read passes through the file to achieve.")
("file-creation", po::value< std::vector<string> >()->multitoken(), "Set the header's day/year. Specify either as \"1 2010\" for the first day of 2010, or as \"now\" to specify the current day/year")
("add-schema", po::value<bool>()->zero_tokens(), "Add the liblas.org schema VLR record to the file.")
("delete-vlr", po::value<std::vector<std::string> >()->multitoken(), "Removes VLRs with the given name and id combination. --delete-vlr LASF_Projection 34737")
("add-vlr", po::value<std::vector<std::string> >()->multitoken(), "Add VLRs with the given name and id combination. --add-vlr hobu 1234 \"Description of the VLR\" \"filename.ext\"")
("system-identifier", po::value<std::string>(), "Set the SystemID for the file. --system-identifier \"MODIFICATION\"")
("generating-software", po::value<std::string>(), "Set the SoftwareID for the file. --generating-software \"liblas.org\"")
("fix-optech-scan-angle", po::value<bool>()->zero_tokens(), "Multiply the scan angle by 1.944445 to fix up scan angle generation output by some Optech scanners")
;
return transform_options;
}
std::vector<liblas::FilterPtr> GetFilters(po::variables_map vm, bool verbose)
{
std::vector<liblas::FilterPtr> filters;
liblas::Bounds<double> extent;
bool bSetExtent = false;
if (vm.count("keep-classes"))
{
std::vector<boost::uint32_t> classes = vm["keep-classes"].as< std::vector<boost::uint32_t> >();
std::vector<liblas::Classification> klasses;
ostringstream oss;
for (std::vector<boost::uint32_t>::const_iterator i = classes.begin();
i != classes.end();
i++)
{
oss << *i << " ";
klasses.push_back(liblas::Classification(*i, false, false, false));
}
if (verbose)
{
std::cout << "Keeping classes with the values: " << oss.str() << std::endl;
}
liblas::FilterPtr class_filter = MakeClassFilter( klasses,
liblas::FilterI::eInclusion);
filters.push_back(class_filter);
}
if (vm.count("drop-classes"))
{
std::vector<boost::uint32_t> classes = vm["drop-classes"].as< std::vector<boost::uint32_t> >();
std::vector<liblas::Classification> klasses;
ostringstream oss;
for (std::vector<boost::uint32_t>::const_iterator i = classes.begin();
i != classes.end();
i++)
{
oss << *i << " ";
klasses.push_back(liblas::Classification(*i,false, false, false));
}
if (verbose)
{
std::cout << "Dropping classes with the values: " << oss.str() << std::endl;
}
liblas::FilterPtr class_filter = MakeClassFilter( klasses,
liblas::FilterI::eExclusion);
filters.push_back(class_filter);
}
if (vm.count("keep-returns"))
{
std::vector<boost::uint16_t> returns = vm["keep-returns"].as< std::vector<boost::uint16_t> >();
if (verbose)
{
ostringstream oss;
for (std::vector<boost::uint16_t>::const_iterator i = returns.begin();
i != returns.end();
i++)
{
oss << *i << " ";
}
std::cout << "Keeping returns with the values: " << oss.str() << std::endl;
}
liblas::FilterPtr return_filter = MakeReturnFilter( returns,
liblas::FilterI::eInclusion);
filters.push_back(return_filter);
}
if (vm.count("drop-returns"))
{
std::vector<boost::uint16_t> returns = vm["keep-returns"].as< std::vector<boost::uint16_t> >();
if (verbose)
{
ostringstream oss;
for (std::vector<boost::uint16_t>::const_iterator i = returns.begin();
i != returns.end();
i++)
{
oss << *i << " ";
}
std::cout << "Dropping returns with the values: " << oss.str() << std::endl;
}
liblas::FilterPtr return_filter = MakeReturnFilter( returns,
liblas::FilterI::eExclusion);
filters.push_back(return_filter);
}
if (vm.count("minx"))
{
double minx = vm["minx"].as< double >();
(extent.min)(0, minx);
bSetExtent = true;
if (verbose)
std::cout << "Setting minx to: " << minx << std::endl;
}
if (vm.count("maxx"))
{
double maxx = vm["maxx"].as< double >();
(extent.max)(0, maxx);
bSetExtent = true;
if (verbose)
std::cout << "Setting maxx to: " << maxx << std::endl;
}
if (vm.count("miny"))
{
double miny = vm["miny"].as< double >();
(extent.min)(1, miny);
bSetExtent = true;
if (verbose)
std::cout << "Setting miny to: " << miny << std::endl;
}
if (vm.count("maxy"))
{
double maxy = vm["maxy"].as< double >();
(extent.max)(1, maxy);
bSetExtent = true;
if (verbose)
std::cout << "Setting maxy to: " << maxy << std::endl;
}
if (vm.count("minz"))
{
double minz = vm["minz"].as< double >();
(extent.min)(2, minz);
bSetExtent = true;
if (verbose)
std::cout << "Setting minz to: " << minz << std::endl;
}
if (vm.count("maxz"))
{
double maxz = vm["maxz"].as< double >();
(extent.max)(2, maxz);
bSetExtent = true;
if (verbose)
std::cout << "Setting maxz to: " << maxz << std::endl;
}
if (vm.count("extent"))
{
std::string bounds_string = vm["extent"].as< string >();
boost::char_separator<char> sep(SEPARATORS);
std::vector<double> vbounds;
tokenizer tokens(bounds_string, sep);
liblas::Bounds<double> bounds;
for (tokenizer::iterator t = tokens.begin(); t != tokens.end(); ++t) {
vbounds.push_back(atof((*t).c_str()));
}
if (vbounds.size() == 4)
{
bounds = liblas::Bounds<double>(vbounds[0],
vbounds[1],
vbounds[2],
vbounds[3]);
} else if (vbounds.size() == 6)
{
bounds = liblas::Bounds<double>(vbounds[0],
vbounds[1],
vbounds[2],
vbounds[3],
vbounds[4],
vbounds[5]);
} else {
ostringstream oss;
oss << "Bounds must be specified as a 4-tuple or "
"6-tuple, not a "<< vbounds.size()<<"-tuple" << "\n";
throw std::runtime_error(oss.str());
}
if ( bSetExtent )
{
if (verbose)
{
std::cout << " Growing --extent bounds with those that were set via --[x|y|z][min|max]" << std::endl;
}
bounds.grow(extent);
}
if (verbose)
{
std::cout << "---------------------------------------------------------" << std::endl;
std::cout << " Clipping file to the extent" << std::endl;
std::cout << "---------------------------------------------------------" << std::endl;
std::cout.setf(std::ios_base::fixed, std::ios_base::floatfield);
std::cout.precision(6);
std::cout << " minx: " << bounds.minx()
<< " miny: " << bounds.miny()
<< " minz: " << bounds.minz()
<< std::endl;
std::cout << " maxx: " << bounds.maxx()
<< " maxy: " << bounds.maxy()
<< " maxz: " << bounds.maxz()
<< std::endl;
std::cout << "---------------------------------------------------------" << std::endl;
}
liblas::FilterPtr bounds_filter = MakeBoundsFilter(bounds, liblas::FilterI::eInclusion);
// Set to false because we are using this opportunity to set the filter
// If it were still true after this point, *another* BoundsFilter would be
// added to the filters list at the end of this function
if (bSetExtent)
bSetExtent = false;
filters.push_back(bounds_filter);
}
if (vm.count("keep-intensity"))
{
std::string intensities = vm["keep-intensity"].as< string >();
if (verbose)
std::cout << "Keeping intensities with values: " << intensities << std::endl;
if (IsDualRangeFilter(intensities)) {
// We need to make two filters
// Given a range 0-200, split the expression into two filters
string::size_type dash = intensities.find_first_of("-");
std::string low = intensities.substr(0,dash);
std::string high = intensities.substr(dash+1, intensities.size());
liblas::FilterPtr lt_filter = MakeIntensityFilter(">="+low, liblas::FilterI::eInclusion);
filters.push_back(lt_filter);
liblas::FilterPtr gt_filter = MakeIntensityFilter("<="+high, liblas::FilterI::eInclusion);
filters.push_back(gt_filter);
} else {
liblas::FilterPtr intensity_filter = MakeIntensityFilter(intensities, liblas::FilterI::eInclusion);
filters.push_back(intensity_filter);
}
}
if (vm.count("drop-intensity"))
{
std::string intensities = vm["drop-intensity"].as< string >();
if (verbose)
std::cout << "Dropping intensities with values: " << intensities << std::endl;
if (IsDualRangeFilter(intensities)) {
throw std::runtime_error("Range filters are not supported for drop-intensity");
} else {
liblas::FilterPtr intensity_filter = MakeIntensityFilter(intensities, liblas::FilterI::eExclusion);
filters.push_back(intensity_filter);
}
}
if (vm.count("keep-scan-angle"))
{
std::string angles = vm["keep-scan-angle"].as< string >();
if (verbose)
std::cout << "Keeping scan angles with values: " << angles << std::endl;
if (IsDualRangeFilter(angles)) {
// We need to make two filters
// Given a range 0-200, split the expression into two filters
string::size_type dash = angles.find_first_of("-");
std::string low = angles.substr(0,dash);
std::string high = angles.substr(dash+1, angles.size());
liblas::FilterPtr lt_filter = MakeScanAngleFilter(">="+low, liblas::FilterI::eInclusion);
filters.push_back(lt_filter);
liblas::FilterPtr gt_filter = MakeScanAngleFilter("<="+high, liblas::FilterI::eInclusion);
filters.push_back(gt_filter);
} else {
liblas::FilterPtr angle_filter = MakeScanAngleFilter(angles, liblas::FilterI::eInclusion);
filters.push_back(angle_filter);
}
}
if (vm.count("drop-scan-angle"))
{
std::string angles = vm["drop-scan-angle"].as< string >();
if (verbose)
std::cout << "Dropping scan angles with values: " << angles << std::endl;
if (IsDualRangeFilter(angles)) {
throw std::runtime_error("Range filters are not supported for drop-scan-angle");
} else {
liblas::FilterPtr angle_filter = MakeScanAngleFilter(angles, liblas::FilterI::eExclusion);
filters.push_back(angle_filter);
}
}
if (vm.count("keep-time"))
{
std::string times = vm["keep-time"].as< string >();
if (verbose)
std::cout << "Keeping times with values: " << times << std::endl;
if (IsDualRangeFilter(times)) {
// We need to make two filters
// Given a range 0-200, split the expression into two filters
string::size_type dash = times.find_first_of("-");
std::string low = times.substr(0,dash);
std::string high = times.substr(dash+1, times.size());
liblas::FilterPtr lt_filter = MakeTimeFilter(">="+low, liblas::FilterI::eInclusion);
filters.push_back(lt_filter);
liblas::FilterPtr gt_filter = MakeTimeFilter("<="+high, liblas::FilterI::eInclusion);
filters.push_back(gt_filter);
} else {
liblas::FilterPtr time_filter = MakeTimeFilter(times, liblas::FilterI::eInclusion);
filters.push_back(time_filter);
}
}
if (vm.count("drop-time"))
{
std::string times = vm["drop-time"].as< string >();
if (verbose)
std::cout << "Dropping times with values: " << times << std::endl;
if (IsDualRangeFilter(times)) {
throw std::runtime_error("Range filters are not supported for drop-time");
} else {
liblas::FilterPtr time_filter = MakeTimeFilter(times, liblas::FilterI::eExclusion);
filters.push_back(time_filter);
}
}
if (vm.count("keep-color"))
{
std::string keepers = vm["keep-color"].as< string >();
if (verbose)
std::cout << "Keeping colors in range:: " << keepers << std::endl;
// Pull apart color ranges in the form: R,G,B-R,G,B
boost::char_separator<char> sep_dash("-");
boost::char_separator<char> sep_comma(",");
std::vector<liblas::Color> colors;
tokenizer low_high(keepers, sep_dash);
for (tokenizer::iterator t = low_high.begin(); t != low_high.end(); ++t) {
tokenizer rgbs((*t), sep_comma);
std::vector<liblas::Color::value_type> rgb;
for(tokenizer::iterator c = rgbs.begin(); c != rgbs.end(); ++c)
{
int color_val = atoi((*c).c_str());
if (color_val < ((std::numeric_limits<boost::uint16_t>::min)()) ||
color_val > ((std::numeric_limits<boost::uint16_t>::max)()))
{
ostringstream oss;
oss << "Color value must be between 0-65536, not " << color_val;
throw std::runtime_error( oss.str() );
}
rgb.push_back(static_cast<boost::uint16_t>(color_val));
}
liblas::Color color(rgb[0], rgb[1], rgb[2]);
colors.push_back(color);
}
liblas::FilterPtr color_filter = MakeColorFilter(colors[0], colors[1], liblas::FilterI::eInclusion);
filters.push_back(color_filter);
}
if (vm.count("drop-color"))
{
std::string dropers = vm["drop-color"].as< string >();
if (verbose)
std::cout << "Dropping colors in range:: " << dropers << std::endl;
// Pull apart color ranges in the form: R,G,B-R,G,B
boost::char_separator<char> sep_dash("-");
boost::char_separator<char> sep_comma(",");
std::vector<liblas::Color> colors;
tokenizer low_high(dropers, sep_dash);
for (tokenizer::iterator t = low_high.begin(); t != low_high.end(); ++t) {
tokenizer rgbs((*t), sep_comma);
std::vector<liblas::Color::value_type> rgb;
for(tokenizer::iterator c = rgbs.begin(); c != rgbs.end(); ++c)
{
int color_val = atoi((*c).c_str());
if (color_val < (std::numeric_limits<boost::uint16_t>::min)() ||
color_val > (std::numeric_limits<boost::uint16_t>::max)())
{
ostringstream oss;
oss << "Color value must be between 0-65536, not " << color_val;
throw std::runtime_error( oss.str() );
}
rgb.push_back(static_cast<boost::uint16_t>(color_val));
}
liblas::Color color(rgb[0], rgb[1], rgb[2]);
colors.push_back(color);
}
liblas::FilterPtr color_filter = MakeColorFilter(colors[0], colors[1], liblas::FilterI::eExclusion);
filters.push_back(color_filter);
}
if (vm.count("thin"))
{
boost::uint32_t thin = vm["thin"].as< boost::uint32_t >();
if (thin != 0) {
if (verbose)
std::cout << "Thining file by keeping every "<<thin<<"'th point " << std::endl;
liblas::FilterPtr thin_filter = liblas::FilterPtr(new liblas::ThinFilter(thin));
filters.push_back(thin_filter);
}
}
if (vm.count("first-return-only") && vm.count("last-return-only")) {
throw std::runtime_error( "--first-return-only and --last-return-only cannot "
"be used simultaneously. Use --keep-returns 1 in "
"combination with --last-return-only");
}
if (vm.count("last-return-only")) {
if (verbose)
std::cout << "Keeping last returns only." << std::endl;
std::vector<boost::uint16_t> returns;
liblas::FilterPtr last_filter = liblas::FilterPtr(new liblas::ReturnFilter(returns, true));
filters.push_back(last_filter);
}
if (vm.count("first-return-only")){
if (verbose)
std::cout << "Keeping first returns only." << std::endl;
std::vector<boost::uint16_t> returns;
returns.push_back(1);
liblas::FilterPtr return_filter = liblas::FilterPtr(new liblas::ReturnFilter(returns, false));
filters.push_back(return_filter);
}
if (vm.count("valid_only")){
if (verbose)
std::cout << "Keeping valid points only." << std::endl;
liblas::FilterPtr valid_filter = liblas::FilterPtr(new liblas::ValidationFilter());
filters.push_back(valid_filter);
}
// If we have bSetExtent and we haven't turned it off by merging with a --extent
// BoundsFilter, make a filter
if (bSetExtent)
{
liblas::FilterPtr bounds_filter = MakeBoundsFilter(extent, liblas::FilterI::eInclusion);
filters.push_back(bounds_filter);
}
return filters;
}
std::vector<liblas::TransformPtr> GetTransforms(po::variables_map vm, bool verbose, liblas::Header& header)
{
std::vector<liblas::TransformPtr> transforms;
if (vm.count("offset"))
{
std::string offset_string = vm["offset"].as< string >();
if (verbose)
std::cout << "Setting offsets to: " << offset_string << std::endl;
boost::char_separator<char> sep(SEPARATORS);
std::vector<double> offsets;
tokenizer tokens(offset_string, sep);
bool mins = false;
std::string m("min");
for (tokenizer::iterator t = tokens.begin(); t != tokens.end(); ++t) {
// Check if the user set --offset min,min,min
// FIXME: make this so the user could do --offset min,min,20.00
if (!(*t).compare(m))
{
mins = true;
continue;
}
else
{
mins = false;
offsets.push_back(atof((*t).c_str()));
}
}
if (offsets.size() != 3)
{
throw std::runtime_error("All three values for setting the offset must be floats, and there must be three values");
}
header.SetOffset(offsets[0], offsets[1], offsets[2]);
}
if (vm.count("scale"))
{
std::vector<double> scales = vm["scale"].as< std::vector<double> >();
if (scales.size() != 3) {
ostringstream oss;
oss << "Three arguments must be given to scale. "
<< "--scale x y z";
throw std::runtime_error(oss.str());
}
if (verbose)
{
ostringstream oss;
for (std::vector<double>::const_iterator i = scales.begin();
i != scales.end();
i++)
{
oss << *i << " ";
}
std::cout << "Setting scales to: " << oss.str() << std::endl;
}
header.SetScale(scales[0], scales[1], scales[2]);
}
if (vm.count("file-format"))
{
std::string format_string = vm["file-format"].as< string >();
if (verbose)
std::cout << "Setting format to: " << format_string << std::endl;
boost::char_separator<char> sep(".");
std::vector<int> versions;
tokenizer tokens(format_string, sep);
for (tokenizer::iterator t = tokens.begin(); t != tokens.end(); ++t) {
const char* v =(*t).c_str();
int i = atoi(v);
versions.push_back(i);
}
if (versions.size() < 2)
{
ostringstream oss;
oss << "Format version must dotted -- ie, '1.0' or '1.2', not " << format_string;
throw std::runtime_error(oss.str());
}
int minor = versions[1];
if (minor > 2){
ostringstream oss;
oss << "Format version must dotted -- ie, '1.0' or '1.2', not " << format_string;
throw std::runtime_error(oss.str());
}
header.SetVersionMinor(static_cast<boost::uint8_t>(minor));
}
if (vm.count("point-format"))
{
boost::uint32_t format = vm["point-format"].as< boost::uint32_t >();
if (verbose)
std::cout << "Setting point format to: " << format << std::endl;
if (format > 3){
ostringstream oss;
oss << "Point format valid range is 0-3, not " << format;
throw std::runtime_error(oss.str());
}
header.SetDataFormatId(static_cast<liblas::PointFormatName>(format));
}
if (vm.count("pad-header"))
{
std::string header_pad = vm["pad-header"].as< string >();
if (verbose)
std::cout << "Increasing header pad to: " << header_pad << std::endl;
boost::uint32_t offset = header.GetDataOffset();
if (atoi(header_pad.c_str()) == 0) {
ostringstream oss;
oss << "Header pad was 0. It must be greater than "<<offset<< " bytes";
throw std::runtime_error(oss.str());
}
header.SetDataOffset(atoi(header_pad.c_str()));
}
if (vm.count("file-creation"))
{
std::vector<std::string> creation = vm["file-creation"].as< std::vector<std::string> >();
if (verbose)
{
ostringstream oss;
for (std::vector<std::string>::const_iterator i = creation.begin();
i != creation.end();
i++)
{
oss << *i << " ";
}
std::cout << "Setting file creation to " << oss.str() << std::endl;
}
std::string m("now");
bool now = false;
if (creation.size() == 1 )
{
if (!(creation[0].compare(m)))
{
now = true;
}
}
boost::int32_t day = 0;
boost::int32_t year = 0;
if (creation.size() == 2)
{
day = atoi(creation[0].c_str());
year = atoi(creation[1].c_str());
if (day < 0 || day > 366) {
ostringstream oss;
oss << "Day must be between 1-366, not " << day;
throw std::runtime_error(oss.str());
}
if (year < 0)
{
ostringstream oss;
oss << "Year must be greater than 0, not " << year;
throw std::runtime_error(oss.str());
}
}
if (now == true)
{
liblas::Header h;
header.SetCreationDOY(h.GetCreationDOY());
header.SetCreationYear(h.GetCreationYear());
} else {
header.SetCreationDOY(static_cast<boost::uint16_t>(day));
header.SetCreationYear(static_cast<boost::uint16_t>(year));
}
}
if (vm.count("add-schema"))
{
liblas::VariableRecord vlr = header.GetSchema().GetVLR();
header.AddVLR(vlr);
}
if (vm.count("delete-vlr"))
{
std::vector<std::string> vlrs = vm["delete-vlr"].as< std::vector<std::string> >();
if (vlrs.size() % 2 != 0) {
ostringstream err;
err << "VLR descriptions must be in pairs of 2 -- A name and an ID";
throw std::runtime_error(err.str());
}
ostringstream oss;
for (std::vector<std::string>::const_iterator i = vlrs.begin();
i != vlrs.end();
i++)
{
oss << *i << " ";
}
if (verbose)
{
std::cout << "Deleting VLRs with the values: " << oss.str() << std::endl;
}
for (std::vector<std::string>::size_type i = 0; i < vlrs.size(); i=i+2)
{
boost::int32_t id = atoi(vlrs[i+1].c_str());
if (id < 0)
{
throw std::runtime_error("VLR ID must be > 0");
}
if (id > (std::numeric_limits<boost::uint16_t>::max)()) {
ostringstream oss;
oss << "ID must be less than "<< (std::numeric_limits<boost::uint16_t>::max)() <<", not " << id;
throw std::runtime_error(oss.str());
}
header.DeleteVLRs(vlrs[i], static_cast<boost::uint16_t>(id));
}
}
if (vm.count("add-vlr"))
{
std::vector<std::string> vlrs = vm["add-vlr"].as< std::vector<std::string> >();
if (vlrs.size() < 3) {
ostringstream err;
err << "VLR additions must be at least 3 arguments -- --add-vlr NAME 42 \"filename.ext\"";
throw std::runtime_error(err.str());
}
if (vlrs.size() > 4)
throw std::runtime_error("Only one VLR may be added at a time");
ostringstream oss;
for (std::vector<std::string>::const_iterator i = vlrs.begin();
i != vlrs.end();
i++)
{
oss << *i << " ";
}
liblas::VariableRecord v;
v.SetUserId(vlrs[0]);
boost::int32_t id = atoi(vlrs[1].c_str());
if (id < 0)
{
throw std::runtime_error("VLR ID must be > 0");
}
if (id > (std::numeric_limits<boost::uint16_t>::max)()) {
ostringstream oss;
oss << "ID must be less than "<< (std::numeric_limits<boost::uint16_t>::max)() <<", not " << id;
throw std::runtime_error(oss.str());
}
v.SetRecordId(static_cast<boost::uint16_t>(id));
std::vector<boost::uint8_t> data;
std::string data_or_filename;
if (vlrs.size() == 4){
v.SetDescription(vlrs[2]);
data_or_filename = vlrs[3];
} else {
data_or_filename = vlrs[2];
}
try {
std::vector<char> d;
d = TryReadRawFileData(data_or_filename);
for (std::vector<char>::const_iterator i = d.begin(); i != d.end(); ++i)
{
data.push_back(*i);
}
} catch (std::runtime_error const& ) {
std::string::const_iterator i;
for (i = data_or_filename.begin(); i != data_or_filename.end(); ++i)
{
data.push_back(*i);
}
}
if (data.size() > (std::numeric_limits<boost::uint16_t>::max)()) {
std::ostringstream oss;
oss << "This VLR with length " << data.size() << " does"
<< " not fit within the maximum VLR size of "
<< (std::numeric_limits<boost::uint16_t>::max)();
throw std::runtime_error(oss.str());
}
if (verbose)
{
std::cout << "Adding VLRs with the values: " << oss.str() << std::endl;
}
v.SetData(data);
v.SetRecordLength(static_cast<boost::uint16_t>(data.size()));
header.AddVLR(v);
}
if (vm.count("generating-software"))
{
std::string software = vm["generating-software"].as< std::string >();
if (verbose)
{
std::cout << "Setting Software ID to: " << software<< std::endl;
}
header.SetSoftwareId(software);
}
if (vm.count("system-identifier"))
{
std::string id = vm["system-identifier"].as< std::string >();
if (verbose)
{
std::cout << "Setting System ID to: " << id<< std::endl;
}
header.SetSystemId(id);
}
if (vm.count("a_srs"))
{
liblas::SpatialReference in_ref;
std::string input_srs = vm["a_srs"].as< string >();
if (!input_srs.empty())
{
in_ref.SetFromUserInput(input_srs);
}
if (verbose)
std::cout << "Setting input SRS to '" << input_srs << "'"<< std::endl;
header.SetSRS(in_ref);
}
if (vm.count("a_vertcs"))
{
liblas::SpatialReference vert_ref = header.GetSRS();
std::vector<std::string> vertical_vec = vm["a_vertcs"].as< std::vector<std::string> >();
if (vertical_vec.size() > 4) {
ostringstream oss;
oss << "Too many arguments were given to a_vertcs. "
<< "--a_vertcs verticalCSType citation verticalDatum verticalUnits "
<< "All except verticalCSType are optional, but they are "
<< "applied in order, so if you want to set verticalUnits, "
<< "you must set all the others";
throw std::runtime_error(oss.str());
}
if (vertical_vec.size() < 1) {
ostringstream oss;
oss << "At least verticalCSType must be given to a_vertcs. "
<< "--a_vertcs verticalCSType citation verticalDatum verticalUnits "
<< "All except verticalCSType are optional, but they are "
<< "applied in order, so if you want to set verticalUnits, "
<< "you must set all the others";
throw std::runtime_error(oss.str());
}
if (verbose)
{
ostringstream oss;
for (std::vector<std::string>::const_iterator i = vertical_vec.begin();
i != vertical_vec.end();
i++)
{
oss << *i << " ";
}
std::cout << "Setting vertical info to: " << oss.str() << std::endl;
}
boost::int32_t verticalCSType = boost::lexical_cast<boost::int32_t>(vertical_vec[0]);
std::string citation;
int verticalDatum = -1;
int verticalUnits = 9001;
if (vertical_vec.size() > 1) {
citation = boost::lexical_cast<std::string>(vertical_vec[1]);
}
if (vertical_vec.size() > 2) {
verticalDatum = boost::lexical_cast<boost::int32_t>(vertical_vec[2]);
}
if (vertical_vec.size() > 3) {
verticalUnits = boost::lexical_cast<boost::int32_t>(vertical_vec[3]);
}
vert_ref.SetVerticalCS(verticalCSType, citation, verticalDatum, verticalUnits);
header.SetSRS(vert_ref);
}
if (vm.count("add-wkt-srs"))
{
// Reset the SRS using WKT, which will cause both GeoTIFF keys and OGC WKT
// VLRs to be written to the file.
liblas::SpatialReference ref = header.GetSRS();
std::string wkt = ref.GetWKT();
ref.SetWKT(wkt);
header.SetSRS(ref);
}
if (vm.count("t_srs"))
{
liblas::SpatialReference in_ref;
liblas::SpatialReference out_ref;
std::string output_srs = vm["t_srs"].as< string >();
if (verbose)
std::cout << "Setting output SRS to " << output_srs << std::endl;
out_ref.SetFromUserInput(output_srs);
if (vm.count("a_srs")){
std::string input_srs = vm["a_srs"].as< string >();
in_ref.SetFromUserInput(input_srs);
} else {
// If the user didn't assign an input SRS, we'll try to take
// it from our existing header.
in_ref = header.GetSRS();
if (in_ref.GetVLRs().size() == 0)
{
throw std::runtime_error("No input SRS is available on the file you have specified. Please use --a_srs to assign one");
}
}
// Set the header's SRS to the output SRS now. We've already
// made the transformation, and this SRS will be used to
// write the new file(s)
header.SetSRS(out_ref);
liblas::Bounds<double> b = header.GetExtent();
liblas::ReprojectionTransform trans(in_ref, out_ref);
liblas::Point minimum(&header);
liblas::Point maximum(&header);
trans.transform(minimum);
trans.transform(maximum);
b = liblas::Bounds<double>(minimum, maximum);
header.SetExtent(b);
liblas::TransformPtr srs_transform = liblas::TransformPtr(new liblas::ReprojectionTransform(in_ref, out_ref, &header));
transforms.push_back(srs_transform);
}
if (vm.count("color-source"))
{
std::string datasource = vm["color-source"].as< string >();
std::vector<boost::uint32_t> bands;
boost::uint32_t scale = 0;
bool bSetScale = false;
if (vm.count("color-source-bands"))
{
bands = vm["color-source-bands"].as< std::vector<boost::uint32_t> >();
if (bands.size() != 3)
{
std::ostringstream oss;
oss << "The bands list must have three elements, not " << bands.size();
throw std::runtime_error(oss.str());
}
}
else
{
bands.resize(3);
bands[0] = 1;
bands[1] = 2;
bands[2] = 3;
}
if (vm.count("color-source-scale"))
{
bSetScale = true;
scale = vm["color-source-scale"].as< boost::uint32_t >();
}
if (verbose)
{
// make a displayable string for the bands list
std::ostringstream bnds;
for (std::vector<boost::uint32_t>::const_iterator i = bands.begin();
i != bands.end();
i++)
{
bnds << *i;
std::vector<boost::uint32_t>::const_iterator i2 = i+1;
if (i2 != bands.end())
bnds << ", ";
}
std::cout << "Fetching color from ' " << datasource
<< "' using bands '" << bnds.str()
<< "' for R, G, B";
if (bSetScale)
std::cout << " with a scale factor of " << scale;
std::cout<< std::endl;
}
// Check the schema to see if we have color
liblas::Schema const& schema = header.GetSchema();
try
{
schema.GetDimension("Red");
} catch (std::runtime_error const&)
{
throw std::runtime_error("The header for this file does not allow storing red color information. Alter the header's data format using the --point-format switch");
}
try
{
schema.GetDimension("Blue");
} catch (std::runtime_error const&)
{
throw std::runtime_error("The header for this file does not allow storing blue color information. Alter the header's data format using the --point-format switch");
}
try
{
schema.GetDimension("Green");
} catch (std::runtime_error const&)
{
throw std::runtime_error("The header for this file does not allow storing green color information. Alter the header's data format using the --point-format switch");
}
liblas::TransformPtr color_fetch = liblas::TransformPtr(new liblas::ColorFetchingTransform(datasource, bands, &header));
if (bSetScale) {
liblas::ColorFetchingTransform* c = dynamic_cast<liblas::ColorFetchingTransform*>(color_fetch.get());
c->SetScaleFactor(scale);
}
transforms.push_back(color_fetch);
}
if (vm.count("point-translate"))
{
std::string translate = vm["point-translate"].as< std::string >();
if (verbose)
{
std::cout << "Translating points with expression: " << translate << std::endl;
}
liblas::TransformPtr trans_trans = liblas::TransformPtr(new liblas::TranslationTransform(translate));
transforms.push_back(trans_trans);
}
if (vm.count("fix-optech-scan-angle"))
{
if (verbose)
std::cout << "Fixing Scan Angles by multiplying by 1.944445" << std::endl;
liblas::TransformPtr transform = liblas::TransformPtr(new OptechScanAngleFixer());
transforms.push_back(transform);
}
return transforms;
}
liblas::property_tree::ptree SummarizeReader(liblas::Reader& reader)
{
liblas::Summary s;
reader.Reset();
bool read = reader.ReadNextPoint();
if (!read)
{
throw std::runtime_error("Unable to read any points from file.");
}
while (read)
{
liblas::Point const& p = reader.GetPoint();
s.AddPoint(p);
read = reader.ReadNextPoint();
}
return s.GetPTree();
}
|