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

Function getCompressionType

plugins/pgpointcloud/io/PgCommon.hpp:47–56  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

45{
46
47inline pdal::CompressionType getCompressionType(
48 std::string compression_type)
49{
50 compression_type = Utils::tolower(compression_type);
51 if (compression_type == "dimensional")
52 return CompressionType::Dimensional;
53 else if (compression_type == "lazperf")
54 return CompressionType::Lazperf;
55 return CompressionType::None;
56}
57
58inline PGconn* pg_connect(std::string const& connection)
59{

Callers 1

initializeMethod · 0.85

Calls 1

tolowerFunction · 0.85

Tested by

no test coverage detected