|
◆ pj_transform_f()
integer(kind=c_int) function proj::pj_transform_f |
( |
type(pj_object), value |
src, |
|
|
type(pj_object), value |
dst, |
|
|
real(kind=c_double), dimension(:), target |
x, |
|
|
real(kind=c_double), dimension(:), target |
y, |
|
|
real(kind=c_double), dimension(:), optional, target |
z |
|
) |
| |
Fortran version of pj_transform proj API function.
This is the Fortran version of pj_transform function, the array arguments are assumed-shape Fortran arrays of equal length so no array size nor offset need to be passed, see the original C API documentation for the use of the function. - Parameters
-
src | source coordinate system |
dst | destination coordinate system |
x | array of x coordinates |
y | array of y coordinates |
z | optional array of z coordinates |
Definition at line 289 of file proj.F90.
|