| 102 | { |
| 103 | |
| 104 | pdal_error stageError(const std::string& cls, const std::string& type) |
| 105 | { |
| 106 | std::ostringstream ss; |
| 107 | ss << "Couldn't create " << cls << " stage of type '" << type << "'.\n"; |
| 108 | ss << "You probably have a version of PDAL that didn't come with a plugin\n" |
| 109 | "you're trying to load. Please see the FAQ at https://pdal.org/faq.html"; |
| 110 | return pdal_error(ss.str()); |
| 111 | } |
| 112 | |
| 113 | } |
| 114 |