| 128 | } |
| 129 | |
| 130 | geometry::Altitude SrtmTile::GetHeightRC(size_t row, size_t col) const |
| 131 | { |
| 132 | size_t const ix = row * (kArcSecondsInDegree + 1) + col; |
| 133 | CHECK_LESS(ix, Size(), (row, col)); |
| 134 | return ReverseByteOrder(Data()[ix]); |
| 135 | } |
| 136 | |
| 137 | double SrtmTile::GetTriangleHeight(ms::LatLon const & coord) const |
| 138 | { |
nothing calls this directly
no test coverage detected