| 53 | Scaling m_scaling; |
| 54 | |
| 55 | void validateFilename(PointTableRef table) |
| 56 | { |
| 57 | if (!table.supportsView() && (filename().find('#') != std::string::npos)) |
| 58 | { |
| 59 | std::ostringstream oss; |
| 60 | oss << getName() << ": Can't write with template-based " |
| 61 | "filename using streaming point table."; |
| 62 | throw pdal_error(oss.str()); |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | private: |
| 67 | std::string::size_type m_hashPos; |