| 27 | } |
| 28 | |
| 29 | float RasterSource::CalcSize(int min, int max, std::size_t count) |
| 30 | { |
| 31 | BOOST_ASSERT(count > 0); |
| 32 | return (max - min) / (static_cast<float>(count) - 1); |
| 33 | } |
| 34 | |
| 35 | // Query raster source for nearest data point |
| 36 | RasterDatum RasterSource::GetRasterData(const int lon, const int lat) const |
nothing calls this directly
no outgoing calls
no test coverage detected