Reproject a point from a source projection to a destination. \param x X coordinate of point to be reprojected in-place. \param y Y coordinate of point to be reprojected in-place. \param z Z coordinate of point to be reprojected in-place. \param srcSrs Source SRS \param dstSrs Destination SRS \return Whether the reprojection was successful or not. */
| 73 | \return Whether the reprojection was successful or not. |
| 74 | */ |
| 75 | bool reproject(double& x, double& y, double& z, const SpatialReference& srcSrs, |
| 76 | const SpatialReference& dstSrs) |
| 77 | { |
| 78 | return SrsTransform(srcSrs, dstSrs).transform(x, y, z); |
| 79 | } |
| 80 | |
| 81 | |
| 82 | /** |
nothing calls this directly
no test coverage detected