aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--man/man3/pj_init.35
1 files changed, 3 insertions, 2 deletions
diff --git a/man/man3/pj_init.3 b/man/man3/pj_init.3
index 4edcabb6..63ba1647 100644
--- a/man/man3/pj_init.3
+++ b/man/man3/pj_init.3
@@ -28,7 +28,7 @@ projUV pj_fwd(projUV val, projPJ proj)
projUV pj_inv(projUV val, projPJ proj)
int pj_transform(projPJ src_cs, projPJ dst_cs, long point_count,
- double *x, double *y, double *z)
+ int point_offset, double *x, double *y, double *z)
void pj_free(projPJ proj)
@@ -69,7 +69,8 @@ coordinate system. Unlike \fBpj_fwd\fR and \fBpj_inv\fR it is also allowable
for the coordinate system definitions (\fBPJ *\fR) to be geographic coordinate
systems (defined as +proj=latlong). The \fBx\fR, \fBy\fR and \fBz\fR arrays
contain the input values of the points, and are replaced with the output
-values. The function returns zero on success, or the error number (also in
+values. The \fBpoint_offset\fR should indicate the spacing the of \fBx,y,z\fR
+arrays, normally 1. The function returns zero on success, or the error number (also in
pj_errno) on failure.
Memory associated with the projection may be freed with \fBpj_free\fR.