| 104 | } |
| 105 | |
| 106 | void RxpReader::initialize() |
| 107 | { |
| 108 | |
| 109 | if (pdal::Utils::isRemote(m_filename)) |
| 110 | m_filename = pdal::Utils::fetchRemote(m_filename); |
| 111 | |
| 112 | m_uri = m_isRdtp ? "rdtp://" + m_filename : "file:" + m_filename; |
| 113 | } |
| 114 | |
| 115 | |
| 116 | void RxpReader::addDimensions(PointLayoutPtr layout) |
nothing calls this directly
no test coverage detected