| 232 | |
| 233 | |
| 234 | bool NitfWrap::verifyLas(ILeStream& in, BOX3D& bounds, bool& compressed) |
| 235 | { |
| 236 | LasHeader h; |
| 237 | |
| 238 | try |
| 239 | { |
| 240 | in >> h; |
| 241 | } |
| 242 | catch (LasHeader::error&) |
| 243 | { |
| 244 | return false; |
| 245 | } |
| 246 | compressed = h.compressed(); |
| 247 | bounds = h.getBounds(); |
| 248 | gdal::reprojectBounds(bounds, h.srs(), "EPSG:4326"); |
| 249 | return true; |
| 250 | } |
| 251 | |
| 252 | |
| 253 | bool NitfWrap::verifyBpf(ILeStream& in, BOX3D& bounds) |
nothing calls this directly
no test coverage detected