| 50 | {} |
| 51 | |
| 52 | Key(const std::string& s) |
| 53 | { |
| 54 | const StringList tokens(Utils::split(s, '-')); |
| 55 | if (tokens.size() != 4) |
| 56 | throw pdal_error("Invalid EPT KEY: " + s); |
| 57 | d = std::stoi(tokens[0]); |
| 58 | x = std::stoi(tokens[1]); |
| 59 | y = std::stoi(tokens[2]); |
| 60 | z = std::stoi(tokens[3]); |
| 61 | } |
| 62 | |
| 63 | BOX3D b; |
| 64 |