/
| 85 | |
| 86 | /*****************************************************************************/ |
| 87 | int proj_angular_output (PJ *P, enum PJ_DIRECTION dir) { |
| 88 | /****************************************************************************** |
| 89 | Returns 1 if the operator P provides angular output coordinates when |
| 90 | operating in direction dir, 0 otherwise. |
| 91 | dir: {PJ_FWD, PJ_INV} |
| 92 | ******************************************************************************/ |
| 93 | return proj_angular_input (P, opposite_direction(dir)); |
| 94 | } |
| 95 | |
| 96 | /*****************************************************************************/ |
| 97 | int proj_degree_input (PJ *P, enum PJ_DIRECTION dir) { |
nothing calls this directly
no test coverage detected