| 2431 | // --------------------------------------------------------------------------- |
| 2432 | |
| 2433 | GTiffHGrid::GTiffHGrid(std::unique_ptr<GTiffGrid> &&grid, uint16_t idxLatShift, |
| 2434 | uint16_t idxLongShift, double convFactorToRadian, |
| 2435 | bool positiveEast) |
| 2436 | : HorizontalShiftGrid(grid->name(), grid->width(), grid->height(), |
| 2437 | grid->extentAndRes()), |
| 2438 | m_grid(std::move(grid)), m_idxLatShift(idxLatShift), |
| 2439 | m_idxLongShift(idxLongShift), m_convFactorToRadian(convFactorToRadian), |
| 2440 | m_positiveEast(positiveEast) {} |
| 2441 | |
| 2442 | // --------------------------------------------------------------------------- |
| 2443 | |