| 26 | #define EPS10 1.e-10 |
| 27 | |
| 28 | static PJ_XY forward_error(PJ *P, PJ_LP lp, PJ_XY xy) { |
| 29 | proj_errno_set(P, PROJ_ERR_COORD_TRANSFM_OUTSIDE_PROJECTION_DOMAIN); |
| 30 | proj_log_trace(P, |
| 31 | "Coordinate (%.3f, %.3f) is on the unprojected hemisphere", |
| 32 | proj_todeg(lp.lam), proj_todeg(lp.phi)); |
| 33 | return xy; |
| 34 | } |
| 35 | |
| 36 | static PJ_XY ortho_s_forward(PJ_LP lp, PJ *P) { /* Spheroidal, forward */ |
| 37 | PJ_XY xy; |
no test coverage detected