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

Function generateFilename

pdal/FlexWriter.hpp:81–90  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

79 }
80
81 std::string generateFilename()
82 {
83 std::string filename = this->filename();
84 if (m_hashPos != std::string::npos)
85 {
86 std::string fileCount = std::to_string(m_filenum++);
87 filename.replace(m_hashPos, 1, fileCount);
88 }
89 return filename;
90 }
91
92 virtual bool srsOverridden() const
93 { return false; }

Callers 2

readyFunction · 0.85
writeFunction · 0.85

Calls 2

filenameMethod · 0.45
replaceMethod · 0.45

Tested by

no test coverage detected