| 65 | } |
| 66 | |
| 67 | void SrsTransform::setDstEpoch(double epoch) |
| 68 | { |
| 69 | #if GDAL_VERSION_NUM >= GDAL_COMPUTE_VERSION(3,4,0) |
| 70 | OGRSpatialReference target(*m_transform->GetTargetCS()); |
| 71 | OGRSpatialReference source(*m_transform->GetSourceCS()); |
| 72 | target.SetCoordinateEpoch(epoch); |
| 73 | set(target, source); |
| 74 | #endif |
| 75 | } |
| 76 | |
| 77 | SrsTransform& SrsTransform::operator=(SrsTransform&& src) |
| 78 | { |