MCPcopy Create free account
hub / github.com/PDAL/PDAL / rdbReaderOptions

Function rdbReaderOptions

plugins/rdb/test/RdbReaderTest.cpp:57–70  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

55{
56
57Options rdbReaderOptions(
58 const std::string& source = "",
59 const std::string& filter = "",
60 const bool extras = false
61)
62{
63 Options options;
64 const std::string name(source.empty() ? "autzen-thin-srs.rdbx" : source);
65 const std::string mask(filter.empty() ? "riegl.id != 0" : filter);
66 options.add(Option("filename", testDataPath() + name));
67 options.add(Option("filter", mask));
68 options.add(Option("extras", extras));
69 return options;
70}
71
72Options rdbReaderOptions(
73 const std::string& filter,

Callers 1

TESTFunction · 0.85

Calls 3

OptionFunction · 0.50
emptyMethod · 0.45
addMethod · 0.45

Tested by

no test coverage detected