| 93 | { return false; } |
| 94 | |
| 95 | virtual void ready(PointTableRef table) final |
| 96 | { |
| 97 | readyTable(table); |
| 98 | |
| 99 | // Ready the file if we're writing a single file. |
| 100 | if (m_hashPos == std::string::npos) |
| 101 | { |
| 102 | if (!table.spatialReferenceUnique() && !srsOverridden()) |
| 103 | log()->get(LogLevel::Error) << getName() << |
| 104 | ": Attempting to write '" << filename() << |
| 105 | "' with multiple point spatial references." << std::endl; |
| 106 | readyFile(generateFilename(), table.spatialReference()); |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | virtual void prerun(const PointViewSet& views) final |
| 111 | { |
nothing calls this directly
no test coverage detected