| 223 | } |
| 224 | |
| 225 | uint64_t LasReader::vlrData(const std::string& userId, uint16_t recordId, char const * & data) |
| 226 | { |
| 227 | const las::Vlr *vlr = las::findVlr(userId, recordId, d->vlrs); |
| 228 | if (!vlr) |
| 229 | return 0; |
| 230 | data = vlr->data(); |
| 231 | return vlr->dataVec.size(); |
| 232 | } |
| 233 | |
| 234 | // Number of points we're wanting to fetch. |
| 235 | point_count_t LasReader::getNumPoints() const |