| 2088 | // --------------------------------------------------------------------------- |
| 2089 | |
| 2090 | GTiffHGrid::GTiffHGrid(std::unique_ptr<GTiffGrid> &&grid, uint16_t idxLatShift, |
| 2091 | uint16_t idxLonShift, double convFactorToRadian, |
| 2092 | bool positiveEast) |
| 2093 | : HorizontalShiftGrid(grid->name(), grid->width(), grid->height(), |
| 2094 | grid->extentAndRes()), |
| 2095 | m_grid(std::move(grid)), m_idxLatShift(idxLatShift), |
| 2096 | m_idxLonShift(idxLonShift), m_convFactorToRadian(convFactorToRadian), |
| 2097 | m_positiveEast(positiveEast) {} |
| 2098 | |
| 2099 | // --------------------------------------------------------------------------- |
| 2100 | |