pe_projection_inverse |
Retrieves a function to transform from projected to geographic coordinates.
PE_PROJFUNC pe_projection_inverse (PE_PROJECTION projection);
projection | Map projection object |
Returns a function to transform from projected to geographic coordinates.
On success, the map projection inverse transformation. On failure, a null pointer.
PE_PROJECTION mercator =
pe_projection_new("Mercator", &mercator_f,&mercator_i);
PE_PROJFUNC inv = pe_projection_inverse(mercator);